/* ============================================================
   KALOSA LIPOSUCTION — GLOBAL STYLESHEET
   ============================================================
   Brand: Kalosa Liposuction
   Color System: Dark ink + Gold accents + Cream backgrounds
   Typography: Playfair Display (headings) + DM Sans (body) + Cinzel (accents)
   
   TABLE OF CONTENTS:
   1. CSS Variables (Design Tokens)
   2. Reset & Base Styles
   3. Utility Classes
   4. Header / Navigation
   5. Hero Section
   6. Trust Bar
   7. Content Sections (Art Grid, Procedure Cards, Journey)
   8. Results / Before-After
   9. Comparison Tables & Cards
   10. Cost & Pricing
   11. Diagnostics Grid
   12. Benefits Grid
   13. Why Choose Us
   14. FAQ Accordion
   15. CTA / Ready Section
   16. Booking Form
   17. Author / Sources
   18. WhatsApp CTA Banner
   19. Footer
   20. Floating Action Buttons
   21. Animations & Keyframes
   22. Page-Specific Styles (Sub-pages)
   23. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES — Design Tokens
   All colors, fonts, spacing, and effects defined once here.
   Change these to rebrand the entire site instantly.
   ============================================================ */
:root {
  /* --- Ink / Dark tones (backgrounds, headers, dark sections) --- */
  --ink: #0c0c0c;
  --ink-mid: #1a1a1a;
  --ink-lite: #242424;

  /* --- Gold accent palette (brand signature color) --- */
  --gold: #c8a84b;
  --gold-lt: #e0c06e;          /* Lighter gold for dark backgrounds */
  --gold-pale: #f7eed6;        /* Very light gold for highlights */
  --gold-a12: rgba(200,168,75,.12);  /* 12% alpha gold overlay */
  --gold-a30: rgba(200,168,75,.30);  /* 30% alpha gold borders */

  /* --- Cream / Light backgrounds --- */
  --cream: #f9f6ee;
  --cream2: #f0ead8;

  /* --- Text colors --- */
  --text: #1e1e1e;
  --muted: #6a6a6a;
  --white: #fff;

  /* --- Font stacks --- */
  --ff-head: 'Playfair Display', Georgia, serif;   /* Headings */
  --ff-acc: 'Cinzel', serif;                        /* Accent/labels */
  --ff-body: 'DM Sans', system-ui, sans-serif;      /* Body text */

  /* --- Border radii --- */
  --r: 10px;
  --r2: 18px;
  --r3: 28px;

  /* --- Transition easing --- */
  --ease: .36s cubic-bezier(.4, 0, .2, 1);

  /* --- Max content width --- */
  --w: 1260px;

  /* --- Shadow presets --- */
  --shad-card: 0 6px 28px rgba(0,0,0,.09);
  --shad-gold: 0 8px 36px rgba(200,168,75,.22);
}


/* ============================================================
   2. RESET & BASE STYLES
   Normalize browser defaults for consistent rendering.
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;  /* Enable smooth anchor scrolling */
  font-size: 16px;          /* Base rem unit */
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.72;
  overflow-x: hidden;  /* Prevent horizontal scroll from animations */
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--ff-body);
}


/* ============================================================
   3. UTILITY CLASSES
   Reusable layout and component helpers.
   ============================================================ */

/* --- Content wrapper (max-width container) --- */
.wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section padding variants --- */
.sec      { padding: 5.5rem 0; }                            /* Default cream bg */
.sec-alt  { padding: 5.5rem 0; background: var(--white); }  /* White bg */
.sec-dark { padding: 5.5rem 0; background: var(--ink); }    /* Dark bg */
.sec-cream2 { padding: 5.5rem 0; background: var(--cream2); }

/* --- Tag/label pill (section category indicator) --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--gold-a30);
  color: var(--gold);
  font-family: var(--ff-acc);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}
.tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
}
/* Dark variant for dark backgrounds */
.tag-dark {
  border-color: rgba(200,168,75,.4);
  color: var(--gold-lt);
}
.tag-dark::before { background: var(--gold-lt); }

/* --- Section header (centered title + subtitle) --- */
.sec-hdr {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.sec-hdr h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: .85rem;
}
.sec-hdr h2.light { color: var(--white); }
.sec-hdr p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.78;
}
.sec-hdr p.light { color: rgba(255,255,255,.52); }

/* --- Button system --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}

/* Primary gold button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a5861f);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(200,168,75,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shad-gold);
}

/* Ghost button (transparent with white border) */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.38);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

/* Outline gold button */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-a30);
}
.btn-outline-gold:hover {
  background: var(--gold-a12);
  border-color: var(--gold);
}

/* --- Scroll-triggered animation attributes --- */
/* Elements with data-a="up|left|right" start hidden and animate in */
[data-a] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-a="up"]    { transform: translateY(38px); }
[data-a="left"]  { transform: translateX(-38px); }
[data-a="right"] { transform: translateX(38px); }
[data-a].vis {
  opacity: 1;
  transform: none;
}


/* ============================================================
   4. HEADER / NAVIGATION
   Fixed header with glass-morphism on scroll.
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.1rem 0;
  transition: all var(--ease);
  background: transparent;
}
/* Gradient overlay that fades hero into header */
.hdr::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.9) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity var(--ease);
}
/* "Stuck" state when user scrolls past hero */
.hdr.stuck {
  background: rgba(12,12,12,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gold-a30), 0 4px 24px rgba(0,0,0,.4);
  padding: .7rem 0;
}
.hdr.stuck::after { opacity: 0; }

/* Header inner layout */
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* --- Logo --- */
.logo-wrap { flex-shrink: 0; line-height: 1; }
.logo-a {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.logo-b {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}
.logo-sub {
  font-family: var(--ff-acc);
  font-size: .46rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(200,168,75,.5);
  display: block;
  margin-top: .1rem;
}

/* --- Navigation links --- */
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: .05rem;
}
.nav-a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .42rem .82rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 8px;
  letter-spacing: .02em;
  transition: all var(--ease);
}
.nav-a:hover {
  color: var(--gold-lt);
  background: rgba(200,168,75,.1);
}
/* Active nav link state */
.nav-a.active {
  color: var(--gold-lt);
  background: rgba(200,168,75,.12);
}

/* --- Dropdown menus --- */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + .7rem);
  left: 0;
  min-width: 210px;
  background: var(--ink-mid);
  border: 1px solid var(--gold-a30);
  border-radius: var(--r2);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--ease);
  box-shadow: 0 20px 56px rgba(0,0,0,.5);
}
.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drop li a {
  display: block;
  padding: .6rem .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  border-radius: 8px;
  transition: all var(--ease);
}
.drop li a:hover {
  color: var(--gold-lt);
  background: rgba(200,168,75,.1);
  padding-left: 1.2rem;
}

/* --- Hamburger (mobile) --- */
.ham {
  display: none;           /* Hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  z-index: 1001;
}
.ham span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
/* Hamburger "X" state */
.ham.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   5. HERO SECTION
   Full-viewport hero with background image overlay.
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg,
    rgba(0,0,0,.93) 0%,
    rgba(12,12,12,.7) 50%,
    rgba(0,0,0,.9) 100%),
    url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1400&q=80') center/cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 75% at 68% 52%, rgba(200,168,75,.07) 0%, transparent 65%);
}

/* Hero 2-column grid */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4.5rem;
  align-items: center;
}
.hero-text { color: var(--white); }

/* Animated badge pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: rgba(200,168,75,.09);
  border: 1px solid var(--gold-a30);
  color: var(--gold-lt);
  font-family: var(--ff-acc);
  font-size: .57rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
}
.badge-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseRing 2s infinite;
}

/* Hero heading */
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}
.hero-h1 em {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-lt);
  font-size: 1.1em;
}

/* Gold accent line */
.hero-rule {
  display: block;
  width: 72px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem 0;
}

.hero-p {
  font-size: .97rem;
  color: rgba(255,255,255,.66);
  max-width: 470px;
  margin-bottom: 2.4rem;
  line-height: 1.88;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.st strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.st span {
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  font-weight: 300;
  letter-spacing: .05em;
}
.st-div {
  width: 1px; height: 34px;
  background: rgba(255,255,255,.11);
}

/* Floating hero card */
.hero-card-wrap {
  position: relative;
  animation: float2 6s ease-in-out infinite;
}
.hero-card {
  position: relative;
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(200,168,75,.18);
}
/* Corner brackets on hero card */
.hero-card::before, .hero-card::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}
.hero-card::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.hero-card::after  { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

/* Floating info badge on hero card */
.hero-float {
  position: absolute;
  bottom: 1.6rem; left: 1.6rem;
  background: rgba(12,12,12,.93);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-a30);
  border-radius: var(--r);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.38);
  z-index: 2;
}
.hero-float i { font-size: 1.4rem; color: var(--gold); }
.hero-float strong { display: block; font-size: .83rem; color: var(--white); font-weight: 600; }
.hero-float span { font-size: .68rem; color: rgba(255,255,255,.42); }

/* Scroll cue arrow at bottom of hero */
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.28);
  font-family: var(--ff-acc);
  font-size: .5rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce2 2.5s infinite;
}
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(200,168,75,.55), transparent);
}


/* ============================================================
   6. TRUST BAR
   Horizontal strip of trust signals below hero.
   ============================================================ */
.trust-bar {
  background: linear-gradient(90deg, var(--ink), var(--ink-lite), var(--ink));
  border-top: 1px solid var(--gold-a30);
  border-bottom: 1px solid var(--gold-a30);
  padding: 1.15rem 0;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-it {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.65);
  font-family: var(--ff-acc);
  font-size: .57rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-it i { color: var(--gold); font-size: .82rem; }


/* ============================================================
   7. CONTENT SECTIONS
   Art grid, procedure cards, journey steps, etc.
   ============================================================ */

/* --- Art Grid (2-col image + text) --- */
.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.art-img-wrap { position: relative; }
.art-img {
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
  border: 1px solid rgba(200,168,75,.16);
}
.art-img img { width: 100%; height: 100%; object-fit: cover; }
.art-badge {
  position: absolute;
  bottom: -1.4rem; right: -1.4rem;
  background: var(--ink);
  border: 1px solid var(--gold-a30);
  border-radius: var(--r2);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shad-gold);
}
.art-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.art-badge span { font-size: .68rem; color: rgba(255,255,255,.5); letter-spacing: .06em; }

/* Art text column */
.art-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 1.1rem;
}
.art-text p {
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.82;
  margin-bottom: 1rem;
}

/* Pillars (2x2 feature grid) */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.6rem 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: .95rem 1.05rem;
  transition: all var(--ease);
}
.pillar:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-card);
}
.pil-icon {
  width: 34px; height: 34px;
  background: var(--gold-a12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pil-icon i { color: var(--gold); font-size: .84rem; }
.pillar h5 { font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: .18rem; }
.pillar p  { font-size: .76rem; color: var(--muted); line-height: 1.5; }

/* --- Procedure Cards --- */
.proc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.pcard {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r3);
  overflow: hidden;
  transition: all var(--ease);
  box-shadow: var(--shad-card);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shad-gold);
  border-color: var(--gold-a30);
}
.pcard-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-badge {
  position: absolute;
  top: .9rem; left: .9rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-acc);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 50px;
}
.pcard-body { padding: 1.4rem; }
.pcard-body h3 {
  font-family: var(--ff-head);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .45rem;
}
.pcard-body p {
  font-size: .81rem;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 1rem;
}
.pcard-meta {
  display: flex;
  gap: 1.2rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.pmeta-it {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .73rem;
  color: var(--muted);
}
.pmeta-it i { color: var(--gold); font-size: .78rem; }

/* --- Journey Steps (timeline) --- */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line across the timeline */
.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200,168,75,.3));
  z-index: 0;
}
.jstep {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}
.jstep-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: all var(--ease);
}
.jstep:hover .jstep-num {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.1);
}
.jstep h4 { font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.jstep p  { font-size: .76rem; color: var(--muted); line-height: 1.55; }


/* ============================================================
   8. RESULTS / BEFORE & AFTER
   Cards showing transformation results.
   ============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.rcard {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--shad-card);
  transition: all var(--ease);
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shad-gold);
  border-color: var(--gold-a30);
}
.rcard-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  gap: 2px;
}
.rcard-imgs img { width: 100%; height: 100%; object-fit: cover; }
.rcard-body { padding: 1.3rem; }
.rcard-labels { display: flex; gap: .5rem; margin-bottom: .8rem; }
.rcard-labels span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 50px;
}
.lbl-before { background: rgba(0,0,0,.07); color: var(--muted); }
.lbl-after  { background: var(--gold-a12); color: var(--gold); }
.rcard-body h4 { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.rcard-body p  { font-size: .78rem; color: var(--muted); line-height: 1.55; }
.rcard-stats {
  display: flex;
  gap: 1rem;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.rst-it { text-align: center; }
.rst-it strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rst-it span { font-size: .66rem; color: var(--muted); letter-spacing: .04em; }


/* ============================================================
   9. COMPARISON TABLES & CARDS
   Feature comparison grids.
   ============================================================ */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table th {
  padding: 1rem 1.2rem;
  font-family: var(--ff-acc);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid var(--gold-a30);
}
.compare-table th:first-child { color: var(--muted); }
.compare-table th:not(:first-child) { color: var(--white); background: var(--ink); }
.compare-table th.th-highlight { background: var(--gold); color: var(--ink); }
.compare-table td {
  padding: .9rem 1.2rem;
  font-size: .84rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.07);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cream2); }
.compare-table td:not(:first-child) { text-align: center; background: var(--white); }
.compare-table td.td-highlight { background: var(--gold-pale) !important; }
.check { color: var(--gold); font-size: 1rem; }
.cross { color: #d1d5db; font-size: .9rem; }

/* Procedure comparison cards (4-column) */
.proc-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pcomp-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r2);
  padding: 1.4rem;
  transition: all var(--ease);
  text-align: center;
}
.pcomp-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-3px);
}
.pcomp-card.featured {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.pcomp-icon {
  width: 48px; height: 48px;
  background: var(--gold-a12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.pcomp-icon i { color: var(--gold); font-size: 1.1rem; }
.pcomp-card h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.pcomp-card p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: .8rem;
}
.pcomp-tag {
  display: inline-block;
  font-family: var(--ff-acc);
  font-size: .5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-a30);
  padding: .2rem .6rem;
  border-radius: 50px;
}


/* ============================================================
   10. COST & PRICING
   Cost type cards, breakup bars, testimonial slider.
   ============================================================ */
.cost-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.cost-type-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.5rem;
  transition: all var(--ease);
}
.cost-type-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-card);
}
.cost-type-card h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.cost-type-card h4 i { color: var(--gold); font-size: .9rem; }
.cost-range {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .6rem;
}
.cost-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,.06);
  border-radius: 3px;
  margin-bottom: .8rem;
  overflow: hidden;
}
.cost-bar-fill {
  height: 100%;
  width: 0;          /* Animated to data-pct via JS */
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 3px;
  transition: width 1.2s ease;
}
.cost-type-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Cost breakup section */
.breakup-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--shad-card);
}
.breakup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.6rem;
  background: var(--ink);
  flex-wrap: wrap;
  gap: 1rem;
}
.breakup-header h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.breakup-total span {
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  display: block;
}
.breakup-total strong {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lt);
}
.breakup-items { padding: 1.2rem 1.6rem; }
.breakup-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.breakup-item:last-child { border-bottom: none; }
.breakup-label {
  font-size: .85rem;
  color: var(--text);
  flex: 0 0 200px;
}
.breakup-bar-bg {
  flex: 1;
  height: 5px;
  background: rgba(0,0,0,.05);
  border-radius: 3px;
  overflow: hidden;
}
.breakup-mini-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 3px;
  transition: width 1.2s ease;
}
.breakup-price {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  flex: 0 0 80px;
  text-align: right;
}

/* Testimonial slider */
.testi-wrap { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r2);
  padding: 1.6rem;
  box-shadow: var(--shad-card);
}
.testi-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1rem;
  font-style: italic;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: .84rem; font-weight: 700; color: var(--ink); }
.testi-proc { font-size: .72rem; color: var(--muted); }
.testi-stars {
  color: var(--gold);
  font-size: .72rem;
  margin-bottom: .5rem;
}
.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.t-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--muted);
  transition: all var(--ease);
}
.t-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.t-dots { display: flex; gap: .4rem; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  border: none;
  transition: all var(--ease);
}
.t-dot.on { background: var(--gold); transform: scale(1.3); }


/* ============================================================
   11. DIAGNOSTICS GRID
   Pre-surgical test information cards.
   ============================================================ */
.diag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.diag-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.4rem;
  transition: all var(--ease);
}
.diag-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-card);
  transform: translateY(-3px);
}
.diag-icon {
  width: 42px; height: 42px;
  background: var(--gold-a12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
}
.diag-icon i { color: var(--gold); font-size: 1rem; }
.diag-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.diag-card p { font-size: .8rem; color: var(--muted); line-height: 1.55; }


/* ============================================================
   12. BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.5rem;
  transition: all var(--ease);
  text-align: center;
}
.benefit-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-4px);
}
.benefit-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: .8rem;
}
.benefit-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.benefit-card p { font-size: .8rem; color: var(--muted); line-height: 1.62; }


/* ============================================================
   13. WHY CHOOSE US
   2-column layout with features list + image.
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.2rem;
  transition: all var(--ease);
}
.why-item:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-card);
  transform: translateX(4px);
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--gold-a12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon i { color: var(--gold); font-size: 1.1rem; }
.why-item h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .28rem; }
.why-item p  { font-size: .81rem; color: var(--muted); line-height: 1.6; }

.why-img-wrap { position: relative; }
.why-img {
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  top: -1.4rem; left: -1.4rem;
  background: var(--gold);
  border-radius: var(--r2);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shad-gold);
}
.why-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.why-badge span { font-size: .68rem; color: rgba(12,12,12,.65); font-weight: 600; }


/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all var(--ease);
}
.faq-item.open {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: 1.1rem 1.3rem;
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: all var(--ease);
}
.faq-q:hover { background: var(--cream); }
.faq-item.open .faq-q { background: var(--cream2); color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--muted);
  transition: all var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding: .2rem 1.3rem 1.2rem;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ============================================================
   15. CTA / READY SECTION
   Dark gradient call-to-action block.
   ============================================================ */
.ready-sec {
  background: linear-gradient(135deg, var(--ink) 0%, #1a1400 50%, var(--ink) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ready-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,168,75,.1) 0%, transparent 70%);
}
.ready-sec h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.ready-sec h2 em { font-style: italic; color: var(--gold-lt); }
.ready-sec p {
  color: rgba(255,255,255,.52);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.ready-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ready-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.rstat-item { text-align: center; }
.rstat-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.rstat-item span { font-size: .73rem; color: rgba(255,255,255,.38); letter-spacing: .05em; }


/* ============================================================
   16. BOOKING FORM
   ============================================================ */
.book-sec { background: var(--cream2); padding: 5.5rem 0; }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: start;
}
.book-info h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.book-info p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.book-perks {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}
.book-perk {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .87rem;
  color: var(--text);
}
.book-perk i { color: var(--gold); width: 18px; text-align: center; }

/* Form card (dark themed) */
.book-form-card {
  background: var(--ink);
  border: 1px solid var(--gold-a30);
  border-radius: var(--r3);
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.book-form-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.6rem;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.f-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: .88rem 1rem;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--white);
  outline: none;
  transition: all var(--ease);
}
.f-input::placeholder { color: rgba(255,255,255,.3); }
.f-input:focus {
  border-color: var(--gold);
  background: rgba(200,168,75,.07);
  box-shadow: 0 0 0 3px rgba(200,168,75,.13);
}
/* Custom select arrow */
.f-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a84b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.f-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #a5861f);
  color: var(--ink);
  border: none;
  border-radius: var(--r);
  padding: 1.1rem;
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all var(--ease);
  margin-top: .4rem;
  box-shadow: 0 4px 20px rgba(200,168,75,.28);
}
.f-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shad-gold);
}
.f-disc-form {
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  text-align: center;
  margin-top: .5rem;
}
.f-success-box {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gold-lt);
  font-size: .92rem;
  line-height: 1.6;
}
.f-success-box i { font-size: 2rem; margin-bottom: .7rem; display: block; }


/* ============================================================
   17. AUTHOR / SOURCES
   ============================================================ */
.author-sec {
  background: var(--cream2);
  border-top: 1px solid rgba(0,0,0,.07);
  padding: 2rem 0;
}
.sources-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.sources-lbl {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
}
.sources-count { font-weight: 700; color: var(--ink); }
.src-toggle {
  background: none;
  border: none;
  color: var(--muted);
  padding: .3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: all var(--ease);
}
.src-toggle:hover { color: var(--gold); background: var(--gold-a12); }
.src-toggle.open  { color: var(--gold); transform: rotate(45deg); }
.sources-list {
  display: none;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.4rem;
}
.sources-list.vis { display: flex; }
.sources-list li { font-size: .78rem; color: var(--muted); }
.sources-list a  { color: var(--gold); text-decoration: underline; }
.author-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(0,0,0,.07);
}
.author-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-av img { width: 100%; height: 100%; object-fit: cover; }
.author-by { font-size: .83rem; margin-bottom: .18rem; }
.author-name { color: var(--gold); font-weight: 700; }
.author-bio { font-size: .76rem; color: var(--muted); line-height: 1.5; }
.footer-links-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 1.1rem;
}
.footer-link-a {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-link-a:hover { color: var(--gold); }


/* ============================================================
   18. WHATSAPP CTA BANNER
   Full-width sticky-like CTA with WhatsApp button.
   ============================================================ */
.cta-banner-wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3.5rem;
}
.cta-banner {
  position: relative;
  background: linear-gradient(118deg, var(--ink), var(--ink-lite));
  border: 1px solid var(--gold-a30);
  border-radius: var(--r3);
  padding: 2.4rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
}
.cta-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .35;
}
.cta-glow.l { left: -70px; top: -70px; background: radial-gradient(circle, rgba(200,168,75,.18), transparent 65%); }
.cta-glow.r { right: -70px; bottom: -70px; background: radial-gradient(circle, rgba(200,168,75,.12), transparent 65%); }
.cta-profile {
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-a30);
  flex-shrink: 0;
}
.cta-profile img { width: 100%; height: 100%; object-fit: cover; }
.cta-body { flex: 1; }
.cta-body h2 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .35rem;
}
.cta-body p { font-size: .86rem; color: rgba(255,255,255,.46); line-height: 1.7; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: linear-gradient(135deg, #25D366, #1aad52);
  color: var(--white);
  font-weight: 700;
  font-size: .86rem;
  padding: .88rem 1.7rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--ease);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,.28);
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.48);
}
.wa-btn svg { width: 19px; height: 19px; fill: var(--white); }


/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(200,168,75,.14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.8rem;
  padding: 4.5rem 0 2.8rem;
}
.footer-brand p {
  font-size: .83rem;
  color: rgba(255,255,255,.38);
  line-height: 1.8;
  margin: 1rem 0 1.4rem;
  max-width: 270px;
}
.footer-socials { display: flex; gap: .5rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  transition: all var(--ease);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer-col h4 {
  font-family: var(--ff-acc);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .81rem;
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--ease);
}
.footer-col ul li a::before { content: '–'; color: rgba(200,168,75,.3); font-size: .68rem; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-contacts { gap: .85rem !important; }
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  line-height: 1.6;
}
.footer-contacts i { color: var(--gold); font-size: .78rem; margin-top: .2rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.4rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.24); margin-bottom: .25rem; }


/* ============================================================
   20. FLOATING ACTION BUTTONS
   Fixed phone & WhatsApp buttons at bottom-right.
   ============================================================ */
.fl-call, .fl-wa {
  position: fixed;
  bottom: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 800;
  transition: all var(--ease);
  box-shadow: 0 8px 22px rgba(0,0,0,.26);
}
.fl-call {
  right: calc(2rem + 58px);
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold-a30);
}
.fl-call:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--ink);
}
.fl-wa {
  right: 2rem;
  background: #25D366;
  color: var(--white);
  border: none;
}
.fl-wa:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(37,211,102,.38);
}


/* ============================================================
   21. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes bounce2 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,75,.6); }
  100% { box-shadow: 0 0 0 8px rgba(200,168,75,0); }
}


/* ============================================================
   22. PAGE-SPECIFIC STYLES (Sub-pages)
   Styles used on inner/sub-pages of the microsite.
   ============================================================ */

/* --- Sub-page Hero (smaller than homepage hero) --- */
.sub-hero {
  position: relative;
  padding: 10rem 0 4.5rem;
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}
.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(200,168,75,.08) 0%, transparent 70%);
}
.sub-hero .wrap { position: relative; z-index: 1; }
.sub-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .8rem;
}
.sub-hero h1 em { font-style: italic; color: var(--gold-lt); }
.sub-hero p {
  color: rgba(255,255,255,.52);
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

/* Breadcrumb navigation */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--gold-lt);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* --- Content prose for sub-pages --- */
.content-prose {
  max-width: 820px;
  margin: 0 auto;
}
.content-prose h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.content-prose h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .7rem;
  margin-top: 2rem;
}
.content-prose p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.82;
  margin-bottom: 1.2rem;
}
.content-prose ul, .content-prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.content-prose ol { list-style: decimal; }
.content-prose li {
  font-size: .89rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: .5rem;
}
.content-prose li strong { color: var(--ink); }
.content-prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gold-a12);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--text);
}

/* --- Doctor / Team Profile Card --- */
.doctor-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.doctor-img {
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
  border: 1px solid rgba(200,168,75,.16);
}
.doctor-img img { width: 100%; height: 100%; object-fit: cover; }
.doctor-info h2 {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem;
}
.doctor-info .doctor-title {
  font-family: var(--ff-acc);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.doctor-info p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.82;
  margin-bottom: 1rem;
}

/* Doctor credentials list */
.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: 1.5rem 0;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text);
  padding: .6rem .8rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r);
  transition: all var(--ease);
}
.cred-item:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-card);
}
.cred-item i { color: var(--gold); font-size: .8rem; }

/* --- Clinic page --- */
.clinic-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.clinic-feat {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--ease);
}
.clinic-feat:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-3px);
}
.clinic-feat i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: .8rem;
}
.clinic-feat h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.clinic-feat p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* --- Video page embed container --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--shad-card);
  transition: all var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shad-gold);
  border-color: var(--gold-a30);
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;   /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-card-body { padding: 1.2rem; }
.video-card-body h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem;
}
.video-card-body p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* --- Contact page form (light-themed) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--ink);
  border: 1px solid var(--gold-a30);
  border-radius: var(--r3);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.contact-detail p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.contact-detail strong { color: var(--white); display: block; margin-bottom: .2rem; }

/* Map embed */
.map-wrap {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,.16);
  margin-top: 1.5rem;
}
.map-wrap iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* International patients page */
.intl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.intl-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  transition: all var(--ease);
}
.intl-step:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-3px);
}
.intl-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-a12);
  color: var(--gold);
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .8rem;
  border: 2px solid var(--gold-a30);
}
.intl-step h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.intl-step p  { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* --- Body area cards (treatment areas page) --- */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.5rem;
  transition: all var(--ease);
}
.area-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-4px);
}
.area-card-icon {
  width: 48px; height: 48px;
  background: var(--gold-a12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
}
.area-card-icon i { color: var(--gold); font-size: 1.1rem; }
.area-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.area-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; }
.area-card-meta { font-size: .75rem; color: var(--gold); font-weight: 600; }

/* --- Anaesthesia page --- */
.anaes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.anaes-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r3);
  padding: 1.8rem;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.anaes-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.anaes-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-4px);
}
.anaes-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}
.anaes-card p { font-size: .84rem; color: var(--muted); line-height: 1.7; margin-bottom: .8rem; }
.anaes-tag {
  display: inline-block;
  font-family: var(--ff-acc);
  font-size: .48rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-a30);
  padding: .2rem .6rem;
  border-radius: 50px;
}

/* --- Technology page --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tech-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r3);
  overflow: hidden;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.tech-card:hover {
  border-color: var(--gold-a30);
  box-shadow: var(--shad-gold);
  transform: translateY(-4px);
}
.tech-card-img {
  height: 200px;
  overflow: hidden;
}
.tech-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.tech-card:hover .tech-card-img img { transform: scale(1.05); }
.tech-card-body { padding: 1.5rem; flex: 1; }
.tech-card-body h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}
.tech-card-body p { font-size: .84rem; color: var(--muted); line-height: 1.7; }


/* ============================================================
   23. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet (up to 1100px) --- */
@media (max-width: 1100px) {
  .hero-grid, .art-grid, .why-grid, .book-grid,
  .doctor-profile, .contact-grid { grid-template-columns: 1fr; gap: 2.8rem; }

  .hero-card-wrap, .art-img-wrap { max-width: 420px; margin: 0 auto; animation: none; }

  .proc-cards, .proc-compare { grid-template-columns: 1fr 1fr; }

  .diag-grid, .clinic-features, .tech-grid { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid, .area-cards, .anaes-cards { grid-template-columns: 1fr 1fr; }

  .surgeons-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }

  .faq-grid { grid-template-columns: 1fr; }

  .results-grid, .video-grid { grid-template-columns: 1fr 1fr; }

  .journey-steps { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .journey-steps::before { display: none; }

  .intl-steps { grid-template-columns: 1fr 1fr; }
}

/* --- Mobile (up to 768px) --- */
@media (max-width: 768px) {
  .ham { display: flex; }

  .nav-wrap {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform var(--ease);
    z-index: 999;
  }
  .nav-wrap.open { transform: translateX(0); }

  .nav-list { flex-direction: column; align-items: center; gap: .4rem; }
  .nav-a { font-size: 1.05rem; padding: .75rem 1.8rem; color: var(--white); }

  .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    border: none;
  }

  .hero { padding: 5.5rem 0 3.5rem; }

  .proc-cards, .results-grid, .proc-compare,
  .cost-type-grid, .benefits-grid, .diag-grid,
  .surgeons-grid, .video-grid, .area-cards,
  .anaes-cards, .clinic-features, .tech-grid,
  .intl-steps { grid-template-columns: 1fr; }

  .journey-steps { grid-template-columns: 1fr 1fr; }

  .breakup-item { flex-wrap: wrap; gap: .5rem; }
  .breakup-label { flex: 0 0 100%; }

  .cta-banner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.8rem 0 2rem; }

  .ready-stats { gap: 1.8rem; }

  .doctor-profile { grid-template-columns: 1fr; }
  .doctor-img { max-width: 320px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }

  .credentials { grid-template-columns: 1fr; }
}

/* --- Small Mobile (up to 480px) --- */
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem; }
  .hero-stats { flex-wrap: wrap; gap: .7rem; }
  .st-div { display: none; }
  .trust-row { gap: 1rem; }
  .testi-card { flex: 0 0 90vw; }
  .f-row { grid-template-columns: 1fr; }
  .sub-hero { padding: 8rem 0 3rem; }
}
