/* ============================================================
   RONZA CLINIC — Design System
   Luxury · feminine · premium medical beauty
   ============================================================ */

:root{
  /* Brand palette */
  --rose:#CE8A81;          /* primary dusty rose */
  --rose-gold:#C08080;     /* logo-matched deeper rose */
  --rose-deep:#A9605A;     /* hover / emphasis */
  --blush:#E8C4BF;         /* secondary soft blush */
  --blush-light:#F8EFED;   /* soft accent wash */
  --ivory:#FFFDFC;         /* warm white background */
  --charcoal:#2B2929;      /* primary text */
  --taupe:#8A7A76;         /* muted text */
  --taupe-light:#BBAEA9;   /* faint text / borders */
  --white:#FFFFFF;

  /* Derived */
  --line:rgba(43,41,41,.10);
  --line-soft:rgba(43,41,41,.06);
  --shadow-sm:0 2px 10px rgba(43,41,41,.05);
  --shadow-md:0 14px 40px -18px rgba(43,41,41,.18);
  --shadow-lg:0 30px 70px -30px rgba(174,106,100,.35);

  /* Type — luxury Arabic designers */
  --font-display:"El Messiri", "Amiri", serif;                 /* award-winning luxury Arabic display */
  --font-body:"IBM Plex Sans Arabic", "Almarai", "Segoe UI", sans-serif;
  --font-latin:"Cormorant Garamond", "Times New Roman", serif; /* Latin accents + eyebrows */

  /* Rhythm */
  --gutter:clamp(20px, 5vw, 72px);
  --section-pad:clamp(72px, 10vw, 140px);
  --radius:20px;
  --radius-sm:12px;

  --ease:cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

/* Allow the HTML `hidden` attribute to win over display rules */
[hidden]{ display:none !important; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  font-family:var(--font-body);
  font-weight:400;
  color:var(--charcoal);
  background:var(--ivory);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul,ol{ list-style:none; }

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

:focus-visible{ outline:2px solid var(--rose); outline-offset:3px; border-radius:4px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:700; line-height:1.35; letter-spacing:.2px; }

.display{
  font-family:var(--font-display);
  font-size:clamp(2.2rem, 5.6vw, 4.1rem);
  line-height:1.28;
  font-weight:700;
}

.h2{
  font-size:clamp(1.9rem, 4vw, 2.9rem);
  line-height:1.32;
}

.lead{ font-size:clamp(1.05rem, 1.6vw, 1.25rem); color:var(--taupe); font-weight:300; }

/* Eyebrow label above headings */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-latin);
  font-size:.8rem; letter-spacing:.32em; text-transform:uppercase;
  color:var(--rose-deep); font-weight:500;
  margin-bottom:18px;
}
.eyebrow::before{ content:""; width:28px; height:1px; background:var(--rose); }

/* Latin brand word */
.latin{ font-family:var(--font-latin); letter-spacing:.14em; font-weight:400; }

/* ---------- Layout helpers ---------- */
.container{ width:100%; max-width:1200px; margin-inline:auto; padding-inline:var(--gutter); }

.section{ padding-block:var(--section-pad); position:relative; }

.grid{ display:grid; gap:clamp(24px, 4vw, 48px); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-4{ grid-template-columns:repeat(4, 1fr); }

.center{ text-align:center; }
.center .eyebrow{ justify-content:center; }
.center .eyebrow::before{ display:none; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 34px; border-radius:999px;
  font-family:var(--font-body); font-weight:700; font-size:1rem;
  border:1px solid transparent;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }

.btn-primary{
  background:linear-gradient(135deg, var(--rose), var(--rose-gold));
  color:#fff;
  box-shadow:0 12px 30px -12px rgba(174,106,100,.6);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 40px -14px rgba(174,106,100,.65); }

.btn-ghost{
  background:transparent; color:var(--charcoal);
  border-color:var(--line);
}
.btn-ghost:hover{ border-color:var(--rose); color:var(--rose-deep); transform:translateY(-2px); }

.btn-light{ background:#fff; color:var(--charcoal); box-shadow:var(--shadow-sm); }
.btn-light:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }

/* ---------- Top utility bar (RAM-clinic style) ---------- */
.topbar{
  position:fixed; top:0; inset-inline:0; z-index:99;
  background:var(--charcoal); color:#D8CCC8;
  font-size:.8rem;
}
.topbar-inner{
  max-width:1200px; margin-inline:auto; padding:9px var(--gutter);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.topbar a{ color:#F3EDEB; transition:color .25s; display:inline-flex; align-items:center; gap:7px; }
.topbar a:hover{ color:var(--blush); }
.topbar svg{ width:15px; height:15px; color:var(--rose); }
.topbar-left, .topbar-right{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.topbar .hours span{ color:#BBAEA9; }
.topbar .divider{ width:1px; height:14px; background:rgba(255,255,255,.15); }

/* ---------- Header ---------- */
.header{
  position:fixed; inset-inline:0; top:40px; z-index:100;
  transition:background .4s, box-shadow .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.header.scrolled{
  background:rgba(255,253,252,.85);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--line-soft);
  box-shadow:var(--shadow-sm);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:82px; gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{
  width:52px; height:52px; border-radius:50%;
  object-fit:cover; border:1px solid var(--line-soft);
  background:#fff; box-shadow:var(--shadow-sm);
}
.brand-name{
  font-family:var(--font-latin); font-size:1.5rem; font-weight:500;
  letter-spacing:.22em; color:var(--charcoal); line-height:1;
}
.brand-tag{ display:block; font-family:var(--font-body); font-size:.68rem; letter-spacing:.14em; color:var(--taupe); margin-top:4px; }

.nav{ display:flex; align-items:center; gap:34px; }
.nav a{
  font-size:.98rem; font-weight:500; color:var(--charcoal);
  position:relative; padding:6px 0;
}
.nav a::after{
  content:""; position:absolute; inset-inline:0; bottom:0; height:1.5px;
  background:var(--rose); transform:scaleX(0); transform-origin:center;
  transition:transform .35s var(--ease);
}
.nav a:hover::after, .nav a.active::after{ transform:scaleX(1); }
.nav a.active{ color:var(--rose-deep); }

.header-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none; width:46px; height:46px; border-radius:50%;
  border:1px solid var(--line); background:transparent; align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:20px; height:2px; background:var(--charcoal); border-radius:2px;
  position:relative; transition:.3s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ top:0; transform:rotate(45deg); }
.nav-toggle.open span::after{ top:0; transform:rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding-top:210px; padding-bottom:80px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0; z-index:-2;
  background:
    radial-gradient(60% 55% at 85% 8%, var(--blush-light) 0%, transparent 65%),
    radial-gradient(50% 45% at 8% 90%, var(--blush-light) 0%, transparent 60%),
    var(--ivory);
}
.hero-blob{
  position:absolute; border-radius:50%; filter:blur(70px); opacity:.55; z-index:-1;
  background:var(--blush);
}
.hero-blob.a{ width:420px; height:420px; top:-80px; inset-inline-end:-120px; }
.hero-blob.b{ width:300px; height:300px; bottom:-60px; inset-inline-start:-100px; background:var(--blush-light); }

.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:clamp(32px,6vw,80px); }

.hero-copy .eyebrow{ margin-bottom:22px; }
.hero-copy h1{ margin-bottom:22px; }
.hero-copy .lead{ max-width:34ch; margin-bottom:34px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; }

.hero-stats{
  display:flex; gap:clamp(20px,4vw,44px); margin-top:48px;
}
.stat{ position:relative; }
.stat + .stat::before{ content:""; position:absolute; inset-inline-start:-22px; top:8px; bottom:8px; width:1px; background:var(--line); }
.stat-num{
  font-family:var(--font-latin); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:400;
  color:var(--rose-deep); line-height:1;
}
.stat-label{ font-size:.85rem; color:var(--taupe); margin-top:6px; }

/* Hero visual */
.hero-visual{ position:relative; display:flex; justify-content:center; }
.hero-frame{
  position:relative; width:min(100%,460px); aspect-ratio:1;
  border-radius:50%; overflow:hidden;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-lg);
  background:#fff;
}
.hero-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-ring{
  position:absolute; inset:-18px; border-radius:50%;
  border:1px dashed var(--rose); opacity:.4;
  animation:spin 60s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.hero-badge{
  position:absolute; display:flex; align-items:center; gap:10px;
  background:#fff; border-radius:999px; padding:12px 20px;
  box-shadow:var(--shadow-md); font-size:.9rem; font-weight:500;
}
.hero-badge .dot{ width:9px; height:9px; border-radius:50%; background:var(--rose); box-shadow:0 0 0 4px var(--blush-light); }
.hero-badge.b1{ bottom:30px; inset-inline-start:-10px; }
.hero-badge.b2{ top:26px; inset-inline-end:-6px; }

.hero-rose{
  position:absolute; inset-inline-end:-40px; bottom:-50px; width:150px; opacity:.5;
  animation:float 7s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }

/* ---------- Marquee strip ---------- */
.marquee{
  border-block:1px solid var(--line-soft);
  padding:20px 0; overflow:hidden; white-space:nowrap;
  background:var(--blush-light);
}
.marquee-track{ display:inline-flex; gap:52px; animation:marquee 28s linear infinite; }
.marquee span{
  font-family:var(--font-latin); letter-spacing:.2em; text-transform:uppercase;
  color:var(--taupe); font-size:.82rem;
  display:inline-flex; align-items:center; gap:52px;
}
.marquee span::after{ content:"✦"; color:var(--rose); }
@keyframes marquee{ to{ transform:translateX(50%); } }

/* ---------- Cards ---------- */
.card{
  background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius);
  padding:34px 30px; transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position:relative; overflow:hidden;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--blush); }

.icon-badge{
  width:56px; height:56px; border-radius:16px;
  background:var(--blush-light); color:var(--rose-deep);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.icon-badge svg{ width:26px; height:26px; }

.card h3{ font-size:1.35rem; margin-bottom:10px; }
.card p{ color:var(--taupe); font-size:.95rem; }

.card-link{ display:inline-flex; align-items:center; gap:6px; color:var(--rose-deep); font-weight:700; font-size:.9rem; margin-top:16px; }
.card-link svg{ width:16px; height:16px; transition:transform .3s; }
.card:hover .card-link svg{ transform:translateX(-4px); }

/* ---------- Feature / split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(40px,7vw,90px); }
.split-media{ position:relative; }
.split-media .img-wrap{
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); position:relative;
}
.split-media .img-wrap img{ width:100%; height:100%; object-fit:cover; }
.split-media .accent{
  position:absolute; border-radius:var(--radius); z-index:-1;
  background:var(--blush);
}
.split-media .accent.tl{ top:-24px; inset-inline-start:-24px; width:60%; height:60%; }
.split-media .accent.br{ bottom:-24px; inset-inline-end:-24px; width:55%; height:55%; background:var(--blush-light); }

.quote-pull{
  position:absolute; bottom:-28px; inset-inline-start:-16px;
  background:#fff; border-radius:var(--radius); padding:20px 24px;
  box-shadow:var(--shadow-md); max-width:300px;
  border-inline-start:3px solid var(--rose);
}
.quote-pull p{ font-family:var(--font-display); font-size:1.05rem; line-height:1.6; }

/* ---------- Checklist ---------- */
.check-list{ display:grid; gap:16px; margin-top:28px; }
.check-list li{ display:flex; align-items:flex-start; gap:12px; color:var(--charcoal); font-size:1.02rem; }
.check-list .tick{
  flex:none; width:26px; height:26px; border-radius:50%;
  background:var(--blush-light); color:var(--rose-deep);
  display:flex; align-items:center; justify-content:center; margin-top:2px;
}
.check-list .tick svg{ width:14px; height:14px; }

/* ---------- Testimonials ---------- */
.quote-card{
  background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius);
  padding:34px; display:flex; flex-direction:column; gap:22px; height:100%;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.quote-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.quote-card .stars{ color:var(--rose); letter-spacing:3px; font-size:.95rem; }
.quote-card blockquote{ font-family:var(--font-display); font-size:1.12rem; line-height:1.8; color:var(--charcoal); }
.quote-person{ display:flex; align-items:center; gap:14px; margin-top:auto; }
.avatar{
  width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg,var(--blush),var(--rose));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1.15rem;
}
.quote-person .name{ font-weight:700; font-size:.95rem; }
.quote-person .role{ font-size:.8rem; color:var(--taupe); }

/* ---------- Steps / process ---------- */
.steps{ counter-reset:step; display:grid; gap:28px; }
.step{ display:flex; gap:22px; align-items:flex-start; }
.step-num{
  flex:none; width:52px; height:52px; border-radius:50%;
  border:1px solid var(--rose); color:var(--rose-deep);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-latin); font-size:1.2rem;
}
.step h3{ font-size:1.25rem; margin-bottom:6px; }
.step p{ color:var(--taupe); font-size:.95rem; }

/* ---------- CTA band ---------- */
.cta-band{
  position:relative; overflow:hidden; text-align:center;
  background:linear-gradient(135deg, var(--rose), var(--rose-gold));
  color:#fff; border-radius:28px; padding:clamp(48px,7vw,80px) clamp(24px,5vw,64px);
  box-shadow:var(--shadow-lg);
}
.cta-band h2{ color:#fff; font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:14px; }
.cta-band p{ color:rgba(255,255,255,.9); max-width:52ch; margin-inline:auto; margin-bottom:30px; }
.cta-band .rose-mark{ position:absolute; opacity:.16; width:220px; inset-inline-end:-30px; bottom:-40px; transform:rotate(-20deg); }
.cta-band .rose-mark.l{ inset-inline-start:-40px; inset-inline-end:auto; top:-30px; bottom:auto; transform:rotate(140deg); }

/* ---------- Footer ---------- */
.footer{
  background:var(--charcoal); color:#F3EDEB; margin-top:var(--section-pad);
  padding-block:70px 30px;
}
.footer a{ color:#D8CCC8; transition:color .3s; }
.footer a:hover{ color:#fff; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer .brand-name{ color:#fff; }
.footer .brand-tag{ color:#BBAEA9; }
.footer-desc{ color:#BBAEA9; font-size:.92rem; margin-top:18px; max-width:34ch; }
.footer h4{ color:#fff; font-family:var(--font-body); font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; margin-bottom:20px; }
.footer-col ul{ display:grid; gap:12px; }
.footer-col a{ font-size:.94rem; }
.footer-contact li{ display:flex; gap:12px; align-items:flex-start; font-size:.94rem; color:#D8CCC8; }
.footer-contact li svg{ width:18px; height:18px; color:var(--rose); flex:none; margin-top:3px; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; transition:.3s;
}
.footer-social a:hover{ background:var(--rose); border-color:var(--rose); }
.footer-social svg{ width:18px; height:18px; }
.footer-bottom{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:26px; font-size:.84rem; color:#9C8F8B; }

/* ---------- Floating WhatsApp ---------- */
.wa-float{
  position:fixed; bottom:26px; inset-inline-end:26px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(37,211,102,.6);
  transition:transform .4s var(--ease);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  position:relative; padding-top:215px; padding-bottom:70px; overflow:hidden;
  background:
    radial-gradient(55% 60% at 90% 10%, var(--blush-light) 0%, transparent 60%),
    var(--ivory);
  text-align:center;
}
.page-hero .eyebrow{ justify-content:center; }
.page-hero .eyebrow::before{ display:none; }
.page-hero p.lead{ max-width:58ch; margin-inline:auto; margin-top:18px; }
.breadcrumb{ margin-top:22px; font-size:.85rem; color:var(--taupe); display:flex; gap:10px; justify-content:center; }
.breadcrumb a{ color:var(--rose-deep); }
.breadcrumb .sep{ color:var(--taupe-light); }

/* ---------- Service page ---------- */
.service-card{
  background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius);
  padding:36px 32px; display:flex; flex-direction:column; gap:14px; height:100%;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--blush); }
.service-card .icon-badge{ margin-bottom:6px; }
.service-card h3{ font-size:1.4rem; }
.service-card p{ color:var(--taupe); font-size:.95rem; }
.service-card .tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; }
.tag{
  font-size:.78rem; padding:6px 14px; border-radius:999px;
  background:var(--blush-light); color:var(--rose-deep); font-weight:500;
}

/* ---------- Booking ---------- */
.booking-shell{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(32px,5vw,64px); align-items:start; }
.form-card{
  background:#fff; border:1px solid var(--line-soft); border-radius:24px;
  padding:clamp(28px,4vw,48px); box-shadow:var(--shadow-md);
}
.form-step{ display:none; }
.form-step.active{ display:block; animation:fade .5s var(--ease); }
@keyframes fade{ from{ opacity:0; transform:translateY(12px);} to{ opacity:1; transform:none;} }

.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.88rem; font-weight:700; margin-bottom:8px; }
.field .hint{ font-size:.78rem; color:var(--taupe-light); margin-top:6px; }
.input, .select, .textarea{
  width:100%; padding:14px 18px; border-radius:14px;
  border:1px solid var(--line); background:var(--ivory);
  font-family:inherit; font-size:1rem; color:var(--charcoal);
  transition:border-color .3s, box-shadow .3s;
}
.input:focus, .select:focus, .textarea:focus{
  outline:none; border-color:var(--rose); box-shadow:0 0 0 4px var(--blush-light);
}
.textarea{ min-height:120px; resize:vertical; }

.choice-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.choice{
  position:relative; display:flex; align-items:center; gap:12px;
  padding:14px 16px; border:1px solid var(--line); border-radius:14px; cursor:pointer;
  transition:.3s; background:var(--ivory); font-size:.92rem;
}
.choice:hover{ border-color:var(--blush); }
.choice input{ position:absolute; opacity:0; }
.choice .mark{ width:20px; height:20px; border-radius:50%; border:2px solid var(--taupe-light); flex:none; transition:.3s; }
.choice input:checked ~ .mark{ border-color:var(--rose); background:var(--rose); box-shadow:inset 0 0 0 4px #fff; }
.choice:has(input:checked){ border-color:var(--rose); background:var(--blush-light); }

.step-head{ display:flex; align-items:center; gap:14px; margin-bottom:28px; }
.step-head .num{
  width:40px; height:40px; border-radius:50%; background:var(--rose); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-latin); font-size:1.1rem;
}
.step-head h3{ font-size:1.5rem; }

.form-nav{ display:flex; justify-content:space-between; gap:14px; margin-top:30px; }
.form-nav .btn{ flex:1; }

.booking-aside{ position:sticky; top:110px; }
.side-card{
  background:var(--blush-light); border-radius:24px; padding:34px; position:relative; overflow:hidden;
}
.side-card h3{ font-size:1.4rem; margin-bottom:16px; }
.side-card .rose-mark{ position:absolute; width:120px; opacity:.14; inset-inline-end:-20px; bottom:-20px; }
.booking-summary li{ display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid var(--line-soft); font-size:.95rem; }
.booking-summary li span:first-child{ color:var(--taupe); }
.booking-summary li span:last-child{ font-weight:700; }

.success-box{
  text-align:center; padding:20px;
}
.success-box .big-check{
  width:80px; height:80px; border-radius:50%; background:var(--blush-light);
  color:var(--rose-deep); display:flex; align-items:center; justify-content:center; margin:0 auto 24px;
}
.success-box .big-check svg{ width:38px; height:38px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(32px,5vw,64px); align-items:start; }
.info-card{
  display:flex; gap:18px; background:#fff; border:1px solid var(--line-soft);
  border-radius:var(--radius); padding:26px; margin-bottom:18px;
}
.info-card .icon-badge{ margin-bottom:0; flex:none; }
.info-card h4{ font-size:1.15rem; margin-bottom:4px; }
.info-card p{ color:var(--taupe); font-size:.95rem; }
.info-card a{ color:var(--rose-deep); }

.map-placeholder{
  border-radius:var(--radius); overflow:hidden; position:relative; min-height:320px;
  background:
    radial-gradient(70% 70% at 70% 20%, var(--blush-light), transparent 70%),
    #fff; border:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:center; text-align:center;
}
.map-placeholder .pin{ width:52px; height:52px; border-radius:50% 50% 50% 0; background:var(--rose); transform:rotate(-45deg); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.map-placeholder .pin svg{ transform:rotate(45deg); color:#fff; width:24px; height:24px; }

/* ---------- Stats band (RAM style) ---------- */
.stats-band{
  background:linear-gradient(135deg, var(--rose), var(--rose-gold));
  color:#fff; position:relative; overflow:hidden;
}
.stats-band::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(40% 80% at 10% 0%, rgba(255,255,255,.14), transparent 60%);
}
.stats-band .container{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:28px; padding-block:46px; }
.stats-band .stat{ text-align:center; position:relative; }
.stats-band .stat + .stat::before{ content:""; position:absolute; inset-inline-start:-14px; top:20%; bottom:20%; width:1px; background:rgba(255,255,255,.25); }
.stats-band .stat-num{ font-family:var(--font-latin); font-size:clamp(2rem,4vw,3rem); font-weight:500; color:#fff; line-height:1; }
.stats-band .stat-label{ color:rgba(255,255,255,.88); font-size:.95rem; margin-top:8px; }

/* ---------- Doctors carousel / grid (RAM style) ---------- */
.doctor-card{ text-align:center; }
.doctor-photo{
  width:110px; height:110px; border-radius:50%; margin:0 auto 18px;
  background:linear-gradient(135deg,var(--blush),var(--rose));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:2.4rem; color:#fff;
  box-shadow:var(--shadow-md); border:3px solid #fff;
}

/* ---------- Service price tag ---------- */
.price-tag{
  display:inline-block; margin-top:auto;
  font-family:var(--font-latin); font-size:1.05rem; font-weight:600; color:var(--rose-deep);
  background:var(--blush-light); border:1px solid var(--blush);
  padding:6px 16px; border-radius:999px; align-self:flex-start;
}

/* ---------- Promo / offer strip ---------- */
.promo-strip{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background:var(--blush-light); border:1px solid var(--blush); border-radius:18px;
  padding:22px 28px;
}
.promo-strip .promo-text{ display:flex; align-items:center; gap:14px; }
.promo-strip .promo-ico{ width:52px; height:52px; border-radius:14px; background:#fff; color:var(--rose-deep); display:flex; align-items:center; justify-content:center; flex:none; box-shadow:var(--shadow-sm); }
.promo-strip .promo-ico svg{ width:24px; height:24px; }
.promo-strip h3{ font-size:1.15rem; }
.promo-strip p{ color:var(--taupe); font-size:.88rem; }

/* ---------- Newsletter ---------- */
.newsletter{ margin-top:40px; border-top:1px solid rgba(255,255,255,.1); padding-top:32px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.newsletter h4{ color:#fff; margin-bottom:6px; }
.newsletter p{ color:#BBAEA9; font-size:.85rem; }
.newsletter-form{ display:flex; gap:10px; }
.newsletter-form input{
  padding:12px 18px; border-radius:999px; border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.06); color:#fff; font-family:inherit; font-size:.9rem; min-width:240px;
}
.newsletter-form input::placeholder{ color:#9C8F8B; }
.newsletter-form input:focus{ outline:none; border-color:var(--rose); }
.newsletter-form .btn{ background:var(--rose); color:#fff; border:0; }
.newsletter-form .btn:hover{ background:var(--rose-deep); }

/* ---------- Sliders (fade + carousel) ---------- */
.slider{ position:relative; display:grid; }
.slider .slide{ grid-area:1/1; opacity:0; visibility:hidden; transition:opacity 1s var(--ease), visibility 1s; z-index:0; }
.slider .slide.active{ opacity:1; visibility:visible; z-index:1; }
.slider .slide img{ max-width:100%; }
.slider-dots{ position:absolute; bottom:16px; inset-inline:0; z-index:5; display:flex; justify-content:center; gap:8px; }
.slider-dots button{
  width:8px; height:8px; border-radius:999px; border:0; background:rgba(255,255,255,.55);
  cursor:pointer; transition:all .35s var(--ease);
}
.slider-dots button.active{ width:24px; background:#fff; }
.slider-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:6;
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background:rgba(255,255,255,.9); color:var(--charcoal);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); transition:background .3s, color .3s, transform .3s;
}
.slider-arrow:hover{ background:var(--rose); color:#fff; }
.slider-arrow[data-prev]{ inset-inline-start:14px; }
.slider-arrow[data-next]{ inset-inline-end:14px; }
.slider-arrow svg{ width:20px; height:20px; }
.slider-caption{
  position:absolute; bottom:0; inset-inline:0; z-index:4; padding:56px 20px 46px;
  background:linear-gradient(to top, rgba(43,41,41,.72), transparent);
  color:#fff; text-align:center;
}

/* Hero slider (RAM-style full-bleed with crossfade) */
.hero-slider{ position:absolute; inset:0; z-index:-1; display:block; }
.hero-slider .slide, .hero-slider .slide.active{ position:absolute; inset:0; }
.hero-slider .slide img{ width:100%; height:100%; object-fit:cover; }
.hero-slider .slide::after{ content:""; position:absolute; inset:0; background:linear-gradient(120deg, rgba(255,253,252,.92) 0%, rgba(255,253,252,.6) 45%, rgba(255,253,252,.25) 100%); }
.hero-slider .slider-dots{ bottom:26px; }

/* Visual slider inside hero frame */
.visual-slider{ position:absolute; inset:0; }
.visual-slider .slide, .visual-slider .slide.active{ position:absolute; inset:0; }
.visual-slider .slide img{ width:100%; height:100%; object-fit:cover; }
.hero-frame .visual-slider .slider-dots{ bottom:12px; }

/* Card visual (service image area) */
.service-visual{
  height:190px; border-radius:14px; overflow:hidden; position:relative; margin-bottom:18px;
  background:linear-gradient(135deg, var(--blush-light), var(--blush));
  display:flex; align-items:center; justify-content:center;
}
.service-visual img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease); }
.service-card:hover .service-visual img{ transform:scale(1.07); }
.service-visual .big-icon{ width:74px; height:74px; border-radius:22px; background:#fff; color:var(--rose-deep); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); }
.service-visual .big-icon svg{ width:36px; height:36px; }

/* Featured card visual */
.card-visual{ height:150px; border-radius:14px; overflow:hidden; margin-bottom:18px; background:linear-gradient(135deg,var(--blush-light),var(--blush)); display:flex; align-items:center; justify-content:center; }
.card-visual img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease); }
.card:hover .card-visual img{ transform:scale(1.07); }

/* ---------- Gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gallery-item{ margin:0; border-radius:16px; overflow:hidden; background:#fff; border:1px solid var(--line-soft); box-shadow:var(--shadow-sm); transition:transform .5s var(--ease), box-shadow .5s var(--ease); }
.gallery-item:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.gallery-item img{ width:100%; height:230px; object-fit:cover; }
.gallery-item figcaption{ padding:12px 16px; font-size:.9rem; color:var(--taupe); }
.gallery-video{ margin-top:28px; }
.gallery-video iframe, .gallery-video video{ width:100%; aspect-ratio:16/9; border-radius:16px; border:0; display:block; background:#fff; box-shadow:var(--shadow-md); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-delay="1"]{ transition-delay:.1s; }
.reveal[data-delay="2"]{ transition-delay:.2s; }
.reveal[data-delay="3"]{ transition-delay:.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .stats-band .container{ grid-template-columns:repeat(2,1fr); gap:24px; }
  .stats-band .stat:nth-child(3)::before{ display:none; }
  .split, .hero-grid, .booking-shell, .contact-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .booking-aside{ position:static; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 680px){
  .grid-2, .grid-3, .grid-4, .gallery{ grid-template-columns:1fr; }
  .topbar{ display:none; }
  .header{ top:0; }
  .hero, .page-hero{ padding-top:130px; }
  .stats-band .container{ grid-template-columns:1fr 1fr; }
  .nav{
    position:fixed; inset:82px 0 auto 0; flex-direction:column; gap:0;
    background:var(--ivory); border-bottom:1px solid var(--line-soft);
    padding:16px var(--gutter); transform:translateY(-16px); opacity:0; pointer-events:none;
    transition:.35s var(--ease); box-shadow:var(--shadow-md);
  }
  .nav.open{ transform:none; opacity:1; pointer-events:auto; }
  .nav a{ padding:14px 0; width:100%; border-bottom:1px solid var(--line-soft); }
  .nav a:last-child{ border-bottom:0; }
  .nav-toggle{ display:flex; }
  .header-actions .btn{ display:none; }
  .hero{ padding-top:130px; }
  .hero-stats{ flex-wrap:wrap; gap:18px; }
  .stat + .stat::before{ display:none; }
  .hero-badge.b1{ inset-inline-start:0; }
  .hero-badge.b2{ inset-inline-end:0; }
  .choice-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .footer-bottom{ justify-content:center; text-align:center; }
  .form-nav{ flex-direction:column; }
}

/* ---------- Page transitions ---------- */
body{ animation: pageIn .6s var(--ease); }
@keyframes pageIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
body.page-out{ animation: pageOut .3s var(--ease) forwards; }
@keyframes pageOut{ to{ opacity:0; transform:translateY(-10px); } }

.page-progress{
  position:fixed; top:0; inset-inline:0; height:3px; z-index:300;
  background:rgba(206,138,129,.15); pointer-events:none; opacity:0;
}
.page-progress.active{ opacity:1; }
.page-progress::after{
  content:""; display:block; height:100%; width:0;
  background:linear-gradient(90deg, var(--rose), var(--rose-gold));
  transition:width .35s var(--ease);
}
.page-progress.running::after{ width:72%; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
  body{ animation:none; }
}
