/* =========================================================================
   Cleanwise Facilities — premium conversion landing (v2 redesign)
   Fonts: Poppins (headings) + Inter (body)
   ========================================================================= */
:root {
  --blue: #0A6DFF;
  --blue-2: #36A3FF;
  --blue-dark: #0746a8;
  --navy: #07122b;
  --navy-2: #0d1f44;
  --sky: #EAF7FF;
  --sky-2: #f4fbff;
  --orange: #FF8A00;
  --orange-2: #ffb13d;
  --white: #FFFFFF;
  --ink: #182338;
  --muted: #5d6b82;
  --line: #e7eef7;

  --grad-blue: linear-gradient(135deg, #0A6DFF 0%, #36A3FF 100%);
  --grad-blue-deep: linear-gradient(135deg, #0746a8 0%, #0A6DFF 60%, #36A3FF 100%);
  --grad-orange: linear-gradient(135deg, #FF8A00 0%, #ffb13d 100%);
  --grad-text: linear-gradient(105deg, #0A6DFF 0%, #36A3FF 55%, #66c2ff 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 16px rgba(10, 24, 51, .07);
  --shadow-md: 0 18px 44px rgba(10, 24, 51, .12);
  --shadow-lg: 0 30px 70px rgba(10, 24, 51, .22);
  --shadow-blue: 0 18px 40px rgba(10, 109, 255, .35);
  --shadow-orange: 0 16px 34px rgba(255, 138, 0, .4);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, .brand { font-family: "Poppins", system-ui, sans-serif; font-weight: 600; line-height: 1.14; color: var(--navy); letter-spacing: -.02em; }
h1 { font-size: clamp(2.15rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h1, h2, h3, h4 { margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(36px, 4vw, 58px) 0; position: relative; }
.section--sky { background: linear-gradient(180deg, var(--sky-2), var(--sky)); }
.section--navy { background: radial-gradient(900px 500px at 15% 0%, #11254e, transparent 60%), var(--navy); color: #c6d6ee; overflow: hidden; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.lead-sub { color: var(--muted); font-size: 1.1rem; max-width: 640px; }
.center .lead-sub { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 4px; }
.section-head .lead-sub { margin-bottom: 0; }

/* ---- Section headline boost ---- */
.section-head h2,
#about .split h2 {
  font-size: clamp(2.15rem, 4.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: .6rem;
}

/* Eyebrow pill */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
  background: rgba(10, 109, 255, .09); border: 1px solid rgba(10, 109, 255, .18);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 13px;
}
.badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 138, 0, .2); }
.section--navy .badge-pill { color: #8fc6ff; background: rgba(54, 163, 255, .12); border-color: rgba(54, 163, 255, .25); }

/* Gradient text */
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: 0; cursor: pointer; overflow: hidden;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, filter .2s;
  white-space: nowrap; color: #fff;
}
.btn::after { /* shine sweep */
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--grad-orange); box-shadow: var(--shadow-orange); }
.btn--primary:hover { transform: translateY(-3px); filter: saturate(1.1); }
.btn--blue { background: var(--grad-blue); box-shadow: var(--shadow-blue); }
.btn--blue:hover { transform: translateY(-3px); }
.btn--ghost { background: rgba(255, 255, 255, .1); border: 1.5px solid rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-3px); }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn--pulse { animation: pulse 2.6s infinite; }
@keyframes pulse {
  0% { box-shadow: var(--shadow-orange), 0 0 0 0 rgba(255, 138, 0, .55); }
  70% { box-shadow: var(--shadow-orange), 0 0 0 18px rgba(255, 138, 0, 0); }
  100% { box-shadow: var(--shadow-orange), 0 0 0 0 rgba(255, 138, 0, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; transition: background .3s, box-shadow .3s, height .3s;
  background: rgba(255, 255, 255, .72); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(255, 255, 255, .92); box-shadow: 0 6px 24px rgba(10, 24, 51, .08); border-bottom-color: var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; transition: height .3s; }
.site-header.scrolled .container { height: 64px; }
.brand-row { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 42px; height: 42px; border-radius: 13px; background: var(--grad-blue); display: grid; place-items: center; color: #fff; font-family: "Poppins"; font-weight: 700; box-shadow: var(--shadow-blue); }
.brand { font-size: 1.2rem; color: var(--navy); line-height: 1.1; }
.brand small { display: block; font-family: "Inter"; font-weight: 500; font-size: .72rem; color: var(--muted); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: "Poppins"; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.header-phone:hover { color: var(--blue); }

/* ---------- Sticky marquee / announcement ticker ---------- */
.topbar { background: var(--grad-blue-deep); color: #fff; }
.marquee { position: relative; overflow: hidden; height: 38px; display: flex; align-items: center;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee__track { display: inline-flex; flex: 0 0 auto; white-space: nowrap; will-change: transform; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: inline-flex; align-items: center; }
.marquee__item { display: inline-flex; align-items: center; padding: 0 26px; font-size: .85rem; font-weight: 500; color: #eaf3ff; letter-spacing: .01em; }
.marquee__item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-2); margin-right: 10px; flex: 0 0 auto; box-shadow: 0 0 0 3px rgba(255,177,61,.2); }
.marquee__item .stars { font-size: .8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy); isolation: isolate;
  display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 45% at 18% 22%, rgba(54, 163, 255, .55), transparent 60%),
    radial-gradient(38% 42% at 82% 12%, rgba(10, 109, 255, .55), transparent 60%),
    radial-gradient(50% 55% at 70% 88%, rgba(7, 70, 168, .55), transparent 60%),
    radial-gradient(45% 50% at 25% 90%, rgba(102, 194, 255, .35), transparent 60%);
  animation: meshDrift 16s ease-in-out infinite alternate;
}
.hero-bg .grid-overlay { position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 78%); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,18,43,.2), rgba(7,18,43,.55)); }
@keyframes meshDrift { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-3%, 2%, 0) scale(1.08); } }

.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bubble { position: absolute; bottom: -60px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,.06) 60%, transparent); border: 1px solid rgba(255,255,255,.18); animation: rise linear infinite; }
@keyframes rise { 0% { transform: translateY(0) scale(.6); opacity: 0; } 12% { opacity: .8; } 100% { transform: translateY(-115vh) scale(1.1); opacity: 0; } }

.hero .container { width: 100%; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding: clamp(16px, 2.5vw, 28px) 0; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); margin-bottom: 8px; }
.hero h1 .gradient-text { background: linear-gradient(100deg, #8fd0ff, #cfe9ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: #d3e3fa; font-size: 1.04rem; max-width: 540px; margin-bottom: 0; }
.stars { color: #FFC83D; letter-spacing: 2px; }
.trust-inline { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, .1); padding: 6px 14px; border-radius: 999px; font-size: .86rem; margin-bottom: 10px; border: 1px solid rgba(255, 255, 255, .2); backdrop-filter: blur(6px); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 13px; margin: 14px 0 0; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 11px 24px; list-style: none; padding: 0; margin: 0; color: #cfe0f5; font-size: .96rem; }
.micro-trust li { display: flex; align-items: center; gap: 8px; }
.micro-trust .tick { width: 20px; height: 20px; border-radius: 50%; background: rgba(89, 224, 163, .18); color: #59e0a3; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }

/* ---------- Lead form (glass) ---------- */
.lead-card { position: relative; background: rgba(255, 255, 255, .98); border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 18px; color: var(--ink); }
.hero .lead-card { backdrop-filter: blur(10px); }
.hero .lead-card h3 { font-size: 1.14rem; margin-bottom: 2px; }
.hero .lead-card .form-note { font-size: .84rem; margin-bottom: 10px; }
.hero .field { margin-bottom: 7px; }
.hero .field input, .hero .field select { padding: 8px 12px; }
.lead-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(10,109,255,.25)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.lead-card h3 { margin: 0 0 3px; font-size: 1.22rem; }
.lead-card .form-note { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.field { margin-bottom: 10px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #f8fbff; transition: border .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 109, 255, .14); background: #fff; }
.field textarea { resize: vertical; min-height: 80px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-error { color: #d92d20; font-size: .8rem; margin-top: 4px; }
.hp { position: absolute !important; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; }
.form-foot { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 12px; }
.alert-success { background: #e7f9ef; border: 1px solid #b6eccd; color: #126b3f; border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; font-size: .95rem; }
.alert-error { background: #fdecec; border: 1px solid #f5c2c0; color: #b42318; border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-size: .9rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; overflow: hidden; }
.stat::after { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 130%; height: 70%; background: radial-gradient(circle, rgba(10,109,255,.1), transparent 70%); opacity: 0; transition: opacity .3s; }
.stat:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(10,109,255,.22); }
.stat:hover::after { opacity: 1; }
.stat-ic { position: relative; z-index: 1; width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 16px; display: grid; place-items: center; color: var(--blue); background: rgba(10,109,255,.1); transition: transform .35s cubic-bezier(.2,.7,.3,1), background .35s, color .35s, box-shadow .35s; }
.stat:hover .stat-ic { background: var(--grad-blue); color: #fff; transform: translateY(-3px) rotate(-6deg); box-shadow: var(--shadow-blue); }
.stat .num { position: relative; z-index: 1; font-family: "Poppins"; font-weight: 700; font-size: clamp(1.85rem, 3.6vw, 2.6rem); line-height: 1.05; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { position: relative; z-index: 1; color: var(--muted); font-size: .95rem; font-weight: 500; margin-top: 8px; }

/* ---------- Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0; box-shadow: var(--shadow-sm); transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s, border-color .28s; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(10,109,255,.25); }
.service-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #0a52cc, #36a3ff); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.service-card:hover .service-thumb img { transform: scale(1.08); }
.service-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,18,43,0) 50%, rgba(7,18,43,.42)); }
.service-body { padding: 20px 22px 22px; }
.service-body h3 { font-size: 1.2rem; margin: 0 0 7px; }
.service-body p { color: var(--muted); font-size: .96rem; margin: 0 0 13px; }
.service-link { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem; color: #fff;
  background: var(--grad-blue); padding: 11px 20px; border-radius: 999px; box-shadow: var(--shadow-blue);
  margin-top: 4px; transition: transform .2s, box-shadow .25s, filter .2s; }
.service-link:hover { transform: translateY(-3px); filter: saturate(1.1); }
.service-link svg { position: relative; z-index: 1; animation: arrowNudge 1.2s ease-in-out infinite; }
.service-link::before { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-20deg);
  animation: shineLoop 2.8s ease-in-out infinite; }
@keyframes arrowNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@keyframes shineLoop { 0% { left: -130%; } 55%, 100% { left: 135%; } }

/* Offer badge on service card image */
.offer-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ff8a00 0%, #e85d00 100%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 13px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(232,93,0,.50), inset 0 1px 0 rgba(255,255,255,.18);
  transform: none;
}
.offer-ribbon::before {
  content: "🏷";
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 768px) {
  .offer-ribbon { top: 10px; left: 10px; font-size: 10.5px; padding: 5px 11px; gap: 4px; }
  .offer-ribbon::before { font-size: 11px; }
}

/* ---------- Offers Section ---------- */
.offers-section { background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%); }
.offers-pill { background: rgba(255,138,0,.12); color: #c75900; border-color: rgba(255,138,0,.35); }
.offers-dot { background: #ff8a00; }
.offers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 28px; }
.offer-card { background: #fff; border: 1px solid rgba(7,18,43,.09); border-radius: 16px; padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 2px 12px rgba(7,18,43,.05); transition: transform .22s, box-shadow .22s; border-top: 3px solid #ff8a00; }
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(7,18,43,.10); }
.offer-ic { font-size: 1.8rem; line-height: 1; }
.offer-text h3 { font-size: .95rem; margin: 0 0 6px; color: var(--navy); line-height: 1.35; }
.offer-text p { color: var(--muted); font-size: .82rem; margin: 0; line-height: 1.5; }

/* ---------- Why choose us ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split-media { position: relative; border-radius: var(--radius-lg); min-height: 330px; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, #0a52cc, #36a3ff 70%, #66c2ff); overflow: hidden; }
.split-media .media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.split-media:hover .media-img { transform: scale(1.05); }
.split-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(155deg, rgba(10,82,204,.25), rgba(7,18,43,.5)); }
.media-badge { position: absolute; z-index: 2; background: rgba(255,255,255,.96); border-radius: 16px; box-shadow: var(--shadow-md); padding: 16px 20px; display: flex; align-items: center; gap: 12px; backdrop-filter: blur(4px); }
.media-badge .mb-num { font-family: "Poppins"; font-weight: 700; font-size: 1.6rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.media-badge .mb-label { font-size: .82rem; color: var(--muted); line-height: 1.3; }
.media-badge.b1 { top: 26px; left: 26px; animation: floaty 5s ease-in-out infinite; }
.media-badge.b2 { bottom: 30px; right: 26px; animation: floaty 6s ease-in-out infinite .8s; }
.media-badge .mb-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-orange); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-orange); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.check-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; font-weight: 500; color: var(--navy); }
.check-list .check { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; background: rgba(10,109,255,.1); color: var(--blue); display: grid; place-items: center; font-size: .9rem; font-weight: 800; }

/* ---------- Areas ---------- */
.area-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.area-cols h3 { font-size: 1.12rem; margin: 0 0 16px; display: flex; align-items: center; gap: 9px; }
.area-cols h3 .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,138,0,.18); }
.area-cols h3 .dot.blue { background: var(--blue-2); box-shadow: 0 0 0 5px rgba(54,163,255,.2); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 9px 16px; font-size: .9rem; color: #e9f2ff; transition: transform .2s, background .2s, border-color .2s; }
.chip:hover { transform: translateY(-3px); background: rgba(54,163,255,.16); border-color: rgba(54,163,255,.4); }
.chip b { color: #7fc0ff; font-weight: 700; }
.section--navy .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; }

/* ---------- Reviews ---------- */
.review-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; transition: transform .25s, box-shadow .25s; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .quote-mark { position: absolute; top: 16px; right: 24px; font-family: "Poppins"; font-size: 4rem; line-height: 1; color: rgba(10,109,255,.1); }
.review-card .stars { font-size: 1.05rem; }
.review-card p { color: var(--ink); font-size: 1.04rem; margin: 14px 0 18px; position: relative; z-index: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: "Poppins"; box-shadow: var(--shadow-blue); }
.review-meta .who { font-weight: 600; color: var(--navy); }
.verified { font-size: .78rem; color: #126b3f; display: inline-flex; align-items: center; gap: 4px; }

/* ---------- Process (connected timeline) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 50px; left: 16%; right: 16%; height: 3px; background: repeating-linear-gradient(90deg, rgba(10,109,255,.35) 0 10px, transparent 10px 20px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; padding: 26px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-orange); color: #fff; font-family: "Poppins"; font-weight: 700; font-size: 1.4rem; display: grid; place-items: center; margin: 0 auto 12px; box-shadow: var(--shadow-orange); }
.step h3 { font-size: 1.2rem; margin: 0 0 7px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Before / After Gallery ---------- */
.ba-section { background: linear-gradient(180deg, #f4f9ff 0%, #fff 100%); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card */
.ba-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(7,18,43,.07);
  box-shadow: 0 4px 22px rgba(7,18,43,.07);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s;
}
.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(7,18,43,.14);
}

/* Side-by-side compare area */
.ba-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-side {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce8f5;
}
.ba-side img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.ba-card:hover .ba-side img { transform: scale(1.05); }

.ba-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: #b8c8de; font-size: .85rem; font-weight: 500;
}

/* Before / After badges */
.ba-badge {
  position: absolute; top: 10px;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; color: #fff;
  backdrop-filter: blur(4px);
}
.ba-badge--before { left: 10px; background: rgba(7,18,43,.72); }
.ba-badge--after  { left: 10px; background: var(--grad-blue); box-shadow: 0 3px 10px rgba(10,109,255,.4); }

/* Center divider */
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: calc(50% - 1px); width: 2px;
  background: rgba(255,255,255,.95);
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-divider-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--navy);
  box-shadow: 0 3px 14px rgba(7,18,43,.22);
}

/* Footer label */
.ba-footer {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  background: #fafcff;
  display: flex; align-items: center; gap: 9px;
}
.ba-footer-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600; font-size: .97rem; color: var(--navy);
}

/* Empty state */
.ba-empty {
  text-align: center; padding: 54px 20px;
  display: flex; flex-direction: column; align-items: center;
  color: var(--muted); font-size: 1rem;
}

/* Responsive */
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; gap: 22px; } }
@media (max-width: 480px) {
  .ba-card { border-radius: 16px; }
  .ba-footer { padding: 11px 14px; }
}

/* ---------- Urgency CTA ---------- */
.cta-band { position: relative; background: var(--grad-blue-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 52px); text-align: center; box-shadow: var(--shadow-lg); overflow: hidden; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: -50%; z-index: -1; background: radial-gradient(40% 50% at 20% 20%, rgba(255,255,255,.22), transparent 60%), radial-gradient(40% 50% at 85% 80%, rgba(255,138,0,.35), transparent 60%); animation: meshDrift 12s ease-in-out infinite alternate; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e0ecff; max-width: 540px; margin: 0 auto 20px; font-size: 1.08rem; }
.cta-band .hero-btns { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s, border-color .25s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(10,109,255,.25); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 15px 20px; font-family: "Poppins"; font-weight: 600; font-size: 1.04rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q .plus { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 8px; background: rgba(10,109,255,.1); color: var(--blue); display: grid; place-items: center; font-size: 1.3rem; transition: transform .3s, background .3s; }
.faq-item.open .faq-q .plus { transform: rotate(135deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 20px 16px; margin: 0; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9fb2cf; padding: 36px 0 24px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -120px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(10,109,255,.4), transparent 70%); filter: blur(40px); }
.footer-top { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .1); padding-bottom: 24px; margin-bottom: 20px; }
.footer-top a { color: #fff; transition: color .2s; }
.footer-top a:hover { color: var(--blue-2); }
.site-footer .brand, .site-footer .brand small { color: #fff; }
.footer-bottom { font-size: .85rem; position: relative; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar { display: none; }

/* ---------- Scroll reveal + stagger ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.slide-in { opacity: 0; transform: translateY(40px) scale(.97); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.slide-in.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .slide-in { opacity: 1 !important; transform: none !important; transition: none; }
  .btn--pulse, .media-badge, .hero-bg .mesh, .cta-band::before, .bubble, .marquee__track,
  .service-link svg, .service-link::before { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-inner { gap: 28px; }
  .split { gap: 30px; }
  .split-media { min-height: 260px; order: -1; }
  .grid-3, .steps, .stats { grid-template-columns: 1fr 1fr; }
  .area-cols { grid-template-columns: 1fr; gap: 26px; }
  .steps::before { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }
  .lead-sub { font-size: 1rem; }
  .hero-sub { font-size: 1.04rem; }
  .hero-inner { gap: 22px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn { flex: 1 1 auto; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .micro-trust { gap: 8px 18px; }
  .header-phone span { display: none; }
  body { padding-bottom: 70px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 -6px 24px rgba(10, 24, 51, .16); border-top: 1px solid var(--line);
  }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; font-family: "Poppins"; font-weight: 600; }
  .mobile-bar .call { color: var(--navy); }
  .mobile-bar .quote { background: var(--grad-orange); color: #fff; }
}

/* =========================================================================
   Admin (lightweight) — unchanged hooks
   ========================================================================= */
.admin-body { background: #eef3fa; min-height: 100vh; }
.admin-wrap { max-width: 1080px; margin: 0 auto; padding: 28px 20px 60px; }
.admin-login { max-width: 410px; margin: 8vh auto; background: #fff; border-radius: 20px; box-shadow: var(--shadow-md); padding: 36px; }
.admin-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi { background: #fff; border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.kpi .n { font-family: "Poppins"; font-weight: 700; font-size: 1.9rem; color: var(--navy); }
.kpi .l { color: var(--muted); font-size: .85rem; }
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 16px; }
.toolbar a { padding: 8px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .88rem; transition: all .2s; }
.toolbar a.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.toolbar input { padding: 9px 13px; border: 1px solid var(--line); border-radius: 11px; }
.table-wrap { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); overflow-x: auto; border: 1px solid var(--line); }
table.leads { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.leads th, table.leads td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.leads th { background: #f6faff; font-family: "Poppins"; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
table.leads tr:hover td { background: #fafcff; }
.badge { font-size: .74rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; text-transform: capitalize; }
.badge.new { background: #e0edff; color: #0a52cc; }
.badge.contacted { background: #fff0db; color: #9a5b00; }
.badge.won { background: #e0f7ea; color: #12733f; }
.badge.lost { background: #fde3e1; color: #b42318; }
.status-form select { padding: 6px 8px; border-radius: 8px; border: 1px solid var(--line); }
.pager { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.pager-btn { padding: 8px 16px; border-radius: 10px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-sm); }
.pager-btn.disabled { color: #b8c2d2; box-shadow: none; }
.pager-info { color: var(--muted); font-size: .88rem; }
@media (max-width: 700px) { .cards { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   v3 — premium serif headings + new sections (harmonised with existing look)
   ========================================================================= */
/* Luxury serif for the large section headings; cards/UI keep Poppins. */
h1, h2 { font-family: "Playfair Display", Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -.01em; }

/* Secondary blue outline button (used in About) */
.btn--ghost-blue { background: #fff; color: var(--blue); border: 1.5px solid rgba(10,109,255,.4); box-shadow: var(--shadow-sm); }
.btn--ghost-blue:hover { transform: translateY(-3px); background: #f3f8ff; border-color: var(--blue); }

/* ---------- Hero CTA arrow ---------- */
.hero-arrow { display: inline-flex; align-items: center; gap: 10px; color: #bcdcff; font-size: .96rem; font-weight: 500; }
.hero-arrow svg { color: var(--orange-2); flex: 0 0 auto; }

/* ---------- Why Thousands Choose Us ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.benefit-item { background: #fff; border-radius: 16px; padding: 22px 20px; border: 1px solid rgba(7,18,43,.08); box-shadow: 0 2px 12px rgba(7,18,43,.05); transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; gap: 14px; }
.benefit-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(7,18,43,.11); }
.benefit-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--blue); background: rgba(10,109,255,.1); flex-shrink: 0; }
.benefit-item h3 { font-size: 1.01rem; margin: 0 0 5px; }
.benefit-item p { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.52; }
.benefit-cta { background: linear-gradient(140deg, #07122b 0%, #0c3d90 100%); border: none; box-shadow: 0 4px 22px rgba(7,18,43,.25); }
.benefit-cta .benefit-ic { background: rgba(255,255,255,.15); color: #fff; }
.benefit-cta h3 { color: #fff; }
.benefit-cta p { color: rgba(255,255,255,.7); }
.why-cta-btn { margin-top: auto; display: inline-block; background: #fff; color: var(--blue); font-weight: 700; font-size: .88rem; padding: 9px 20px; border-radius: 999px; transition: transform .2s, box-shadow .2s; width: fit-content; }
.why-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.18); }

.why-frame { background: #fff; padding: 9px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.why-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; display: block; }

/* ---------- About ---------- */
.about-media { position: relative; }
.about-media .why-frame img { max-height: 420px; }
.about-testimonial { position: relative; margin-top: -28px; margin-left: auto; max-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 18px 20px; }
.about-testimonial .stars { font-size: 1rem; }
.about-testimonial p { margin: 8px 0 6px; font-size: 1rem; color: var(--ink); font-style: italic; }
.about-by { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* ---------- Image Banner ---------- */
.img-banner { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.img-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 7s ease; z-index: 0; }
.img-banner:hover .img-banner-bg { transform: scale(1); }
.img-banner-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,18,43,.15) 0%, rgba(7,18,43,.38) 100%); }
.img-banner-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 64px 22px; }
.img-banner-content h2 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45); font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 14px; }
.img-banner-content p { color: rgba(255,255,255,.92); font-size: 1.12rem; max-width: 560px; margin: 0 auto 28px; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
@media (max-width: 600px) { .img-banner { min-height: 400px; } .img-banner-content { padding: 48px 16px; } }

/* ---------- Before / After gallery ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; padding: 16px 16px 18px; transition: transform .25s, box-shadow .25s; }
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ba-title { font-family: "Poppins"; font-weight: 600; color: var(--navy); margin-bottom: 12px; font-size: 1.08rem; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba-img { position: relative; aspect-ratio: 5 / 4; border-radius: 12px; overflow: hidden; background: #eef3fa; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; top: 8px; left: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; padding: 4px 9px; border-radius: 999px; }
.ba-label--before { background: rgba(7,18,43,.78); }
.ba-label--after { background: var(--grad-blue); }
.ba-quote { margin: 14px 0 0; padding: 0; border: 0; color: var(--ink); font-size: .94rem; font-style: italic; line-height: 1.55; }
.ba-quote cite { display: block; margin-top: 6px; color: var(--muted); font-size: .82rem; font-style: normal; font-weight: 600; }

/* ---------- Gallery section ---------- */
.gal-section { background: linear-gradient(180deg, var(--sky-2) 0%, #fff 100%); }

/* Filter bar */
.gal-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 30px 0 38px;
}
.gal-filter {
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; padding: 9px 20px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--muted);
  cursor: pointer; transition: all .22s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap; line-height: 1;
}
.gal-filter:hover { border-color: rgba(10,109,255,.4); color: var(--blue); background: rgba(10,109,255,.05); }
.gal-filter.active { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--shadow-blue); }

/* Grid */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Card */
.gal-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  cursor: pointer; outline: none;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s;
}
.gal-item:hover, .gal-item:focus-visible {
  transform: translateY(-7px) scale(1.01); box-shadow: var(--shadow-md);
}
.gal-item:focus-visible { box-shadow: var(--shadow-md), 0 0 0 3px rgba(10,109,255,.4); }
.gal-item.gal-hidden { display: none; }
.gal-item.gal-pop { animation: galPop .36s cubic-bezier(.2,.7,.3,1) both; }
@keyframes galPop { from { opacity: 0; transform: scale(.93) translateY(12px); } to { opacity: 1; transform: none; } }

/* Thumbnail */
.gal-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #eef3fa; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .44s cubic-bezier(.2,.7,.3,1); }
.gal-item:hover .gal-thumb img, .gal-item:focus-visible .gal-thumb img { transform: scale(1.09); }

/* Hover overlay */
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,18,43,0) 35%, rgba(7,18,43,.6) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .28s;
}
.gal-item:hover .gal-overlay, .gal-item:focus-visible .gal-overlay { opacity: 1; }
.gal-zoom-ic {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transform: scale(.78); transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.gal-item:hover .gal-zoom-ic, .gal-item:focus-visible .gal-zoom-ic { transform: scale(1); }

/* Category badge */
.gal-cat-badge {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(7,18,43,.65); backdrop-filter: blur(6px);
  padding: 4px 11px; border-radius: 999px; pointer-events: none;
}

/* Card footer */
.gal-info { padding: 14px 16px 16px; }
.gal-info-title { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .97rem; color: var(--navy); margin: 0 0 4px; line-height: 1.3; }
.gal-info-sub { font-size: .82rem; color: var(--muted); margin: 0; }

/* ---- Lightbox ---- */
.gal-lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; transition: opacity .28s;
}
.gal-lightbox[hidden] { display: none; }
.gal-lightbox.lb-open { opacity: 1; }
.gal-lb-backdrop { position: absolute; inset: 0; background: rgba(7,18,43,.9); backdrop-filter: blur(12px); cursor: pointer; }
.gal-lb-dialog { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 940px; max-height: calc(100dvh - 32px); }
.gal-lb-img-wrap { width: 100%; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
.gal-lb-img { max-width: 100%; max-height: calc(100dvh - 130px); border-radius: 14px; box-shadow: 0 36px 90px rgba(0,0,0,.6); object-fit: contain; transition: opacity .22s; display: block; }
.gal-lb-img.lb-loading { opacity: .3; }
.gal-lb-close {
  position: fixed; top: 16px; right: 16px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.14); backdrop-filter: blur(10px);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .22s;
}
.gal-lb-close:hover { background: rgba(255,255,255,.28); transform: rotate(90deg) scale(1.1); }
.gal-lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.14); backdrop-filter: blur(10px);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.gal-lb-nav:hover { background: rgba(255,255,255,.28); }
.gal-lb-nav:disabled { opacity: .25; cursor: default; pointer-events: none; }
.gal-lb-prev { left: 14px; }
.gal-lb-next { right: 14px; }
.gal-lb-prev:not(:disabled):hover { transform: translateY(-50%) scale(1.1); }
.gal-lb-next:not(:disabled):hover { transform: translateY(-50%) scale(1.1); }
.gal-lb-footer { width: 100%; text-align: center; padding: 16px 0 0; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.gal-lb-caption { color: rgba(255,255,255,.92); font-size: .95rem; font-weight: 500; margin: 0; }
.gal-lb-counter { color: rgba(255,255,255,.5); font-size: .84rem; font-family: "Poppins", sans-serif; }

/* ---------- Quote popup / modal ---------- */
.popup-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 12px 16px; background: rgba(7,18,43,.6); backdrop-filter: blur(7px); overflow-y: auto; opacity: 0; transition: opacity .25s; }
.popup-overlay.open { opacity: 1; }
.popup-overlay[hidden] { display: none; }
.popup { position: relative; width: 100%; max-width: 480px; max-height: calc(100dvh - 24px); overflow-y: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 20px 22px 18px; transform: translateY(16px) scale(.98); transition: transform .28s cubic-bezier(.2,.7,.3,1); }
.popup-overlay.open .popup { transform: none; }
.popup-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #f0f4fa; color: var(--navy); font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background .2s, transform .2s; }
.popup-close:hover { background: #e2e9f3; transform: rotate(90deg); }
.popup-head { text-align: center; margin-bottom: 10px; }
.popup-head h3 { font-size: 1.22rem; margin: 0 0 3px; }
.popup-sub { color: var(--muted); font-size: .88rem; margin: 0; }
.popup-tabs { display: flex; gap: 5px; background: #f0f4fa; padding: 4px; border-radius: 12px; margin-bottom: 12px; }
.popup-tab { flex: 1; border: 0; background: none; padding: 7px 6px; border-radius: 9px; font-family: "Poppins"; font-weight: 600; font-size: .8rem; color: var(--muted); cursor: pointer; transition: background .2s, color .2s, box-shadow .2s; }
.popup-tab.active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.popup-panel { display: none; }
.popup-panel.active { display: block; animation: popFade .3s ease; }
@keyframes popFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.qty-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.qty-pill { position: relative; cursor: pointer; }
.qty-pill input { position: absolute; opacity: 0; pointer-events: none; }
.qty-pill span { display: grid; place-items: center; width: 40px; height: 38px; border: 1.5px solid var(--line); border-radius: 10px; font-family: "Poppins"; font-weight: 600; font-size: .9rem; color: var(--navy); background: #f8fbff; transition: all .18s; }
.qty-pill input:checked + span { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--shadow-blue); }
.qty-pill input:focus-visible + span { box-shadow: 0 0 0 4px rgba(10,109,255,.2); }
.popup .field { margin-bottom: 8px; }
.popup .btn { margin-top: 4px; }
.popup-alert { border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-size: .92rem; }
.popup-alert.is-error { background: #fdecec; border: 1px solid #f5c2c0; color: #b42318; }
.popup-alert.is-success { background: #e7f9ef; border: 1px solid #b6eccd; color: #126b3f; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #d92d20; background: #fff6f5; }
.qty-pills.invalid .qty-pill span { border-color: #d92d20; }

/* ---------- Admin: nav + CRUD ---------- */
.admin-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.admin-nav a { padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-family: "Poppins"; font-weight: 600; font-size: .86rem; color: var(--navy); transition: all .2s; }
.admin-nav a:hover { border-color: rgba(10,109,255,.4); }
.admin-nav a.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.admin-head h2 { margin: 0; }
.admin-form { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); padding: 26px; max-width: 720px; }
.admin-form .btn { margin-top: 10px; }
.check-field { display: flex; align-items: center; }
.check-field label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); margin: 0; cursor: pointer; }
.check-field input { width: auto; }
.row-actions { display: flex; gap: 12px; align-items: center; white-space: nowrap; }
.row-actions a { color: var(--blue); font-weight: 600; }
.link-danger { background: none; border: 0; color: #b42318; font: inherit; font-weight: 600; cursor: pointer; padding: 0; }
.thumb-pair { display: flex; gap: 6px; }
.thumb-pair img { width: 56px; height: 44px; object-fit: cover; border-radius: 8px; }
.thumb-round { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.form-preview { max-width: 160px; border-radius: 12px; margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.form-preview--round { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; }
.hint { display: block; color: var(--muted); font-size: .78rem; margin-top: 4px; }
.content-group { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px 4px; margin: 0 0 18px; }
.content-group legend { font-family: "Poppins"; font-weight: 600; color: var(--blue); padding: 0 8px; font-size: .92rem; }
.admin-form input[type="file"] { margin-bottom: 8px; }

/* ---------- Responsive (new sections + popup) ---------- */
@media (max-width: 1100px) {
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-item { padding: 18px 16px; gap: 11px; }
  .ba-grid { grid-template-columns: 1fr; }
  .about-testimonial { margin: -20px auto 0; }
  .popup { padding: 18px 16px 16px; }
  .popup-head h3 { font-size: 1.1rem; }
  .popup-tab { font-size: .74rem; padding: 7px 4px; }
  .qty-pill span { width: 36px; height: 34px; font-size: .84rem; }
  .admin-form { padding: 18px; }
  .offers-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; gap: 14px; }
  .gal-filters { gap: 8px; }
  .gal-filter { font-size: .76rem; padding: 8px 14px; }
  .gal-lb-nav { width: 42px; height: 42px; }
  .gal-lb-prev { left: 8px; }
  .gal-lb-next { right: 8px; }
  .gal-lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .gal-lb-img { max-height: calc(100dvh - 120px); border-radius: 10px; }
}

/* =========================================================================
   RESPONSIVE IMPROVEMENTS — All screen sizes (v3)
   ========================================================================= */

/* ---- Small tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  .header-cta { gap: 10px; }
  .header-cta .btn--blue { padding: 11px 16px; font-size: .88rem; }
  .hero-arrow { font-size: .88rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile additions (≤ 600px) — supplements existing rules ---- */
@media (max-width: 600px) {
  /* Compact header — mobile-bar at bottom handles the main CTAs */
  .site-header .container { height: 62px; }
  .site-header.scrolled .container { height: 52px; }
  .header-cta .btn--blue { display: none; }
  .brand-logo { width: 36px; height: 36px; border-radius: 10px; font-size: .8rem; }
  .brand { font-size: 1.05rem; }

  /* Section headings — lower minimum so large serif doesn't crowd mobile */
  .section-head h2,
  #about .split h2 { font-size: clamp(1.6rem, 6vw, 3.2rem); }

  /* Hero */
  .hero-inner { padding: 22px 0; }
  .hero-arrow { display: none; }

  /* CTA band — stack buttons vertically on mobile */
  .cta-band .hero-btns { flex-direction: column; align-items: center; }
  .cta-band .hero-btns .btn { width: 100%; max-width: 340px; flex: none; }
  .cta-band p { font-size: 1rem; }

  /* Footer — center-align on small screens */
  .footer-top { flex-direction: column; text-align: center; }
  .footer-top > div { text-align: center; }

  /* Stat card — tighten padding */
  .stat { padding: 22px 12px 18px; }

  /* Steps — tighten gap */
  .steps { gap: 14px; }

  /* Review cards */
  .review-card { padding: 20px 16px; }

  /* About testimonial — full width */
  .about-testimonial { max-width: 100%; }
}

/* ---- Small phones (≤ 440px) ---- */
@media (max-width: 440px) {
  .container { padding: 0 14px; }

  /* Stats — single column */
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 18px 14px; }

  /* Heading scale-down */
  h1 { font-size: clamp(1.8rem, 7vw, 3.6rem); }
  h2 { font-size: clamp(1.4rem, 5.5vw, 2.5rem); }
  .section-head h2,
  #about .split h2 { font-size: clamp(1.5rem, 6.5vw, 3.2rem); }

  /* Lead card */
  .lead-card { padding: 14px; }

  /* Buttons — slightly smaller so they fit */
  .btn--lg { padding: 14px 20px; font-size: .96rem; }

  /* About section — stack buttons when both present */
  #about .hero-btns { flex-direction: column; align-items: stretch; }
  #about .hero-btns .btn { flex: none; width: 100%; }

  /* CTA band */
  .cta-band { padding: 28px 14px; }
  .cta-band h2 { font-size: clamp(1.4rem, 6vw, 2.5rem); }

  /* Image banner */
  .img-banner { min-height: 360px; }
  .img-banner-content { padding: 40px 14px; }
  .img-banner-content h2 { font-size: clamp(1.5rem, 5.5vw, 3rem); }

  /* Offer cards */
  .offer-card { padding: 16px 14px; }
  .offer-text h3 { font-size: .9rem; }

  /* Process steps */
  .steps { grid-template-columns: 1fr; }
  .step { padding: 20px 14px; }

  /* Review cards */
  .review-card { padding: 18px 14px; }

  /* Marquee compact */
  .marquee { height: 32px; }
  .marquee__item { font-size: .78rem; padding: 0 16px; }
}

/* ---- Very small phones (≤ 360px) ---- */
@media (max-width: 360px) {
  .brand { font-size: .95rem; }
  .brand small { font-size: .65rem; }
  .brand-logo { width: 32px; height: 32px; border-radius: 8px; font-size: .75rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .section-head h2,
  #about .split h2 { font-size: 1.45rem; }

  .btn--lg { padding: 13px 16px; font-size: .9rem; }

  .service-body { padding: 16px 14px 18px; }
  .service-body h3 { font-size: 1.05rem; }

  .step h3 { font-size: 1.05rem; }
  .step .num-circle { width: 46px; height: 46px; font-size: 1.2rem; }

  .faq-q { font-size: .92rem; padding: 13px 14px; }
  .faq-q .plus { width: 24px; height: 24px; font-size: 1.1rem; }

  .review-card p { font-size: .96rem; }

  .lead-card { padding: 12px; }
}
