/* ============================================================
   ENERVEK ENERGY LTD - MAIN STYLESHEET
   Palette / type modelled on the SolarSquare reference:
   navy headline colour, bright blue CTAs, amber sun accent,
   Poppins for headings, DM Sans for body copy.
   ============================================================ */

:root {
  --navy: #1a1f38;
  --navy-2: #252b4a;
  --blue: #2874fc;
  --blue-dark: #1b5fd9;
  --blue-soft: #e8f0ff;
  --amber: #fcb900;
  --orange: #ff6900;
  --green: #198754;
  --green-soft: #e3f5ec;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --bg-grey: #f6f6f6;
  --text: #212529;
  --muted: #6c757d;
  --border: #e3e8f1;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(26, 31, 56, 0.08);
  --shadow-lg: 0 18px 50px rgba(26, 31, 56, 0.14);
  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ---------- UTILITIES ---------- */
.section { padding: 56px 0; }
@media (min-width: 992px) { .section { padding: 88px 0; } }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-head p { color: rgba(255,255,255,.75); }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-navy .eyebrow { color: var(--amber); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.hl { color: var(--blue); }
.hl-amber { color: var(--amber); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(40,116,252,.28); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: #e9ab00; }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: #fff; }
.btn-outline:hover { background: var(--blue-soft); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f0f3fa; }
.btn-ghost-light { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }
.btn-lg { min-height: 54px; padding: 14px 32px; font-size: 1.02rem; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- HEADER ---------- */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.85); font-size: .82rem;
  display: none;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; }
.topbar a { color: #fff; }
.topbar span + span { margin-left: 22px; }
@media (min-width: 992px) { .topbar { display: block; } }

.header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,31,56,.05);
}
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }
.logo img { height: 42px; width: auto; }
.nav { display: none; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .93rem; color: var(--navy);
  padding: 10px 14px; border-radius: 8px; display: inline-block;
}
.nav a:hover, .nav a.active { color: var(--blue); background: var(--blue-soft); }
.header-cta { display: none; }
.hamburger {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--border); background: #fff;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 3px 0; transition: .25s; border-radius: 2px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 992px) {
  .nav { display: flex; gap: 2px; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; background: #fff;
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
  padding: 16px; display: flex; flex-direction: column; gap: 6px;
}
.drawer.open { transform: translateX(0); }
.drawer a.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 14px; border-radius: 12px; font-family: var(--font-head); font-weight: 500;
  font-size: 1.05rem; color: var(--navy); border-bottom: 1px solid var(--border);
}
.drawer a.drawer-link.active { color: var(--blue); background: var(--blue-soft); }
.drawer-cta { margin-top: 14px; display: grid; gap: 10px; }
.drawer-contact { margin-top: 18px; padding: 16px; background: var(--bg-soft); border-radius: 12px; font-size: .95rem; }
.drawer-contact p { margin: 0 0 6px; }
@media (min-width: 992px) { .drawer { display: none; } }
body.no-scroll { overflow: hidden; }

/* ---------- HERO ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,25,50,.9) 0%, rgba(20,25,50,.72) 45%, rgba(20,25,50,.35) 100%);
}
.hero .container { position: relative; z-index: 1; display: grid; gap: 28px; padding-top: 56px; padding-bottom: 56px; }
.hero h1 { color: #fff; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); padding: 8px 14px; border-radius: 100px; font-size: .85rem; margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(252,185,0,.25); }
.hero-rating { display: flex; align-items: center; gap: 10px; font-size: .95rem; margin-top: 8px; }
.hero-rating .stars { color: var(--amber); letter-spacing: 2px; }
@media (min-width: 992px) {
  .hero .container { grid-template-columns: 1.15fr .85fr; align-items: center; padding-top: 88px; padding-bottom: 88px; min-height: 640px; }
}

/* Lead form card */
.lead-card {
  background: #fff; color: var(--text); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-lg); max-width: 480px; width: 100%;
}
.lead-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.lead-card .sub { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.form-grid { display: grid; gap: 12px; }
.form-grid .row-2 { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 6px; }
.field label { font-size: .85rem; font-weight: 500; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; background: #fff; font-size: 16px; /* 16px stops iOS zoom */
  transition: border .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(40,116,252,.15);
}
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin: 8px 0 0; }
.form-success { display: none; padding: 20px; text-align: center; }
.form-success .tick { width: 56px; height: 56px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 12px; }

/* ---------- TRUST STRIP ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 8px; }
.trust-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.trust-item .ico svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); line-height: 1.1; }
.trust-item small { color: var(--muted); font-size: .8rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } .trust-item { padding: 24px 12px; justify-content: center; } }

/* ---------- FEATURE CARDS ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 480px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid { gap: 24px; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card .ico svg { width: 26px; height: 26px; }
.card.amber .ico { background: #fff4d6; color: #b97f00; }
.card.green .ico { background: var(--green-soft); color: var(--green); }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Service cards with photo */
.svc { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc .img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.svc .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc:hover .img img { transform: scale(1.05); }
.svc .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc h3 { font-size: 1.08rem; margin: 0; }
.svc p { color: var(--muted); font-size: .93rem; margin: 0; flex: 1; }
.svc .link { font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.svc .link svg { width: 16px; height: 16px; }
.tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: var(--blue-soft); color: var(--blue); padding: 4px 10px; border-radius: 100px; }

/* ---------- SPLIT (image + text) ---------- */
.split { display: grid; gap: 28px; align-items: center; }
.split .img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split .img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split ul.checks { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 12px; }
.split ul.checks li { display: flex; gap: 12px; align-items: flex-start; }
.split ul.checks li svg { width: 22px; height: 22px; flex: none; color: var(--green); margin-top: 2px; }
.split ul.checks b { display: block; color: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.split ul.checks span { color: var(--muted); font-size: .92rem; }
@media (min-width: 992px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.rev .img-wrap { order: 2; } }
.float-badge {
  position: absolute; left: 16px; bottom: 16px; background: #fff; border-radius: 12px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.float-badge b { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); display: block; line-height: 1; }
.float-badge small { color: var(--muted); font-size: .78rem; }
.img-wrap { position: relative; }

/* ---------- PROCESS STEPS ---------- */
.steps { display: grid; gap: 16px; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px 22px; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--amber);
  font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: 14px; font-size: 1.05rem;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .steps { grid-template-columns: repeat(5, 1fr); } .step { padding: 26px 18px; } }

/* ---------- CALCULATOR ---------- */
.calc { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: grid; }
.calc .controls { padding: 26px 22px; display: grid; gap: 20px; }
.calc .result { background: var(--navy); color: #fff; padding: 26px 22px; display: grid; gap: 16px; align-content: center; }
.calc .result h3 { color: #fff; font-size: 1rem; font-weight: 500; opacity: .85; margin: 0; }
.calc .big { font-family: var(--font-head); font-size: clamp(1.9rem, 5vw, 2.6rem); font-weight: 700; color: var(--amber); line-height: 1.1; }
.calc .kv { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc .kv div { background: rgba(255,255,255,.08); border-radius: 10px; padding: 12px; }
.calc .kv b { display: block; font-family: var(--font-head); font-size: 1.15rem; }
.calc .kv small { opacity: .75; font-size: .78rem; }
.calc label { font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--navy); display: flex; justify-content: space-between; }
.calc label output { color: var(--blue); font-weight: 600; }
input[type="range"] { width: 100%; accent-color: var(--blue); height: 32px; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg button { min-height: 44px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--navy); }
.seg button.on { background: var(--blue); color: #fff; border-color: var(--blue); }
.calc .note { font-size: .78rem; color: var(--muted); margin: 0; }
@media (min-width: 992px) { .calc { grid-template-columns: 1.1fr .9fr; } .calc .controls, .calc .result { padding: 36px; } }

/* ---------- IMPACT STATS ---------- */
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.impact { text-align: center; padding: 22px 10px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.impact b { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--amber); font-weight: 700; line-height: 1.1; }
.impact span { font-size: .88rem; color: rgba(255,255,255,.8); }
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- TESTIMONIALS ---------- */
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.quote .stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }
.quote p { margin: 0; color: var(--text); font-size: .98rem; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--amber); font-family: var(--font-head); font-weight: 600; display: grid; place-items: center; }
.quote .who b { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy); }
.quote .who small { color: var(--muted); font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; font-family: var(--font-head);
  font-weight: 600; font-size: 1rem; color: var(--navy); position: relative; -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; font-weight: 600; transition: transform .2s;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .ans { padding: 0 20px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,31,56,.92), rgba(26,31,56,.6)); }
.cta-band .container { position: relative; z-index: 1; display: grid; gap: 22px; padding-top: 56px; padding-bottom: 56px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; }
@media (min-width: 992px) { .cta-band .container { grid-template-columns: 1fr auto; align-items: center; padding-top: 72px; padding-bottom: 72px; } }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { position: relative; color: #fff; background: var(--navy); overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,56,.75), rgba(26,31,56,.85)); }
.page-hero .container { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 64px; max-width: 820px; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.08rem; margin: 0; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.crumbs a { color: #fff; }
@media (min-width: 992px) { .page-hero .container { padding-top: 96px; padding-bottom: 96px; } }

/* ---------- ABOUT: values / mission ---------- */
.mv { display: grid; gap: 18px; }
.mv .card { border-top: 4px solid var(--blue); }
.mv .card.amber { border-top-color: var(--amber); }
.mv .card.green { border-top-color: var(--green); }
@media (min-width: 768px) { .mv { grid-template-columns: repeat(3, 1fr); } }

/* ---------- DIRECTORS ---------- */
.directors { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .directors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .directors { grid-template-columns: repeat(4, 1fr); } }
.director { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; transition: transform .2s, box-shadow .2s; }
.director:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.director .photo { aspect-ratio: 1 / 1; background: var(--bg-soft); overflow: hidden; }
.director .photo img { width: 100%; height: 100%; object-fit: cover; }
.director .body { padding: 18px 18px 22px; }
.director h3 { font-size: 1.08rem; margin-bottom: 2px; }
.director .role { color: var(--blue); font-family: var(--font-head); font-weight: 500; font-size: .85rem; margin-bottom: 10px; display: block; }
.director p { color: var(--muted); font-size: .9rem; margin: 0; }
.director .li { display: inline-flex; margin-top: 12px; width: 36px; height: 36px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); align-items: center; justify-content: center; }
.director .li svg { width: 16px; height: 16px; }

/* ---------- LICENSES ---------- */
.licenses { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .licenses { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .licenses { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.license { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: left; padding: 0; width: 100%; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.license:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.license .thumb { aspect-ratio: 3 / 4; background: var(--bg-soft); overflow: hidden; position: relative; }
.license .thumb img { width: 100%; height: 100%; object-fit: cover; }
.license .thumb::after {
  content: "View"; position: absolute; right: 10px; bottom: 10px; background: var(--navy); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; opacity: .9;
}
.license .body { padding: 12px 14px 14px; }
.license b { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy); }
.license small { color: var(--muted); font-size: .78rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,18,35,.92); display: none; align-items: center; justify-content: center; padding: 16px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 900px); max-height: 85vh; width: auto; height: auto; border-radius: 8px; background: #fff; }
.lightbox .cap { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: #fff; font-family: var(--font-head); font-size: .95rem; padding: 0 60px; }
.lightbox .close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--navy); font-size: 1.4rem; display: grid; place-items: center; }
.lightbox .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 1.4rem; display: grid; place-items: center; }
.lightbox .prev { left: 10px; } .lightbox .next { right: 10px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; } }
.contact-info { display: grid; gap: 14px; }
.contact-info .item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.contact-info .item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-info .item .ico svg { width: 22px; height: 22px; }
.contact-info .item b { font-family: var(--font-head); font-weight: 600; color: var(--navy); display: block; font-size: .92rem; }
.contact-info .item a, .contact-info .item span { color: var(--text); font-size: .95rem; word-break: break-word; }
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-soft); min-height: 260px; display: grid; place-items: center; color: var(--muted); text-align: center; padding: 20px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 56px 0 0; font-size: .93rem; }
.footer-grid { display: grid; gap: 32px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color: var(--amber); }
.footer .logo-w img { height: 42px; filter: brightness(0) invert(1); }
.footer .about-txt { margin-top: 14px; max-width: 320px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.social a:hover { background: var(--blue); color: #fff; }
.social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 18px 0; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.footer-legal { font-size: .8rem; color: rgba(255,255,255,.5); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }

/* ---------- MOBILE STICKY CTA BAR ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff;
  border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(26,31,56,.08);
}
.mobile-bar a { min-height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; }
.mobile-bar .call { background: var(--blue-soft); color: var(--blue); }
.mobile-bar .wa { background: var(--green-soft); color: var(--green); }
.mobile-bar .quote { background: var(--blue); color: #fff; padding: 0; }
.mobile-bar svg { width: 18px; height: 18px; }
body { padding-bottom: 70px; }
@media (min-width: 992px) { .mobile-bar { display: none; } body { padding-bottom: 0; } }

/* Floating WhatsApp (desktop) */
.wa-float { display: none; position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4); }
.wa-float svg { width: 30px; height: 30px; }
@media (min-width: 992px) { .wa-float { display: grid; } }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Long-form content */
.prose { max-width: 820px; margin: 0 auto; color: var(--text); }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.4em; }
.prose p, .prose li { color: #3d4452; }
.prose ul { padding-left: 20px; }

/* Cities / coverage chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chips span { background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px; font-size: .88rem; font-family: var(--font-head); font-weight: 500; color: var(--navy); }
