/* ══════════════════════════════════════════════════════
   CURTAINS DUBAI — Black & White Premium Theme
   Palette: #111 · #222 · #555 · #888 · #f5f5f5 · #fff
   Glass morphism · Clean minimal · Premium curtains
   ══════════════════════════════════════════════════════ */

/* Fix position:sticky globally.
   body{overflow-x:hidden} in style.css makes body the scroll container,
   which causes position:sticky to measure against body (hidden, no scroll)
   instead of the viewport — so sticky never fires.
   overflow-x:clip on html prevents horizontal overflow without creating
   a new scroll container, leaving the viewport as the correct context. */
html { overflow-x: clip; }
body { overflow-x: clip; }

:root {
  --primary:        #111111;
  --primary-2:      #222222;
  --accent:         #111111;
  --accent-2:       #f0f0f0;
  --accent-light:   rgba(0,0,0,.06);
  --accent-glow:    rgba(0,0,0,.14);
  --sh-accent:      0 12px 40px rgba(0,0,0,.14);
  --black:          #000000;
  --dark:           #111111;
  --off:            #f5f5f5;
  --border:         #e5e5e5;
  --muted:          #888888;
  --white:          #ffffff;
  --mid:            #555555;
  --bg-hero:        #111111;
  --bg-dark:        #222222;
  --bg-light:       #f0f0f0;
  --bg-pale:        #f5f5f5;
}

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.display-hero {
  font-size: clamp(2.8rem,5.5vw,4.4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
  color: var(--primary);
}
.display-section {
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.018em;
  color: var(--primary);
}
.display-hero em, .display-section em { font-style: normal; color: var(--primary); }
.body-lg { font-size: 1.05rem; line-height: 1.7; color: var(--mid); }

/* ── NAV glass ───────────────────────────────────────── */
.nav-main {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: saturate(180%) blur(24px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(24px) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}
.nav-main.scrolled {
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.08) !important;
}
.nav-logo { color: var(--primary) !important; font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; }
.nav-logo-dot { background: var(--primary) !important; }
.nav-main .nav-links > li > a.nav-link {
  color: var(--primary-2) !important; font-size: .84rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  transition: background .15s, color .15s;
  display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none;
}
.nav-main .nav-links > li > a.nav-link:hover {
  background: rgba(0,0,0,.07) !important; color: var(--primary) !important;
}
.nav-item-mega.is-open > a.nav-link { background: rgba(0,0,0,.07) !important; color: var(--primary) !important; }
.nav-caret i { transition: transform .25s; opacity: .5; font-size: .65rem; }
.nav-item-mega.is-open .nav-caret i { transform: rotate(180deg); }
.btn-filled {
  background: var(--primary) !important; color: #fff !important;
  border: none !important; border-radius: 999px !important; font-weight: 700 !important;
  font-size: .82rem !important; padding: 10px 20px !important;
  transition: background .2s, transform .15s !important;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-filled:hover { background: var(--primary-2) !important; transform: translateY(-1px) !important; }

/* ── MEGA WRAP glass ─────────────────────────────────── */
.mega-wrap {
  background: rgba(255,255,255,.98) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,.08) !important;
}
.mega-col h4 {
  color: var(--primary) !important; font-size: .72rem !important;
  letter-spacing: .08em !important; text-transform: uppercase !important; font-weight: 700 !important;
}
.mega-col ul li a { color: var(--mid) !important; }
.mega-col ul li a:hover { color: var(--primary) !important; }
.mega-feature {
  background: var(--primary) !important;
  border-radius: 16px !important; padding: 28px !important;
}
.mega-feature h5 { color: #fff !important; }
.mega-feature p  { color: rgba(255,255,255,.65) !important; }
.mega-feature-tag {
  background: rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.85) !important; border: 1px solid rgba(255,255,255,.2) !important;
}
.btn-feat {
  background: #fff !important; color: var(--primary) !important;
  border-radius: 999px !important; font-weight: 700 !important; font-size: .8rem !important;
}
.btn-feat:hover { background: var(--accent-2) !important; }

/* ── ANN BAR ─────────────────────────────────────────── */
.ann-bar { background: var(--primary) !important; color: rgba(255,255,255,.8) !important; }
.ann-cta { color: rgba(255,255,255,.9) !important; border-bottom-color: rgba(255,255,255,.3) !important; }

/* ── MOBILE NAV ──────────────────────────────────────── */
.nm-header { background: rgba(255,255,255,.98) !important; backdrop-filter: blur(12px) !important; }
.nm-section-btn { color: var(--primary) !important; }
.nm-section-btn:hover { background: var(--accent-2) !important; }
.nm-cta .btn-blk { background: var(--primary) !important; color: #fff !important; border-radius: 999px !important; }
.nm-cta .btn-outline { border-color: var(--primary) !important; color: var(--primary) !important; border-radius: 999px !important; }

/* ── GLOBAL BUTTONS ──────────────────────────────────── */
.btn-blk {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 999px !important; font-weight: 700 !important;
  border: 2px solid var(--primary) !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.btn-blk:hover {
  background: #000 !important; border-color: #000 !important;
  transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(0,0,0,.18) !important;
}
.btn-outline {
  border: 2px solid var(--primary) !important; color: var(--primary) !important;
  background: transparent !important; border-radius: 999px !important; font-weight: 700 !important;
  transition: background .2s, color .2s, transform .15s !important;
}
.btn-outline:hover { background: var(--primary) !important; color: #fff !important; transform: translateY(-1px) !important; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--white) !important; padding: 15px 0 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,.04) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-img-main {
  border-radius: 20px !important;
  box-shadow: 0 32px 80px rgba(0,0,0,.16) !important;
  width: 100% !important; height: 420px !important; object-fit: cover !important;
}
.hfc {
  background: rgba(255,255,255,.92) !important; backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(0,0,0,.07) !important; border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.1) !important;
}
.hfc-val { color: var(--primary) !important; font-weight: 800 !important; }
.hfc-lbl { color: var(--mid) !important; }
.hfc-sub { color: var(--muted) !important; }
.pill {
  background: var(--off) !important; color: var(--primary) !important;
  border-radius: 999px !important; font-size: .72rem !important; font-weight: 700 !important;
  letter-spacing: .06em !important; text-transform: uppercase !important;
  padding: 5px 14px !important; display: inline-flex !important; align-items: center !important; gap: 6px !important;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-2) !important; display: inline-block; }
.pill-inv {
  background: rgba(255,255,255,.15) !important; color: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
}
.pill-inv .pill-dot { background: rgba(255,255,255,.7) !important; }
.hero-trust .ht-icon { color: var(--primary) !important; }
.hero-trust .ht-text { color: var(--primary-2) !important; }
.hero-trust .ht-sep  { background: var(--border) !important; }

/* ── MARQUEE ─────────────────────────────────────────── */
.mq-wrap { background: var(--primary) !important; }
.mq-item { color: rgba(255,255,255,.7) !important; }
.mq-item i { color: rgba(255,255,255,.9) !important; }
.mq-dot { background: rgba(255,255,255,.3) !important; }

/* ── LOGO STRIP ──────────────────────────────────────── */
.logo-strip { background: var(--bg-light) !important; padding: 32px 0 !important; }
.ls-label { color: var(--muted) !important; }
.ls-item  { color: var(--primary-2) !important; font-weight: 700 !important; }

/* ── SECTION BACKGROUNDS ─────────────────────────────── */
.bg-w   { background: var(--white) !important; }
.bg-off { background: var(--bg-pale) !important; }
.sec { padding: 80px 0 !important; }
@media (max-width: 767px) { .sec { padding: 56px 0 !important; } }

/* ── FEATURE IMAGES ──────────────────────────────────── */
.feat-img img {
  border-radius: 20px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.14) !important;
  width: 100% !important; height: 420px !important; object-fit: cover !important;
}
.stat-chip {
  background: rgba(255,255,255,.95) !important; backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0,0,0,.07) !important; border-radius: 14px !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.1) !important; padding: 16px 20px !important;
}
.stat-chip .sc-num { color: var(--primary) !important; font-weight: 800 !important; font-size: 1.6rem !important; }
.stat-chip .sc-lbl { color: var(--muted) !important; font-size: .75rem !important; }
.chk-ico {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 50% !important; width: 28px; height: 28px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}

/* ── PRODUCT CARDS ───────────────────────────────────── */
.prod-card {
  background: var(--white) !important; border: 1px solid var(--border) !important;
  border-radius: 18px !important; overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
  transition: box-shadow .25s, transform .25s !important;
}
.prod-card:hover { box-shadow: 0 20px 52px rgba(0,0,0,.12) !important; transform: translateY(-4px) !important; }
.prod-img-w img { height: 220px !important; object-fit: cover !important; width: 100% !important; }
.prod-cat   { color: var(--muted) !important; }
.prod-name a { color: var(--primary) !important; font-weight: 700 !important; }
.prod-name a:hover { color: #000 !important; }
.prod-badge { background: var(--primary) !important; color: #fff !important; border-radius: 999px !important; font-size: .68rem !important; font-weight: 700 !important; }
.prod-add {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 50% !important; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s !important;
}
.prod-add:hover { background: #000 !important; transform: scale(1.1) !important; }

/* ── REVIEWS ─────────────────────────────────────────── */
.rv-card {
  background: var(--white) !important; border: 1px solid var(--border) !important;
  border-radius: 18px !important; box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
  padding: 28px !important; transition: box-shadow .2s !important;
}
.rv-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1) !important; }
.rv-stars i { color: #f59e0b !important; font-size: .9rem !important; }
.rv-avatar {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 50% !important; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.rv-name { color: var(--primary) !important; font-weight: 700 !important; }
.rv-meta { color: var(--muted) !important; font-size: .78rem !important; }
.score-strip {
  background: var(--primary) !important; border-radius: 20px !important;
  margin-top: 40px !important; padding: 0 !important;
  display: grid !important; grid-template-columns: repeat(4,1fr) !important;
  overflow: hidden !important;
}
.score-item {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.score-item:last-child { border-right: none; }
.sc-big  { color: #fff !important; font-weight: 800 !important; font-size: 2.4rem !important; line-height: 1 !important; }
.sc-big .sc-star { font-size: 1.3rem !important; font-weight: 700 !important; margin-left: 2px; }
.sc-lbl2 { color: rgba(255,255,255,.45) !important; font-size: .65rem !important; letter-spacing: .14em !important; text-transform: uppercase !important; margin-top: 10px !important; }
@media (max-width: 767px) {
  .score-strip { grid-template-columns: repeat(2,1fr) !important; }
  .score-item { padding: 28px 16px; }
  .score-item:nth-child(2) { border-right: none; }
  .score-item:nth-child(1),.score-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ── WHY US / PROCESS CARDS ──────────────────────────── */
.tr-card {
  background: var(--white) !important; border: 1px solid var(--border) !important;
  border-radius: 18px !important; padding: 28px 24px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.04) !important;
  transition: box-shadow .2s, transform .2s !important;
}
.tr-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1) !important; transform: translateY(-3px) !important; }
.tr-ico {
  width: 48px; height: 48px;
  background: var(--off) !important; border-radius: 14px !important;
  border: 1.5px solid var(--border) !important;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.2rem; color: var(--primary) !important;
}
.tr-title { color: var(--primary) !important; font-weight: 700 !important; margin-bottom: 8px; }
.tr-desc  { color: var(--mid) !important; font-size: .85rem !important; line-height: 1.55 !important; }

/* ── BLOG CARDS ──────────────────────────────────────── */
.bl-card {
  border-radius: 18px !important; border: 1px solid var(--border) !important;
  overflow: hidden !important; background: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
  transition: box-shadow .2s, transform .2s !important;
}
.bl-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1) !important; transform: translateY(-3px) !important; }
.bl-img img { object-fit: cover !important; width: 100% !important; height: 100% !important; }
.bl-cat { background: var(--off) !important; color: var(--primary) !important; border: 1px solid var(--border) !important; border-radius: 999px !important; font-size: .68rem !important; font-weight: 700 !important; padding: 3px 10px !important; }
.bl-date { color: var(--muted) !important; font-size: .75rem !important; }
.bl-title a { color: var(--primary) !important; font-weight: 700 !important; }
.bl-title a:hover { color: #000 !important; }
.bl-link { color: var(--primary) !important; font-weight: 700 !important; font-size: .82rem !important; }
.bl-link:hover { color: #000 !important; }

/* ── FAQ ─────────────────────────────────────────────── */
.fd-faq .accordion-button { color: var(--primary) !important; font-weight: 700 !important; background: var(--white) !important; box-shadow: none !important; }
.fd-faq .accordion-button:not(.collapsed) { background: #ebebeb !important; color: var(--primary) !important; }
.fd-faq .accordion-item { border: 1px solid var(--border) !important; border-radius: 14px !important; overflow: hidden !important; margin-bottom: 10px !important; }

/* ── LOCATION STRIP ──────────────────────────────────── */
.loc-strip { background: var(--primary) !important; }
.loc-ico i { color: rgba(255,255,255,.7) !important; }
.loc-city  { color: #fff !important; font-weight: 700 !important; }
.loc-addr  { color: rgba(255,255,255,.5) !important; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--primary) !important; }
.ft-grid {
  display: grid !important; grid-template-columns: 2fr 1.1fr 1.1fr 1.1fr 1.1fr !important;
  gap: 36px 44px !important; padding: 64px 0 44px !important;
}
@media (max-width: 1100px) { .ft-grid { grid-template-columns: 1fr 1fr 1fr !important; } .ft-brand-col { grid-column: 1/-1 !important; } }
@media (max-width: 767px)  { .ft-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; } .ft-brand-col { grid-column: 1/-1 !important; } }
@media (max-width: 480px)  { .ft-grid { grid-template-columns: 1fr !important; } }
.ft-logo { color: #fff !important; font-weight: 800 !important; font-size: 1.3rem !important; }
.ft-logo-dot { background: rgba(255,255,255,.4) !important; }
.ft-tagline { color: rgba(255,255,255,.5) !important; font-size: .84rem !important; line-height: 1.6 !important; }
.ft-hd { color: rgba(255,255,255,.4) !important; font-size: .66rem !important; letter-spacing: .1em !important; text-transform: uppercase !important; font-weight: 700 !important; margin-bottom: 12px !important; }
.ft-links li a { color: rgba(255,255,255,.6) !important; font-size: .85rem !important; transition: color .2s !important; }
.ft-links li a:hover { color: #fff !important; }
.ft-social { display: flex; gap: 10px; margin-top: 20px; }
.ft-soc { width: 38px; height: 38px; background: rgba(255,255,255,.08) !important; border-radius: 50% !important; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6) !important; font-size: .9rem; text-decoration: none; transition: background .2s, color .2s !important; }
.ft-soc:hover { background: rgba(255,255,255,.2) !important; color: #fff !important; }
.ft-contact-strip { display: flex; flex-wrap: wrap; gap: 12px 32px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.06); margin-top: 4px; }
.ft-contact-item { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: rgba(255,255,255,.4); }
.ft-contact-item i { color: rgba(255,255,255,.6) !important; }
.ft-contact-item a { color: rgba(255,255,255,.55) !important; text-decoration: none; transition: color .2s; }
.ft-contact-item a:hover { color: #fff !important; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; gap: 10px; }
.ft-copy { color: rgba(255,255,255,.3) !important; font-size: .8rem !important; }
.ft-blinks { display: flex; gap: 20px; }
.ft-blinks a { color: rgba(255,255,255,.3) !important; font-size: .8rem !important; text-decoration: none; transition: color .2s; }
.ft-blinks a:hover { color: rgba(255,255,255,.7) !important; }

/* ── WA FLOAT ────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: 0 6px 24px rgba(37,211,102,.35); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 32px rgba(37,211,102,.45); color: #fff; }
@media (max-width: 575px) { .wa-float { width: 46px; height: 46px; font-size: 1.2rem; bottom: 18px; right: 16px; } }

/* ── THEME COLOR PICKER — DISABLED ──────────────────── */
.theme-picker { display: none !important; }
.theme-picker-btn { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 6px 20px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s; }
.theme-picker-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(0,0,0,.28); }
.theme-picker-btn i { color: #fff; transition: color .25s; }
.theme-picker-panel { background: rgba(255,255,255,.97); backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(0,0,0,.07); border-radius: 16px; padding: 14px 16px; box-shadow: 0 16px 48px rgba(0,0,0,.14); opacity: 0; visibility: hidden; transform: translateY(10px) scale(.96); transition: opacity .22s, visibility 0s .22s, transform .22s; min-width: 160px; }
.theme-picker-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); transition: opacity .22s, transform .22s; }
.theme-picker-label { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #999; margin-bottom: 10px; }
.theme-swatches { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.theme-swatch { width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid transparent; cursor: pointer; transition: transform .15s, border-color .15s, box-shadow .15s; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.theme-swatch:hover { transform: scale(1.15); box-shadow: 0 4px 14px rgba(0,0,0,.22); }
.theme-swatch.active { border-color: #111; transform: scale(1.1); }
.theme-picker-divider { height: 1px; background: rgba(0,0,0,.07); margin: 10px 0; }
.theme-color-wrap { display: flex; align-items: center; gap: 10px; }
.theme-color-input { width: 36px; height: 36px; padding: 2px; border: 2.5px solid rgba(0,0,0,.12); border-radius: 50%; cursor: pointer; background: none; -webkit-appearance: none; appearance: none; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: transform .15s, box-shadow .15s; flex-shrink: 0; }
.theme-color-input:hover { transform: scale(1.15); box-shadow: 0 4px 14px rgba(0,0,0,.22); }
.theme-color-input::-webkit-color-swatch-wrapper { padding: 0; border-radius: 50%; }
.theme-color-input::-webkit-color-swatch { border: none; border-radius: 50%; }
.theme-color-input::-moz-color-swatch { border: none; border-radius: 50%; }
.theme-color-label { font-size: .72rem; color: #888; user-select: none; }
@media (max-width: 575px) { .theme-picker { left: 16px; bottom: 18px; } .theme-picker-btn { width: 40px; height: 40px; font-size: 1rem; } }

/* ── BACKDROP ────────────────────────────────────────── */
.mega-backdrop { background: rgba(0,0,0,.3) !important; backdrop-filter: blur(3px) !important; }
@media (max-width: 991px) { #megaBackdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; } }

/* ══════════════════════════════════════════════════════
   BLOG — LISTING PAGE
══════════════════════════════════════════════════════ */
.bl-body { padding: 22px 22px 26px; }
.bl-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.bl-excerpt { color: var(--mid); font-size: .87rem; line-height: 1.6; margin: 10px 0 16px; }
.bl-read-time { color: var(--muted); font-size: .73rem; }
.bl-featured .bl-body { padding: 28px 28px 32px; }
.bl-featured .bl-title a { font-size: 1.35rem; }

/* ══════════════════════════════════════════════════════
   BLOG — SINGLE ARTICLE TEMPLATE
══════════════════════════════════════════════════════ */
/* Reading progress bar */
.art-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 9999; width: 0%; transition: width .1s linear; }

/* Hero */
.art-hero { position: relative; height: 520px; overflow: hidden; }
@media (max-width:767px) { .art-hero { height: 320px; } }
.art-hero img { width: 100%; height: 100%; object-fit: cover; }
.art-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.72) 100%); }
.art-hero-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px 0 36px; }
.art-hero-cat { display: inline-block; background: var(--accent); color: #fff; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.art-hero-title { color: #fff; font-size: clamp(1.55rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; text-wrap: balance; margin-bottom: 16px; }
.art-hero-chips { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.art-hero-chip { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.75); font-size: .8rem; }
.art-hero-chip i { color: rgba(255,255,255,.55); }

/* Layout */
.art-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding-top: 48px; padding-bottom: 64px; align-items: start; }
@media (max-width: 1099px) { .art-layout { grid-template-columns: 1fr; } }

/* Article body */
.art-body { max-width: 760px; }
.art-body h2 { font-size: 1.42rem; font-weight: 800; color: var(--primary); margin: 48px 0 16px; padding-top: 8px; border-top: 2px solid var(--border); }
.art-body h2:first-child { border-top: none; margin-top: 0; }
.art-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 24px 0 10px; }
.art-body p { color: var(--mid); line-height: 1.78; margin-bottom: 16px; }
.art-body p strong { color: var(--primary); }
.art-body ul, .art-body ol { padding-left: 24px; margin-bottom: 18px; }
.art-body li { color: var(--mid); line-height: 1.72; margin-bottom: 6px; }
.art-body a { color: var(--accent); text-decoration: underline; }

/* Tip box */
.art-tip { background: var(--off); border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 28px 0; display: flex; gap: 14px; align-items: flex-start; }
.art-tip-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; }
.art-tip-text { color: var(--mid); font-size: .9rem; line-height: 1.65; }
.art-tip-text strong { color: var(--primary); }

/* Section image */
.art-img { border-radius: 18px; overflow: hidden; margin: 28px 0; }
.art-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
@media (max-width:575px) { .art-img img { height: 220px; } }
.art-img-cap { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* Key takeaways */
.art-takeaways { background: var(--primary); border-radius: 18px; padding: 28px 32px; margin: 44px 0; }
.art-takeaways-hd { color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.art-takeaways-hd i { color: var(--accent); }
.art-takeaways ul { list-style: none; padding: 0; margin: 0; }
.art-takeaways li { color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.62; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; gap: 12px; align-items: flex-start; }
.art-takeaways li:last-child { border-bottom: none; }
.art-takeaways li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: 8px; }

/* TOC (sidebar) */
.art-toc { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; margin-bottom: 24px; }
.art-toc-hd { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.art-toc ul { list-style: none; padding: 0; margin: 0; }
.art-toc li { border-bottom: 1px solid var(--border); }
.art-toc li:last-child { border-bottom: none; }
.art-toc a { display: block; padding: 9px 0; color: var(--mid); font-size: .84rem; line-height: 1.4; text-decoration: none; transition: color .15s; }
.art-toc a:hover, .art-toc a.is-active { color: var(--primary); font-weight: 600; }

/* Author card (sidebar) */
.art-author { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; margin-bottom: 24px; }
.art-author-name { font-weight: 700; font-size: .95rem; color: var(--primary); margin-bottom: 4px; }
.art-author-role { font-size: .78rem; color: var(--muted); margin-bottom: 12px; }
.art-author-bio { font-size: .84rem; color: var(--mid); line-height: 1.6; }

/* CTA sidebar card */
.art-cta-card { background: var(--primary); border-radius: 18px; padding: 28px 24px; text-align: center; }
.art-cta-card .art-cta-title { color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; }
.art-cta-card .art-cta-sub { color: rgba(255,255,255,.65); font-size: .84rem; line-height: 1.55; margin-bottom: 20px; }
.art-cta-card .btn-cta-w { font-size: .85rem; padding: 12px 20px; width: 100%; display: block; text-align: center; }
.art-cta-card .art-wa { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 12px; text-decoration: none; }
.art-cta-card .art-wa:hover { color: #fff; }

/* Related posts */
.art-related { margin-top: 60px; padding-top: 44px; border-top: 2px solid var(--border); }
.art-related-hd { font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 28px; }

/* Sticky sidebar — sticky is on the <aside> itself so it works with align-items:start */
.art-layout > aside { position: sticky; top: 100px; }
@media (max-width: 1099px) { .art-layout > aside { position: static; } }
.art-sidebar-sticky { display: flex; flex-direction: column; gap: 20px; }

/* Blog category filter tabs */
.bl-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.bl-tab { border: 1px solid var(--border); background: var(--white); color: var(--mid); font-size: .8rem; font-weight: 600; padding: 7px 18px; border-radius: 999px; cursor: pointer; transition: all .2s; }
.bl-tab:hover { border-color: var(--primary); color: var(--primary); }
.bl-tab.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS — Premium Process Section
══════════════════════════════════════════════════════ */
.how-works-sec { background: var(--primary) !important; }
.how-pill { background: rgba(255,255,255,.1) !important; color: rgba(255,255,255,.8) !important; border: 1px solid rgba(255,255,255,.15) !important; }
.how-pill .pill-dot { background: rgba(255,255,255,.45) !important; }
.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; position: relative;
}
.how-step { position: relative; display: flex; align-items: flex-start; gap: 0; }
.how-step-inner {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 28px 22px 24px; flex: 1;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s, border-color .25s;
}
.how-step-inner:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.how-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.how-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.how-title { color: #fff; font-weight: 700; font-size: .94rem; line-height: 1.35; }
.how-desc  { color: rgba(255,255,255,.48); font-size: .82rem; line-height: 1.65; }
.how-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; color: rgba(255,255,255,.18); font-size: .85rem;
  margin-top: 22px; flex-shrink: 0;
}
@media (max-width: 991px) {
  .how-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .how-connector { display: none; }
  .how-step { flex-direction: column; }
}
@media (max-width: 575px) { .how-grid { grid-template-columns: 1fr; gap: 12px; } }

/* ══════════════════════════════════════════════════════
   CALL FLOAT + WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.call-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 52px; height: 52px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.28); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.call-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 32px rgba(0,0,0,.4); color: #fff; }
@media (max-width: 575px) { .call-float { width: 46px; height: 46px; font-size: 1rem; bottom: 18px; left: 16px; } }

@media (max-width: 767px) {
  .ann-bar   { padding: 5px 16px !important; }
  .ann-cta   { display: none !important; }
  .ann-close { display: none !important; }
}

/* ══════════════════════════════════════════════════════
   NAV LOGO IMAGE
══════════════════════════════════════════════════════ */
.nav-logo-img {
  height: 34px; width: auto; display: block;
  max-width: 160px; object-fit: contain;
}
@media (max-width: 575px) { .nav-logo-img { height: 28px; } }

/* ══════════════════════════════════════════════════════
   NAV CENTERING — grid layout overrides bundle's flex
══════════════════════════════════════════════════════ */
.nav-inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  height: 68px !important;
  gap: 16px !important;
}
.nav-main .nav-links {
  flex: 1 !important;
  justify-content: center !important;
}

/* ══════════════════════════════════════════════════════
   OFFER BANNER — clean black/white, overrides bundle gradient
══════════════════════════════════════════════════════ */
.sp-offer-section { padding: 0 0 60px !important; }
.sp-offer {
  position: relative !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 28px !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.18) !important;
}
.sp-offer::before {
  background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.02) 0 1px,transparent 1px 32px) !important;
  background: transparent !important;
  top: 0 !important; right: 0 !important; width: 100% !important; height: 100% !important;
}
.sp-offer::after { display: none !important; }
.sp-offer-inner { position: relative !important; z-index: 2 !important; }
.sp-offer-grid {
  display: grid !important;
  grid-template-columns: 1fr 340px !important;
  min-height: 280px !important;
}
.sp-offer-left {
  padding: 48px 44px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 18px !important;
}
.sp-offer-tag {
  display: inline-flex !important; align-items: center !important; gap: 7px !important;
  background: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.85) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  padding: 6px 14px !important; border-radius: 999px !important;
  font-size: .68rem !important; font-weight: 700 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  width: fit-content !important; margin-bottom: 0 !important;
}
.sp-offer-h {
  font-size: clamp(1.7rem,3.5vw,2.5rem) !important;
  font-weight: 800 !important; line-height: 1.1 !important;
  color: #fff !important; margin: 0 !important;
  letter-spacing: -.025em !important;
}
.sp-offer-h span { color: rgba(255,255,255,.5) !important; }
.sp-offer-lead {
  font-size: .95rem !important; color: rgba(255,255,255,.6) !important;
  line-height: 1.65 !important; margin: 0 !important; max-width: 500px !important;
}
.sp-offer-cta { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; }
.sp-offer-btn-w {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  background: #fff !important; color: #111 !important;
  font-weight: 800 !important; font-size: .82rem !important;
  letter-spacing: .04em !important; text-transform: uppercase !important;
  padding: 13px 26px !important; border-radius: 999px !important;
  text-decoration: none !important;
}
.sp-offer-btn-w:hover { background: #f0f0f0 !important; color: #000 !important; }
.sp-offer-btn-o {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  background: transparent !important; color: rgba(255,255,255,.75) !important;
  font-weight: 700 !important; font-size: .82rem !important;
  letter-spacing: .04em !important; text-transform: uppercase !important;
  padding: 13px 24px !important; border-radius: 999px !important;
  border: 1.5px solid rgba(255,255,255,.22) !important; text-decoration: none !important;
}
.sp-offer-btn-o:hover { border-color: rgba(255,255,255,.55) !important; color: #fff !important; }
.sp-offer-card {
  background: rgba(255,255,255,.06) !important;
  border-left: 1px solid rgba(255,255,255,.09) !important;
  padding: 40px 32px !important;
  display: flex !important; flex-direction: column !important;
  align-items: center !important; justify-content: center !important;
  gap: 12px !important; text-align: center !important;
}
.sp-vc-label {
  font-size: .68rem !important; font-weight: 700 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,.4) !important; text-decoration: line-through !important;
}
.sp-vc-price {
  font-size: 3.4rem !important; font-weight: 800 !important;
  line-height: 1 !important; color: #fff !important; letter-spacing: -.04em !important;
}
.sp-vc-badge {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.85) !important;
  font-size: .68rem !important; font-weight: 700 !important;
  letter-spacing: .1em !important; text-transform: uppercase !important;
  padding: 6px 14px !important; border-radius: 999px !important;
}
.sp-vc-list {
  list-style: none !important; padding: 0 !important; margin: 8px 0 !important;
  display: flex !important; flex-direction: column !important; gap: 0 !important;
  width: 100% !important; text-align: left !important;
}
.sp-vc-list li {
  display: flex !important; align-items: center !important; gap: 10px !important;
  padding: 9px 0 !important; border-bottom: 1px solid rgba(255,255,255,.07) !important;
  font-size: .82rem !important; color: rgba(255,255,255,.7) !important;
}
.sp-vc-list li:last-child { border-bottom: none !important; }
.sp-vc-list li i { color: rgba(255,255,255,.9) !important; font-size: .65rem !important; }
.sp-vc-cta {
  display: block !important; width: 100% !important; text-align: center !important;
  background: #fff !important; color: #111 !important;
  font-weight: 800 !important; font-size: .78rem !important;
  letter-spacing: .05em !important; text-transform: uppercase !important;
  padding: 12px 20px !important; border-radius: 999px !important;
  text-decoration: none !important; margin-top: 4px !important;
}
.sp-vc-cta:hover { background: #f0f0f0 !important; color: #000 !important; }
@media (max-width: 991px) {
  .sp-offer-grid { grid-template-columns: 1fr !important; }
  .sp-offer-card { border-left: none !important; border-top: 1px solid rgba(255,255,255,.09) !important; padding: 32px 28px !important; }
  .sp-vc-list { max-width: 360px !important; margin: 8px auto !important; }
}
@media (max-width: 575px) {
  .sp-offer-left { padding: 32px 24px !important; }
  .sp-offer-h { font-size: 1.7rem !important; }
}

/* ── NAV — show Book Free Visit on mobile ──────────────────── */
@media (max-width: 991px) {
  .nav-main .btn-filled { display: flex !important; }
}

/* ── NAV-MOBILE — prevent off-screen transform causing x-scroll ── */
.nav-mobile:not(.is-open):not(.open) {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ── HOMEPAGE HERO RESPONSIVE ────────────────────────────── */
@media (max-width: 991px) {
  #hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  #hero > div:first-child {
    padding: 40px 24px 32px !important;
  }
  .hero-img-col {
    padding: 12px 20px 32px !important;
  }
  .hero-img-wrap {
    width: 100% !important;
    height: 56vw !important;
    min-height: 220px !important;
    max-height: 360px !important;
  }
}
