/*================================
  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;
}

/*================================
  HEADINGS
================================*/

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

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


/*=====================================================
  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;
  }
}

.logo-left p {
  margin: 0;
  line-height: 1.2;
  padding: 0;
}
/*================================
  SECTION BASE
================================*/

section {
  padding: 5rem 2rem;
  text-align: center;
}

/*================================
  HERO SECTION
================================*/

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

}

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

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


/*================================
  SERVICES GRID
================================*/

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 320px;
  flex: 1;
  transition: transform 0.3s ease;
    border-top: 4px solid var(--gold);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

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




/*================================
  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);
}


/*================================
QUIZ
===============================*/
    .quiz-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .quiz-overlay.active {
      display: flex;
    }

    .quiz-content {
      background: #ffffff;
      max-width: 600px;
      width: 90%;
      padding: 24px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      position: relative;
    }

    .quiz-close {
      position: absolute;
      top: 12px; right: 16px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      color: #333;
    }

    .submit-button {
      background-color: #005ea2;
      color: #fff;
      padding: 10px 20px;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 10px;
    }

    .submit-button:hover {
      background-color: #003d70;
    }

    .inline-form .form-group {
      margin-bottom: 18px;
      display: flex;
      flex-direction: column;
    }

    .inline-form label {
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 1rem;
    }

    .inline-form select,
    .inline-form input[type="email"] {
      padding: 10px;
      font-size: 0.95rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      max-width: 100%;
    }

    .recommendation-box {
      margin-top: 24px;
      background: #f4f8fc;
      border-left: 4px solid #005ea2;
      padding: 16px;
      border-radius: 4px;
    }

/*=====================================================
  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;
}