/*=====================================================
  CONTACT PAGE SPECIFIC STYLING
=====================================================*/
/*================================
  GLOBAL COLORS & TYPE
================================*/

:root {
  --primary-dark: #003366;
  --primary-light: #66CCFF;
  --neutral-light: #f9f9f9;
  --gold: #FFC107;
  --soft-gold: #fff8e1;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: var(--primary-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/*=====================================================
  HEADER & NAVIGATION
=====================================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 6px solid var(--gold);
  position: relative;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-left .logo {
  height: 55px;
}

#main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

#main-nav a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

#main-nav a:hover {
  color: var(--primary-light);
}

.menu-toggle {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  #main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 2rem;
    background: #ffffff;
    padding: 1rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: 99;
  }

  #main-nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-top: 0.5rem;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
  }
}
/*=====================================================
  CONTACT PAGE MINI HERO
=====================================================*/

.contact-hero {
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 6px solid var(--gold);

}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--gold);
  font-style:bold;
}




/*=====================================================
CONTACT FORM
=======================================================*/

.contact-form-section {
  background: var(--neutral-light);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.contact-form-section h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-subheader {
  font-size: 1rem;
  color: var(--primary-dark);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}


.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

/* Single Field Full Width for Mobile */
@media (max-width: 640px) {
  .form-group {
    grid-template-columns: 1fr;
  }
}

/* Label + Input Styling */
.contact-form label {
  font-weight: 600;
  text-align: left;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Divider Between Form Sections */
.form-divider {
  height: 1px;
  background: var(--primary-light);
  margin: 2rem 0;
  opacity: 0.3;
}

/* Resize Textarea with Grace */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/*===========================================
OTHER CONTACT
=========================================*/

.cta-trio {
  background: white;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.cta-trio h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.cta-trio p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--primary-dark);
}

.cta-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-option {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 320px;
  flex: 1;
  border-top: 4px solid var(--primary-light);
}

.cta-option h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.cta-option p {
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.cta-option .gold-btn {
  margin-top: 1rem;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 51, 102, 0.8); /* semi-transparent overlay */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border: 2px solid var(--gold);
  border-radius: 12px;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.modal-content h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.modal-content p,
.modal-content a {
  font-size: 1rem;
  color: var(--primary-dark);
}

.modal-content .close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-options {
    flex-direction: column;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero h2 {
    font-size: 1.4rem;
  }

  .contact-form-section,
  .cta-trio {
    padding: 3rem 1.5rem;
  }
}

/*================================
  CTA BUTTONS
================================*/

.btn-cta {
  background: var(--primary-dark);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: scale(1.05);
}

.gold-btn {
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition:background 0.3s ease, transform 0.2s ease;
}

.gold-btn:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}


/*=====================================================
  FOOTER
=====================================================*/

.site-footer {
  background: var(--primary-dark);
  color: var(--neutral-light);
  padding: 2rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  border-top: 6px solid var(--gold);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color:white;
}


.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: transparent;
}

.footer-nav a {
  color: var(--neutral-light);
  text-decoration: none;
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-nav a {
    margin: 0.5rem 0;
  }
}

/*============================================
socials footer
============================================*/

.social-callout {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: white;
}

.social-callout a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 500;
}

.social-callout a:hover {
  color: #fff;
  text-decoration: none;
}