:root {
  --rose: #C8526A;
  --rose-light: #F7E8EC;
  --rose-dark: #8C2B40;
  --gold: #C9A96E;
  --gold-light: #F5EFE3;
  --cream: #FDF8F5;
  --charcoal: #1E1E1E;
  --text: #2D2D2D;
  --muted: #7A7A7A;
  --white: #FFFFFF;
  --border: rgba(200,82,106,0.15);
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* -- UTILITY -- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: #fff;
  font-family: var(--ff-body); font-size: 15px; font-weight: 600;
  padding: 15px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(200,82,106,0.35);
  text-decoration: none;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,82,106,0.4); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-family: var(--ff-body); font-size: 15px; font-weight: 600;
  padding: 15px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: all 0.25s; text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover { background: #b8935a; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--rose);
  font-family: var(--ff-body); font-size: 15px; font-weight: 600;
  padding: 13px 30px; border-radius: 50px;
  border: 2px solid var(--rose); cursor: pointer;
  transition: all 0.25s; text-decoration: none;
}
.btn-outline:hover { background: var(--rose); color: #fff; }
.section-tag {
  display: inline-block;
  background: var(--rose-light); color: var(--rose);
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 6px 18px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 640px; }
.divider { width: 60px; height: 3px; background: var(--rose); border-radius: 4px; margin: 20px 0; }

/* -- STICKY CTA BAR -- */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  gap: 32px; padding: 10px 24px;
  font-size: 13px; font-weight: 500; color: #ccc;
  flex-wrap: wrap;
}
.sticky-bar strong { color: #fff; }
.sticky-bar a { color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.sticky-bar a:hover { color: var(--rose-light); }

/* -- NAVBAR -- */
.navbar {
  margin-top: 38px;
  padding: 16px 0; background: rgba(253,248,245,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 38px; z-index: 100;
  backdrop-filter: blur(8px);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-mark {
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo-mark img { width: 100%; height: auto; object-fit: contain; display: block; }
.logo-text { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--charcoal); }
.logo-text span { color: var(--rose); }
.logo-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--rose); }

/* -- HERO -- */
.hero {
  background: linear-gradient(150deg, #FDF0F3 0%, #FDF8F5 50%, #F7F2EE 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -200px; top: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,82,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 24px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  box-shadow: 0 2px 12px rgba(200,82,106,0.1);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.15; font-weight: 700;
  color: var(--charcoal); margin-bottom: 20px;
}
.hero h1 em { color: var(--rose); font-style: normal; }
.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-icon { font-size: 16px; }
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: 24px 24px 80px 24px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/5; background: linear-gradient(135deg, #F7E8EC, #EDD5DB);
  display: flex; align-items: center; justify-content: center;
}
.hero-banner-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-placeholder {
  text-align: center; color: var(--rose); font-family: var(--ff-display);
}
.hero-img-placeholder .big-icon { font-size: 80px; margin-bottom: 16px; }
.hero-img-placeholder p { font-size: 16px; font-weight: 500; opacity: 0.7; }
.hero-card {
  position: absolute; bottom: -20px; left: -30px;
  background: #fff; border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}
.hero-card .card-num { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--rose); }
.hero-card .card-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.hero-card2 {
  position: absolute; top: 30px; right: -20px;
  background: var(--charcoal); color: #fff; border-radius: 16px;
  padding: 14px 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.hero-card2 .stars { color: var(--gold); font-size: 14px; margin-bottom: 4px; }
.hero-card2 .card-label { font-size: 11px; color: #aaa; }
.hero-card2 .card-text { font-size: 13px; font-weight: 600; }

/* -- PROCEDURE MENU -- */
.procedures { padding: 80px 0; background: #fff; }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.proc-card {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 28px; transition: all 0.3s; cursor: pointer;
  background: var(--cream); position: relative; overflow: hidden;
}
.proc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--rose); transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.proc-card:hover::before { transform: scaleX(1); }
.proc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(200,82,106,0.15); border-color: var(--rose); }
.proc-icon { font-size: 36px; margin-bottom: 16px; }
.proc-title { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.proc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.proc-link { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--rose); display: flex; align-items: center; gap: 6px; }

/* -- DOCTOR SECTION -- */
.doctor { padding: 80px 0; background: var(--cream); }
.doctor-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.doctor-img-wrap {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4; background: linear-gradient(160deg, #F0D8DF, #E8C5CE);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(200,82,106,0.18);
  position: relative;
}
.doctor-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 12px; padding: 14px 24px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); width: calc(100% - 40px);
}
.dr-badge .name { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--charcoal); }
.dr-badge .title { font-size: 12px; color: var(--rose); font-weight: 600; margin-top: 2px; letter-spacing: 0.5px; }
.doctor-credentials { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.cred-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: #fff; border-radius: 14px; border: 1px solid var(--border); }
.cred-icon { font-size: 22px; flex-shrink: 0; }
.cred-text strong { font-size: 14px; font-weight: 600; color: var(--charcoal); display: block; }
.cred-text span { font-size: 13px; color: var(--muted); }
.stats-row { display: flex; gap: 24px; margin-top: 32px; }
.stat-box { text-align: center; flex: 1; }
.stat-num { font-family: var(--ff-display); font-size: 34px; font-weight: 700; color: var(--rose); }
.stat-lbl { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* -- WHY US -- */
.why-us { padding: 80px 0; background: var(--charcoal); color: #fff; }
.why-us .section-title { color: #fff; }
.why-us .section-sub { color: #aaa; }
.why-us .section-tag { background: rgba(200,82,106,0.2); color: var(--rose-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 28px; }
.why-card:hover { background: rgba(200,82,106,0.1); border-color: rgba(200,82,106,0.3); transform: translateY(-4px); transition: all 0.3s; }
.why-num { font-family: var(--ff-display); font-size: 42px; font-weight: 700; color: var(--rose); opacity: 0.4; margin-bottom: 12px; }
.why-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.why-desc { font-size: 13px; color: #888; line-height: 1.7; }

/* -- BEFORE & AFTER GALLERY -- */
.gallery { padding: 80px 0; background: #fff; }
.gallery-note { font-size: 13px; color: var(--muted); font-style: italic; margin-bottom: 32px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.ba-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-panel {
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.ba-panel.before { background: #F5F5F5; color: var(--muted); }
.ba-panel.after { background: linear-gradient(160deg, #F7E8EC, #FBEEF1); color: var(--rose); }
.ba-panel .icon { font-size: 32px; margin-bottom: 8px; }
.ba-info { padding: 16px; background: var(--cream); }
.ba-proc { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.ba-age { font-size: 12px; color: var(--muted); margin-top: 2px; }
.gallery-disclaimer { margin-top: 20px; font-size: 12px; color: var(--muted); font-style: italic; text-align: center; }

/* -- TESTIMONIALS -- */
.testimonials { padding: 80px 0; background: var(--cream); }
.testi-grid { margin-top: 48px; }
.testi-card {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  border: 1px solid var(--border); position: relative;
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(200,82,106,0.12); }
.testimonials-carousel .owl-stage-outer { padding: 6px 0 12px; }
.testimonials-carousel .owl-item { padding: 0 2px; }
.testimonials-carousel .owl-dots { margin-top: 16px; }
.testimonials-carousel .owl-dot span { background: rgba(200,82,106,0.25); }
.testimonials-carousel .owl-dot.active span,
.testimonials-carousel .owl-dot:hover span { background: var(--rose); }
.testimonials-carousel .owl-nav {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--rose);
  font-size: 20px;
  line-height: 1;
  transition: all 0.25s ease;
}
.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.testimonials-carousel .owl-nav button.owl-prev.disabled,
.testimonials-carousel .owl-nav button.owl-next.disabled {
  opacity: 0.45;
}
.quote-mark { font-family: var(--ff-display); font-size: 64px; line-height: 0.5; color: var(--rose); opacity: 0.2; margin-bottom: 20px; }
.testi-text { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), #f0c8d2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--rose);
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.testi-proc { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* -- FAQ -- */
.faq { padding: 80px 0; background: #fff; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-family: var(--ff-body);
  font-size: 16px; font-weight: 600; color: var(--charcoal);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--rose); }
.faq-icon { font-size: 20px; color: var(--rose); flex-shrink: 0; transition: transform 0.3s; }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.8; padding-bottom: 20px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* -- CLINIC OVERVIEW -- */
.clinic { padding: 80px 0; background: var(--cream); }
.clinic-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.clinic-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.feat-item {
  background: #fff; border-radius: 14px; padding: 20px;
  border: 1px solid var(--border);
}
.feat-icon { font-size: 24px; margin-bottom: 10px; }
.feat-title { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.feat-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.clinic-visual {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, #E8D5DB, #F5E8EC);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(200,82,106,0.15);
}
.clinic-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* -- FINAL CTA -- */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose) 50%, #D4607C);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute; bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  background: rgba(0,0,0,0.06); border-radius: 50%;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--ff-display); font-size: clamp(28px, 4vw, 50px); color: #fff; font-weight: 700; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--rose); font-weight: 700; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--gold-light); color: var(--rose-dark); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-call { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn-call:hover { background: rgba(255,255,255,0.25); }

/* -- FOOTER -- */
.footer { background: var(--charcoal); color: #aaa; padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul li { font-size: 14px; }
.footer ul li a { color: #aaa; transition: color 0.2s; }
.footer ul li a:hover { color: var(--rose-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .disc { color: #666; font-size: 11px; max-width: 500px; }

/* -- FLOATING WHATSAPP -- */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: #fff; border-radius: 50%;
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: float-bob 3s ease-in-out infinite;
  text-decoration: none;
}
@keyframes float-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* -- MOBILE BOTTOM CTA -- */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.95);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
  gap: 10px;
}
.mobile-bottom-cta a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 10px;
}
.mobile-cta-call { background: var(--rose); }
.mobile-cta-wa { background: #25D366; }

/* -- ANIMATIONS -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }
