/* =====================================================================
   UrbanClad Projects Inc. — Stylesheet
   ---------------------------------------------------------------------
   HOW TO EDIT:
   • Brand colours, fonts and spacing live in :root below. Change them
     once here and they update across the whole site.
   • Each page section has its own clearly-labelled block of styles.
   ===================================================================== */

/* ---------- 1. DESIGN TOKENS (edit these) ---------- */
:root {
  --navy:        #0B2545;   /* primary dark brand colour */
  --navy-dark:   #0a1c38;   /* deeper navy for gradients */
  --navy-darker: #08182f;   /* footer background */
  --orange:      #F58220;   /* accent / call-to-action */
  --orange-light:#ff9a3d;   /* accent gradient end */
  --gray:        #F5F7FA;   /* light section background */
  --line:        #e6ebf2;   /* borders / dividers */
  --muted:       #5b6b82;   /* secondary body text */
  --text:        #0B2545;   /* main text colour */

  --font-head: 'Sora', system-ui, sans-serif;   /* headings */
  --font-body: 'Manrope', system-ui, sans-serif;/* body copy */

  --maxw: 1180px;           /* content max width */
  --pad-x: 6vw;             /* section side padding */
  --radius: 16px;           /* default corner radius */
}

/* ---------- 2. RESET / BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { margin: 0; background: #fff; color: var(--text); font-family: var(--font-body); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
input, textarea, select, button { font-family: inherit; }
section { scroll-margin-top: 80px; }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; }
.section { padding: 120px var(--pad-x); }

/* section heading helpers */
.eyebrow { color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.section-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -1px; }
.section-sub { color: var(--muted); font-size: 18px; line-height: 1.65; font-weight: 500; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; border-radius: 12px; cursor: pointer; border: none; transition: transform .25s, box-shadow .25s, background .25s; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 16px 40px rgba(245,130,32,.4); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(245,130,32,.5); }
.btn--ghost { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--lg { font-size: 16px; padding: 18px 32px; }

/* ---------- 3. ANIMATIONS ---------- */
@keyframes floatY   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseRing{ 0% { box-shadow: 0 0 0 0 rgba(245,130,32,.45); } 70% { box-shadow: 0 0 0 18px rgba(245,130,32,0); } 100% { box-shadow: 0 0 0 0 rgba(245,130,32,0); } }
@keyframes marquee  { to { transform: translateX(-50%); } }
@keyframes gridmove { to { background-position: 64px 64px; } }

/* scroll-reveal (JS adds .is-visible).
   Hidden state only applies when JavaScript is active (html.js), so the
   site is fully visible even if JS is disabled or fails to load. */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 4. NAVBAR ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; display: flex; align-items: center; justify-content: space-between; padding: 18px var(--pad-x); background: transparent; transition: all .4s cubic-bezier(.16,1,.3,1); }
.nav.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 6px 30px rgba(11,37,69,.1); padding: 12px var(--pad-x); }
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__mark { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 20px; box-shadow: 0 8px 20px rgba(245,130,32,.35); }
.nav__word { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -.3px; color: #fff; line-height: 1; transition: color .4s; }
.nav__word small { display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--orange); }
.nav.is-scrolled .nav__word { color: var(--navy); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link { text-decoration: none; color: #fff; font-weight: 600; font-size: 15px; transition: color .2s; }
.nav.is-scrolled .nav__link { color: var(--navy); }
.nav__cta { text-decoration: none; background: var(--orange); color: #fff; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 10px; box-shadow: 0 10px 24px rgba(245,130,32,.32); transition: transform .2s; }
.nav__cta:hover { transform: translateY(-2px); }
.nav__burger { display: none; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 9px; width: 46px; height: 46px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 20px; height: 2px; background: #fff; display: block; }
.nav.is-scrolled .nav__burger span { background: var(--navy); }

/* mobile drawer */
.drawer { display: none; position: fixed; inset: 0; z-index: 95; background: rgba(11,37,69,.97); backdrop-filter: blur(8px); flex-direction: column; padding: 90px 8vw 40px; gap: 6px; }
.drawer.is-open { display: flex; }
.drawer__close { position: absolute; top: 24px; right: 7vw; background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
.drawer a { color: #fff; text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 24px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.drawer a.drawer__cta { margin-top: 18px; text-align: center; background: var(--orange); border: none; font-size: 18px; padding: 16px; border-radius: 12px; }

/* ---------- 5. HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero__bg { position: absolute; inset: -10% 0 0 0; height: 120%; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim1 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(11,28,56,.94) 0%, rgba(11,37,69,.82) 42%, rgba(11,37,69,.35) 100%); }
.hero__scrim2 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(11,28,56,.85) 0%, transparent 40%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 120px var(--pad-x) 60px; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(245,130,32,.14); border: 1px solid rgba(245,130,32,.4); color: #ffb472; padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: 13px; letter-spacing: .5px; margin-bottom: 26px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: block; animation: pulseRing 2s infinite; }
.hero__title { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: clamp(40px, 6vw, 76px); line-height: 1.04; letter-spacing: -1.5px; max-width: 16ch; margin-bottom: 24px; }
.hero__text { color: #c7d3e3; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; max-width: 60ch; margin-bottom: 38px; font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 54px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 36px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #e3eaf3; font-weight: 600; font-size: 14.5px; }
.trust-item .tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(245,130,32,.2); border: 1px solid rgba(245,130,32,.5); color: #ffb472; display: flex; align-items: center; justify-content: center; font-size: 12px; flex: none; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; font-weight: 600; }
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(var(--orange), transparent); display: block; }

/* ---------- 6. MARQUEE ---------- */
.marquee { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; white-space: nowrap; padding: 18px 0; }
.marquee__track { display: inline-flex; gap: 60px; animation: marquee 28s linear infinite; will-change: transform; }
.marquee__item { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 60px; }
.marquee__item i { color: var(--orange); font-style: normal; }

/* ---------- 7. ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.about__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -1px; margin-bottom: 26px; }
.about__title span { color: var(--orange); }
.about p { color: var(--muted); line-height: 1.7; font-weight: 500; }
.about__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 480px; margin-top: 34px; }
.chip { display: flex; align-items: center; gap: 12px; background: var(--gray); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.chip i { color: var(--orange); font-size: 16px; font-style: normal; }
.about__media { position: relative; }
.about__media > .frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(11,37,69,.22); }
.about__media img { width: 100%; height: 560px; object-fit: cover; }
.badge-float { position: absolute; bottom: -28px; left: -28px; background: var(--orange); color: #fff; border-radius: 18px; padding: 26px 30px; box-shadow: 0 24px 50px rgba(245,130,32,.4); animation: floatY 5s ease-in-out infinite; }
.badge-float b { font-family: var(--font-head); font-weight: 800; font-size: 42px; line-height: 1; display: block; }
.badge-float small { font-weight: 700; font-size: 13px; letter-spacing: 1px; opacity: .95; }
.badge-card { position: absolute; top: -26px; right: -20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; box-shadow: 0 20px 44px rgba(11,37,69,.16); display: flex; align-items: center; gap: 14px; }
.badge-card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; }
.badge-card b { font-family: var(--font-head); font-weight: 800; font-size: 18px; display: block; }
.badge-card small { color: var(--muted); font-size: 13px; font-weight: 600; }

/* stat cards */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 96px; }
.stat-card { background: var(--gray); border: 1px solid var(--line); border-radius: 18px; padding: 34px 26px; text-align: center; transition: transform .3s, box-shadow .3s; }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,37,69,.1); }
.stat-card b { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 4.4vw, 56px); color: var(--navy); line-height: 1; display: block; }
.stat-card small { color: var(--muted); font-weight: 700; font-size: 14px; margin-top: 10px; letter-spacing: .3px; display: block; }

/* ---------- 8. MISSION & VISION ---------- */
.mv { position: relative; background: var(--gray); overflow: hidden; }
.mv__grid-bg { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(#dde5f0 1px, transparent 1px), linear-gradient(90deg, #dde5f0 1px, transparent 1px); background-size: 64px 64px; animation: gridmove 22s linear infinite; -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 75%); mask-image: radial-gradient(circle at 50% 40%, #000, transparent 75%); }
.mv__inner { position: relative; }
.mv__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { position: relative; border-radius: 22px; padding: 44px; overflow: hidden; transition: transform .35s; }
.mv-card:hover { transform: translateY(-8px); }
.mv-card--vision { background: rgba(255,255,255,.7); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 30px 60px rgba(11,37,69,.1); }
.mv-card--mission { background: linear-gradient(160deg, var(--navy), var(--navy-dark)); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 30px 60px rgba(11,37,69,.3); }
.mv-card__ghost { position: absolute; top: -40px; right: -30px; font-size: 160px; }
.mv-card--vision .mv-card__ghost { opacity: .05; color: var(--navy); }
.mv-card--mission .mv-card__ghost { opacity: .06; color: var(--orange); }
.mv-card__ico { width: 64px; height: 64px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 24px; position: relative; }
.mv-card--vision .mv-card__ico { background: linear-gradient(135deg, var(--navy), #16365f); color: var(--orange); box-shadow: 0 14px 30px rgba(11,37,69,.25); }
.mv-card--mission .mv-card__ico { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; box-shadow: 0 14px 30px rgba(245,130,32,.4); }
.mv-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 26px; margin-bottom: 16px; position: relative; }
.mv-card p { font-size: 17px; line-height: 1.7; font-weight: 500; position: relative; }
.mv-card--vision h3 { color: var(--navy); }
.mv-card--vision p { color: #46566c; }
.mv-card--mission h3 { color: #fff; }
.mv-card--mission p { color: #b9c6da; }
.values { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 28px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(245,130,32,.18); border-color: var(--orange); }
.value-card .ico { font-size: 30px; margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; font-weight: 500; }

/* ---------- 9. WHY CHOOSE US ---------- */
.why__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 54px; }
.why__head .section-title { max-width: 620px; }
.why__link { text-decoration: none; color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--orange); padding-bottom: 4px; font-size: 15px; }
.why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { position: relative; background: var(--gray); border: 1px solid var(--line); border-radius: 20px; padding: 38px 32px; overflow: hidden; transition: transform .35s, box-shadow .35s; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(11,37,69,.14); }
.why-card__num { position: absolute; top: 20px; right: 26px; font-family: var(--font-head); font-weight: 800; font-size: 54px; color: var(--line); line-height: 1; }
.why-card__ico { width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(135deg, var(--navy), #16365f); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.why-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 12px; max-width: 14ch; }
.why-card p { color: var(--muted); font-size: 15px; line-height: 1.65; font-weight: 500; }

/* ---------- 10. SERVICES ---------- */
.services { background: var(--navy); position: relative; overflow: hidden; }
.services__glow { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(245,130,32,.18), transparent 70%); }
.services__inner { position: relative; }
.services .section-title { color: #fff; margin-bottom: 16px; }
.services .section-sub { color: #a9b8cf; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.svc-card { position: relative; border-radius: 20px; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.svc-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.svc-card:hover .svc-card__img { transform: scale(1.08); }
.svc-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,20,40,.96) 8%, rgba(7,20,40,.45) 55%, rgba(7,20,40,.2) 100%); }
.svc-card__body { position: relative; padding: 32px; }
.svc-card__tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,130,32,.92); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .5px; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px; }
.svc-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 10px; }
.svc-card p { color: #cdd8e8; font-size: 15px; line-height: 1.6; font-weight: 500; margin-bottom: 18px; max-width: 46ch; }
.svc-card__actions { display: flex; gap: 12px; }
.svc-card__actions a { text-decoration: none; font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 10px; color: #fff; }
.svc-card__actions a.is-primary { background: var(--orange); }
.svc-card__actions a.is-ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); }
.svc2-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc2-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px 26px; transition: background .3s, transform .3s, border-color .3s; }
.svc2-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); border-color: rgba(245,130,32,.5); }
.svc2-card .ico { width: 50px; height: 50px; border-radius: 12px; background: rgba(245,130,32,.16); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 18px; }
.svc2-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 9px; }
.svc2-card p { color: #9fb0c9; font-size: 14.5px; line-height: 1.6; font-weight: 500; margin-bottom: 16px; }
.svc2-card a { color: var(--orange); text-decoration: none; font-weight: 700; font-size: 14px; }

/* ---------- 11. PROCESS ---------- */
.process__wrap { position: relative; }
.process__line { position: absolute; left: 6%; right: 6%; top: 38px; height: 2px; background: linear-gradient(90deg, var(--line), var(--orange), var(--line)); z-index: 0; }
.process__steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; position: relative; z-index: 1; }
.step { text-align: center; }
.step__num { width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--navy); margin: 0 auto 20px; transition: all .35s; }
.step:hover .step__num { border-color: var(--orange); background: var(--orange); color: #fff; transform: scale(1.08); }
.step h4 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 13.5px; line-height: 1.55; font-weight: 500; }

/* ---------- 12. PROJECTS ---------- */
.projects { background: var(--gray); }
.projects .container { max-width: 1240px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: var(--navy); font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 100px; cursor: pointer; transition: all .25s; }
.filter-btn.is-active { background: var(--orange); color: #fff; border-color: var(--orange); }
.masonry { columns: 3; column-gap: 20px; }
.proj { break-inside: avoid; margin-bottom: 20px; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: 0 14px 34px rgba(11,37,69,.1); }
.proj__img { width: 100%; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.proj:hover .proj__img { transform: scale(1.08); }
.proj__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,28,56,.85), transparent 55%); opacity: 0; transition: opacity .35s; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.proj:hover .proj__overlay { opacity: 1; }
.proj__tag { align-self: flex-start; background: var(--orange); color: #fff; font-weight: 700; font-size: 11px; letter-spacing: .5px; padding: 5px 12px; border-radius: 100px; margin-bottom: 10px; }
.proj__overlay h4 { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff; }
.proj__overlay small { color: #cdd8e8; font-size: 13px; font-weight: 600; margin-top: 4px; }

/* lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 120; background: rgba(7,16,32,.92); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 5vw; }
.lightbox.is-open { display: flex; }
.lightbox__close { position: absolute; top: 24px; right: 30px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.lightbox__inner { max-width: 1000px; width: 100%; }
.lightbox__inner img { width: 100%; max-height: 74vh; object-fit: cover; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.lightbox__meta { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.lightbox__meta span { background: var(--orange); color: #fff; font-weight: 700; font-size: 12px; padding: 6px 14px; border-radius: 100px; }
.lightbox__meta h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; }

/* ---------- 13. BEFORE / AFTER ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ba { position: relative; border-radius: 18px; overflow: hidden; height: 380px; cursor: ew-resize; user-select: none; box-shadow: 0 24px 50px rgba(11,37,69,.14); }
.ba > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__label { position: absolute; top: 16px; color: #fff; font-weight: 700; font-size: 11px; letter-spacing: 1px; padding: 6px 12px; border-radius: 6px; }
.ba__label--after { right: 16px; background: rgba(245,130,32,.95); z-index: 3; }
.ba__label--before { left: 16px; background: rgba(11,37,69,.9); }
.ba__before { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__before img { position: absolute; inset: 0; width: 100vw; max-width: none; height: 100%; object-fit: cover; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 1px rgba(11,37,69,.1); }
.ba__handle .grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(11,37,69,.3); display: flex; align-items: center; justify-content: center; color: var(--orange); font-weight: 800; font-size: 18px; }
.ba-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-top: 18px; }

/* ---------- 14. SERVICE AREA ---------- */
.area { background: var(--navy); position: relative; overflow: hidden; }
.area__grid-bg { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; }
.area__inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.area .section-title { color: #fff; margin-bottom: 22px; font-size: clamp(30px,3.6vw,46px); line-height: 1.12; }
.area p { color: #a9b8cf; font-size: 17px; line-height: 1.7; font-weight: 500; margin-bottom: 30px; }
.regions { display: flex; flex-wrap: wrap; gap: 12px; }
.region-chip { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 100px; padding: 11px 20px; color: #fff; font-weight: 700; font-size: 14.5px; }
.region-chip i { color: var(--orange); font-style: normal; }
.area__map { position: relative; aspect-ratio: 4/3; background: linear-gradient(160deg, #0e2a52, var(--navy-dark)); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.area__map .grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,130,32,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(245,130,32,.07) 1px, transparent 1px); background-size: 38px 38px; }
.area__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin { position: absolute; transform: translate(-50%,-100%); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.pin b { background: rgba(11,28,56,.9); color: #fff; font-weight: 700; font-size: 11.5px; padding: 5px 10px; border-radius: 6px; white-space: nowrap; border: 1px solid rgba(245,130,32,.4); }
.pin .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; animation: pulseRing 2.4s infinite; }

/* ---------- 15. QUALITY PROMISE ---------- */
.promise__card { max-width: 1080px; margin: 0 auto; background: linear-gradient(135deg, var(--gray), #eef2f8); border: 1px solid var(--line); border-radius: 26px; padding: 64px; display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center; }
.promise__seal { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #16365f); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 54px; box-shadow: 0 24px 50px rgba(11,37,69,.25); flex: none; animation: floatY 6s ease-in-out infinite; }
.promise__card h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px,3.2vw,42px); line-height: 1.12; letter-spacing: -1px; margin-bottom: 20px; }
.promise__card p { color: var(--muted); line-height: 1.7; font-weight: 500; margin-bottom: 16px; }

/* ---------- 16. FAQ ---------- */
.faq { background: var(--gray); }
.faq .container { max-width: 920px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq-item.is-open { border-color: var(--orange); }
.faq-item__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; background: none; border: none; cursor: pointer; text-align: left; }
.faq-item__btn span { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy); }
.faq-item__icon { width: 34px; height: 34px; border-radius: 50%; background: var(--gray); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; flex: none; transition: all .3s; }
.faq-item.is-open .faq-item__icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-item.is-open .faq-item__body { max-height: 300px; }
.faq-item__body p { padding: 0 28px 26px; color: var(--muted); font-size: 16px; line-height: 1.7; font-weight: 500; }

/* ---------- 17. CONTACT ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; }
.contact__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px,4vw,48px); line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.contact__lead { color: var(--muted); font-size: 18px; line-height: 1.6; font-weight: 500; margin-bottom: 38px; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-item .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--gray); border: 1px solid var(--line); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 22px; flex: none; }
.info-item .txt { padding-top: 4px; }
.info-item small { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .5px; margin-bottom: 3px; display: block; }
.info-item b { font-family: var(--font-head); font-weight: 700; font-size: 16px; line-height: 1.45; color: var(--navy); }
.form-card { background: var(--navy); border-radius: 24px; padding: 44px; box-shadow: 0 30px 70px rgba(11,37,69,.25); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form input, .form select, .form textarea { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 11px; padding: 15px 16px; color: #fff; font-size: 15px; font-weight: 500; outline: none; width: 100%; }
.form select { color: #9fb0c9; }
.form option { color: var(--navy); }
.form textarea { resize: vertical; margin-bottom: 22px; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--orange); }
.form button { width: 100%; background: var(--orange); color: #fff; border: none; font-family: var(--font-head); font-weight: 700; font-size: 17px; padding: 18px; border-radius: 12px; cursor: pointer; box-shadow: 0 14px 34px rgba(245,130,32,.4); transition: transform .2s; }
.form button:hover { transform: translateY(-2px); }
.form-thankyou { display: none; flex-direction: column; align-items: center; text-align: center; padding: 50px 10px; }
.form-thankyou .seal { width: 84px; height: 84px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 24px; }
.form-thankyou h3 { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 12px; }
.form-thankyou p { color: #a9b8cf; font-size: 16px; line-height: 1.6; font-weight: 500; }

/* ---------- 18. FINAL CTA ---------- */
.cta-final { position: relative; padding: 110px var(--pad-x); overflow: hidden; background: var(--navy); }
.cta-final img { position: absolute; inset: -10% 0; height: 120%; width: 100%; object-fit: cover; opacity: .22; }
.cta-final__scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,37,69,.94), rgba(11,28,56,.78)); }
.cta-final__inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.cta-final h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px,5vw,60px); line-height: 1.08; letter-spacing: -1.5px; color: #fff; margin-bottom: 22px; }
.cta-final p { color: #c7d3e3; font-size: 19px; line-height: 1.6; font-weight: 500; max-width: 62ch; margin: 0 auto 38px; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-final__actions .btn--lg { font-size: 17px; padding: 18px 36px; }

/* ---------- 19. FOOTER ---------- */
.footer { background: var(--navy-darker); padding: 72px var(--pad-x) 36px; color: #fff; }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 46px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__brand .mark { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 20px; }
.footer__brand b { font-family: var(--font-head); font-weight: 800; font-size: 18px; line-height: 1; }
.footer__brand b small { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 3px; color: var(--orange); }
.footer__about { color: #8ea1bd; font-size: 14.5px; line-height: 1.65; font-weight: 500; max-width: 38ch; }
.footer__col h5 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.footer__col .links { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: #8ea1bd; text-decoration: none; font-size: 14.5px; font-weight: 500; }
.footer__contact { display: flex; flex-direction: column; gap: 11px; color: #8ea1bd; font-size: 14.5px; font-weight: 500; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; transition: background .25s; }
.footer__social a:hover { background: var(--orange); }
.footer__bar { max-width: var(--maxw); margin: 48px auto 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #6f83a0; font-size: 13.5px; font-weight: 500; }
.footer__bar .legal { display: flex; gap: 24px; }
.footer__bar a { color: #6f83a0; text-decoration: none; }

/* ---------- 20. FLOATING CTA ---------- */
.float-cta { position: fixed; bottom: 26px; right: 26px; z-index: 80; display: flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; padding: 15px 24px; border-radius: 100px; box-shadow: 0 16px 40px rgba(245,130,32,.5); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .4s, transform .4s; }
.float-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta .ico { font-size: 18px; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 860px) {
  .section { padding: 80px var(--pad-x); }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .about__grid, .mv__cards, .why__grid, .svc-grid, .svc2-grid, .ba-grid, .area__inner, .contact__grid, .footer__grid, .promise__card { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 1; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__line { display: none; }
  .hero__inner { padding-left: 22px; padding-right: 22px; }
  .promise__card { padding: 40px 28px; text-align: center; }
  .promise__seal { margin: 0 auto; }
  .about__chips { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .why__grid, .svc2-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .process__steps { grid-template-columns: 1fr 1fr 1fr; }
}
