/* ═══════════════════════════════════════════════════════
   SRK SKIN & LASER CENTRE — v2 Stylesheet
   Warm Ivory · Dusty Gold · Sage
   Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════ */

:root {
  --ivory:       #faf8f5;
  --ivory-dark:  #f0ebe3;
  --cream:       #ede8df;
  --gold:        #c59353;
  --gold-light:  #e0c9a6;
  --gold-dark:   #b9843e;
  --sage:        #7a9485;
  --text-dark:   #2c2620;
  --text-mid:    #5c4f42;
  --text-light:  #8a7d72;
  --white:       #ffffff;
  --shadow-sm:   0 4px 20px rgba(44,38,32,0.06);
  --shadow-md:   0 8px 40px rgba(44,38,32,0.10);
  --shadow-lg:   0 20px 60px rgba(44,38,32,0.14);
  --radius:      16px;
  --radius-lg:   24px;
  --t:           cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ivory); color: var(--text-dark); overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── SCROLL PROGRESS ───────────────────────────────── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--sage)); z-index: 9999; transition: width .1s linear; }

/* ── CURSOR ────────────────────────────────────────── */
#cursor { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform .1s var(--t); }
#cursor-follower { width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9997; transform: translate(-50%,-50%); transition: transform .15s var(--t), width .3s, height .3s, opacity .3s; opacity: .5; }

/* ── LOADER ────────────────────────────────────────── */
#loader { position: fixed; inset: 0; background: var(--ivory); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity .6s var(--t), visibility .6s; }
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-logo { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 600; color: var(--gold); letter-spacing: .3em; margin-bottom: .5rem; }
.loader-bar { width: 200px; height: 2px; background: var(--cream); border-radius: 2px; margin: 1rem auto; overflow: hidden; }
.loader-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--sage)); animation: loaderBar 1.8s var(--t) forwards; }
.loader-inner p { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-light); }
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: .85; } }

/* ── NAVBAR ────────────────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 0; transition: background .4s var(--t), box-shadow .4s, padding .4s; }
#navbar.scrolled { background: rgba(250,248,245,.96); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: .8rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-srk { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold); letter-spacing: .15em; }
.logo-sub { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-size: .87rem; font-weight: 500; letter-spacing: .03em; color: var(--text-mid); position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .3s var(--t); }
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: white !important; padding: .6rem 1.4rem; border-radius: 50px; box-shadow: 0 4px 16px rgba(201,168,124,.35); }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(201,168,124,.4) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: min(320px,80vw); height: 100vh; background: var(--ivory); z-index: 999; padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg); transition: right .4s var(--t); }
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--cream); padding-bottom: .75rem; display: block; transition: color .3s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 2rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; border-radius: 50px; font-size: .9rem; font-weight: 500; border: none; cursor: none; position: relative; overflow: hidden; box-shadow: 0 6px 24px rgba(201,168,124,.35); transition: transform .3s var(--t), box-shadow .3s; animation: ctaPulse 3s ease-in-out infinite; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); opacity: 0; transition: opacity .3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,168,124,.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: .6rem 1.4rem; font-size: .84rem; animation: none; }
@keyframes ctaPulse { 0%,100% { box-shadow: 0 6px 24px rgba(201,168,124,.35); } 50% { box-shadow: 0 6px 32px rgba(201,168,124,.55); } }
.btn-outline { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 2rem; background: transparent; color: var(--text-dark); border-radius: 50px; font-size: .9rem; font-weight: 500; border: 1.5px solid var(--cream); cursor: none; transition: color .3s, border-color .3s, transform .3s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }

/* ── SECTION COMMON ────────────────────────────────── */
section { padding: 6rem 0; position: relative; }
.section-label { font-size: .72rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 600; line-height: 1.15; color: var(--text-dark); margin-bottom: 1rem; }
.section-heading em { font-style: italic; color: var(--gold-dark); }
.section-heading::after { content: ''; display: block; width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: .75rem; }
.section-sub { font-size: 1rem; color: var(--text-light); line-height: 1.7; max-width: 540px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-heading::after { margin: .75rem auto 0; }
.section-header .section-sub { margin: 0 auto; }

/* ── WAVE DIVIDERS ─────────────────────────────────── */
.wave-divider { line-height: 0; overflow: hidden; margin-bottom: -2px; }
.wave-divider svg { display: block; width: 100%; }
.wave-hero { background: #fff; }
.wave-about { background: var(--ivory-dark); }
.wave-services { background: var(--ivory-dark); }
.wave-products { background: var(--ivory-dark); }
.wave-why { background: var(--ivory); }
.wave-trust { background: var(--ivory-dark); }

/* ══════════════════════════════════════════════════════
   HERO — Split layout with model
══════════════════════════════════════════════════════ */
#hero { min-height: 100vh; background: linear-gradient(145deg, #fff 0%, var(--ivory) 40%, #f5ede0 100%); display: flex; align-items: center; padding: 7rem 2rem 4rem; position: relative; overflow: hidden; }
#particleCanvas { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.floating-icons { position: absolute; inset: 0; pointer-events: none; }
.f-icon { position: absolute; font-size: 1rem; color: var(--gold-light); animation: floatIcon 6s ease-in-out infinite; opacity: .5; }
.fi-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: .7rem; }
.fi-2 { top: 30%; left: 8%; animation-delay: 1s; font-size: 1rem; }
.fi-3 { top: 65%; left: 5%; animation-delay: 2s; font-size: .7rem; }
.fi-4 { top: 15%; right: 30%; animation-delay: .5s; }
.fi-5 { top: 70%; right: 4%; animation-delay: 1.5s; font-size: .7rem; }
.fi-6 { top: 40%; right: 3%; animation-delay: 2.5s; font-size: 1rem; }
@keyframes floatIcon { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(10deg); } }
.hero-circle { position: absolute; width: 500px; height: 500px; right: 35%; top: -100px; background: radial-gradient(circle, rgba(201,168,124,.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: glowPulse 5s ease-in-out infinite; }
.hero-circle-2 { position: absolute; width: 300px; height: 300px; left: -60px; bottom: 20px; background: radial-gradient(circle, rgba(122,148,133,.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: glowPulse 6s ease-in-out 1s infinite; }
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.1); opacity: 1; } }

.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 0.85fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }

.hero-content { animation: heroReveal 1s var(--t) .3s both; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(201,168,124,.1); border: 1px solid rgba(201,168,124,.3); padding: .5rem 1.2rem; border-radius: 50px; font-size: .78rem; letter-spacing: .08em; color: var(--gold-dark); margin-bottom: 2rem; }
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,124,.6); } 50% { box-shadow: 0 0 0 6px rgba(201,168,124,0); } }
.hero-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem,5vw,4.5rem); font-weight: 300; line-height: 1.1; color: var(--text-dark); margin-bottom: 1.5rem; }
.hero-headline em { font-style: italic; color: var(--gold-dark); }
.hero-sub { font-size: .98rem; color: var(--text-light); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero-buttons { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: inline-flex; align-items: center; gap: 1.5rem; background: rgba(255,255,255,.7); backdrop-filter: blur(8px); border: 1px solid rgba(201,168,124,.2); padding: 1rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold-dark); line-height: 1; }
.stat span { font-size: .7rem; color: var(--text-light); letter-spacing: .05em; }
.stat-divider { width: 1px; height: 32px; background: var(--cream); }

/* Hero model image */
.hero-model { position: relative; animation: heroReveal 1s var(--t) .6s both; }
.hero-model-frame { position: relative; border-radius: var(--radius-lg); aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.hero-model-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 15px; }
.hero-model-badge { position: absolute; bottom: 80px; left: -20px; background: white; border-radius: var(--radius); padding: .9rem 1.2rem; display: flex; align-items: center; gap: .75rem; box-shadow: var(--shadow-md); font-size: .8rem; min-width: 190px; animation: floatBadge 4s ease-in-out infinite; }
.hero-model-badge .hmb-icon { font-size: 1.2rem; color: var(--gold); }
.hero-model-badge strong { display: block; font-size: .88rem; color: var(--text-dark); }
.hero-model-badge span { color: var(--text-light); font-size: .75rem; }
.hero-model-pill { position: absolute; top: 20px; right: -10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: .5rem 1rem; border-radius: 50px; font-size: .74rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; box-shadow: 0 6px 20px rgba(201,168,124,.4); animation: floatBadge 5s ease-in-out 1s infinite; }
.hero-model-bg { position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; background: linear-gradient(135deg, var(--cream), var(--ivory-dark)); border-radius: var(--radius-lg); z-index: -1; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
#about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-bg { position: absolute; top: -20px; left: -20px; right: 50px; bottom: 50px; background: linear-gradient(135deg, var(--ivory-dark), var(--cream)); border-radius: var(--radius-lg); }
.about-img-card { position: relative; border-radius: var(--radius-lg); overflow: visible; box-shadow: var(--shadow-md); }
.about-img-card > img { width: 100%; height: 420px; border-radius: var(--radius-lg); object-position: top; position: relative; z-index: 1; }
.about-img-overlap { position: absolute; bottom: -30px; right: -30px; width: 170px; height: 200px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid white; z-index: 2; }
.about-img-overlap img { width: 100%; height: 100%; }
.about-float-badge { position: absolute; bottom: 40px; left: -15px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 1rem 1.5rem; border-radius: var(--radius); text-align: center; box-shadow: 0 8px 24px rgba(201,168,124,.4); animation: floatBadge 4s ease-in-out infinite; z-index: 3; }
.about-float-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; line-height: 1; }
.about-float-badge span { font-size: .7rem; letter-spacing: .1em; opacity: .9; }
.about-float-badge2 { position: absolute; top: 20px; right: -10px; background: white; color: var(--sage); padding: .55rem 1rem; border-radius: 50px; font-size: .76rem; font-weight: 700; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .4rem; z-index: 3; letter-spacing: .04em; }
.about-lead { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--text-mid); line-height: 1.5; margin-bottom: 1.25rem; }
.about-body { font-size: .95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.about-pillars { display: flex; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.pillar { display: flex; align-items: flex-start; gap: .75rem; flex: 1; min-width: 140px; }
.pillar-icon { font-size: 1rem; color: var(--gold); margin-top: 2px; }
.pillar strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: .2rem; }
.pillar span { font-size: .8rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════
   SERVICES — with images
══════════════════════════════════════════════════════ */
#services { background: var(--ivory-dark); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--cream); transition: transform .4s var(--t), box-shadow .4s; cursor: default; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover .sc-glow { opacity: 1; }
.service-img { position: relative; overflow: hidden; height: 200px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--t); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(44,38,32,.35) 100%); }
.service-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--gold-dark); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 50px; backdrop-filter: blur(4px); }
.service-body { padding: 1.75rem; }
.sc-icon { color: var(--gold); margin-bottom: .85rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--text-dark); margin-bottom: .6rem; }
.service-card p { font-size: .87rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.sc-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.sc-chips span { font-size: .7rem; font-weight: 600; background: rgba(201,168,124,.1); color: var(--gold-dark); border-radius: 50px; padding: .2rem .7rem; border: 1px solid rgba(201,168,124,.2); }
.sc-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); transition: gap .3s; }
.service-card:hover .sc-link { gap: .7rem; }
.sc-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--sage)); opacity: 0; transition: opacity .4s; }

/* ── MODEL BANNER STRIP ────────────────────────────── */
.model-banner { background: var(--text-dark); padding: 3rem 0; overflow: hidden; }
.model-banner-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 2rem; }
.mb-img { position: relative; border-radius: var(--radius); overflow: hidden; width: 160px; height: 200px; flex-shrink: 0; box-shadow: var(--shadow-lg); transition: transform .4s var(--t); }
.mb-img:hover { transform: scale(1.04) translateY(-4px); }
.mb-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mb-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); padding: .6rem .75rem .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: white; }
.mb-text { flex: 1; padding-left: 1rem; }
.mb-text p { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .5rem; }
.mb-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: white; line-height: 1.25; margin-bottom: 1.5rem; max-width: 320px; }

/* ══════════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════════ */
#products { background: var(--ivory-dark); }

/* Category Tabs */
.product-tabs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.ptab { padding: .55rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--cream); background: white; font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 600; color: var(--text-light); cursor: none; transition: all .3s var(--t); letter-spacing: .04em; }
.ptab:hover { border-color: var(--gold-light); color: var(--gold-dark); }
.ptab.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: transparent; color: white; box-shadow: 0 4px 16px rgba(201,168,124,.35); }

/* Featured product with model */
.products-layout { display: flex; flex-direction: column; gap: 2rem; }
.product-featured { display: grid; grid-template-columns: 0.85fr 1fr; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--cream); }
.pf-model { position: relative; min-height: 380px; }
.pf-model img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pf-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(44,38,32,.85), transparent); padding: 2rem 1.5rem 1.5rem; }
.pf-quote { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,.9); line-height: 1.55; margin-bottom: .4rem; }
.pf-author { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .05em; }
.pf-info { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.pf-badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--gold-dark); background: rgba(201,168,124,.1); border: 1px solid rgba(201,168,124,.25); padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem; }
.pf-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; margin-bottom: .85rem; }
.pf-info p { font-size: .9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem; }
.pf-details { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.pf-details span { font-size: .75rem; color: var(--text-mid); font-weight: 500; }
.pf-price-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pf-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold-dark); }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.product-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream); box-shadow: var(--shadow-sm); transition: transform .4s var(--t), box-shadow .4s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card[style*="display: none"] { display: none !important; }
.pc-img { position: relative; height: 180px; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--t); }
.product-card:hover .pc-img img { transform: scale(1.07); }
.pc-img-overlay { position: absolute; inset: 0; background: rgba(44,38,32,.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.product-card:hover .pc-img-overlay { opacity: 1; }
.pc-quick { background: white; color: var(--text-dark); padding: .5rem 1.2rem; border-radius: 50px; font-size: .8rem; font-weight: 700; transition: background .3s; }
.pc-quick:hover { background: var(--gold); color: white; }
.pc-badge-new { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; font-size: .65rem; font-weight: 700; padding: .25rem .65rem; border-radius: 50px; letter-spacing: .05em; }
.pc-body { padding: 1.1rem; }
.pc-cat { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.pc-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin: .35rem 0 .5rem; line-height: 1.25; }
.pc-body p { font-size: .8rem; color: var(--text-light); line-height: 1.6; margin-bottom: .85rem; }
.pc-model-use { display: flex; align-items: center; gap: .5rem; padding-top: .7rem; border-top: 1px solid var(--cream); }
.pc-model-use img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); object-position: top; }
.pc-model-use span { font-size: .72rem; color: var(--text-light); line-height: 1.3; }

/* Products CTA strip */
.products-cta-strip { background: white; border-radius: var(--radius-lg); padding: 2rem 2.5rem; display: flex; align-items: center; gap: 2rem; border: 1px solid var(--cream); box-shadow: var(--shadow-sm); flex-wrap: wrap; margin-top: 2rem; }
.pcs-left { display: flex; align-items: center; gap: -8px; flex-shrink: 0; }
.pcs-left img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid white; margin-left: -10px; box-shadow: var(--shadow-sm); }
.pcs-left img:first-child { margin-left: 0; }
.pcs-count { font-size: .78rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; margin-left: .75rem; }
.pcs-mid { flex: 1; }
.pcs-mid h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: .3rem; }
.pcs-mid p { font-size: .85rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════
   WHY CHOOSE US — with model
══════════════════════════════════════════════════════ */
#why-us { background: var(--ivory); }
.why-layout { display: grid; grid-template-columns: 0.7fr 1fr; gap: 4rem; align-items: start; }
.why-model { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-model img { width: 100%; height: 480px; object-fit: cover; object-position: left; }
.why-model-card { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-md); }
.why-model-card strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }
.why-model-card p { font-size: .8rem; color: var(--text-light); margin-top: .2rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.feature-card { background: white; border-radius: var(--radius); padding: 1.75rem 1.5rem; border: 1px solid var(--cream); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(201,168,124,.1), rgba(201,168,124,.05)); border: 1px solid rgba(201,168,124,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--gold); transition: background .3s, transform .3s; }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; transform: scale(1.1); }
.feature-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; }
.feature-card p { font-size: .83rem; color: var(--text-light); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
#testimonials { background: var(--ivory-dark); }
.trust-top { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; margin-bottom: 1rem; }
.rating-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--cream); }
.stars-animated { display: flex; justify-content: center; gap: .2rem; margin-bottom: 1rem; }
.star { font-size: 1.8rem; color: var(--cream); display: inline-block; animation: starReveal .4s var(--t) both; }
.star.active { color: var(--gold); }
.star.half { color: var(--gold-light); }
@keyframes starReveal { from { transform: scale(0) rotate(-30deg); opacity: 0; } to { transform: scale(1) rotate(0deg); opacity: 1; } }
.rating-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--gold-dark); line-height: 1; margin-bottom: .3rem; }
.rating-card p { font-size: .8rem; color: var(--text-light); margin-bottom: 1rem; }
.review-count { display: inline-block; background: rgba(201,168,124,.1); border: 1px solid rgba(201,168,124,.25); padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; color: var(--gold-dark); }
.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }
.badge { display: flex; align-items: center; gap: .75rem; background: white; border-radius: var(--radius); padding: 1rem 1.25rem; font-size: .84rem; font-weight: 500; color: var(--text-dark); border: 1px solid var(--cream); box-shadow: var(--shadow-sm); }
.badge svg { color: var(--sage); flex-shrink: 0; }

/* Slider — updated with photo */
.testimonial-slider-wrap { overflow: hidden; }
.testimonial-slider { display: flex; transition: transform .6s var(--t); }
.testimonial-slide { min-width: 100%; }
.t-slide-inner { display: grid; grid-template-columns: 220px 1fr; background: white; border-radius: var(--radius-lg); border: 1px solid var(--cream); box-shadow: var(--shadow-sm); overflow: hidden; }
.t-img { position: relative; }
.t-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; min-height: 260px; }
.t-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 1; color: var(--gold-light); margin-bottom: -.5rem; display: block; }
.t-content p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.t-author strong { display: block; font-size: .95rem; color: var(--text-dark); }
.t-author span { font-size: .78rem; color: var(--text-light); }
.t-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.slider-btn { width: 44px; height: 44px; border: 1.5px solid var(--cream); background: white; border-radius: 50%; font-size: 1.4rem; color: var(--text-mid); cursor: none; display: flex; align-items: center; justify-content: center; transition: border-color .3s, color .3s, transform .3s; box-shadow: var(--shadow-sm); }
.slider-btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cream); cursor: none; transition: background .3s, transform .3s; border: none; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
#contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 3rem; align-items: start; }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea { padding: .85rem 1rem; border: 1.5px solid var(--cream); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text-dark); background: var(--ivory); transition: border-color .3s, box-shadow .3s, transform .2s; outline: none; cursor: text; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,124,.12); transform: translateY(-1px); background: white; }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e07070; }
.form-error { font-size: .73rem; color: #c05050; display: none; }
.form-error.visible { display: block; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { background: rgba(122,148,133,.1); border: 1px solid rgba(122,148,133,.3); color: var(--sage); padding: 1rem; border-radius: var(--radius); font-size: .9rem; margin-top: 1rem; display: none; }
.form-success.visible { display: block; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-cards { display: flex; flex-direction: column; gap: .75rem; }
.info-card { display: flex; align-items: flex-start; gap: 1rem; background: white; border-radius: var(--radius); padding: 1.2rem; border: 1px solid var(--cream); box-shadow: var(--shadow-sm); }
.info-icon { width: 40px; height: 40px; background: linear-gradient(135deg, rgba(201,168,124,.1), rgba(201,168,124,.05)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.info-card strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dark); margin-bottom: .3rem; }
.info-card p { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.info-card a { color: var(--gold); font-weight: 600; }
.hours-tag { display: inline-block; background: rgba(122,148,133,.1); border: 1px solid rgba(122,148,133,.25); color: var(--sage); padding: .2rem .6rem; border-radius: 50px; font-size: .72rem; font-weight: 600; margin-top: .2rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream); box-shadow: var(--shadow-sm); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#footer { background: var(--text-dark); color: rgba(255,255,255,.75); padding-top: 0; }
.footer-wave { line-height: 0; margin-bottom: -2px; }
.footer-wave svg { display: block; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; padding: 4rem 0 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .footer-logo { display: flex; flex-direction: column; margin-bottom: 1rem; }
.footer-brand .logo-srk { color: var(--gold); }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }
.social-icons { display: flex; gap: .75rem; }
.social-icon { width: 38px; height: 38px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.1); transition: background .3s, color .3s, transform .3s; }
.social-icon:hover { background: var(--gold); color: white; transform: translateY(-3px); border-color: var(--gold); }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: .5rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .5rem; }

/* Back to top */
#backToTop { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border: none; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; cursor: none; box-shadow: 0 6px 20px rgba(201,168,124,.4); opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity .3s, visibility .3s, transform .3s; z-index: 900; }
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); }

/* ── SCROLL ANIMATIONS ─────────────────────────────── */
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--t), transform .8s var(--t); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .8s var(--t), transform .8s var(--t); }
.reveal-up    { opacity: 0; transform: translateY(30px);  transition: opacity .7s var(--t), transform .7s var(--t); }
.slide-in     { opacity: 0; transform: translateY(24px);  transition: opacity .6s var(--t), transform .6s var(--t); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible, .slide-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .why-layout   { grid-template-columns: 1fr; }
  .why-model    { max-width: 480px; }
  .why-model img { height: 320px; }
}
@media (max-width: 900px) {
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-model   { display: none; }
  #hero         { text-align: center; }
  .hero-sub, .hero-buttons, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid  { grid-template-columns: 1fr; }
  .product-featured { grid-template-columns: 1fr; }
  .pf-model     { min-height: 260px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-top    { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .t-slide-inner { grid-template-columns: 1fr; }
  .t-img        { height: 220px; }
  .nav-links    { display: none; }
  .hamburger    { display: flex; }
  .model-banner-inner { flex-wrap: wrap; }
  .mb-img       { width: 120px; height: 150px; }
}
@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .services-grid   { grid-template-columns: 1fr; }
  .product-grid    { grid-template-columns: 1fr 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .form-row        { grid-template-columns: 1fr; }
  .pcs-left        { display: none; }
  .products-cta-strip { flex-direction: column; text-align: center; }
  body { cursor: auto; }
  #cursor, #cursor-follower { display: none; }
}
@media (max-width: 440px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-stats   { display: none; }
}

/* ══════════════════════════════════════════════════════
   BOOKING POPUP MODAL
══════════════════════════════════════════════════════ */

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 16, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--t), visibility 0.4s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.modal-box {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: 0 32px 80px rgba(28,22,16,0.3);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.45s var(--t);
  overflow: hidden;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Scrollbar styling */
.modal-box::-webkit-scrollbar { width: 5px; }
.modal-box::-webkit-scrollbar-track { background: var(--ivory); }
.modal-box::-webkit-scrollbar-thumb { background: var(--cream); border-radius: 4px; }

/* Close button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 10;
  color: var(--text-mid);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  box-shadow: var(--shadow-sm);
}
.modal-close:hover {
  background: var(--text-dark);
  color: white;
  transform: rotate(90deg);
}

/* ── Left image column ─── */
.modal-left {
  position: relative;
  overflow: hidden;
}

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: top;
}

.modal-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(28,22,16,0.92) 0%, transparent 100%);
}

.modal-clinic-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1rem;
}
.modal-clinic-name .logo-srk {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.modal-clinic-name .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.modal-info-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.modal-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.modal-info-item svg { color: var(--gold-light); flex-shrink: 0; }

.modal-stars {
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.modal-stars span { color: rgba(255,255,255,0.3); }
.modal-stars small { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-left: 0.4rem; font-family: 'DM Sans', sans-serif; }

/* ── Right form column ─── */
.modal-right {
  padding: 2.2rem 2.2rem 2rem;
  overflow-y: auto;
  max-height: 92vh;
  position: relative;
}

.modal-header { margin-bottom: 1rem; }

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201,168,124,0.1);
  border: 1px solid rgba(201,168,124,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.modal-header h2 em { font-style: italic; color: var(--gold-dark); }

.modal-header p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Form rows */
.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

}

.mf-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.mf-group label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.mf-group label span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
}

/* Input wrapper with icon */
.mf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.mf-input-wrap > svg {
  position: absolute;
  left: 0.9rem;
  color: var(--gold-light);
  pointer-events: none;
  flex-shrink: 0;
  transition: color 0.3s;
}
.mf-input-wrap:focus-within > svg { color: var(--gold); }

.mf-input-wrap input,
.mf-input-wrap select,
.mf-input-wrap textarea {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.6rem;
  border: 1.5px solid var(--cream);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  cursor: text;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.mf-input-wrap input:focus,
.mf-input-wrap select:focus,
.mf-input-wrap textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,124,0.13);
  transform: translateY(-1px);
}
.mf-input-wrap input.error,
.mf-input-wrap select.error { border-color: #e07070; }

/* Select arrow */
.mf-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-light);
  pointer-events: none;
}
.mf-select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; }

/* Textarea */
.mf-textarea-wrap textarea {
  padding-top: 0.7rem;
  resize: none;
  min-height: 70px;
}

.mf-error {
  font-size: 0.7rem;
  color: #c05050;
  display: none;
  padding-left: 0.2rem;
}
.mf-error.show { display: block; }

/* Submit btn in modal */
.modal-submit {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  animation: ctaPulse 3s ease-in-out infinite;
}

/* Success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeUp 0.5s var(--t) both;
}
.modal-success.show { display: flex; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ms-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(122,148,133,0.12), rgba(122,148,133,0.06));
  border: 2px solid rgba(122,148,133,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.modal-success p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 2rem;
}

.ms-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 260px;
}

.ms-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(201,168,124,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ms-call:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,124,0.45); }

.ms-close-btn {
  background: none;
  border: 1.5px solid var(--cream);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}
.ms-close-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Modal open = prevent body scroll */
body.modal-open { overflow: hidden; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .modal-box {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .modal-left { display: none; }
  .modal-right { padding: 2rem 1.5rem; max-height: 95vh; }
  .mf-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   NAVBAR — Active link & Submenu Dropdown
══════════════════════════════════════════════════════ */
.nav-active { color: var(--gold-dark) !important; }
.nav-active::after { width: 100% !important; }

/* Dropdown container */
.nav-has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(44,38,32,0.14);
  border: 1px solid var(--cream);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s var(--t), visibility 0.3s, transform 0.3s var(--t);
  z-index: 200;
  pointer-events: none;
}

/* Arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 7px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: 1px solid var(--cream);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s var(--t);
  vertical-align: middle;
}
.nav-has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 0;
}

.dropdown-col {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--cream);
}
.dropdown-col:last-of-type { border-right: none; }

.dropdown-heading {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.4rem;
  border-radius: 8px;
  font-size: 0.83rem;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  margin-bottom: 0.1rem;
}
.dropdown-item:hover {
  background: var(--ivory);
  color: var(--gold-dark);
  padding-left: 0.7rem;
}
.di-icon { font-size: 0.55rem; color: var(--gold-light); flex-shrink: 0; }

/* Dropdown CTA column */
.dropdown-cta {
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--ivory-dark);
  display: flex;
  flex-direction: column;
}
.dropdown-cta img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.dcta-text {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dcta-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.dcta-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* Mobile sub-menu */
.mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none; border: none;
  cursor: none;
  color: var(--text-dark);
  padding: 4px;
}
.mobile-has-sub { border-bottom: 1px solid var(--cream); }
.mobile-sub-toggle {
  width: 100%;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  padding: 0 0 0.75rem 0;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-sub-toggle svg { transition: transform 0.3s; }
.mobile-sub-toggle.open svg { transform: rotate(180deg); }
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--t);
  padding-left: 0.5rem;
}
.mobile-sub.open { max-height: 500px; }
.mobile-sub li a {
  font-size: 0.88rem !important;
  color: var(--text-light) !important;
  padding: 0.4rem 0 !important;
  border-bottom: none !important;
}
.mobile-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: white !important;
  border-radius: 50px !important;
  text-align: center;
  padding: 0.7rem 1.5rem !important;
}

/* ══════════════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  overflow: hidden;
  margin-top: 0;
}
.ph-bg { position: absolute; inset: 0; }
.ph-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,22,16,0.75) 0%, rgba(28,22,16,0.3) 60%, transparent 100%); }
.ph-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.ph-breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.ph-breadcrumb a:hover { color: var(--gold-light); }
.ph-breadcrumb span { color: rgba(255,255,255,0.4); }
.ph-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.ph-content h1 em { font-style: italic; color: var(--gold-light); }
.ph-content p { font-size: 1rem; color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════════════════
   HOME — SERVICES PREVIEW GRID
══════════════════════════════════════════════════════ */
#services-preview { background: var(--ivory-dark); }
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.spv-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-sm);
}
.spv-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--t); }
.spv-card:hover img { transform: scale(1.07); }
.spv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,22,16,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: background 0.3s;
}
.spv-card:hover .spv-overlay { background: linear-gradient(to top, rgba(44,38,32,0.82) 0%, rgba(44,38,32,0.1) 70%); }
.spv-overlay span {
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}
.spv-all {
  background: var(--ivory-dark);
  border: 2px dashed var(--cream);
  aspect-ratio: 4/3;
}
.spv-all-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.spv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.spv-all-inner p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.25rem; }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-page-section { padding: 5rem 0; }
.doctor-section { background: var(--ivory-dark); padding: 5rem 0; }
.doctor-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream);
}
.dc-img { overflow: hidden; height: 100%; min-height: 460px; }
.dc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.dc-info { padding: 3rem 3rem 3rem 0; }
.dc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(122,148,133,0.1);
  border: 1px solid rgba(122,148,133,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.dc-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.dc-qual {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.dc-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 0.85rem; }
.dc-credentials { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.5rem 0; }
.dc-cred { font-size: 0.84rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; }
.dc-cred span { color: var(--gold); font-size: 0.7rem; }

/* Stats strip */
.stats-section {
  background: linear-gradient(135deg, var(--text-dark), #3a2e26);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-block { text-align: center; padding: 1.5rem; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 2rem; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; }
.stat-block p { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }

/* Gallery */
.gallery-section { padding: 5rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--t); }
.gallery-item:hover img { transform: scale(1.05); }
.gi-large { grid-row: span 2; }

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════ */
.service-sticky-nav {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream);
  box-shadow: 0 4px 20px rgba(44,38,32,0.06);
}
.ssn-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.2rem 0;
}
.ssn-inner::-webkit-scrollbar { display: none; }
.ssn-inner a {
  white-space: nowrap;
  padding: 0.75rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.ssn-inner a:hover { color: var(--gold-dark); border-color: var(--gold); }

.services-page-wrap { background: var(--ivory); }

.srv-section { padding: 5rem 0; }
.srv-odd  { background: var(--ivory); }
.srv-even { background: var(--ivory-dark); }

.srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.srv-grid-rev { direction: rtl; }
.srv-grid-rev > * { direction: ltr; }

.srv-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.srv-img img { width: 100%; height: 420px; object-fit: cover; object-position: top; }
.srv-img-badge {
  position: absolute;
  top: 20px; right: 20px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(201,168,124,0.4);
}
.srv-img-badge span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.srv-points { display: flex; flex-direction: column; gap: 0.55rem; margin: 1.5rem 0 2rem; }
.srv-pt { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text-mid); }
.srv-pt span { color: var(--gold); font-size: 0.7rem; }

/* Services CTA */
.services-cta-section { background: var(--text-dark); padding: 5rem 0; }
.srv-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  flex-wrap: wrap;
}
.srv-cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: white;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.srv-cta-text h2 em { font-style: italic; color: var(--gold-light); }
.srv-cta-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.srv-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.srv-cta-btns .btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.srv-cta-btns .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cqc {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--cream);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cqc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cqc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,124,0.1), rgba(201,168,124,0.05));
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cqc strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.35rem; }
.cqc p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.cqc a { font-size: 0.88rem; color: var(--gold-dark); font-weight: 600; }
.cqc a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-dropdown { width: 560px; }
  .dropdown-inner { grid-template-columns: 1fr 1fr; }
  .dropdown-cta { display: none; }
  .doctor-card { grid-template-columns: 1fr; }
  .dc-img { min-height: 280px; }
  .dc-info { padding: 2rem; }
}
@media (max-width: 900px) {
  .srv-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .srv-grid-rev { direction: ltr; }
  .srv-img img { height: 280px; }
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-quick-cards { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-large { grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-cta-box { flex-direction: column; text-align: center; }
  .srv-cta-btns { justify-content: center; }
}
@media (max-width: 600px) {
  .services-preview-grid { grid-template-columns: 1fr 1fr; }
  .contact-quick-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { height: 280px; }
}

.gallery-section {
  background: linear-gradient(to bottom, var(--bg-light), #ffffff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Gallery Card */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  background: var(--white);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
  border-radius: 16px;
}

/* Hover Effect */

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.07);
}

/* Video Specific Styling */

.gallery-item video {
  max-height: 350px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {
  .section-heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .gallery-grid {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 24px;
  }
}


/* Common Button Style */

.float-call,
.float-whatsapp{
position:fixed;
bottom:25px;
width:55px;
height:55px;
border-radius:50%;
background:#c89a55;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:all .3s ease;
z-index:999;
}

/* Left Call Button */

.float-call{
left:25px;
}

/* Right WhatsApp Button */

.float-whatsapp{
right:25px;
}

/* Hover Effect */

.float-call:hover,
.float-whatsapp:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(0,0,0,0.3);
}
