/* ═══════════════════════════════════════════
   GUIDING LIGHT — THERAPY & COUNSELING
   style.css  |  Mobile-First Optimized
═══════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --teal-50:  #f0fafa;
  --teal-100: #d5f0f2;
  --teal-200: #a8dee3;
  --teal-300: #7ec8cc;
  --teal-400: #4fadb5;
  --teal-500: #2e9ba5;
  --teal-600: #217f89;
  --teal-700: #1a646d;
  --navy:     #0d2d35;
  --navy-mid: #163844;
  --white:    #ffffff;
  --gray-50:  #f8fafb;
  --gray-100: #eef2f4;
  --gray-200: #dde5e9;
  --gray-400: #8fa4ac;
  --gray-600: #4a6470;
  --gray-800: #1e3a44;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(13,45,53,0.08);
  --shadow-md: 0 6px 24px rgba(13,45,53,0.12);
  --shadow-lg: 0 16px 48px rgba(13,45,53,0.15);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 64px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* prevents horizontal scroll without breaking position:fixed */
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  /* overflow-x: hidden REMOVED — it breaks position:fixed click targets in all browsers */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CONTAINER ─── */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ─── SECTION COMMON ─── */
.section { padding: 80px 0; }

section[id] {
  scroll-margin-top: var(--nav-h);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--teal-200);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-heading {
  font-family: var(--font-display);
font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.section-heading.left { text-align: left; }
.section-heading.light { color: var(--white); }

.section-heading em {
  font-style: italic;
  color: var(--teal-500);
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 44px;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(46,155,165,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,155,165,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-600);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid var(--teal-300);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: var(--teal-50);
  border-color: var(--teal-500);
}

.mt-2 { margin-top: 24px; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   HEADER / NAV
════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

/* Blur layer sits BELOW the nav panel so it never traps children */
#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition);
}

#header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h);
  position: relative;
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1002;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-mark.small {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
  border-radius: 9px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.62rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  z-index: 1002;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
} 
.founder-tabs{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-bottom:30px;
    margin-top: 30px;
}

.tab-btn{
    padding:12px 24px;
    border:2px solid var(--teal-300);
    border-radius:50px;
    background:white;
    color:var(--teal-600);
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.tab-btn.active,
.tab-btn:hover{
    background:var(--teal-500);
    color:white;
}


.founder-card{
    max-width:420px;
    margin:auto;
    background:white;
    padding:24px;
    border-radius:20px;
    box-shadow:var(--shadow-md);
    text-align:center;
    display:none;
}


.active-card{
    display:block;
}

.founder-card img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:20px;
}

.founder-card h3{
    font-family:var(--font-display);
    color:var(--navy);
    margin-bottom:8px;
}

.role{
    color:var(--teal-600);
    font-weight:600;
    margin-bottom:15px;
}
.hamburger:hover { background: var(--teal-50); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
}

.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 11px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-600);
  background: var(--teal-50);
}

.nav-links .nav-cta {
  background: var(--teal-500);
  color: white !important;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  margin-left: 6px;
  box-shadow: 0 3px 12px rgba(46,155,165,0.3);
}

.nav-links .nav-cta:hover {
  background: var(--teal-600) !important;
  box-shadow: 0 5px 18px rgba(46,155,165,0.4);
  transform: translateY(-1px);
}

/* Nav overlay (mobile backdrop) */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998; /* Just below the header links */
  opacity: 0;
  pointer-events: none; /* Allows clicks to pass through when hidden */
  transition: opacity 0.3s ease;
}

/* When active, block interactions with the background and become visible */
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto; 
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 60svh;
  background: linear-gradient(145deg, #f0fafa 0%, #e0f5f7 40%, #ccedf1 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}


.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  pointer-events: none;
}

.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--teal-300), transparent 70%);
  top: -120px; right: -120px;
  animation: floatCircle 8s ease-in-out infinite;
}

.c2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--teal-200), transparent 70%);
  bottom: 80px; left: 3%;
  animation: floatCircle 10s ease-in-out infinite reverse;
}

.c3 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--teal-400), transparent 70%);
  top: 40%; left: 40%;
  animation: floatCircle 6s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(16px, -16px) scale(1.05); }
}

.hero-content {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
  animation: fadeInLeft 0.8s ease both;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-600);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}



.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-heading em {
  color: var(--teal-500);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.stat:first-child { padding-left: 0; }

.stat h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.hero-visual {
  flex-shrink: 0;
  animation: fadeInRight 0.8s 0.2s ease both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-image-wrap {
  position: relative;
  width: 380px;
}

.hero-image-bg {
  position: absolute;
  inset: 16px;
  background: linear-gradient(135deg, var(--teal-200), var(--teal-300));
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.hero-image-placeholder {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin: 0 8px;
}

.hero-image-placeholder svg { width: 180px; margin: 0 auto 10px; }
.hero-image-placeholder p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: badgeFloat 4s ease-in-out infinite;
  white-space: nowrap;
}

.badge-1 { top: 20px; left: -16px; animation-delay: 0s; }
.badge-2 { bottom: 36px; right: -16px; animation-delay: 2s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
}

.hero-wave svg { display: block; width: 100%; height: 70px; pointer-events: none; }

/* ─── ABOUT / BENEFITS ─── */
.about-section { background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
  background: white;
}

.benefit-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.91rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-section {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap { overflow: hidden; }

.service-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img svg { width: 72px; height: 72px; opacity: 0.8; }

.service-img-1 { background: linear-gradient(135deg, #4fadb5, #2e9ba5); }
.service-img-2 { background: linear-gradient(135deg, #3b8ea5, #2171a8); }
.service-img-3 { background: linear-gradient(135deg, #6abbc4, #4fadb5); }
.service-img-4 { background: linear-gradient(135deg, #e07b8a, #c45970); }
.service-img-5 { background: linear-gradient(135deg, #5aacaf, #2e9ba5); }

.service-body { padding: 22px 20px 26px; }

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-500);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover { color: var(--teal-700); gap: 8px; }

/* ─── WHY US ─── */
.why-section { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.why-text-col p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: 14px;
}

.why-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: var(--transition);
}

.why-card:hover {
  background: white;
  border-color: var(--teal-200);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── THERAPIST ─── */
.therapist-section {
  background: linear-gradient(180deg, var(--teal-50) 0%, #e8f8f9 100%);
  text-align: center;
}

.therapist-section .section-heading { margin-bottom: 40px; }

.therapist-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  text-align: left;
}

.therapist-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.therapist-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.therapist-photo svg { width: 100%; display: block; }

.therapist-photo-decor {
  position: absolute;
  top: 18px; right: -18px;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-200), var(--teal-300));
  z-index: 0;
  pointer-events: none;
}

.therapist-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.therapist-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--teal-600);
  margin-bottom: 18px;
  display: block;
}

.therapist-bio {
  font-size: 0.96rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.therapist-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.credential {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.cred-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

.credential strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.credential span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonials-track-wrap { position: relative; }

.testimonials-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 15px);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  background: white;
  border-color: var(--teal-200);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 1.3rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  margin-left: 35px;
}

.testimonial-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--teal-200);
  line-height: 0;
  vertical-align: -1.3rem;
  margin-right: 3px;
}

.testimonial-text::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--teal-200);
  line-height: 0;
  vertical-align: -1.3rem;
  margin-right: 3px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, #4fadb5, #2e9ba5); }
.av2 { background: linear-gradient(135deg, #3b8ea5, #2171a8); }
.av3 { background: linear-gradient(135deg, #e07b8a, #c45970); }
.av4 { background: linear-gradient(135deg, #6abbc4, #4fadb5); }
.av5 { background: linear-gradient(135deg, #5aacaf, #217f89); }

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.76rem;
  color: var(--gray-400);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.tctrl {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--teal-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal-600);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.tctrl:hover, .tctrl:focus-visible {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: white;
}

.tctrl:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.tctrl-dots { display: flex; gap: 8px; align-items: center; }

.tctrl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.tctrl-dot.active {
  background: var(--teal-500);
  width: 22px;
  border-radius: 4px;
}

/* ─── FAQ ─── */
.faq-section { background: var(--gray-50); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.faq-q:hover { color: var(--teal-600); }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal-500);
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--teal-500);
  color: white;
  border-color: var(--teal-500);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-a.open {
  max-height: 260px;
  padding: 0 22px 20px;
}

.faq-a p {
  font-size: 0.91rem;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ─── BOOKING ─── */
.booking-section {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #1a4d5a 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,179,190,0.15), transparent 70%);
  top: -200px; right: -80px;
  pointer-events: none;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.booking-info .section-heading { text-align: left; margin-bottom: 14px; }
.booking-info p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-perks li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.booking-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { margin-bottom: 16px; }

label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(46,155,165,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238fa4ac' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea { resize: vertical; min-height: 100px; }

input::placeholder, textarea::placeholder { color: var(--gray-400); }

/* Fix iOS date input */
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color: var(--gray-800);
}

.full-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.form-success span { font-size: 2rem; display: block; margin-bottom: 10px; }
.form-success p { color: #166534; font-size: 0.93rem; }

.hidden { display: none !important; }

/* ─── CONTACT ─── */
.contact-section { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: start;
  margin-top: 44px;
}

.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.contact-item p, .contact-item a {
  font-size: 0.93rem;
  color: var(--gray-800);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--teal-600); }

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--teal-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-100);
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(255,255,255,0.28) 38px, rgba(255,255,255,0.28) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(255,255,255,0.28) 38px, rgba(255,255,255,0.28) 39px);
}

.map-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}

.map-pin { font-size: 2.2rem; margin-bottom: 8px; }
.map-inner p { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
.map-inner span { font-size: 0.8rem; color: var(--gray-400); display: block; margin-bottom: 14px; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-500);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  transition: var(--transition);
}

.map-link:hover { background: var(--teal-600); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  position: relative;
}

.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 56px 0 44px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo-name { color: white; font-size: 1.05rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.social-icons { display: flex; gap: 10px; }

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--teal-400);
  color: var(--teal-300);
  background: rgba(99,179,190,0.1);
}

.social-icon svg { width: 15px; height: 15px; }


.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-col a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links-col a:hover { color: var(--teal-300); padding-left: 3px; }

.footer-contact-list li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  padding: 3px 0;
  line-height: 1.6;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-contact-list a:hover { color: var(--teal-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--teal-500);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(46,155,165,0.4);
  z-index: 997;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46,155,165,0.5);
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-image-wrap { width: 320px; }
  .therapist-inner { grid-template-columns: 260px 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .why-inner { gap: 36px; }
  .booking-inner { gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════
   RESPONSIVE — PHABLET (≤ 900px)
════════════════════════════════════ */
@media (max-width: 900px) {
  .section { padding: 64px 0; }

  /* Hero stacks */
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 0 72px;
    gap: 32px;
  }

  .hero-text { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }

  .hero-stats {
    justify-content: center;
    gap: 0;
  }

  .hero-visual { width: 100%; display: flex; justify-content: center; }
  .hero-image-wrap { width: 280px; }

  /* Why Us */
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-text-col { text-align: center; }
  .why-text-col .section-heading { text-align: center; }
  .why-text-col .btn-primary { display: inline-flex; }

  /* Therapist */
  .therapist-inner { grid-template-columns: 1fr; text-align: center; }
  .therapist-photo-wrap { max-width: 240px; margin: 0 auto; }
  .therapist-info { text-align: left; }
  .therapist-credentials { grid-template-columns: 1fr; }

  /* Booking */
  .booking-inner { grid-template-columns: 1fr; }
  .booking-info .section-heading { text-align: center; }
  .booking-info p { text-align: center; }
  .booking-perks { align-items: center; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { min-width: calc(50% - 11px); }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* ── Mobile Nav ── */
  .hamburger { display: flex; }

  .nav-links {
    /* Full-screen drop-down panel */
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 32px;
    gap: 4px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Hidden: invisible + not interactive, no transform (avoids stacking issues) */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1002;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  .nav-overlay { display: block; pointer-events: none; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--teal-600);
    background: var(--teal-50);
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    border-radius: 12px;
    background: var(--teal-500);
    color: white !important;
    border-bottom: none !important;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 700;
  }

  .nav-links .nav-cta:hover { background: var(--teal-600) !important; }

  /* ── Hero mobile tweaks ── */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .stat-divider { display: none; }

  .stat {
    padding: 10px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    border: 1px solid var(--teal-100);
    align-items: center;
    text-align: center;
  }

  .stat h3 { font-size: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .booking-form-card { padding: 24px 18px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Testimonials — 1 per view on mobile */
  .testimonial-card { min-width: calc(100% - 0px); }

  /* Floating CTA */
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 11px 20px;
    font-size: 0.82rem;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .section-heading { font-size: 1.6rem; }
  .hero-image-wrap { width: 240px; }
  .hero-badge { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .section { padding: 52px 0; }

  .booking-form-card { padding: 20px 14px; }

  .faq-q { padding: 16px 18px; font-size: 0.9rem; }
  .faq-a { padding: 0 18px; }
  .faq-a.open { padding: 0 18px 16px; }

  .why-card { flex-direction: column; gap: 10px; }

  .therapist-credentials { grid-template-columns: 1fr; }

  .contact-card { padding: 24px 20px; }

  .footer-bottom p { font-size: 0.74rem; }
}

/* ════════════════════════════════════
   PRINT / accessibility
════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}