/* ============================================
   SVELTA PLASTIC SURGERY — Global Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --navy:    #3A3B55;
  --gold:    #C9A73A;
  --warm:    #F7F0E9;
  --white:   #FFFFFF;
  --gray:    #6B6B6B;
  --light:   #F0F0F0;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; font-weight: 400; color: #333; line-height: 1.7; width: 100%; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--gray); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.btn:hover { background: #3A3B55; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ---- Section Wrappers ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin-bottom: 48px; }

/* Centered header block */
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Backgrounds ---- */
.bg-navy  { background: var(--navy); }
.bg-warm  { background: var(--warm); }
.bg-white { background: var(--white); }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
}
.topbar-phone svg { stroke: var(--gold); flex-shrink: 0; }
.topbar-phone a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar-phone a:hover { color: var(--gold); }
.topbar-cta {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(201,167,58,0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.topbar-cta:hover { color: var(--gold); border-color: var(--gold); }

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 53px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }

/* Simple Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ''; display: inline-block; margin-left: 5px; vertical-align: middle; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; position: relative; top: -1px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 6px;
  min-width: 220px;
  padding: 12px 0 8px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--navy);
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--warm); color: var(--gold); }

/* Mega Menu */
.nav-mega { position: relative; }
.nav-mega > a::after { content: ''; display: inline-block; margin-left: 5px; vertical-align: middle; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; position: relative; top: -1px; }
.mega-menu {
  display: none;
  position: fixed;
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  border-radius: 8px;
  padding: 28px 32px;
  z-index: 200;
  width: min(1140px, 96vw);
  border-top: 3px solid var(--gold);
}
.nav-mega.menu-open .mega-menu { display: flex; gap: 20px; flex-wrap: wrap; }
.mega-menu-narrow { width: auto; min-width: 220px; }
.mega-col { flex: 1; min-width: 130px; }
.mega-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,167,58,0.25);
  white-space: nowrap;
}
.mega-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--navy);
  transition: color 0.15s;
  white-space: nowrap;
}
.mega-col a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: #000;
  min-height: 90vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  top: 50px; left: 0;
  width: 100%;
  height: calc(100% - 50px);
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: none;
  mask-image: none;
}
.hero-img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  pointer-events: none;
}
.hero-fade {
  display: none;
}
.hero-inner { display: block; width: 100%; max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; padding: 0 24px 80px; }
.hero h1 { color: var(--white); text-shadow: 0 0 24px rgba(0,0,0,0.45); }
.hero h2 { color: var(--white); }
.hero .section-label { color: var(--gold); }
.hero-content { color: var(--white); }
.hero-content .section-label { color: var(--gold); }
.hero-content h1 { color: var(--white); margin-bottom: 32px; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Procedure page hero (shorter) */
.hero-sm {
  background:
    url('../images/hero-bg.png') center top / cover no-repeat;
  padding: 150px 0 72px;
}
.hero-sm .hero-inner { max-width: 620px; }
.hero-sm h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; text-shadow: 0 0 24px rgba(0,0,0,0.45); }
.hero-sm p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; max-width: 480px; text-shadow: 0 0 24px rgba(0,0,0,0.45); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.stats-bar-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   PROCEDURE CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.card-img {
  width: calc(100% + 48px);
  margin: -32px -24px 24px;
  height: 520px;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.8rem;
  font-style: italic;
}
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.9rem; margin-bottom: 20px; }
.card-img-link { display: block; }
.card-title-link { text-decoration: none; color: inherit; display: block; }
.card-title-link:hover h3 { color: var(--gold); }
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ============================================
   WHY SVELTA — Stats
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 { color: var(--navy); margin-bottom: 20px; }
.why-text p { margin-bottom: 32px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.specials-card {
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.specials-procedure {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}
.specials-from {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.specials-unit {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: baseline;
}
.specials-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 12px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.specials-link:hover { opacity: 0.75; }

/* ============================================
   BEFORE & AFTER
   ============================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ba-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ba-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.ba-card-placeholder {
  height: 280px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  font-style: italic;
  flex-direction: column;
  gap: 8px;
}
.ba-label {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
}

/* ---- Gallery Tabs ---- */
.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-tab {
  background: none;
  border: 2px solid #E0E0E0;
  border-radius: 32px;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-tab:hover { border-color: var(--gold); color: var(--gold); }
.gallery-tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ============================================
   FINANCING TEASER
   ============================================ */
.financing-teaser {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}
.financing-teaser h2 { color: var(--white); margin-bottom: 16px; }
.financing-teaser p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-icon { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; margin-top: 2px; }
.footer-icon svg { stroke: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 14px; align-items: center; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.social-links a svg { display: block; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.google-badge:hover { background: rgba(255,255,255,0.13); }
.google-badge-stars { color: #FBBC05; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; }
.google-badge-count { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

/* ============================================
   TWO-COLUMN (text + image)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p  { margin-bottom: 20px; }
.two-col-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   SURGEON CARDS
   ============================================ */
.surgeons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.surgeon-card {
  flex: 0 0 calc(33.333% - 14px);
}
.surgeon-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.surgeon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.surgeon-photo {
  width: 100%;
  height: 420px;
  background: #F7F0E9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.85rem;
  font-style: italic;
  position: relative;
}
.surgeon-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.surgeon-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(58,59,85,0.97) 0%, rgba(58,59,85,0.6) 50%, transparent 100%);
  pointer-events: none;
}
.surgeon-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 1;
}
.surgeon-info h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2px;
}
.surgeon-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}
.surgeon-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(201,167,58,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.surgeon-link:hover { color: var(--gold); border-color: var(--gold); }
.surgeon-specialty {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  display: block;
  line-height: 1.4;
}

/* Surgeon Profile Page */
.surgeon-profile-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.surgeon-profile-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: sticky;
  top: 130px;
}
.surgeon-profile-photo img { width: 100%; height: 480px; object-fit: cover; object-position: top; display: block; }
.surgeon-profile-photo-placeholder {
  width: 100%; height: 480px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 0.9rem; font-style: italic;
}
.surgeon-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 28px;
}
.credential-badge {
  display: inline-block;
  background: var(--warm);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 32px;
  border: 1px solid rgba(201,167,58,0.3);
}
.surgeon-bio p { margin-bottom: 18px; }
.surgeon-bio h3 { margin-top: 28px; margin-bottom: 12px; }
.surgeon-bio ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.surgeon-bio ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray);
}
.surgeon-bio ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================
   VALUES / DIFFERENTIATORS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.value-icon svg { stroke: var(--gold); }
.value-card h3 { margin-bottom: 12px; }

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-card { text-align: center; padding: 32px 24px; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h3 { margin-bottom: 12px; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   FINANCING CARDS
   ============================================ */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.financing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.financing-card-logo {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.financing-card-logo img {
  max-height: 64px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}
.financing-card h3 { margin-bottom: 12px; }
.financing-card p  { margin-bottom: 12px; }
.financing-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.financing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}
.financing-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.financing-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}
.financing-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}
.financing-logo-card img { height: 48px; width: 140px; object-fit: contain; display: block; }
.financing-logo-name { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.financing-logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
@media (max-width: 768px) { .financing-logos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .financing-logos-grid { grid-template-columns: 1fr; } }

/* ============================================
   SPECIALS CARDS
   ============================================ */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.special-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.special-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.special-card-header {
  background: var(--navy);
  padding: 24px 28px;
  position: relative;
}
.special-card-header h3 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.special-card-header .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.special-card-header .price-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 4px;
}
.special-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 32px;
}
.special-card-body {
  padding: 24px 28px;
}
.special-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.special-card-body ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gray);
}
.special-card-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================
   CTA CALLOUT STRIP
   ============================================ */
.cta-callout { text-align: center; padding: 80px 0; }
.cta-callout h2 { margin-bottom: 16px; }
.cta-callout p  { max-width: 520px; margin: 0 auto 32px; color: var(--gray); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { stroke: var(--white); }
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail-text span   { font-size: 0.95rem; color: var(--gray); }
.map-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.map-embed iframe { width: 100%; height: 420px; border: none; display: block; }
.map-placeholder {
  width: 100%; height: 420px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 0.9rem;
}

/* ---- GHL Embed Form ---- */
.ghl-form-wrapper { max-width: 680px; margin: 0 auto; }
.ghl-form-wrapper iframe { width: 100%; border: none; min-height: 600px; display: block; }

/* ============================================
   PROCEDURE OVERVIEW CARDS (large, 2-col)
   ============================================ */
.procedure-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.procedure-overview-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.procedure-overview-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.procedure-overview-img {
  width: 100%;
  height: 540px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 0.85rem; font-style: italic;
}
.procedure-overview-img img { width: 100%; height: 100%; object-fit: cover; }
.procedure-overview-body { padding: 32px; }
.procedure-overview-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.procedure-overview-body p  { margin-bottom: 20px; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; border-radius: 4px; }
.lightbox-close { position: fixed; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; z-index: 2001; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 2.5rem; cursor: pointer; padding: 12px 18px; border-radius: 6px; z-index: 2001; transition: background 0.2s; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.ba-card img { cursor: pointer; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .cards-grid            { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4          { grid-template-columns: repeat(2, 1fr); }
  .why-grid              { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .two-col               { grid-template-columns: 1fr; }
  .surgeons-grid .surgeon-card { flex: 0 0 calc(50% - 10px); }
  .surgeon-profile-grid  { grid-template-columns: 1fr; }
  .surgeon-profile-photo { position: static; }
  .surgeon-profile-photo img { height: 320px; }
  .values-grid           { grid-template-columns: 1fr; }
  .steps-grid            { grid-template-columns: repeat(2, 1fr); }
  .financing-grid        { grid-template-columns: 1fr; }
  .procedure-overview-grid { grid-template-columns: 1fr; }
  .contact-info-grid     { grid-template-columns: 1fr; }
  .specials-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner       { flex-wrap: wrap; }
  .stats-bar-item        { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mega-menu             { width: 100%; left: 0; transform: none; border-radius: 0; }
}
@media (max-width: 600px) {
  .cards-grid            { grid-template-columns: 1fr; }
  .cards-grid-4          { grid-template-columns: 1fr; }
  .ba-grid               { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .surgeons-grid .surgeon-card { flex: 0 0 100%; }
  .stats-grid            { grid-template-columns: 1fr; }
  .specials-grid         { grid-template-columns: 1fr; }
  .steps-grid            { grid-template-columns: 1fr; }
  .gallery-tabs          { gap: 6px; }
  .gallery-tab           { font-size: 0.78rem; padding: 6px 14px; }
  .stats-bar-item        { flex: 1 1 100%; }

  /* Hide topbar, reset nav to top */
  .topbar                { display: none; }
  .nav                   { top: 0; }
  .hero                  { min-height: 85vh; display: flex; align-items: flex-end; }
  .hero-img              { width: 100%; top: 50px; height: calc(100% - 50px); object-position: center top; opacity: 1; }
  .hero-img-overlay      { width: 100%; background: rgba(0,0,0,0); }
  .hero-fade             { display: none; }
  .hero-inner            { padding: 0 24px 60px; }
  .hero-sm               { padding-top: 100px; }
  .hero-btns             { flex-direction: column; }
  .hero-btns .btn        { display: block; width: 100%; text-align: center; }
  .out-of-state-grid     { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Show hamburger */
  .nav-hamburger         { display: flex; }

  /* Hide nav links by default, show when open */
  .nav-links             { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 8px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open > li   { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links.open > li:last-child { border-bottom: none; }
  .nav-links.open > li > a { display: block; padding: 13px 0; font-size: 1rem; }
  .nav-links.open .btn   { margin-top: 8px; text-align: center; display: block; }

  /* Mega menu collapsed by default on mobile, expanded on tap via .open class */
  .nav-links.open .mega-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 16px;
    width: auto;
    border-left: 2px solid var(--gold);
    border-top: none;
  }
  .nav-links.open .nav-mega.open .mega-menu { display: block; }
  .nav-links.open .mega-menu .mega-col { margin-bottom: 12px; }
  .nav-links.open .mega-menu .mega-col-title { font-size: 0.65rem; padding-bottom: 4px; margin-bottom: 4px; }
  .nav-links.open .mega-menu .mega-col a { padding: 5px 0; font-size: 0.85rem; color: var(--gray); }
  .nav-mega > a::after { content: ' ›'; display: inline-block; margin-left: 4px; transition: transform 0.2s; border: none; position: static; top: auto; }
  .nav-links.open .nav-mega.open > a::after { transform: rotate(90deg); }

  /* Dropdown shown inline on mobile */
  .nav-links.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    background: none;
    padding: 0 0 8px 16px;
    min-width: unset;
    border-left: 2px solid var(--gold);
  }
  .nav-links.open .dropdown-menu a { padding: 7px 0; font-size: 0.9rem; color: var(--gray); }
  .nav-dropdown > a::after { content: ''; }
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border-radius: 10px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border-top: 3px solid var(--gold); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--gray); flex: 1; margin-bottom: 16px; }
.blog-card-read { font-size: 0.82rem; font-weight: 600; color: var(--gold); }
.blog-post-content { max-width: 760px; margin: 0 auto; }
.blog-post-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin: 40px 0 16px; }
.blog-post-content h3 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 12px; font-weight: 600; }
.blog-post-content p { margin-bottom: 20px; line-height: 1.8; color: #444; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 20px 24px; }
.blog-post-content li { margin-bottom: 8px; line-height: 1.7; color: #444; }
.blog-post-meta { display: flex; gap: 20px; align-items: center; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid #eee; }
.blog-post-meta-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); background: rgba(201,167,58,0.1); padding: 4px 12px; border-radius: 20px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }


/* ===== INTERNATIONAL PATIENTS SECTION ===== */
.intl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intl-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) {
  .intl-grid { grid-template-columns: 1fr; gap: 40px; }
  .intl-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .intl-cards { grid-template-columns: 1fr; }
}
