/* ============================================================
   BERYTH24 — Retail & Commercial Interiors
   ============================================================ */
:root {
  --navy: #0f2e41;
  --navy-2: #0b2432;
  --navy-3: #123a52;
  --gold: #bc8430;
  --gold-light: #d9a95e;
  --cream: #f7f5f2;
  --white: #ffffff;
  --ink: #2a2f36;
  --grey: #6b7280;
  --line: rgba(15, 46, 65, .12);
  --shadow: 0 18px 45px rgba(11, 36, 50, .14);
  --radius: 14px;
  --ff-serif: 'Lora', Georgia, serif;
  --ff-sans: 'Poppins', 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--ink); background: var(--cream); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: .78rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); }
h1, h2, h3 { font-family: var(--ff-serif); color: var(--navy); font-weight: 600; line-height: 1.18; }
.section-head { margin-bottom: 3rem; max-width: 640px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: .8rem; }
.section-head p { color: var(--grey); margin-top: 1rem; font-weight: 300; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: #b9c6d0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 15px 36px; border-radius: 60px;
  font-weight: 600; font-size: .92rem; letter-spacing: .04em;
  transition: all .3s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(188,132,48,.35); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,46,65,.3); }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .35s ease;
}
.nav.solid { background: rgba(11, 36, 50, .96); padding: 12px 0; box-shadow: 0 6px 30px rgba(0,0,0,.25); backdrop-filter: blur(8px); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark { width: 52px; height: 52px; background: var(--cream); border-radius: 12px; padding: 5px; display: flex; align-items: center; justify-content: center; }
.brand .mark img { width: 100%; }
.brand .word { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.brand .word span { color: var(--gold-light); }
.brand small { display: block; font-family: var(--ff-sans); font-size: .58rem; letter-spacing: .28em; color: #9fb2bf; text-transform: uppercase; font-weight: 500;}
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--gold); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 11px 28px; font-size: .85rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0; transition: .3s; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy-2);
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.9);
  transform: scale(1.05);
}
.hero .veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11,36,50,.97) 0%, rgba(11,36,50,.88) 38%, rgba(15,46,65,.55) 70%, rgba(15,46,65,.65) 100%);
}
.hero .container { position: relative; z-index: 2; padding: 160px 0 140px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(217,169,94,.5); color: var(--gold-light);
  padding: 8px 22px; border-radius: 40px; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 780px; margin: 28px 0 0;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.sub { color: #c6d2db; max-width: 560px; margin: 26px 0 0; font-weight: 300; font-size: 1.05rem; }
.hero .actions { margin-top: 42px; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(11,36,50,.72); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(217,169,94,.25);
}
.hero-strip .container { display: flex; padding: 26px 0; gap: 40px; justify-content: space-between; flex-wrap: wrap;}
.hstat { display: flex; align-items: baseline; gap: 14px; }
.hstat .v { font-family: var(--ff-serif); font-size: 2.3rem; font-weight: 700; color: var(--gold-light); }
.hstat .l { color: #b9c6d0; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }

/* ---------- page banner (inner pages) ---------- */
.banner {
  position: relative; padding: 210px 0 110px; background: var(--navy-2);
  overflow: hidden;
}
.banner .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; }
.banner .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,36,50,.55), rgba(11,36,50,.92)); }
.banner .container { position: relative; z-index: 2; }
.banner h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); margin-top: .8rem; }
.banner .crumb { color: #9fb2bf; font-size: .85rem; margin-top: 1.2rem; letter-spacing: .06em;}
.banner .crumb a { color: var(--gold-light); }

/* ---------- sections ---------- */
section.block { padding: 110px 0; }
section.block.tight { padding: 90px 0; }
.bg-navy { background: var(--navy); }
.bg-navy-2 { background: var(--navy-2); }
.bg-white { background: var(--white); }

/* about teaser / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .imgs { position: relative; }
.split .imgs .main { border-radius: var(--radius); box-shadow: var(--shadow); width: 88%; height: 460px; object-fit: cover; }
.split .imgs .float {
  position: absolute; right: 0; bottom: -46px; width: 55%; height: 260px; object-fit: cover;
  border-radius: var(--radius); border: 8px solid var(--cream); box-shadow: var(--shadow);
}
.split .imgs .badge {
  position: absolute; top: -30px; right: 4%;
  background: var(--gold); color: var(--white); border-radius: var(--radius);
  padding: 22px 26px; text-align: center; box-shadow: 0 16px 35px rgba(188,132,48,.4);
}
.split .imgs .badge .v { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.split .imgs .badge .l { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px;}
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-top: .8rem; }
.split p { color: var(--grey); margin-top: 1.2rem; font-weight: 300; }
.ticks { margin: 1.6rem 0 2.2rem; list-style: none; }
.ticks li { padding: .45rem 0 .45rem 2.2rem; position: relative; font-weight: 500; color: var(--navy); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .72rem; width: 18px; height: 18px;
  border-radius: 50%; background: var(--gold);
  clip-path: none;
}
.ticks li::after {
  content: ''; position: absolute; left: 4.5px; top: calc(.72rem + 4px); width: 8px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 28px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: all .35s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity .35s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card .num { font-family: var(--ff-serif); font-size: 2.4rem; color: rgba(188,132,48,.28); font-weight: 700; line-height: 1;}
.svc-card h3 { font-size: 1.12rem; margin: 14px 0 10px; font-family: var(--ff-sans); font-weight: 600; }
.svc-card p { color: var(--grey); font-size: .88rem; font-weight: 300; }
.dark .svc-card { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.09); }
.dark .svc-card h3 { color: var(--white); }
.dark .svc-card p { color: #a9b8c2; }

/* projects mosaic (home) */
.pro-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 20px; }
.pro-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.pro-card.wide { grid-column: span 2; }
.pro-card.tall { grid-row: span 2; }
.pro-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pro-card:hover img { transform: scale(1.08); }
.pro-card .cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(180deg, transparent 40%, rgba(11,36,50,.88));
  opacity: .95; transition: .35s;
}
.pro-card .cap .t { color: var(--white); font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600; }
.pro-card .cap .s { color: var(--gold-light); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 2px;}

/* clients */
.clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.client-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  height: 110px; display: flex; align-items: center; justify-content: center; padding: 20px;
  transition: all .3s ease; filter: grayscale(1); opacity: .75;
}
.client-tile:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow); }
.client-tile img { max-height: 56px; max-width: 80%; object-fit: contain; }

/* CTA band */
.cta-band { position: relative; background: var(--navy); overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; border: 60px solid rgba(188,132,48,.14);
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 80px; padding-bottom: 80px; flex-wrap: wrap; position: relative; z-index: 2;}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 560px; }
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p { color: #b9c6d0; margin-top: 12px; font-weight: 300; }

/* vision / mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { border-radius: var(--radius); padding: 46px 44px; position: relative; overflow: hidden;}
.vm-card.vision { background: var(--navy); }
.vm-card.mission { background: linear-gradient(135deg, var(--gold), #a9762a); }
.vm-card .ic { font-family: var(--ff-serif); font-size: 3.4rem; line-height: 1; color: rgba(255,255,255,.22); font-weight: 700;}
.vm-card h3 { color: var(--white); font-size: 1.6rem; margin: 14px 0 12px; }
.vm-card.vision h3 { color: var(--gold-light); }
.vm-card p { color: rgba(255,255,255,.85); font-weight: 300; }

/* why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 34px 30px; transition: all .35s ease;
}
.why-card:hover { background: rgba(188,132,48,.12); border-color: rgba(217,169,94,.4); transform: translateY(-6px); }
.why-card .n { font-family: var(--ff-serif); color: var(--gold-light); font-size: 1.6rem; font-weight: 700; }
.why-card h3 { color: var(--white); font-family: var(--ff-sans); font-size: 1.05rem; font-weight: 600; margin: 12px 0 8px; }
.why-card p { color: #a9b8c2; font-size: .88rem; font-weight: 300; }

/* project gallery pages */
.proj-section { padding: 90px 0 30px; }
.proj-section:last-of-type { padding-bottom: 100px; }
.proj-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 2rem; flex-wrap: wrap;}
.proj-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.proj-head .tag { color: var(--gold); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;}
.gal { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gal .g { border-radius: var(--radius); overflow: hidden; cursor: zoom-in; position: relative;}
.gal .g.big { grid-column: span 2; grid-row: span 2; }
.gal .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gal .g:hover img { transform: scale(1.07); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(7, 22, 32, .94); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .x {
  position: absolute; top: 26px; right: 34px; color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1; font-family: var(--ff-sans); background: none; border: none;
}

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 2rem;}
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: .3s;}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.info-card .l { color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;}
.info-card .v { color: var(--navy); font-weight: 600; margin-top: 8px; font-size: 1.02rem; line-height: 1.5;}
.info-card .v a:hover { color: var(--gold); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px;}
.form-card p { color: var(--grey); font-size: .9rem; margin-bottom: 26px; font-weight: 300;}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .04em;}
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--ff-sans); font-size: .92rem; background: var(--cream); color: var(--ink);
  transition: border .25s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff;}
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 90px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.85); }

/* footer */
footer { background: var(--navy-2); color: #a9b8c2; }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding: 80px 0 60px; }
.foot-main h4 { color: var(--white); font-family: var(--ff-sans); font-size: .95rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.4rem;}
.foot-main ul { list-style: none; }
.foot-main li { margin-bottom: .7rem; font-size: .92rem; font-weight: 300;}
.foot-main a:hover { color: var(--gold-light); }
.foot-brand img { width: 92px; background: var(--cream); border-radius: 14px; padding: 6px; }
.foot-brand p { font-size: .9rem; font-weight: 300; margin-top: 1.2rem; max-width: 300px;}
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.foot-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .82rem; font-weight: 300;}
.foot-bottom span em { color: var(--gold-light); font-style: normal; }

/* reveal animation — only when JS is running (html.js), so content
   is always visible in no-JS environments and previews */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
html.js .reveal.on { opacity: 1; transform: none; }

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.3); transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   V2 COMPONENTS
   ============================================================ */

/* scroll progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 300; transition: width .1s linear;
}

/* back to top */
.to-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--navy); color: var(--gold-light); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: all .35s ease; box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); color: #fff; }

/* hero slideshow */
.hero .bg { opacity: 0; transition: opacity 1.6s ease; }
.hero .bg.active { opacity: 1; }
.hero-dots { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; gap: 12px; }
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6);
  background: transparent; cursor: pointer; transition: .3s; padding: 0;
}
.hero-dots button.on { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

/* client marquee */
.marquee { overflow: hidden; position: relative; padding: 10px 0; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.marquee-track { display: flex; gap: 22px; width: max-content; animation: scrollx 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee .client-tile { width: 190px; flex-shrink: 0; }

/* process timeline */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; position: relative;}
.step { position: relative; padding-top: 26px; }
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: -26px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(188,132,48,.5) 0 10px, transparent 10px 18px);
}
.step:last-child::before { right: 0; }
.step .dot {
  position: absolute; top: -8px; left: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--cream); box-shadow: 0 0 0 2px var(--gold);
}
.dark .step .dot { border-color: var(--navy); }
.step .sn { font-family: var(--ff-serif); font-size: .9rem; color: var(--gold); font-weight: 700; letter-spacing: .2em;}
.step h3 { font-family: var(--ff-sans); font-size: 1.08rem; font-weight: 600; margin: 8px 0 8px; }
.dark .step h3 { color: var(--white); }
.step p { font-size: .88rem; color: var(--grey); font-weight: 300; }
.dark .step p { color: #a9b8c2; }

/* animated counters already styled via .hstat */

/* project filters */
.filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: -20px 0 50px; }
.filters button {
  padding: 10px 26px; border-radius: 40px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--navy); font-family: var(--ff-sans);
  font-size: .85rem; font-weight: 500; cursor: pointer; transition: .3s;
}
.filters button:hover { border-color: var(--gold); color: var(--gold); }
.filters button.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.proj-section.hide { display: none; }

/* lightbox v2 */
.lightbox .navbtn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: .25s;
}
.lightbox .navbtn:hover { background: var(--gold); border-color: var(--gold); }
.lightbox .prev { left: 26px; }
.lightbox .next { right: 26px; }
.lightbox .cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #c6d2db; font-size: .9rem; letter-spacing: .06em;}

/* service detail cards */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-detail {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: all .35s ease; display: flex; flex-direction: column;
}
.svc-detail:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-detail .ph { height: 220px; overflow: hidden; position: relative;}
.svc-detail .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.svc-detail:hover .ph img { transform: scale(1.06); }
.svc-detail .ph .tagnum {
  position: absolute; top: 16px; left: 16px; background: rgba(11,36,50,.85); color: var(--gold-light);
  font-family: var(--ff-serif); font-weight: 700; padding: 6px 14px; border-radius: 8px; font-size: .95rem;
}
.svc-detail .body { padding: 28px 28px 30px; flex: 1; }
.svc-detail h3 { font-family: var(--ff-sans); font-weight: 600; font-size: 1.25rem; }
.svc-detail p { color: var(--grey); font-size: .9rem; font-weight: 300; margin-top: 8px; }
.svc-detail ul { list-style: none; margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px;}
.svc-detail li { font-size: .84rem; color: var(--navy); font-weight: 500; padding-left: 18px; position: relative;}
.svc-detail li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); transform: rotate(45deg);}

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s;}
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 60px 22px 26px; font-family: var(--ff-sans); font-size: 1rem; font-weight: 600;
  color: var(--navy); position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold); font-weight: 400; transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--grey); font-size: .92rem; font-weight: 300; }

/* ------- LIVE CHAT WIDGET ------- */
.chat-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 150;
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #a9762a); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(188,132,48,.45); transition: transform .3s;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab svg { width: 28px; height: 28px; fill: #fff; }
.chat-fab .pulse {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold-light);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }
.chat-fab .badge-dot {
  position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%;
  background: #e74c3c; border: 2.5px solid #fff; display: none;
}
.chat-fab .badge-dot.show { display: block; }

.chat-panel {
  position: fixed; bottom: 104px; right: 26px; z-index: 150;
  width: 370px; max-width: calc(100vw - 32px); height: 540px; max-height: calc(100vh - 140px);
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,36,50,.35);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(20px) scale(.97);
  transition: all .35s cubic-bezier(.2,.9,.3,1.2);
}
.chat-panel.open { opacity: 1; pointer-events: auto; transform: none; }
.chat-head { background: var(--navy); padding: 18px 20px; display: flex; align-items: center; gap: 14px; flex-shrink: 0;}
.chat-head .avatar { width: 44px; height: 44px; border-radius: 12px; background: var(--cream); padding: 4px; }
.chat-head .avatar img { width: 100%; }
.chat-head .t { color: #fff; font-weight: 600; font-size: .98rem; }
.chat-head .s { display: flex; align-items: center; gap: 7px; color: #9fb2bf; font-size: .76rem; margin-top: 2px;}
.chat-head .s i { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; display: inline-block; }
.chat-head .s i.off { background: #e67e22; }
.chat-head .close { margin-left: auto; background: none; border: none; color: #9fb2bf; font-size: 1.6rem; cursor: pointer; line-height: 1;}
.chat-head .close:hover { color: #fff; }
.chat-body { flex: 1; overflow-y: auto; padding: 20px 16px; background: var(--cream); }
.msg { max-width: 82%; margin-bottom: 12px; padding: 12px 16px; border-radius: 16px; font-size: .88rem; line-height: 1.55; animation: msgin .3s ease; white-space: pre-line;}
@keyframes msgin { from { opacity: 0; transform: translateY(8px); } }
.msg.bot { background: var(--white); color: var(--ink); border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(11,36,50,.06);}
.msg.user { background: var(--navy); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.msg.typing span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #b9c0c9; margin-right: 4px; animation: blink 1.2s infinite;}
.msg.typing span:nth-child(2) { animation-delay: .2s; } .msg.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 12px; }
.chips button {
  border: 1.5px solid rgba(188,132,48,.5); color: var(--gold); background: var(--white);
  border-radius: 30px; padding: 8px 16px; font-size: .8rem; font-weight: 500; cursor: pointer; transition: .25s;
  font-family: var(--ff-sans);
}
.chips button:hover { background: var(--gold); color: #fff; }
.chat-input { display: flex; gap: 10px; padding: 14px; background: var(--white); border-top: 1px solid var(--line); flex-shrink: 0;}
.chat-input input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 30px; padding: 12px 18px;
  font-family: var(--ff-sans); font-size: .88rem; background: var(--cream);
}
.chat-input input:focus { outline: none; border-color: var(--gold); background: #fff; }
.chat-input button {
  width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--gold); color: #fff;
  cursor: pointer; font-size: 1.05rem; transition: .25s; flex-shrink: 0;
}
.chat-input button:hover { background: var(--navy); }
.chat-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; font-size: .82rem; font-weight: 600;
  padding: 11px; text-align: center; flex-shrink: 0;
}
.chat-wa:hover { background: #1fb658; }
.chat-wa svg { width: 17px; height: 17px; fill: #fff; }

/* move wa float when chat exists */
.wa-float { display: none; }

/* trust strip */
.trust-strip { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 3rem; }
.trust {
  flex: 1; min-width: 200px; display: flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  padding: 18px 20px; border-radius: 12px;
}
.trust .ic { font-size: 1.5rem; color: var(--gold-light); font-family: var(--ff-serif); font-weight: 700;}
.trust .t { color: #fff; font-size: .9rem; font-weight: 600; }
.trust .s { color: #9fb2bf; font-size: .76rem; font-weight: 300; }

/* 404 */
.err-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--navy-2); padding: 40px;}
.err-wrap .code { font-family: var(--ff-serif); font-size: clamp(6rem, 18vw, 11rem); color: rgba(188,132,48,.35); font-weight: 700; line-height: 1;}
.err-wrap h1 { color: #fff; margin: 10px 0 14px; }
.err-wrap p { color: #a9b8c2; font-weight: 300; margin-bottom: 30px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .pro-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .contact-grid, .split, .vm-grid { grid-template-columns: 1fr; }
  .split .imgs { margin-bottom: 40px; }
  .gal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) and (min-width: 721px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .step:nth-child(2)::before { right: 0; }
}
@media (max-width: 720px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-detail ul { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step::before { display: none; }
  .step { padding-top: 0; padding-left: 34px; }
  .step .dot { top: 4px; }
  .chat-panel { right: 16px; bottom: 96px; height: 500px; }
  .chat-fab { right: 16px; bottom: 18px; }
  .to-top { right: 18px; bottom: 92px; }
  .hero-dots { display: none; }
  .filters { gap: 8px; }
  .filters button { padding: 8px 18px; font-size: .8rem; }
  .banner { padding: 160px 0 80px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .marquee .client-tile { width: 150px; height: 90px; }
  .foot-main { grid-template-columns: 1fr; gap: 34px; padding: 60px 0 40px;}
  .info-card { padding: 20px; }
  .split .imgs .main { height: 340px; }
  .split .imgs .float { height: 190px; bottom: -30px; }
  .hero .container { padding: 140px 0 160px; }
}
@media (max-width: 420px) {
  .brand small { display: none; }
  .brand .word { font-size: 1.25rem; }
  .hstat .v { font-size: 1.4rem; }
  .hero-strip .container { padding: 16px 0; }
  .form-card { padding: 24px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 719.9px) { /* fallthrough guard, keep original rules below */ }
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 110px 8% 40px;
    background: rgba(11,36,50,.98); flex-direction: column; align-items: flex-start; gap: 26px;
    transform: translateY(-100%); transition: transform .4s ease;
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; z-index: 110; }
  .hero-strip .container { gap: 18px; }
  .hstat .v { font-size: 1.7rem; }
  .svc-grid, .why-grid, .clients-grid, .info-cards { grid-template-columns: 1fr; }
  .pro-grid { grid-template-columns: 1fr; }
  .pro-card.wide { grid-column: span 1; }
  .gal { grid-template-columns: 1fr; grid-auto-ro

}
}

/* ============================================================
   V3 — VIDEO HERO + REFINED CREATIVE PALETTE
   navy #0e2b3d · champagne gold #c99544 · studio teal #0fa3a3
   ============================================================ */
:root {
  --navy: #0e2b3d; --navy-2: #0a2231; --navy-3: #123a52;
  --gold: #c99544; --gold-light: #e3b96e;
  --accent: #0fa3a3; --accent-soft: rgba(15,163,163,.12);
  --cream: #faf8f4;
}

/* --- video hero --- */
.hero .bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: saturate(.8) brightness(.9);
  opacity: 0; transition: opacity 1.4s ease;
}
.hero .bg-video.on { opacity: 1; }
.hero .bg { z-index: 0; }
.hero .veil {
  z-index: 1;
  background:
    radial-gradient(ellipse at 90% 110%, rgba(15,163,163,.22), transparent 55%),
    linear-gradient(100deg, rgba(10,34,49,.97) 0%, rgba(10,34,49,.88) 40%, rgba(14,43,61,.55) 75%, rgba(14,43,61,.7) 100%);
}
.hero h1 em { color: var(--gold-light); }
.hero-tag { border-color: rgba(15,163,163,.55); color: #7adcdc; }

/* --- refined buttons --- */
.btn-gold { background: linear-gradient(135deg, #dcae63, #c99544 55%, #b07f33); }
.btn-gold:hover { box-shadow: 0 14px 30px rgba(201,149,68,.4); }

/* --- gradient stat numbers (subtle) --- */
.hstat .v {
  background: linear-gradient(120deg, #f2d7a4, #e3b96e 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- one consistent accent across cards --- */
.svc-card::before { background: linear-gradient(90deg, var(--gold-light), var(--accent)) !important; }
.svc-card .num { color: rgba(15,163,163,.35); }
.svc-card:hover h3 { color: var(--accent); }
.dark .svc-card:hover h3 { color: #7adcdc; }
.svc-detail .tagnum { color: #7adcdc; }
.svc-detail:hover h3 { color: var(--accent); }
.svc-detail li::before { background: var(--accent); }

/* --- section rhythm: soft tinted panels --- */
.bg-white { background: #ffffff; }
section.block { position: relative; }

/* --- kicker: gold text, teal dash --- */
.kicker::before { background: var(--accent); }

/* --- CTA band: deep navy→teal, clean --- */
.cta-band { background: linear-gradient(115deg, #0a2231 25%, #0e3a4a 70%, #0e4d52); }
.cta-band::before { border-color: rgba(15,163,163,.16); }
.cta-band h2 em { color: #7adcdc; }

/* --- vision / mission --- */
.vm-card.vision { background: linear-gradient(135deg, #0e2b3d, #14455c); }
.vm-card.vision h3 { color: #7adcdc; }
.vm-card.mission { background: linear-gradient(135deg, #c99544, #a9762a); }

/* --- process dots: gold with teal ring on hover --- */
.step .dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.step:hover .dot { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }

/* --- interactive polish --- */
.why-card:hover { border-color: rgba(15,163,163,.5); background: var(--accent-soft); transform: translateY(-6px); }
.why-card .n { color: #7adcdc; }
.filters button.on { background: linear-gradient(120deg, #0e2b3d, #0e4d52); border-color: transparent; }
.filters button:hover { border-color: var(--accent); color: var(--accent); }
.info-card:hover { border-color: rgba(15,163,163,.45); }
.info-card .l { color: var(--accent); }
.ticks li::before { background: var(--accent); }
.trust .ic { color: #7adcdc; }
.pro-card .cap .s { color: #7adcdc; }
.proj-head .tag { color: var(--accent); }
.gal .g { position: relative; }
.gal .g::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  border: 2px solid transparent; transition: border-color .3s; pointer-events: none;
}
.gal .g:hover::after { border-color: rgba(15,163,163,.55); }

/* --- footer: single gold hairline, no rainbow --- */
footer { position: relative; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--accent) 70%, transparent);
}
.foot-main a:hover { color: #7adcdc; }
.pagefoot .site { color: var(--gold-light); }

/* --- chat: teal accents inside --- */
.chips button { border-color: rgba(15,163,163,.5); color: var(--accent); }
.chips button:hover { background: var(--accent); color: #fff; }
.chat-head .s i { background: #17c98d; }

/* --- selection & scrollbar (professional details) --- */
::selection { background: rgba(201,149,68,.35); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0e2b3d; }
::-webkit-scrollbar-thumb { background: #c99544; border-radius: 6px; border: 2px solid #0e2b3d; }
::-webkit-scrollbar-thumb:hover { background: #e3b96e; }

/* --- smooth page entrance --- */
@keyframes pagein { from { opacity: 0; } to { opacity: 1; } }
html.js body { animation: pagein .5s ease; }


/* ============================================================
   V4 — BOLD CREATIVE PASS
   ============================================================ */

/* cinematic ken-burns slideshow */
.hero .bg { transform: scale(1.06); }
.hero .bg.active { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.16) translate(1.5%, 1%); }
  to   { transform: scale(1.03) translate(0, 0); }
}

/* animated gradient headline word */
.hero h1 em, #rotateWord {
  font-style: italic;
  background: linear-gradient(90deg, #e3b96e, #7adcdc, #e3b96e);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
  display: inline-block; min-width: 4.2ch;
  transition: opacity .35s ease, transform .35s ease;
}
#rotateWord.swap { opacity: 0; transform: translateY(14px); }
@keyframes shimmer { to { background-position: -220% 0; } }

/* angled section edges — signature designer detail */
.bg-navy.block, .cta-band {
  clip-path: polygon(0 34px, 100% 0, 100% calc(100% - 34px), 0 100%);
  padding-top: 140px; padding-bottom: 140px;
}
.cta-band .container { padding-top: 40px; padding-bottom: 40px; }

/* deeper, richer dark sections */
.bg-navy { background: linear-gradient(150deg, #0a2231 10%, #0e2b3d 55%, #0e3a48); }

/* glassy nav when solid */
.nav.solid { background: rgba(10, 34, 49, .88); backdrop-filter: blur(14px) saturate(1.2); }

/* section headings: gold underline flourish */
.section-head h2 { position: relative; display: inline-block; padding-bottom: 14px; }
.section-head h2::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 64px; height: 3px;
  border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--accent));
}
.section-head.center h2::after { left: 50%; transform: translateX(-50%); }

/* photo cards: lift + tilt */
.pro-card, .svc-detail, .gal .g { will-change: transform; }
.pro-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,36,50,.25); transition: all .4s ease; }

/* buttons: pill glow */
.btn { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .55s ease;
}
.btn-gold:hover::after { left: 130%; }

/* mobile quick-action bar */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 140;
  background: rgba(10,34,49,.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,149,68,.35);
}
.mobile-bar a {
  flex: 1; text-align: center; padding: 13px 4px max(13px, env(safe-area-inset-bottom));
  color: #e8edf2; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.mobile-bar a span { color: var(--gold-light); margin-right: 6px; }
.mobile-bar a:nth-child(2) span { color: #25d366; }
.mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.08); }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  .chat-fab { bottom: 76px; }
  .chat-panel { bottom: 148px; }
  .to-top { bottom: 140px; }
  body { padding-bottom: 52px; }
  .bg-navy.block, .cta-band { clip-path: polygon(0 18px, 100% 0, 100% calc(100% - 18px), 0 100%); padding-top: 100px; padding-bottom: 100px; }
}


/* ============================================================
   V5 — BRIGHT SHOWROOM THEME (reference-inspired)
   indigo #2e3aa0 · mint #46d5c0 · clean white · photos first
   ============================================================ */
:root {
  --primary: #2e3aa0; --primary-d: #232c7c; --primary-l: #4353c9;
  --mint: #46d5c0; --mint-l: #7ce8d8;
  --ink-2: #10153c;
  --cream: #ffffff; --grey: #5b6270; --line: rgba(20,27,77,.12);
}
body { background: #fff; }

/* --- modern sans headings, like the reference --- */
h1, h2, h3, .section-head h2, .proj-head h2, .banner h1, .hero h1 {
  font-family: var(--ff-sans); font-weight: 600; letter-spacing: -.015em;
}
.brand .word { font-family: var(--ff-sans); font-weight: 700; }

/* --- HERO: photos clearly visible, light left scrim only --- */
.hero { background: #10153c; }
.hero .veil {
  background: linear-gradient(90deg, rgba(13,16,42,.66) 0%, rgba(13,16,42,.34) 45%, rgba(13,16,42,.02) 72%, rgba(13,16,42,0) 100%);
}
.hero .bg { transition: opacity 1.8s ease; filter: none; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); max-width: 720px; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero h1 em, #rotateWord {
  font-style: normal;
  background: linear-gradient(90deg, #7ce8d8, #46d5c0, #7ce8d8);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { text-shadow: 0 1px 14px rgba(0,0,0,.45); color: #e9edf5; }
.hero-tag { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(13,16,42,.35); backdrop-filter: blur(4px); }
.hero-strip { background: rgba(13,16,42,.66); border-top: 1px solid rgba(124,232,216,.3); }
.hstat .v { background: none; color: var(--mint); -webkit-background-clip: initial; background-clip: initial; }
.hero-dots button.on { background: var(--mint); border-color: var(--mint); }

/* --- buttons: reference-style rectangles, royal indigo --- */
.btn { border-radius: 8px; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; padding: 16px 34px; }
.btn-gold { background: var(--primary); }
.btn-gold:hover { background: var(--primary-l); box-shadow: 0 12px 28px rgba(46,58,160,.4); }
.btn-navy { background: var(--ink-2); }
.btn-navy:hover { background: var(--primary); box-shadow: 0 12px 28px rgba(46,58,160,.35); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint-l); }
.nav-cta { border-radius: 8px; }

/* --- nav: deep indigo glass --- */
.nav.solid { background: rgba(16,21,60,.92); }
.nav-links a::after { background: var(--mint); }
.brand .mark { border-radius: 10px; }

/* --- accents swap gold→indigo/mint everywhere --- */
.kicker { color: var(--primary); }
.section-head.light .kicker, .dark .kicker { color: var(--mint); }
.kicker::before { background: var(--mint); }
.section-head h2::after { background: linear-gradient(90deg, var(--primary), var(--mint)); }
.svc-card::before { background: linear-gradient(90deg, var(--primary-l), var(--mint)) !important; }
.svc-card .num { color: rgba(46,58,160,.25); }
.dark .svc-card .num { color: rgba(124,232,216,.35); }
.svc-card:hover h3, .svc-detail:hover h3 { color: var(--primary); }
.dark .svc-card:hover h3 { color: var(--mint-l); }
.svc-detail .tagnum { color: var(--mint-l); }
.svc-detail li::before, .ticks li::before { background: var(--primary); }
.badge { background: var(--primary) !important; box-shadow: 0 16px 35px rgba(46,58,160,.4) !important; }

/* --- dark sections: deep indigo --- */
.bg-navy, .bg-navy.block { background: linear-gradient(150deg, #10153c 10%, #171f56 60%, #1b2568); }
.cta-band { background: linear-gradient(115deg, #10153c 20%, #232c7c 65%, #2e3aa0); }
.cta-band::before { border-color: rgba(124,232,216,.15); }
.cta-band h2 em { color: var(--mint-l); }
.vm-card.vision { background: linear-gradient(135deg, #171f56, #2a34a0); }
.vm-card.vision h3 { color: var(--mint-l); }
.vm-card.mission { background: linear-gradient(135deg, #17a08e, #0f8577); }

/* --- interactive bits --- */
.filters button.on { background: var(--primary); }
.filters button:hover { border-color: var(--primary); color: var(--primary); }
.why-card:hover { border-color: rgba(124,232,216,.5); background: rgba(124,232,216,.08); }
.why-card .n { color: var(--mint); }
.trust .ic { color: var(--mint); }
.info-card .l { color: var(--primary); }
.info-card:hover { border-color: rgba(46,58,160,.35); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary); }
.step .dot, .step:hover .dot { background: var(--primary); box-shadow: 0 0 0 2px var(--primary); }
.pro-card .cap .s, .proj-head .tag { color: var(--mint); }
.dark .step h3 { color: #fff; }
.gal .g:hover::after { border-color: rgba(46,58,160,.5); }
.chips button { border-color: rgba(46,58,160,.45); color: var(--primary); }
.chips button:hover { background: var(--primary); }
.chat-fab { background: linear-gradient(135deg, var(--primary-l), var(--primary)); box-shadow: 0 12px 32px rgba(46,58,160,.45); }
.chat-fab .pulse { border-color: var(--mint); }
.chat-head { background: #10153c; }
.chat-input button { background: var(--primary); }
.chat-input button:hover { background: var(--ink-2); }
.progress-bar { background: linear-gradient(90deg, var(--primary-l), var(--mint)); }
.to-top { background: var(--primary); color: #fff; }
.to-top:hover { background: var(--mint); color: var(--ink-2); }

/* --- footer: near-black indigo --- */
footer { background: #0c1130; }
footer::before { background: linear-gradient(90deg, transparent, var(--primary-l) 30%, var(--mint) 70%, transparent); }
.foot-main a:hover { color: var(--mint-l); }
.foot-brand img { border-radius: 12px; }
.foot-bottom span em { color: var(--mint); }
.mobile-bar { background: rgba(12,17,48,.97); border-top-color: rgba(124,232,216,.35); }
.mobile-bar a span { color: var(--mint); }

/* --- light pages polish --- */
.banner { background: #10153c; }
.banner .bg { opacity: .45; }
.banner .veil { background: linear-gradient(180deg, rgba(12,17,48,.4), rgba(12,17,48,.82)); }
.banner .crumb a { color: var(--mint-l); }
.svc-card, .svc-detail, .info-card, .form-card, .faq-item, .client-tile { border-radius: 10px; }
::selection { background: rgba(70,213,192,.35); }
::-webkit-scrollbar-track { background: #10153c; }
::-webkit-scrollbar-thumb { background: var(--primary-l); border-color: #10153c; }
::-webkit-scrollbar-thumb:hover { background: var(--mint); }


/* --- layout safety: never allow horizontal shift --- */
html, body { overflow-x: hidden; max-width: 100%; }
.hero, .banner, section.block, .cta-band, footer { overflow-x: clip; }


/* ============================================================
   V6 — JACOBS-STYLE FEATURES + SHARP HERO
   ============================================================ */

/* gentler ken burns = sharper photos */
.hero .bg { transform: scale(1.02); }
.hero .bg.active { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.07) translate(0.8%, 0.5%); }
  to   { transform: scale(1.01) translate(0, 0); }
}

/* dual-heading style (feature 1): bolder lead-in line */
.kicker {
  font-size: .95rem; font-weight: 700; letter-spacing: .14em;
}
.kicker::before { width: 26px; height: 3px; border-radius: 2px; }

/* showcase cards (feature 5) */
.show-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.show-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: all .35s ease;
}
.show-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(16,21,60,.18); }
.show-card .ph { height: 240px; overflow: hidden; }
.show-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.show-card:hover .ph img { transform: scale(1.07); }
.show-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.show-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.show-card p { color: var(--grey); font-size: .87rem; font-weight: 300; line-height: 1.6; flex: 1; }
.show-card .more {
  margin-top: 14px; color: var(--primary); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.show-card:hover .more { color: var(--mint); }
@media (max-width: 1024px) { .show-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .show-grid { grid-template-columns: 1fr; } }

/* ticker strip (feature 2) */
.ticker {
  background: var(--primary); overflow: hidden; padding: 18px 0;
  border-top: 3px solid var(--mint);
}
.ticker-track { display: flex; width: max-content; animation: tick 28s linear infinite; }
.ticker span {
  color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: .14em;
  white-space: nowrap;
}
@keyframes tick { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }


/* ============================================================
   V7 — ADVANCED HERO TRANSITIONS
   ============================================================ */
.hero .bg {
  opacity: 0;
  transform: scale(1.09);
  filter: blur(12px) brightness(.85);
  transition: opacity 1.5s ease, filter 1.5s ease;
  will-change: opacity, transform, filter;
}
.hero .bg.active {
  opacity: 1;
  filter: blur(0) brightness(1);
  animation: kenburns 10s ease-out forwards;
}

/* slide progress line */
.hero-prog {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 4;
  background: rgba(255,255,255,.12);
}
.hero-prog i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--mint), var(--primary-l));
  animation: heroprog 4.5s linear forwards;
}
@keyframes heroprog { from { width: 0; } to { width: 100%; } }
