/* ============================================
   Dr. Fatih Yildiz — Bosley-Inspired Design
   Layout: Split sections, photo-heavy, navy/white
   ============================================ */

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

:root {
  --navy: #1b3663;
  --navy-deep: #12254a;
  --navy-dark: #0d1b33;
  --blue: #0a73f0;
  --blue-hover: #0860cc;
  --gold: #c9a96e;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f3f3f3;
  --gray-200: #e2e5ea;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #32373c;
  --red: #c0392b;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-cta {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-cta:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}
.btn-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* --- Promo Bar (red top strip like Bosley) --- */
.promo-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
  text-align: center;
}
.promo-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.promo-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.logo-tag {
  font-size: 0.6rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}
.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--white); }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
  flex-shrink: 0;
}
.header-phones {
  position: relative;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}
.header-phone:hover { color: var(--white); }
.phone-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 1000;
  overflow: hidden;
}
.phone-dropdown.open { display: block; }
.phone-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.phone-option:hover {
  background: #f5f5f5;
}
.header .btn-cta {
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  background: var(--gold);
  border-color: var(--gold);
}
.header .btn-cta:hover {
  background: #b8943e;
  border-color: #b8943e;
}
/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); }
.lang-flag { font-size: 2.0rem; line-height: 1; }
.lang-btn svg { color: rgba(255,255,255,0.6); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1001;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}
.lang-option:hover { background: rgba(255,255,255,0.08); }
.lang-option.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.lang-option span { font-size: 1.2rem; }

/* RTL support */
[dir="rtl"] { direction: rtl; }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .split-content { text-align: right; }
[dir="rtl"] .industry-content { text-align: right; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* --- Hero (Bosley: text left, patient photo + B/A cards right) --- */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 600px;
  align-items: center;
}
.hero-text {
  padding: 80px 0;
  padding-right: 48px;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-text .btn-cta {
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  background: var(--gold);
  color: var(--white);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.hero-text .btn-cta:hover {
  background: #b8943e;
  box-shadow: 0 6px 28px rgba(201,169,110,0.55);
  transform: translateY(-2px);
}

/* Hero showcase: positioned container for all elements */
.hero-showcase {
  position: relative;
  padding: 32px 0;
  min-height: 540px;
}

/* Main photo — takes most of the space */
.hero-main-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  width: calc(100% - 80px); /* leave space for badge/arrows on right */
}
.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.3s ease;
}

/* Stars badge — top-left of main photo (like Bosley's review badge) */
.hero-stars-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 3;
}
.stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.stars-count { font-size: 0.7rem; font-weight: 800; color: var(--navy); margin-top: 4px; }
.stars-sub { font-size: 0.5rem; color: var(--gray-600); }

/* Patient name label — bottom-left of main photo */
.hero-patient-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 48px 20px 16px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  width: 60%;
}
.hero-patient-label strong { color: var(--white); font-size: 0.85rem; }
.hero-patient-label span { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
.hero-disclaimer { font-size: 0.6rem !important; color: rgba(255,255,255,0.5) !important; font-style: italic; }

/* Anniversary badge — positioned top-right, outside main photo (like Bosley's 50yr seal) */
.hero-anniversary {
  position: absolute;
  top: 40px;
  right: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,29,51,0.85);
  z-index: 4;
}
.anniversary-inner { text-align: center; line-height: 1.15; }
.ann-since { display: block; font-size: 0.5rem; color: var(--gold); letter-spacing: 0.15em; font-weight: 600; }
.ann-year { display: block; font-size: 1.3rem; color: var(--white); font-weight: 800; font-family: var(--font-serif); }
.ann-name { display: block; font-size: 0.5rem; color: var(--white); letter-spacing: 0.1em; font-weight: 700; }
.ann-text { display: block; font-size: 0.4rem; color: var(--gold); letter-spacing: 0.12em; }

/* Nav arrows — right side, vertically centered (like Bosley's < >) */
.hero-nav {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-nav-btn:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Before/After overlap cards — bottom-right, overlapping the main photo (KEY Bosley pattern) */
.hero-ba-overlap {
  position: absolute;
  bottom: 32px;
  right: 0;
  z-index: 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 3px solid var(--white);
  background: var(--white);
}
.ba-overlap-card {
  position: relative;
}
.ba-overlap-img {
  width: 280px;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}
.ba-overlap-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
}
.ba-label-before, .ba-label-after {
  flex: 1;
  padding: 6px 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.ba-label-before { background: rgba(0,0,0,0.6); }
.ba-label-after { background: rgba(10,115,240,0.8); }
.hero-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px 0 24px;
}
.indicator {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.indicator.active { background: var(--red); }

/* --- Industry Section (Bosley exact: patient photo + B/A overlap left, text right) --- */
.industry-section {
  background: var(--white);
  padding: 80px 0 120px;
}
.industry-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}
/* Left photo area — relative container for overlap */
.industry-photo-area {
  position: relative;
  padding-bottom: 40px; /* space for B/A overlap below */
}
.industry-main-photo {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.industry-main-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.industry-patient-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.65);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
}
.industry-patient-label strong {
  color: var(--white);
  font-size: 0.9rem;
}
.industry-patient-label span {
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
}
/* B/A overlap — bottom-center/right, half inside half outside main photo (like Bosley) */
.industry-ba-overlap {
  position: absolute;
  bottom: 0;
  right: -40px;
  z-index: 3;
}
.industry-ba-card {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.industry-ba-side {
  position: relative;
  display: flex;
}
.industry-ba-img {
  width: 320px;
  height: auto;
  display: block;
}
.industry-ba-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
}
.ind-ba-before, .ind-ba-after {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.ind-ba-before { background: rgba(0,0,0,0.6); }
.ind-ba-after { background: rgba(10,115,240,0.8); }
/* Right text content — vertically centered against the photo */
.industry-content {
  padding-right: 24px;
  padding-top: 80px;
}
.industry-icon {
  margin-bottom: 28px;
}
.industry-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 28px;
}
.industry-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

/* --- Split Sections (Bosley's primary layout pattern) --- */
.split-section {
  background: var(--white);
}
.split-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-image { position: relative; overflow: hidden; }
.split-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.split-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.split-reversed .split-inner {
  direction: rtl;
}
.split-reversed .split-inner > * {
  direction: ltr;
}
.split-light { background: var(--gray-50); }

/* --- Clinics Section (3 locations) --- */
.clinics-section {
  background: var(--navy);
  padding: 100px 0;
}
.clinics-header {
  text-align: center;
  margin-bottom: 64px;
}
.clinics-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.clinics-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.clinics-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.clinic-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.clinic-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.clinic-card-featured {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.clinic-card-featured:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
}
/* Landmark visual */
.clinic-visual {
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.skyline-img {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  object-position: bottom;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.3s;
}
.skyline-gold {
  filter: brightness(0) invert(1) sepia(1) hue-rotate(10deg) saturate(0.6);
  opacity: 0.5;
}
.clinic-card:hover .skyline-img { opacity: 0.55; }
.clinic-card-featured:hover .skyline-gold { opacity: 0.7; }
/* Flag */
.clinic-flag {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
/* City name */
.clinic-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.clinic-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.clinic-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}
.clinic-badge {
  margin-bottom: 20px;
}
.clinic-badge span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.clinic-card .btn-outline-dark {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.clinic-card .btn-outline-dark:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* --- Three Pillars (dark background, icons, photo right) --- */
.pillars {
  background: var(--navy-deep);
}
.pillars-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.pillars-content {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.pillar-icon { margin-bottom: 12px; }
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 12px;
}
.pillar .btn { margin-top: 4px; }
.pillars-image {
  position: relative;
  overflow: hidden;
}
.pillars-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.guarantee-seal {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-inner {
  text-align: center;
  line-height: 1.2;
}
.seal-top { display: block; font-size: 0.5rem; color: var(--gold); letter-spacing: 0.1em; font-weight: 600; }
.seal-main { display: block; font-size: 0.75rem; color: var(--white); font-weight: 700; letter-spacing: 0.08em; }
.seal-bottom { display: block; font-size: 0.5rem; color: var(--gold); letter-spacing: 0.1em; }

/* --- Doctors / Clinic section (split) --- */
.doctors {
  padding: 100px 0;
  background: var(--white);
}
.doctors-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.doctors-photo-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.doctors-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.doctors-content > p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}
.doctor-bio {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.doctor-bio:last-of-type { border-bottom: none; }
.doctor-bio h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.doctor-bio p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--gray-50);
  padding: 80px 0;
}
.testimonial-slide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-photo-img {
  width: 160px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}
.quote-mark { margin-bottom: 16px; display: block; }
.testimonial-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.tnav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.2s;
}
.tnav-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* --- Booking Section (Cal.com inline) --- */
.booking-section {
  background: var(--gray-50);
  padding: 80px 0;
}
.booking-header {
  text-align: center;
  margin-bottom: 40px;
}
.booking-header h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.booking-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}
.booking-embed {
  max-width: 1000px;
  margin: 0 auto;
  min-height: 500px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  padding: 16px;
}

/* --- Patient Guide --- */
.patient-guide {
  background: var(--gray-50);
  padding: 100px 0;
}
.patient-guide h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 64px;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.guide-step {
  text-align: center;
  padding: 32px 20px;
}
.guide-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0.3;
}
.guide-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.guide-step p {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Media Bar --- */
.media-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.media-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.media-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-400);
  font-style: italic;
}

/* --- Lead Form (Bosley-style dark background form) --- */
.lead-form {
  background: var(--navy);
  padding: 80px 0;
}
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead-form-left h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.lead-form-left > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.lead-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.lead-form-right form {
  background: rgba(255,255,255,0.08);
  padding: 32px;
  border-radius: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  margin-bottom: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group select option {
  background: var(--navy);
  color: var(--white);
}
.form-group textarea { resize: vertical; }
.form-gender {
  margin-bottom: 16px;
}
.form-gender label:first-child {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.gender-options {
  display: flex;
  gap: 24px;
}
.gender-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.88rem;
  cursor: pointer;
}
.gender-opt input { accent-color: var(--blue); }
.lead-form .btn-cta {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* --- Newsletter --- */
.newsletter {
  background: var(--navy-deep);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.newsletter h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  flex-shrink: 0;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.newsletter-form input {
  padding: 10px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  outline: none;
  width: 180px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-brand {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo span {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  text-decoration: underline;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* --- Patient Stories Carousel (Bosley-style peek) --- */
.stories {
  padding: 80px 0 60px;
  background: var(--gray-50, #f8f8f8);
  overflow: hidden;
}
.stories-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.3;
}
.stories-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.stories-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.story-slide {
  min-width: 70%;
  padding: 0 16px;
  box-sizing: border-box;
  opacity: 0.4;
  transform: scale(0.92);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.story-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.story-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
/* Text-only review cards (Google Maps) */
.story-card-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  min-height: 280px;
  justify-content: space-between;
}
.story-stars {
  color: #fbbc04;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.story-card-text blockquote {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
  font-style: italic;
}
.story-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.story-reviewer .story-name {
  position: static;
  background: none;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
}
.story-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5f6368;
  background: #f1f3f4;
  padding: 3px 10px;
  border-radius: 12px;
}
.stories-source {
  text-align: center;
  font-size: 0.85rem;
  color: #5f6368;
  margin-top: -8px;
  margin-bottom: 32px;
}
/* Legacy photo-based cards (hidden) */
.story-photo-area { display: none; }
.story-quote-area {
  flex: 1;
  min-width: 0;
}
.story-quote-icon {
  display: block;
  margin-bottom: 16px;
}
.story-quote-area blockquote {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 400;
}
.story-video-link { display: none;
}

/* Arrows — sit between peek and center */
.stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--gray-200, #e0e0e0);
  background: var(--white);
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.stories-arrow:hover {
  background: var(--gray-50, #f8f8f8);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.stories-arrow-prev { left: calc(15% + 4px); }
.stories-arrow-next { right: calc(15% + 4px); }

/* Indicators */
.stories-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.stories-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-200, #ddd);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.stories-dot.active {
  background: #e74c3c;
  width: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .story-slide {
    min-width: 90%;
  }
  .story-card {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .story-photo-area {
    width: 100%;
    height: 280px;
  }
  .stories-arrow { display: none; }
  .stories-title { font-size: 1.5rem; }
  .stories-arrow-prev { left: 4px; }
  .stories-arrow-next { right: 4px; }
}

/* --- WhatsApp Floating Button with chooser --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4), 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 4px 8px rgba(0,0,0,0.15);
  animation: none;
}
.wa-chooser {
  display: none;
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 200px;
  overflow: hidden;
}
.wa-chooser.open { display: block; }
.wa-chooser-title {
  padding: 14px 16px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  margin: 0;
}
.wa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.wa-option:hover {
  background: #f0faf4;
}

/* Pulse animation */
@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0);
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-showcase { display: none; }
  .hero-text { padding: 80px 0 48px; text-align: center; padding-right: 0; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-indicators { display: none; }
  .industry-grid { grid-template-columns: 1fr; gap: 48px; }
  .industry-ba-overlap { right: 0; bottom: -10px; }
  .industry-ba-img { width: 200px; }
  .split-inner { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; position: relative; }
  .split-content { padding: 48px 24px; }
  .split-reversed .split-inner { direction: ltr; }
  .pillars-inner { grid-template-columns: 1fr; }
  .pillars-image { min-height: 300px; position: relative; }
  .clinics-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .clinics-connector { display: none; }
  .doctors-split { grid-template-columns: 1fr; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 20px 24px;
    gap: 12px;
    z-index: 100;
  }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .promo-bar { font-size: 0.7rem; }
  .carousel-track { gap: 8px; }
  .carousel-before, .carousel-after { width: 56px; height: 64px; }
  .testimonial-slide { grid-template-columns: 1fr; }
  .testimonial-photo-placeholder { display: none; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .guide-steps { grid-template-columns: 1fr; }
}
