/* =============================================================
   SOLENE CLINIQUE — Design Tokens
============================================================= */
:root {
  --primary: #79b734;
  --primary-dark: #2d323f;
  --bg: #eef0ff;
  --bg-alt: #eae2ff;
  --dark: #2D2D2D;
  --light-text: #777777;
  --cream: #FFFDF9;
  --white: #FFFFFF;
  --gold-gradient: linear-gradient(135deg, #7fba3f 0%, #61af0b 100%);
  --shadow-soft: 0 20px 50px -20px rgba(45, 45, 45, 0.18);
  --shadow-card: 0 10px 30px -12px rgba(138, 107, 69, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --header-h: 92px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--dark); color: #fff;
  padding: 10px 18px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--primary); color: #fff; }

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* =============================================================
   TYPOGRAPHY
============================================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 2px;
  background: var(--primary);
  transform-origin: left;
  animation: drawLine 1s ease forwards;
  animation-play-state: paused;
}
[data-aos].aos-animate .eyebrow::after,
.eyebrow.in-view::after { animation-play-state: running; }

/* Keep content visible when this standalone design is embedded in Laravel's
   existing layout and AOS initialization is interrupted by other page scripts. */
.home2-page [data-aos]:not(.aos-animate) {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 46px; }
}

.eyebrow-center { display: block; text-align: center; }
.eyebrow-center::after { left: 50%; transform: translateX(-50%); }
.eyebrow-light { color: #EFE0C4; }
.eyebrow-light::after { background: #EFE0C4; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-title.text-cream { color: var(--cream); }

.display-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 22px;
}
.display-headline em { font-style: italic; color: var(--primary); font-weight: 500; }

.accent-script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

.lead-text {
  color: var(--light-text);
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.hero-lead {
  color: #E9E2D4;
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.text-muted-gold { color: var(--primary-dark); font-size: 0.92rem; }

.signature-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-top: 10px;
}

/* =============================================================
   BUTTONS
============================================================= */
.btn-gold {
  background: var(--gold-gradient);
  color: #fff !important;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
}
.btn-gold:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 16px 34px -10px rgba(138,107,69,0.45); color:#fff; }

.btn-gold-outline {
  background: transparent;
  color: var(--primary-dark) !important;
  border: 1.5px solid var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}
.btn-gold-outline:hover { background: var(--primary); color: #fff !important; transform: translateY(-3px); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream) !important;
  border: 1.5px solid rgba(250,247,242,0.6);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}
.btn-outline-cream:hover { background: rgba(250,247,242,0.12); border-color: var(--cream); transform: translateY(-3px); color: var(--cream) !important; }

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

/* =============================================================
   TOP BAR
============================================================= */
.topbar {
  background: var(--dark);
  color: #EDE6D8;
  font-size: 0.82rem;
  padding: 9px 0;
}
.topbar-info span { margin-right: 26px; }
.topbar-info i { color: var(--primary); margin-right: 6px; }
.topbar-social a {
  color: #EDE6D8; margin-left: 16px; transition: color 0.25s;
}
.topbar-social a:hover { color: var(--primary); }

/* =============================================================
   HEADER
============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  box-shadow: 0 6px 24px rgba(45,45,45,0.08);
}
.site-header .navbar { padding: 6px 0; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.site-header.scrolled .brand { color: var(--dark); }
.brand-mark { color: var(--primary); display: inline-flex; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-text em { font-style: italic; color: var(--primary); font-weight: 500; }

.main-menu { gap: 4px; }
.main-menu .nav-link {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 16px !important;
  transition: color 0.3s;
  position: relative;
}
.site-header.scrolled .main-menu .nav-link { color: var(--dark); }
.main-menu .nav-link:hover,
.main-menu .nav-link:focus { color: var(--primary); }
.main-menu .dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
}
.main-menu .dropdown-item { font-size: 0.88rem; padding: 8px 20px; }
.main-menu .dropdown-item:hover { background: var(--bg-alt); color: var(--primary-dark); }

.navbar-toggler { border: none; color: var(--cream); font-size: 1.3rem; }
.site-header.scrolled .navbar-toggler { color: var(--dark); }
.navbar-toggler:focus { box-shadow: none; }

/* =============================================================
   HERO
============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,17,12,0.82) 20%, rgba(20,17,12,0.55) 55%, rgba(20,17,12,0.35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 100px 0 60px; }

.hero-portrait {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 3;
  width: min(30vw, 400px);
  display: none;
}
.hero-portrait-frame {
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  overflow: hidden;
  border: 6px solid rgba(250,247,242,0.15);
  box-shadow: var(--shadow-soft);
}
.hero-portrait-frame img { width: 100%; height: 560px; object-fit: cover; }
.hero-portrait-badge {
  position: absolute;
  left: -34px;
  bottom: 60px;
  background: var(--gold-gradient);
  color: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  width: 168px;
  text-align: center;
}
.badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; }
.badge-label { font-size: 0.72rem; letter-spacing: 0.04em; display: block; margin-top: 4px; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2; color: #EFE0C4; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  width: 1px; height: 34px; background: rgba(239,224,196,0.5); position: relative; overflow: hidden;
}
.hero-scroll span::after {
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background: #EFE0C4;
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

@media (min-width: 992px) { .hero-portrait { display: block; } }

/* =============================================================
   DOCTOR STRIP
============================================================= */
.doctor-strip { padding: 90px 0; background: var(--cream); }
.doctor-strip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184,144,85,0.15);
}
.doctor-strip-card img {
  width: 130px; height: 130px; object-fit: cover; border-radius: 50%;
  margin: 0 auto 18px; border: 4px solid var(--bg-alt);
}
.doctor-strip-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 2px; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.85rem; color: var(--light-text); }
.rating-row .fa-google { color: #79b734; }
.stars { color: var(--primary); letter-spacing: 2px; }

/* =============================================================
   ABOUT
============================================================= */
.about-section { padding: 100px 0; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.6s ease; }
.about-media:hover img { transform: scale(1.05); }
.about-media-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(250,247,242,0.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 600; color: var(--primary-dark);
  box-shadow: var(--shadow-card);
}
.about-media-tag small { display: block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--light-text); letter-spacing: 0.04em; text-transform: uppercase; }

.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--dark); font-size: 0.96rem; }
.check-list i { color: var(--primary); margin-top: 4px; }

/* =============================================================
   SERVICES (Surgical / Non-Surgical)
============================================================= */
.services-section { padding: 90px 0; background: var(--bg); }
.services-alt { background: var(--bg-alt); }
.service-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.service-media img { width: 100%; height: 440px; object-fit: cover; transition: transform 0.6s ease; }
.service-media:hover img { transform: scale(1.05); }

.feature-list { list-style: none; padding: 0; margin: 0 0 30px; }
.feature-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(184,144,85,0.3);
  font-weight: 500;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i { color: var(--primary); font-size: 1.1rem; width: 22px; text-align: center; }

/* =============================================================
   WHY CHOOSE US
============================================================= */
.why-section { padding: 100px 0; background: var(--cream); }
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184,144,85,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.why-card:hover { transform: translateY(-10px); box-shadow: 0 24px 40px -16px rgba(138,107,69,0.35); }
.why-card i {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-gradient); color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 10px; }
.why-card p { color: var(--light-text); font-size: 0.92rem; margin: 0; }

/* =============================================================
   MEET THE DOCTOR (feature banner)
============================================================= */
.doctor-feature {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  scroll-margin-top: 150px;
}
.doctor-feature-media { position: absolute; inset: 0; z-index: 0; }
.doctor-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.doctor-feature .container { position: relative; z-index: 2; }
.doctor-role { color: var(--primary); font-weight: 500; margin-bottom: 18px; font-size: 1.05rem; }
.doctor-stats { display: flex; gap: 40px; margin: 30px 0 34px; flex-wrap: wrap; }
.doctor-stats strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
.doctor-stats span { color: #C9BEA6; font-size: 0.82rem; letter-spacing: 0.03em; }
.doctor-feature-portrait {
  position: absolute; right: 6%; bottom: 0; z-index: 2;
  width: 300px; display: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.doctor-feature-portrait img { height: 420px; object-fit: cover; transition: opacity 0.3s ease; }
@media (min-width: 992px) { .doctor-feature-portrait { display: block; } }

/* Doctor tab switcher */
.doctor-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.doctor-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #EFE0C4;
  background: rgba(239,224,196,0.08);
  border: 1.5px solid rgba(239,224,196,0.35);
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.doctor-tab:hover { border-color: var(--primary); color: #fff; }
.doctor-tab.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-card);
}

.doctor-panel { display: none; }
.doctor-panel.active { display: block; animation: doctorPanelFade 0.4s ease; }
@keyframes doctorPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Duo avatars teaser (featured doctor strip) */
.duo-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.duo-avatars .avatar {
  width: 96px; height: 96px; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--bg-alt);
}
.duo-avatars .avatar-1 { margin-right: -24px; z-index: 1; }
.duo-avatars .avatar-2 { z-index: 2; }

/* =============================================================
   TREATMENTS GRID
============================================================= */
.treatments-section { padding: 100px 0; background: var(--bg); }
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(184,144,85,0.12);
}
.treatment-card:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -18px rgba(138,107,69,0.35); }
.treatment-img { overflow: hidden; height: 220px; }
.treatment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.treatment-card:hover .treatment-img img { transform: scale(1.08); }
.treatment-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 20px 24px 8px; }
.treatment-card p { color: var(--light-text); font-size: 0.9rem; margin: 0 24px 18px; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary-dark); font-weight: 600; font-size: 0.85rem;
  margin: 0 24px 24px; letter-spacing: 0.02em;
  transition: gap 0.3s ease;
}
.card-link:hover { gap: 12px; color: var(--primary); }

/* =============================================================
   BEFORE / AFTER GALLERY
============================================================= */
.gallery-section { padding: 100px 0; background: var(--bg-alt); }
.gallery-swiper { padding: 10px 20px 50px; max-width: 1200px; margin: 0 auto; }
.ba-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); padding-bottom: 18px;
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images div { position: relative; overflow: hidden; height: 220px; }
.ba-images img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ba-images div:hover img { transform: scale(1.1); }
.ba-images span {
  position: absolute; top: 10px; left: 10px;
  background: rgba(20,17,12,0.6); color: #fff; font-size: 0.7rem;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.05em; text-transform: uppercase;
}
.ba-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin: 18px 20px 0; }
.gallery-swiper .swiper-pagination-bullet-active { background: var(--primary); }

/* =============================================================
   VIDEO TESTIMONIALS
============================================================= */
.testimonial-section { padding: 100px 0; background: var(--bg); }
.video-swiper { padding: 10px 20px 10px; max-width: 1200px; margin: 0 auto; }
.video-card {
  position: relative; width: 100%; height: 340px; border-radius: var(--radius-md);
  overflow: hidden; border: none; padding: 0; display: block; cursor: pointer;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.video-card:hover img { transform: scale(1.08); }
.video-card::after {
  content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,12,0) 40%, rgba(20,17,12,0.75) 100%);
}
.play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%; background: rgba(250,247,242,0.9);
  color: var(--primary-dark); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 2; transition: transform 0.35s ease, background 0.35s ease;
}
.video-card:hover .play-icon { transform: translate(-50%,-50%) scale(1.1); background: var(--primary); color: #fff; }
.video-meta {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 600;
  font-size: 0.92rem;
}
.video-meta small { display: block; font-weight: 400; color: #D9CDB6; font-size: 0.78rem; }

/* =============================================================
   JOURNAL / BLOG
============================================================= */
.journal-section { padding: 100px 0; background: var(--bg-alt); }
.journal-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.journal-card:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -18px rgba(138,107,69,0.3); }
.journal-img { position: relative; height: 200px; overflow: hidden; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.journal-card:hover .journal-img img { transform: scale(1.08); }
.journal-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold-gradient); color: #fff; font-size: 0.7rem;
  padding: 5px 14px; border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase;
}
.journal-card time { display: block; font-size: 0.78rem; color: var(--light-text); margin: 18px 24px 6px; }
.journal-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 24px 12px; line-height: 1.35; }
.journal-card .card-link { margin: 0 24px 22px; }

/* =============================================================
   GOOGLE REVIEWS
============================================================= */
.reviews-section { padding: 100px 0; background: var(--bg); }
.google-logo { font-size: 2.2rem; color: #79b734; margin-bottom: 12px; }
.reviews-score { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.reviews-score .stars { font-size: 1.2rem; margin-left: 8px; }
.review-swiper { padding: 10px 20px 50px; max-width: 1200px; margin: 0 auto; }
.review-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-card); height: 100%; min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(184,144,85,0.12);
}
.review-card p { color: var(--dark); font-size: 0.95rem; margin: 14px 0 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.9rem; }
.reviewer img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }

/* =============================================================
   FAQ
============================================================= */
.faq-section { padding: 100px 0; background: var(--bg-alt); }
.accordion-item { background: transparent; border: none; border-bottom: 1px solid rgba(184,144,85,0.25); }
.accordion-button {
  background: transparent; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  color: var(--dark); padding: 22px 0; box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--primary-dark); background: transparent; }
.accordion-button::after { filter: sepia(1) saturate(3) hue-rotate(0deg); }
.accordion-body { padding: 0 0 24px; color: var(--light-text); font-size: 0.94rem; }

/* =============================================================
   CTA BANNER
============================================================= */
.cta-banner { position: relative; padding: 130px 0; overflow: hidden; text-align: center; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner .container { position: relative; z-index: 2; }
.cta-headline {
  font-family: var(--font-display); font-weight: 500; color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 34px;
}
.cta-headline em { font-style: italic; color: var(--primary); }

/* =============================================================
   FOOTER
============================================================= */
.site-footer { background: #1E1B16; color: #C9BEA6; padding: 90px 0 0; }
.footer-brand { color: var(--cream); margin-bottom: 18px; }
.footer-about { font-size: 0.9rem; color: #A79C87; margin-bottom: 22px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(201,190,166,0.3);
  margin-right: 10px; color: #C9BEA6; transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.site-footer h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.2rem; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: #A79C87; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.newsletter-form { display: flex; margin-bottom: 10px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: 1px solid rgba(201,190,166,0.3);
  background: rgba(255,255,255,0.04); color: var(--cream); border-radius: 50px 0 0 50px; font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: #8A806E; }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form button {
  background: var(--gold-gradient); border: none; color: #fff; padding: 0 20px;
  border-radius: 0 50px 50px 0; cursor: pointer;
}
.footer-hours { font-size: 0.88rem; color: #A79C87; }
.footer-bottom {
  border-top: 1px solid rgba(201,190,166,0.15);
  margin-top: 60px; padding: 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: #8A806E;
}
.footer-bottom a { color: #A79C87; }
.footer-bottom a:hover { color: var(--primary); }

/* =============================================================
   BACK TO TOP
============================================================= */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-gradient); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { filter: brightness(1.1); transform: translateY(-4px); }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 991.98px) {
  .site-header.scrolled ~ * .hero { padding-top: 76px; }
  .main-menu .nav-link { color: var(--dark) !important; }
  .navbar-toggler { color: var(--dark); }
  .brand { color: var(--dark); }
  .collapse.navbar-collapse { background: var(--cream); margin-top: 14px; border-radius: var(--radius-sm); padding: 12px 18px; box-shadow: var(--shadow-card); }
  .doctor-feature { padding: 90px 0; scroll-margin-top: 120px; }
}

@media (max-width: 767.98px) {
  .hero { min-height: 92vh; }
  .doctor-stats { gap: 26px; }
}

@media (max-width: 479.98px) {
  .btn-gold, .btn-gold-outline, .btn-outline-cream { padding: 12px 22px; font-size: 0.85rem; }
  .why-card, .doctor-strip-card { padding: 26px 20px; }
}
