:root {
  --teal: #0d9e8a;
  --teal-light: #14c5ac;
  --teal-dark: #097a6b;
  --navy: #0b1f3a;
  --navy-mid: #122848;
  --cream: #f5f1eb;
  --warm-white: #fdfaf6;
  --text-dark: #1a1a2e;
  --text-mid: #3d4f6b;
  --text-light: #6b7f99;
  --accent-gold: #e8b84b;
  --border: rgba(13,158,138,0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Epilogue", sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Shared utilities */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 3.5rem;
  color: var(--text-mid);
}

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}
.whatsapp-float svg { width: 24px; height: 24px; margin-right: 10px; }
.whatsapp-float:hover { background-color: #1DA851; transform: scale(1.05); }

@media (max-width: 600px) {
  .whatsapp-float { font-size: 14px; padding: 10px 16px; }
  .whatsapp-float svg { width: 20px; height: 20px; margin-right: 8px; }
}

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 5%;
    background: rgba(253,250,246,0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
  .nav-logo { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--navy); letter-spacing: -0.03em; text-decoration: none; }
  .nav-logo span { color: var(--teal); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-mid); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { background: var(--teal); color: #fff !important; padding: 0.55rem 1.3rem; border-radius: 50px; font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important; }
  .nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px);  }


@media (max-width: 768px) {
  .nav-cta {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* Burger menu styles, hidden on large screens */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  align-items: center;
}

.burger div {
  width: 100%;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  /* Show burger icon */
  .burger {
    display: flex;
  }

  /* Hide nav links initially */
  .nav-links {
    position: absolute;
    top: 60px; /* adjust as needed */
    right: 0;
    background-color: #333;
    flex-direction: column;
    width: 200px;
    display: none; /* hidden by default */
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
  }

  /* Show menu when active */
  .nav-links.active {
    display: block;
    opacity: 1;
  }
}
      

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 7rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
  }
  .hero::before {
    content: ""; position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(13,158,138,0.11) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .hero-text { max-width: 620px; animation: fadeUp 0.8s ease both; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(13,158,138,0.1); color: var(--teal-dark);
    border: 1px solid rgba(13,158,138,0.25);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; margin-bottom: 1.5rem;
  }
  .hero-badge::before { content: "●"; font-size: 0.6rem; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4.8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 1.4rem;
  }
  h1 em { font-style: italic; color: var(--teal); }

  .hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 2.2rem; font-weight: 400; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--teal); color: #fff;
    padding: 1rem 2.2rem; border-radius: 50px;
    font-size: 0.97rem; font-weight: 600; text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 22px rgba(13,158,138,0.32);
    font-family: "Epilogue", sans-serif;
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(13,158,138,0.38); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--teal-dark); font-size: 0.95rem; font-weight: 600; text-decoration: none; padding: 1rem 0; border-bottom: 2px solid var(--teal); transition: opacity 0.2s; }
  .btn-secondary:hover { opacity: 0.7; }

  .hero-stats { display: flex; gap: 2.5rem; margin-top: 2.8rem; padding-top: 2rem; border-top: 1px solid var(--border); }
  .stat-num { font-family: "Playfair Display", serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
  .stat-num span { color: var(--teal); font-style: italic; }
  .stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 0.3rem; font-weight: 400; letter-spacing: 0.01em; }
  .hero-stats > div { display: flex; flex-direction: column; }
  .stat-divider { width: 1px; background: var(--border); align-self: stretch; }
  
@media (max-width: 1024px) {
  #navbar .nav-links {
    display: none; /* hide by default on tablets and below */
    position: absolute;
    top: 60px;
    right: 5%;
    background: rgba(253,250,246,0.93);
    flex-direction: column;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  #navbar .nav-links.active {
    display: flex; /* show when active */
    max-height: 500px; /* for transition effect */
  }
}
  /* HERO VISUAL */
  .hero-visual { display: flex; justify-content: flex-end; align-items: center; animation: fadeUp 0.8s 0.2s ease both; position: relative; }
  .symptom-card-stack { position: relative; width: 340px; }
  .symptom-card { background: rgba(255,255,255,0.85); border: 1px solid rgba(13,158,138,0.15); border-radius: 20px; padding: 1.4rem 1.6rem; box-shadow: 0 8px 32px rgba(0,0,0,0.07); backdrop-filter: blur(12px); transition: transform 0.3s; }
  .symptom-card:hover { transform: translateY(-4px); }
  .symptom-card + .symptom-card { margin-top: 1rem; }
  .symptom-card-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
  .symptom-icon { width: 36px; height: 36px; background: rgba(13,158,138,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .symptom-title { font-family: "Syne", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
  .symptom-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.5; }
  .card-highlight { background: linear-gradient(135deg, rgba(13,158,138,0.08), rgba(13,158,138,0.03)); border-color: rgba(13,158,138,0.3); }
  .floating-badge { position: absolute; top: -20px; right: -20px; background: var(--accent-gold); color: var(--navy); padding: 0.6rem 1rem; border-radius: 12px; font-size: 0.78rem; font-weight: 700; box-shadow: 0 4px 16px rgba(232,184,75,0.3); transform: rotate(3deg); }

  /* QUIZ */
  .quiz-section { background: var(--navy); padding: 6rem 5%; position: relative; overflow: hidden; }
  .quiz-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9e8a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
  .quiz-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
  .quiz-inner h2 { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 0.8rem; letter-spacing: -0.01em; }
  .quiz-inner h2 span { color: var(--teal-light); font-style: italic; }
  .quiz-sub { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 3rem; }
  .quiz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; text-align: left; }
  .quiz-item { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 1.2rem 1.4rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: flex-start; gap: 0.8rem; user-select: none; }
  .quiz-item:hover { background: rgba(13,158,138,0.15); border-color: var(--teal); }
  .quiz-item.selected { background: rgba(13,158,138,0.2); border-color: var(--teal-light); }
  .quiz-checkbox { width: 20px; height: 20px; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.3); border-radius: 6px; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-size: 0.75rem; color: #fff; }
  .quiz-item.selected .quiz-checkbox { background: var(--teal); border-color: var(--teal); }
  .quiz-item-text { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.45; font-weight: 400; }
  #quiz-result { display: none; margin-top: 1.5rem; background: rgba(13,158,138,0.15); border: 1px solid var(--teal); border-radius: 16px; padding: 1.5rem 2rem; color: #fff; }
  #quiz-result h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--teal-light); }
  #quiz-result p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; line-height: 1.6; }

  /* PROCESS */
  .section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem; }
  .section-title { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 1rem; line-height: 1.15; }
  .section-sub { font-size: 1rem; line-height: 1.7; max-width: 560px; margin-bottom: 3.5rem; color: var(--text-mid); }


  .process-section { padding: 7rem 5% 7rem; background: var(--cream); }
  /* PATHWAY */
  .pathway-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
  .pathway-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
  .pathway-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .pathway-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
  .pathway-card:hover::before { transform: scaleX(1); }
  .pathway-card-adolescent { background: rgba(232,184,75,0.04); border-color: rgba(232,184,75,0.3); }
  .pathway-card-adolescent::before { background: var(--accent-gold); }
  .pathway-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.3rem; }
  .pathway-stage { display: inline-flex; align-items: center; background: rgba(13,158,138,0.1); color: var(--teal-dark); padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
  .pathway-stage.free { background: rgba(13,158,138,0.18); color: var(--teal-dark); }
  .pathway-stage.adolescent { background: rgba(232,184,75,0.15); color: #8a6b00; }
  .pathway-stage.ongoing { background: rgba(11,31,58,0.1); color: var(--navy); }
  .pathway-duration { font-size: 0.75rem; font-weight: 600; color: var(--text-light); }
  .pathway-card h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); line-height: 1.3; }
  .pathway-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
  .pathway-why { font-size: 0.78rem; color: var(--teal-dark); background: rgba(13,158,138,0.07); border-radius: 8px; padding: 0.4rem 0.7rem; margin-top: 0.3rem; line-height: 1.5; }
  .pathway-summary { margin-top: 2rem; }
  .pathway-summary-inner { background: var(--navy); border-radius: 18px; padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
  .pathway-summary-inner h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 0.4rem; }
  .pathway-summary-inner p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 500px; }

  .section-sub { color: var(--text-mid); font-size: 1rem; line-height: 1.7; max-width: 560px; margin-bottom: 3.5rem; }


  .step-fee { display: inline-block; background: var(--teal); color: #fff; padding: 0.25rem 0.8rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; margin-top: 0.6rem; }
  .process-intro { background: rgba(13,158,138,0.06); border-left: 3px solid var(--teal); border-radius: 0 12px 12px 0; padding: 1.2rem 1.5rem; margin-bottom: 2.5rem; max-width: 750px; }
  .process-intro p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

  /* SERVICES */
  .services-section { padding: 7rem 5%; background: var(--warm-white); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .service-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
  .service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
  .service-card h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; }
  .service-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

 /* TEAM */
.team-section { padding: 7rem 5%; background: var(--cream); }

.team-grid {
  display: flex;
  flex-wrap: wrap; /* Enable wrapping into multiple rows */
  gap: 1.2rem;
  margin-top: 3rem;
}

/* Tablet & Mobile - stack vertically, or show two per row on mobile */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: row; /* Display in a row for mobile */
    flex-wrap: wrap;     /* Wrap to next line if needed */
    justify-content: center; /* Center the items */
  }
  .team-card {
    flex: 1 1 calc(50% - 1.2rem); /* Two members per row */
    max-width: calc(50% - 1.2rem);
    margin: 0; /* Remove auto margin to keep layout tight */
  }
}

/* Set a width for each card to control how many fit per row for larger screens */
.team-card {
  flex: 1 1 calc(50% - 1.2rem); /* Two cards per row minus gap */
  max-width: calc(50% - 1.2rem);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0; /* Reset margin for mobile layout */
}

/* Hover effect for larger screens */
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.09);
}

/* Photo container styles */
.team-photo-wrap {
  width: 140px;
  min-width: 140px;
  overflow: hidden;
  background: #f0ede8;
  flex-shrink: 0;
}

/* Photo styles */
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}

/* Photo zoom on hover */
.team-card:hover .team-photo {
  transform: scale(1.04);
}

/* Placeholder for photo */
.team-photo-placeholder {
  width: 140px;
  min-width: 140px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
}

/* Info section styles */
.team-info {
  padding: 1.3rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.team-role {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Toggle button styles */
.team-bio-toggle {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  font-family: "Epilogue", sans-serif;
}

/* Bio text display toggles */
.bio-short {
  display: block;
}
.bio-full {
  display: none;
}

/* Additional adjustments for small screens */
@media (max-width: 600px) {
  .team-card {
    flex-direction: column;
  }
  .team-photo-wrap {
    width: 100%;
    min-width: unset;
    height: 200px;
  }
  .team-photo-placeholder {
    width: 100%;
    min-width: unset;
    height: 200px;
  }
}

  /* WHY */
  .why-section { padding: 7rem 5%; background: var(--navy); position: relative; overflow: hidden; }
  .why-section::before { content: ""; position: absolute; bottom: 0; right: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(13,158,138,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; }
  .why-text .section-title { color: #fff; }
  .why-text .section-label { color: var(--teal-light); }
  .why-text .section-sub { color: rgba(255,255,255,0.65); }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
  .why-item { display: flex; gap: 0.9rem; align-items: flex-start; }
  .why-dot { width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px; background: rgba(13,158,138,0.15); border: 1px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal-light); font-size: 0.75rem; }
  .why-item-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
  .why-item-text strong { color: #fff; font-weight: 600; }
  .why-cards { display: flex; flex-direction: column; gap: 1rem; }
  .why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start; }
  .why-card-icon { font-size: 1.5rem; flex-shrink: 0; }
  .why-card h4 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 0.3rem; }
  .why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

  /* CONTACT */
  .contact-section { padding: 7rem 5%; background: var(--warm-white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-item-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(13,158,138,0.1); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .contact-item-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
  .contact-item-text strong { color: var(--navy); display: block; font-weight: 600; font-size: 0.85rem; }
  .contact-item-text a { color: var(--teal); text-decoration: none; }
  .contact-item-text a:hover { text-decoration: underline; }
  .contact-form-box { background: var(--navy); border-radius: 24px; padding: 2.5rem; }
  .contact-form-box h3 { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 0.5rem; }
  .contact-form-box > p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.8rem; }
  .form-group { margin-bottom: 1.1rem; }
  .form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 0.75rem 1rem; color: #fff; font-family: "Epilogue", sans-serif; font-size: 0.9rem; transition: border-color 0.2s; outline: none; resize: vertical; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: rgba(13,158,138,0.06); }
  .form-group select option { background: var(--navy); }
  #form-success { display: none; text-align: center; padding: 2rem 0; }
  #form-success .check { font-size: 3rem; margin-bottom: 0.8rem; }
  #form-success h4 { font-family: "Playfair Display", serif; color: var(--teal-light); font-size: 1.2rem; margin-bottom: 0.5rem; }
  #form-success p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

  /* FOOTER */
  footer { background: var(--navy-mid); padding: 3rem 5%; border-top: 1px solid rgba(255,255,255,0.06); }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
  .footer-logo { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
  .footer-logo span { color: var(--teal-light); }
  .footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
  .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--teal-light); }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }



  /* QBTEST */
  .qbtest-section { padding: 7rem 5%; background: var(--cream); }
  .qb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; align-items: start; }
  .qb-explainer { display: flex; flex-direction: column; gap: 1.2rem; }
  .qb-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; }
  .qb-card h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; }
  .qb-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
  .qb-checklist-box { background: var(--navy); border-radius: 20px; padding: 2rem; }
  .qb-checklist-box h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 1.5rem; }
  .qb-checklist { display: flex; flex-direction: column; gap: 1.2rem; }
  .qb-check-group {}
  .qb-check-title { font-weight: 600; font-size: 0.85rem; color: var(--teal-light); margin-bottom: 0.4rem; }
  .qb-check-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
  .qb-check-group ul li { font-size: 0.82rem; color: rgba(255,255,255,0.75); padding-left: 1rem; position: relative; line-height: 1.5; }
  .qb-check-group ul li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-size: 0.75rem; }
  .qb-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .qb-badge { background: rgba(13,158,138,0.15); border: 1px solid var(--teal); color: var(--teal-light); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }

  /* PRIVACY */
  .privacy-body h2 { font-family: "Syne", sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.6rem; }
  .privacy-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 0.8rem; }
  .privacy-body a { color: var(--teal); text-decoration: none; }
  .privacy-body strong { color: var(--navy); }

  @media (max-width: 900px) { .qb-grid { grid-template-columns: 1fr; } }

  /* REVIEWS */
  .reviews-section { padding: 7rem 5%; background: radial-gradient(circle, rgba(13,158,138,0.11) 0%, transparent 70%); }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .review-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.25s, box-shadow 0.25s; }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
  .review-card-featured { background: var(--navy); border-color: rgba(13,158,138,0.3); }
  .review-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
  .review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }
  .review-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
  .review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Syne", sans-serif; font-weight: 800; color: #fff; font-size: 1rem; flex-shrink: 0; }
  .review-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
  .review-card-featured .review-name { color: #fff; }
  .review-meta { font-size: 0.75rem; color: var(--text-light); }
  .review-card-featured .review-meta { color: rgba(255,255,255,0.5); }
  .review-google-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.7); }
  .review-rating-big { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
  .rating-num { font-family: "Syne", sans-serif; font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 8rem; }
    .hero-visual { justify-content: center; margin-top: 3rem; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; }
    nav .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .symptom-card-stack { width: 100%; max-width: 340px; }
    .team-grid { grid-template-columns: 1fr; }
  }
  
  /* Optional: style for container */
.button-container {
  width: 100%;
}

/* Center only on mobile */
@media (max-width: 768px) {
  .button-container {
    display: flex;
    justify-content: center;
  }
}

/* FAQ Section */
.faq-section {
  padding: 7rem 5%;
  background: var(--cream);
}

/* FAQ Item Container */
.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  background-color: #fff; /* Optional: make FAQ items stand out */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

/* Hover effect for FAQ items */
.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

/* FAQ Question Title */
.faq-question {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
  cursor: pointer; /* optional: makes it clear it's clickable */
  position: relative;
  padding-right: 20px;
}

/* FAQ Answer */
.faq-answer {
  font-family: "Epilogue", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
  display: none; /* Hidden by default, toggled via JS for interactivity */
  margin-top: 0.5rem;
}

/* Accordion indicator (optional) */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform 0.3s;
}

/* When active, change indicator to minus or rotate */
.faq-item.active .faq-question::after {
  content: "−";
}

/* Lead Form */
@import url("https://assets.mlcdn.com/fonts.css?version=1777551");

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.g-recaptcha {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#mlb2-40716980.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}

#mlb2-40716980.ml-form-embedContainer h4,
#mlb2-40716980.ml-form-embedContainer p,
#mlb2-40716980.ml-form-embedContainer span,
#mlb2-40716980.ml-form-embedContainer button {
  text-transform: none !important;
  letter-spacing: normal !important;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: #122848;
  border-width: 0px;
  border-color: transparent;
  border-radius: 4px;
  border-style: solid;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  width: 400px;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: 400px;
  width: 100%;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-align-left { text-align: left; }
#mlb2-40716980.ml-form-embedContainer .ml-form-align-center { text-align: center; }
#mlb2-40716980.ml-form-embedContainer .ml-form-align-default {
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: center !important;
}
#mlb2-40716980.ml-form-embedContainer .ml-form-align-right { text-align: right; }

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: auto;
  margin: 0 auto !important;
  max-width: 100%;
  width: undefinedpx;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 20px 20px 0 20px;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  padding-bottom: 0;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  text-align: left;
  margin: 0 0 20px 0;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #ffffff;
  font-family: 'Playfair Display', sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px 0;
  text-align: left;
  word-break: break-word;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #ffffff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-align: left;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
  text-align: left !important;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
  margin-bottom: 5px;
  color: #333333;
  font-size: 14px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: inline-block;
  line-height: 20px;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0;
  width: 100%;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin: 0 0 20px 0;
  width: 100%;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  float: left;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0;
  width: 100%;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  line-height: 21px !important;
  margin: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  background-color: #ffffff !important;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  background-color: #0d9e8a !important;
  border-color: #0d9e8a;
  border-style: solid;
  border-width: 1px;
  border-radius: 25px;
  box-shadow: none;
  color: #ffffff !important;
  cursor: pointer;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 20px;
  margin: 0 !important;
  padding: 10px !important;
  width: 100%;
  height: auto;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover,
#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #333333 !important;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #0d9e8a !important;
  border: none !important;
  border-radius: 25px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: 'Lato', Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  height: auto;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#mlb2-40716980.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

.ml-subscribe-close {
  width: 30px;
  height: 30px;
  background: url('https://assets.mlcdn.com/ml/images/default/modal_close.png') no-repeat;
  background-size: 30px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -10px;
  position: absolute;
  top: 0;
  right: 0;
}

.ml-error input,
.ml-error textarea,
.ml-error select {
  border-color: red !important;
}

.ml-error .custom-checkbox-radio-list {
  border: 1px solid red !important;
  border-radius: 4px;
  padding: 10px;
}

.ml-error .label-description,
.ml-error .label-description p,
.ml-error .label-description p a,
.ml-error label:first-child {
  color: #ff0000 !important;
}

@media only screen and (max-width: 400px) {
  .ml-form-embedWrapper.embedDefault,
  .ml-form-embedWrapper.embedPopup {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm {
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow {
    height: auto !important;
    width: 100% !important;
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div {
    padding-right: 0px !important;
    padding-bottom: 10px;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0px !important;
  }

  .g-recaptcha {
    transform: scale(0.78);
    -webkit-transform: scale(0.78);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
