/* ═══════════════════════════════════════════════════════════════
   DR. OMAR RIZVI — LUXURY ORTHODONTIST THEME
   Admagnate Technologies | Version 1.0.0
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --black:        #060610;
  --navy:         #0C0E1E;
  --navy-light:   #131629;
  --gold:         #C4965A;
  --gold-light:   #DEB97A;
  --gold-pale:    #E8D5A3;
  --gold-dim:     rgba(196, 150, 90, 0.15);
  --gold-border:  rgba(196, 150, 90, 0.25);
  --white:        #FFFFFF;
  --ivory:        #F8F6F2;
  --ivory-dark:   #EFECE5;
  --text-dark:    #1A1A2A;
  --text-mid:     #4A4A5A;
  --text-light:   #7A7A8A;
  --border:       rgba(0,0,0,0.08);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 80px rgba(0,0,0,0.14);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', -apple-system, sans-serif;
  --nav-h:        80px;
  --container:    1280px;
  --container-sm: 900px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color 0.25s; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container-sm { max-width: var(--container-sm); }
.text-center  { text-align: center; }

/* ─── TYPOGRAPHY SCALE ───────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--gold-pale); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.75;
}
.section-subtitle.light { color: rgba(255,255,255,0.72); }

.section-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 28px;
}
.text-center .section-rule { margin: 0 auto 28px; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,150,90,0.35);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.btn-whatsapp-large:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}

.btn-large { padding: 18px 44px; font-size: 0.95rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(6,6,16,0.96);
  border-bottom: 1px solid rgba(196,150,90,0.12);
  backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header[data-scrolled="true"] {
  background: rgba(6,6,16,0.99);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom-color: rgba(196,150,90,0.2);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.logo-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold-pale);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav { margin-left: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  flex-shrink: 0;
}
.header-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  position: relative;
  z-index: 9999;
}
.toggle-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-toggle.active .toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active .toggle-bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #060610;
  z-index: 99999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
}
.mobile-nav-overlay.open {
  display: flex;
  animation: mobileMenuIn 0.3s ease forwards;
}
@keyframes mobileMenuIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-nav-menu {
  text-align: center;
  list-style: none;
  width: 100%;
  max-width: 380px;
}
.mobile-nav-menu li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(196,150,90,0.12);
}
.mobile-nav-menu li:first-child { border-top: 1px solid rgba(196,150,90,0.12); }
.mobile-nav-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 20px 16px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a:active { color: var(--gold); background: rgba(196,150,90,0.06); }
.mobile-nav-menu .mobile-cta {
  border: none !important;
  margin-top: 36px;
}
.mobile-nav-menu .mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ─── HERO SECTION — SPLIT LAYOUT ───────────────────────────── */
.hero-section {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* LEFT PANEL — dark navy with text */
.hero-left {
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 60px;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-left-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* RIGHT PANEL — full doctor image */
.hero-right {
  position: relative;
  background: var(--navy-light);
  overflow: hidden;
}
.hero-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(196,150,90,0.1);
}
.hip-inner {
  text-align: center;
  color: rgba(255,255,255,0.35);
  padding: 40px;
  font-size: 0.82rem;
  line-height: 1.8;
}
.hip-inner strong { color: var(--gold); display: block; margin-top: 12px; }

/* Gold decorative frame on doctor image */
.hero-img-frame {
  position: absolute;
  bottom: 40px;
  right: 28px;
  width: 55%;
  height: 55%;
  border: 1.5px solid rgba(196,150,90,0.35);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}

/* Floating credential badge */
.hero-floating-badge {
  position: absolute;
  bottom: 44px;
  left: -24px;
  z-index: 10;
  background: var(--gold);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  max-width: 240px;
}
.hfb-title {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
}
.hfb-sub {
  display: block;
  font-size: 0.68rem;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 2px;
}

/* Hero mini stats bar at bottom of left panel */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(196,150,90,0.15);
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}
.hero-mini-stat { flex: 1; text-align: center; }
.hms-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hms-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hms-sep {
  width: 1px;
  height: 36px;
  background: rgba(196,150,90,0.2);
  flex-shrink: 0;
}

/* Hero text elements */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}
.eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.35s forwards;
}
.hero-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-pale);
  display: block;
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}
.credential-badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--gold-pale);
  background: rgba(196,150,90,0.1);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: 2px;
}
.credential-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.82;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.65s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 24%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-track {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gold);
  animation: scrollDown 2.5s infinite ease-in-out;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(100%); }
  100% { transform: translateY(200%); }
}

/* ─── MOTTO SECTION ─────────────────────────────────────────── */
.motto-section {
  padding: 80px 0;
  background: var(--ivory);
}
.motto-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}
.motto-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.02em;
}
.motto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.motto-sub {
  font-size: 1rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ─── STATS SECTION ─────────────────────────────────────────── */
.stats-section {
  background: var(--navy);
  padding: 70px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 400;
}
.stat-acronym {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(196,150,90,0.2);
  flex-shrink: 0;
}

/* ─── ABOUT PREVIEW ─────────────────────────────────────────── */
.about-preview-section { padding: 110px 0; background: var(--white); }

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image {
  position: relative;
}
.about-preview-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
}
.image-placeholder {
  width: 100%;
  height: 580px;
  background: var(--ivory-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gold-border);
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
}
.image-placeholder.tall { height: 680px; }
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

.about-preview-highlights {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.highlight-item svg { flex-shrink: 0; color: var(--gold); margin-top: 4px; }

/* ─── TREATMENTS PREVIEW ─────────────────────────────────────── */
.treatments-preview-section { padding: 110px 0; background: var(--ivory); }

.section-header { margin-bottom: 64px; }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  border-top: 3px solid transparent;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}
.treatment-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.treatment-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.treatment-icon {
  color: var(--gold);
  margin-bottom: 18px;
}
.treatment-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.treatment-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.treatment-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}
.treatment-link:hover { text-decoration: underline; }

/* ─── WHY SECTION ────────────────────────────────────────────── */
.why-section {
  padding: 110px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why-bg-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,150,90,0.12);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all 0.35s;
}
.why-card:hover {
  background: rgba(196,150,90,0.06);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.why-icon {
  color: var(--gold);
  margin-bottom: 22px;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  padding: 110px 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,16,0.88), rgba(6,6,16,0.94));
  z-index: 1;
}
.testimonials-section .container { position: relative; z-index: 2; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 40px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,150,90,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(196,150,90,0.07);
  border-color: var(--gold-border);
}
.testimonial-quote-mark {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(196,150,90,0.15);
  padding-top: 16px;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-pale);
}
.author-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.testimonials-note p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ─── CERTIFICATIONS PREVIEW ─────────────────────────────────── */
.certs-preview-section { padding: 110px 0; background: var(--white); }

.certs-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.cert-preview-card {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.cert-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}
.cert-preview-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}
.cert-preview-card.featured h3,
.cert-preview-card.featured .cert-issuer { color: var(--white); }
.cert-preview-card.featured .cert-desc { color: rgba(255,255,255,0.6); }
.cert-preview-card.featured .cert-card-icon { color: var(--gold); }
.cert-card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.cert-card-icon { color: var(--gold); margin-bottom: 20px; }
.cert-preview-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cert-issuer {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cert-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }

.certs-preview-count {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

/* ─── FINAL CTA SECTION ──────────────────────────────────────── */
.final-cta-section {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,150,90,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
}
.cta-headline em { font-style: italic; color: var(--gold); font-weight: 400; }
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.85;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-hospital-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 24px;
}

/* ─── PAGE HERO (Inner Pages) ────────────────────────────────── */
.page-hero-section {
  position: relative;
  background: var(--navy);
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,150,90,0.08) 0%, transparent 60%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,16,0.7);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 60px);
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.about-story-section { padding: 110px 0; background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-story-image { position: relative; }
.about-story-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
}
.floating-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 22px;
}
.about-story-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-pullquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 36px 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.65;
}

/* ─── EDUCATION TIMELINE ─────────────────────────────────────── */
.education-section { padding: 110px 0; background: var(--ivory); }
.timeline {
  position: relative;
  max-width: 880px;
  margin: 64px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(196,150,90,0.15);
}
.timeline-marker { padding-top: 4px; }
.timeline-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-align: right;
}
.timeline-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-institution {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.timeline-detail {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.78;
}

/* ─── EXPERTISE ──────────────────────────────────────────────── */
.expertise-section { padding: 110px 0; background: var(--white); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.expertise-item:hover {
  border-color: var(--gold-border);
  background: var(--ivory);
}
.expertise-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.expertise-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.expertise-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── PUBLICATIONS ───────────────────────────────────────────── */
.publications-section { padding: 110px 0; background: var(--ivory); }
.publications-list { margin-top: 56px; display: flex; flex-direction: column; gap: 32px; }
.publication-item {
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.publication-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.pub-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.pub-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pub-citation {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.pub-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

.about-cta-section { padding: 110px 0; background: var(--navy); }
.about-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.about-cta-inner p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1rem; }

/* ─── TREATMENTS PAGE ────────────────────────────────────────── */
.treatments-intro-section { padding: 70px 0; background: var(--ivory); }
.treatments-intro-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 780px;
  margin: 0 auto 44px;
  line-height: 1.85;
}
.intro-stats-row { display: flex; justify-content: center; align-items: center; gap: 0; }
.intro-stat { text-align: center; padding: 0 40px; }
.intro-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.intro-stat-label { font-size: 0.78rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.intro-stat-sep { width: 1px; height: 48px; background: var(--border); }

/* Quick nav pills */
.treatment-nav-section { background: var(--white); padding: 24px 0; position: sticky; top: var(--nav-h); z-index: 50; border-bottom: 1px solid var(--border); }
.treatment-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.treatment-nav-pills a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.treatment-nav-pills a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Treatment Blocks — clean consistent vertical cards */
.treatments-list-section { padding: 70px 0 40px; background: var(--white); }

.treatment-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  scroll-margin-top: 140px;
}
.treatment-block:last-child { border-bottom: none; }

.treatment-block-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.treatment-block-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.tb-number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.tb-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.tb-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.tb-desc { font-size: 0.94rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 24px; }
.tb-desc strong { color: var(--gold); }

.tb-best {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 22px;
}
.tb-best-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.tb-best p { font-size: 0.88rem; color: var(--text-dark); line-height: 1.6; }

.tb-benefits-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.tb-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.tb-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-mid);
}
.tb-benefits li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.treatments-cta-section { padding: 90px 0; }

/* ─── CERTIFICATIONS PAGE ────────────────────────────────────── */
.certs-hero { background: linear-gradient(135deg, var(--black) 0%, var(--navy-light) 100%); }

.certs-stats-banner { padding: 60px 0; background: var(--ivory); border-bottom: 1px solid var(--border); }
.certs-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.cert-stat { text-align: center; padding: 0 40px; }
.cert-stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.cert-stat-plus { font-size: 1.5rem; color: var(--gold); font-weight: 400; }
.cert-stat p { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-top: 8px; }
.cert-stat-sep { width: 1px; height: 48px; background: var(--border); }

.featured-cert-section { padding: 80px 0; background: var(--white); }
.featured-cert-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid rgba(196,150,90,0.2);
  box-shadow: var(--shadow-lg);
}
.featured-cert-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid rgba(196,150,90,0.15);
  padding-right: 60px;
}
.featured-cert-label {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
}
.featured-cert-icon { color: var(--gold); }
.featured-cert-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.featured-cert-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.featured-cert-body {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 24px;
}
.featured-cert-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.certs-grid-section { padding: 80px 0 110px; background: var(--ivory); }
.cert-category { margin-bottom: 72px; }
.cert-category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-border);
}
.cert-cat-icon { font-size: 1.3rem; }

.certs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}
.cert-card.highlight { border-color: var(--gold); }
.cert-card-image-slot {
  background: var(--ivory-dark);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  padding: 20px;
  cursor: pointer;
  transition: background 0.25s;
}
.cert-card-image-slot:hover { background: var(--ivory); }
.cert-card-image-slot.add-slot { border: 2px dashed var(--gold-border); background: transparent; }
.cert-card.add-more { background: var(--ivory); border: 2px dashed var(--gold-border); }
.cert-card img { width: 100%; height: 180px; object-fit: cover; }
.cert-card-body { padding: 24px; }
.cert-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.cert-card-issuer {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cert-card-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

.conferences-list { display: flex; flex-direction: column; gap: 16px; }
.conference-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.conference-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.conference-details h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.conference-details p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

.cde-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.cde-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.cde-item svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.certs-upload-note-section { padding: 40px 0; background: var(--white); }
.upload-note-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(196,150,90,0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: var(--text-mid);
}
.upload-note-box svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.upload-note-box h4 { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.upload-note-box p { font-size: 0.85rem; line-height: 1.65; }
.cert-image-slot {
  background: var(--navy-light);
  border: 1px dashed rgba(196,150,90,0.25);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-hero { min-height: 45vh; }
.contact-whatsapp-section { padding: 80px 0; background: var(--white); }

.whatsapp-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  border: 1px solid rgba(196,150,90,0.2);
  box-shadow: var(--shadow-lg);
}
.wa-card-left { display: flex; align-items: flex-start; gap: 28px; }
.wa-card-icon { color: #25D366; flex-shrink: 0; }
.wa-card-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.wa-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.wa-card-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 14px; }
.wa-card-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.wa-card-right { text-align: center; }
.wa-card-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 12px; }

.contact-info-section { padding: 80px 0; background: var(--ivory); }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-border); }
.contact-info-icon { color: var(--gold); margin: 0 auto 20px; }
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.contact-info-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.contact-phone-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-note { font-size: 0.78rem; color: var(--text-light); font-style: italic; }

.contact-form-section { padding: 80px 0 110px; background: var(--white); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-form-left .section-title { font-size: 2rem; }
.contact-form-left p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.contact-form-reassurance { display: flex; flex-direction: column; gap: 12px; }
.reassurance-item { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text-mid); }
.reassurance-item svg { color: var(--gold); flex-shrink: 0; }

.dr-omar-contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,150,90,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: -6px; }

.btn-footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: all 0.3s;
}
.btn-footer-whatsapp:hover { background: #1db954; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: 80px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-credential {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-hospital {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer-motto {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-pale);
  border-left: 2px solid var(--gold-border);
  padding-left: 16px;
  opacity: 0.8;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-book-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; line-height: 1.6; }
.footer-hospital-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.65; margin-top: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-admagnate { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-admagnate a { color: var(--gold); transition: color 0.25s; }
.footer-admagnate a:hover { color: var(--gold-light); }

/* ─── WHATSAPP FLOAT BUTTON ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─── AI CHATBOT ─────────────────────────────────────────────── */
.ai-chatbot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 995;
}
.chatbot-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  border: 1.5px solid var(--gold-border);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  position: relative;
}
.chatbot-trigger:hover {
  background: var(--navy-light);
  border-color: var(--gold);
}
.chatbot-label { letter-spacing: 0.04em; }
.chatbot-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: waPulse 2s infinite;
}

.chatbot-window {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  flex-direction: column;
  border: 1px solid var(--border);
}
.chatbot-window.open { display: flex; }

.chatbot-header {
  background: var(--navy);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.chatbot-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.chatbot-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
}
.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.chatbot-close:hover { color: var(--white); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--ivory);
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.6;
}
.chat-msg p { margin-bottom: 5px; }
.chat-msg p:last-child { margin-bottom: 0; }
.chat-msg.bot {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.quick-reply {
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.quick-reply:hover { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }

.chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.chatbot-input {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-input:focus { border-color: var(--gold); }
.chatbot-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chatbot-send:hover { background: var(--gold-light); }
.chatbot-disclaimer {
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: center;
  padding: 8px 14px;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

/* ─── ANIMATION KEYFRAMES ────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered animation classes (applied via JS) */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fadeInLeft"]  { transform: translateX(-24px); }
[data-animate="fadeInRight"] { transform: translateX(24px); }
[data-animate="fadeIn"]      { transform: none; }
[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ─── RESPONSIVE — TABLET ────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .about-preview-grid,
  .about-story-grid,
  .contact-form-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-preview-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .treatments-grid,
  .certs-preview-grid,
  .certs-cards-grid,
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-cert-card { grid-template-columns: 1fr; gap: 32px; }
  .featured-cert-left { flex-direction: row; border-right: none; padding-right: 0; border-bottom: 1px solid rgba(196,150,90,0.15); padding-bottom: 28px; }
}

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

  .container { padding: 0 20px; }

  /* Header */
  .primary-nav,
  .header-cta-btn { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { gap: 0; }
  .logo-name { font-size: 0.95rem; }

  /* Sections */
  .motto-section,
  .stats-section,
  .about-preview-section,
  .treatments-preview-section,
  .why-section,
  .testimonials-section,
  .certs-preview-section,
  .final-cta-section,
  .about-story-section,
  .education-section,
  .expertise-section,
  .publications-section,
  .about-cta-section,
  .treatments-intro-section,
  .treatments-detail-section,
  .contact-whatsapp-section,
  .contact-info-section,
  .contact-form-section,
  .certs-grid-section,
  .certs-stats-banner,
  .featured-cert-section { padding: 64px 0; }

  /* Grids → Single column */
  .treatments-grid,
  .certs-preview-grid,
  .why-grid,
  .testimonials-grid,
  .certs-cards-grid,
  .expertise-grid,
  .contact-info-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 1 0 45%; padding: 24px 0; }
  .stat-divider { display: none; }

  /* Hero — mobile: image on top full, content below */
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: var(--nav-h);
    min-height: unset;
  }
  .hero-left {
    padding: 44px 24px 44px;
    order: 2;
    min-height: unset;
  }
  .hero-right {
    order: 1;
    width: 100%;
    height: auto;
    min-height: unset;
    max-height: none;
    background: #0C0E1E;
  }
  .hero-doctor-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    display: block;
  }
  .hero-img-placeholder { min-height: 300px; }
  .hero-floating-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0 12px 12px;
    max-width: none;
    padding: 10px 14px;
    font-size: 0.78rem;
    border-radius: 4px;
  }
  .hero-img-frame { display: none; }
  .hero-scroll { display: none; }
  .hero-name { font-size: 2.2rem; }
  .hero-name em { display: inline; }
  .hero-mini-stats { margin-top: 32px; }
  .hms-num { font-size: 1.3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-credentials { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Intro stats */
  .intro-stats-row { flex-wrap: wrap; gap: 24px; }
  .intro-stat-sep { display: none; }

  /* Certifications stats */
  .certs-stats-row { gap: 24px; }
  .cert-stat-sep { display: none; }

  /* Timeline */
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; padding-left: 20px; }
  .timeline-item::before { left: 0; }
  .timeline-year { text-align: left; }

  /* WhatsApp card */
  .whatsapp-cta-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .wa-card-left { flex-direction: column; }

  /* Treatment detail (legacy) */
  .treatment-detail-card { grid-template-columns: 1fr; }
  .td-number { font-size: 3rem; }

  /* New Treatment Blocks */
  .treatment-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }
  .treatment-block-image img { height: 220px; }
  .treatment-nav-section { position: static; padding: 16px 0; }
  .treatment-nav-pills { gap: 6px; }
  .treatment-nav-pills a { font-size: 0.7rem; padding: 6px 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Chatbot */
  .chatbot-window { width: 300px; right: -8px; }

  /* Motto */
  .motto-inner { flex-direction: column; gap: 16px; }
  .motto-rule { display: none; }

  /* Featured cert */
  .featured-cert-card { padding: 28px; grid-template-columns: 1fr; }

  /* CDE list */
  .cde-list { grid-template-columns: 1fr; }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .certs-stats-row { flex-direction: column; gap: 24px; align-items: center; }
}

/* ─── MOBILE TOGGLE VISIBLE FIX ─────────────────────────────── */
@media (max-width: 768px) {
  #mobileToggle {
    display: flex !important;
  }
  .primary-nav,
  .header-cta-btn {
    display: none !important;
  }
}

/* ─── SOCIAL MEDIA LINKS ─────────────────────────────────── */
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,150,90,0.2);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196,150,90,0.3);
}

/* ─── LANGUAGE SWITCHER BUTTON ───────────────────────────────── */
.lang-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-pale);
  border: 1.5px solid rgba(196,150,90,0.35);
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin-right: 4px;
}
.lang-switch-btn:hover {
  background: rgba(196,150,90,0.12);
  border-color: var(--gold);
  color: var(--white);
}
