/* ============================================================
   ARK Renovation — site stylesheet
   ============================================================ */

:root {
  --navy: #0e2a44;
  --navy-dark: #06121e;
  --steel: #2e6ea6;
  --sky: #5aaddb;
  --sky-light: #86bfec;
  --cream: #f3f0e9;
  --paper: #fafafa;
  --paper-alt: #f6f8fa;
  --ink: #171717;
  --line: #e5e5e5;
  --muted: #64748b;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px -25px rgba(6, 18, 30, 0.35);
  --shadow-md: 0 18px 40px -20px rgba(6, 18, 30, 0.28);
  --shadow-sm: 0 8px 20px -12px rgba(6, 18, 30, 0.25);
  --maxw: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
svg:not([width]) { width: 1em; height: 1em; } /* safety net: never let an un-sized icon fall back to the browser default 300x150 */
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: #334155; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 64px 0; }
@media (max-width: 700px) { section { padding: 44px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--sky);
  display: inline-block;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.lede { font-size: 1.08rem; color: #475569; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; min-height: 38px; font-size: .82rem; }
.btn-block.btn { white-space: normal; text-align: center; }
@media (max-width: 360px) {
  .btn { white-space: normal; text-align: center; }
}
.btn-primary {
  background: var(--steel);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(46,110,166,.6);
}
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(14,42,68,.25);
}
.btn-outline:hover { border-color: var(--steel); color: var(--steel); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--sky-light); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 17px; height: 17px; }
.btn-sm svg { width: 15px; height: 15px; }

/* ===== Header ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14,42,68,.08);
  box-shadow: 0 10px 30px -22px rgba(6,18,30,.5);
}
nav.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .87rem;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.nav-links a.nav-link:hover,
.nav-links a.nav-link.active { background: var(--paper-alt); color: var(--steel); }

.has-dropdown { display: flex; align-items: center; }
.nav-link-group { display: flex; align-items: center; }
.dd-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  margin-left: -6px;
  background: none; border: none; cursor: pointer;
  color: var(--navy); border-radius: 50%;
  transition: background .2s, transform .2s;
}
.dd-toggle:hover { background: var(--paper-alt); }
.dd-toggle .chev { width: 13px; height: 13px; transition: transform .2s; pointer-events: none; }
.has-dropdown:hover .dd-toggle .chev,
.dd-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: translateY(4px);
  min-width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.dropdown.force-open { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  transition: background .15s;
}
.dropdown a svg { width: 15px; height: 15px; color: var(--steel); flex-shrink: 0; }
.dropdown a:hover { background: var(--paper-alt); color: var(--steel); }
.dropdown a .tag-star {
  font-size: .6rem;
  font-weight: 800;
  color: var(--steel);
  background: rgba(46,110,166,.1);
  padding: 1px 6px;
  border-radius: 5px;
  letter-spacing: .04em;
  margin-left: auto;
  flex-shrink: 0;
}
.dropdown-foot {
  margin-top: 5px;
  padding: 8px 10px 2px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-foot span { font-size: .76rem; color: var(--muted); }
.dropdown-foot a { font-size: .78rem; font-weight: 700; color: var(--steel); }

/* ===== Chatbase widget: make sure only the launcher button sits above everything ===== */
#chatbase-bubble-button {
  z-index: 2147483647 !important;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta.nav-cta-scroll { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s; }
.nav-cta.nav-cta-scroll.nav-cta-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--steel); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; color: var(--navy); }

@media (max-width: 980px) {
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  nav.main-nav { flex-wrap: wrap; }
}

/* Mobile menu panel */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,18,30,.6);
  backdrop-filter: blur(2px);
}
.mobile-panel.open { display: block; }
.mobile-panel-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 88%);
  height: 100%;
  background: var(--navy);
  padding: 20px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.5);
}
.mobile-panel-inner .close-btn {
  align-self: flex-end;
  background: rgba(255,255,255,.06); border: none; border-radius: 50%; cursor: pointer;
  color: #fff; padding: 9px; margin-bottom: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-panel-inner .close-btn svg { width: 20px; height: 20px; }
.mobile-panel a.m-link {
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 15px 10px; border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  transition: background .15s;
}
.mobile-panel a.m-link:hover, .mobile-panel a.m-link:active { background: rgba(255,255,255,.05); }

.mobile-panel .m-item-group { display: flex; flex-direction: column; }
.mobile-panel .m-link-row {
  display: flex; align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-panel .m-link-row .m-link { flex: 1; border-bottom: none; }
.mobile-panel .m-sub-toggle {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.6); padding: 0 12px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-panel .m-sub-toggle .chev { width: 17px; height: 17px; transition: transform .2s ease; }
.mobile-panel .m-sub-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); color: var(--sky-light); }

.mobile-panel .m-sub {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 8px 0 12px 4px;
}
.mobile-panel .m-sub.open { display: flex; }
.mobile-panel .m-sub a {
  display: flex; align-items: center; gap: 11px;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.78);
  padding: 10px 10px; border-radius: 9px;
  transition: background .15s, color .15s;
}
.mobile-panel .m-sub a:hover, .mobile-panel .m-sub a:active { background: rgba(255,255,255,.07); color: #fff; }
.mobile-panel .m-sub-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--sky-light); }
.mobile-panel .m-group-label {
  color: var(--sky-light); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  padding: 14px 10px 4px; font-weight: 700;
}
.mobile-panel .m-group-label:first-child { padding-top: 4px; }
.mobile-panel .btn { margin-top: 20px; }

/* ===== Hero (interior pages) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #123456 60%, var(--steel) 130%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(90,173,219,.35), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero.has-photo { background: var(--navy-dark); }
.page-hero.has-photo::after { z-index: 1; }
.page-hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6,18,30,.9) 0%, rgba(14,42,68,.84) 55%, rgba(46,110,166,.72) 130%);
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.85); font-weight: 600; }
.breadcrumb a:hover { color: var(--sky-light); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); max-width: 780px; }
.page-hero .lede { color: rgba(255,255,255,.82); max-width: 640px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.85); }
.hero-badges svg { width: 17px; height: 17px; color: var(--sky-light); }

/* ===== Home hero ===== */
.home-hero {
  background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 45%, #1c4a72 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 88svh, 820px);
  padding: 60px 0;
}
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(165deg, rgba(8,22,36,.86) 0%, rgba(12,36,58,.82) 45%, rgba(20,58,92,.78) 100%);
}
.home-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(90,173,219,.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(46,110,166,.3), transparent 45%),
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
  background-position: 0 0, 0 0, 0 0;
}
.home-hero .container { width: 100%; position: relative; z-index: 3; }
.home-hero-inner { position: relative; max-width: 760px; width: 100%; }
@media (max-width: 640px) {
  .home-hero { min-height: 0; padding: 44px 0 40px; }
}
@media (max-height: 700px) and (min-width: 641px) {
  .home-hero { min-height: 0; padding: 72px 0; }
}
.home-hero .pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 22px;
}
.home-hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.home-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.home-hero h1 .accent { color: var(--sky-light); }
.home-hero .lede { color: rgba(255,255,255,.85); font-size: 1.14rem; max-width: 560px; }
.home-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; margin-top: 40px; overflow: hidden;
}
.home-stats div { padding: 18px 10px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.home-stats div:last-child { border-right: none; }
.home-stats strong { display: block; font-size: 1.55rem; font-family: var(--font-head); color: #fff; }
.home-stats span { font-size: .72rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 620px) { .home-stats { grid-template-columns: repeat(2,1fr); } .home-stats div:nth-child(2){border-right:none;} }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 16px; }
.hero-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500; }
.hero-card li svg { width: 19px; height: 19px; color: #4ade80; flex-shrink: 0; margin-top: 1px; }

/* Responsive two-column split (service overview, about story, contact form+sidebar) */
.split-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 48px; align-items: start; }
.split-grid-even { grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-side { display: flex; flex-direction: column; gap: 16px; }

/* ===== Service emphasis grid (home) ===== */
.emph-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .emph-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .emph-grid { grid-template-columns: 1fr; } }
.emph-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.emph-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.emph-card .num { font-family: var(--font-head); font-size: .78rem; font-weight: 800; color: var(--sky); letter-spacing: .08em; margin-bottom: 14px; }
.emph-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.emph-icon svg { width: 23px; height: 23px; color: var(--steel); }
.emph-card:hover .emph-icon { background: var(--navy); border-color: var(--navy); }
.emph-card:hover .emph-icon svg { color: #fff; }
.emph-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.emph-card p { font-size: .92rem; color: var(--muted); flex-grow: 1; }
.emph-card .card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--steel); font-size: .88rem; margin-top: 14px; }
.emph-card .card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.emph-card:hover .card-link svg { transform: translateX(4px); }

/* Secondary services strip */
.services-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px){ .services-strip { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .services-strip { grid-template-columns: 1fr;} }
.strip-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  font-weight: 700; font-size: .92rem; color: var(--navy);
  transition: border-color .2s, transform .2s;
}
.strip-item:hover { border-color: var(--sky); transform: translateY(-3px); }
.strip-item svg { width: 20px; height: 20px; color: var(--steel); flex-shrink: 0; }

/* ===== Why / trust ===== */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .trust-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .trust-grid { grid-template-columns: 1fr;} }
.trust-card { padding: 26px; border-radius: var(--radius); background: var(--paper-alt); }
.trust-card svg { width: 30px; height: 30px; color: var(--steel); margin-bottom: 14px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.trust-card p { font-size: .9rem; margin-bottom: 0; }

.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.75); }
.section-cream { background: var(--cream); }
.section-alt { background: var(--paper-alt); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr;} }
.step { position: relative; padding: 26px 22px 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.step .step-no { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; color: var(--sky-light); opacity: .55; margin-bottom: 8px; }
.step h3 { font-size: 1.02rem; }
.step p { font-size: .88rem; margin-bottom: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px){ .gallery-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .gallery-grid { grid-template-columns: 1fr;} }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--navy), var(--steel));
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,18,30,.82) 0%, rgba(6,18,30,.05) 55%);
  z-index: 1;
}
.gallery-item .g-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
}
.gallery-item .g-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .18; }
.gallery-item .g-icon svg { width: 70px; height: 70px; color: #fff; }
.gallery-item .g-caption { position: relative; z-index: 2; padding: 20px; color: #fff; }
.gallery-item .g-caption h3 { color: #fff; font-size: 1.05rem; margin-bottom: 2px; }
.gallery-item .g-caption span { font-size: .8rem; color: rgba(255,255,255,.7); }
.gallery-item .g-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .5s ease;
}
.gallery-item:hover .g-photo { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
@media (max-width: 860px) { .gallery-item.wide { grid-column: span 2; } }
@media (max-width: 560px) { .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; } }

/* Service area */
.area-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .88rem;
}
.area-chip svg { width: 15px; height: 15px; color: var(--steel); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy);
}
.faq-q svg { width: 20px; height: 20px; color: var(--steel); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 22px 20px; font-size: .93rem; color: #475569; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--steel), var(--navy) 75%);
  color: #fff;
  border-radius: 26px;
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 0%, rgba(255,255,255,.18), transparent 50%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 6px; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Forms ===== */
.form-card {
  background: var(--navy);
  border-radius: 26px;
  padding: 38px;
  color: #fff;
}
.form-card h2, .form-card h3 { color: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 7px; color: rgba(255,255,255,.85); }
.form-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 13px 15px;
  color: #fff;
  font-family: var(--font);
  font-size: .94rem;
  transition: border-color .2s, background .2s;
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { outline: none; border-color: var(--sky-light); background: rgba(255,255,255,.1); }
select.form-input option { background: var(--navy); color: #fff; }
.field-error { display: none; color: #fca5a5; font-size: .78rem; margin-top: 5px; }
.form-note { font-size: .78rem; color: rgba(255,255,255,.45); text-align: center; margin-top: 14px; margin-bottom: 0; }
.success-msg { display: none; text-align: center; padding: 40px 10px; }
.success-msg.show { display: block; }
.success-msg svg { width: 54px; height: 54px; color: #4ade80; margin: 0 auto 16px; }
.success-msg h3 { color: #fff; font-size: 1.3rem; }
.success-msg p { color: rgba(255,255,255,.75); margin-bottom: 0; }
#btn-spinner { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact info cards */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.info-card svg { width: 22px; height: 22px; color: var(--steel); margin-bottom: 10px; }
.info-card h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; font-weight: 700;}
.info-card p, .info-card a { font-size: .96rem; font-weight: 700; color: var(--navy); margin: 0; }

/* ===== Map widget ===== */
.map-section {
  background: var(--navy-dark);
  padding: 0;
}
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 860px) { .map-wrap { grid-template-columns: 1fr; } }
.map-info {
  padding: 56px 48px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.map-info .eyebrow { color: var(--sky-light); }
.map-info h2 { color: #fff; }
.map-info address { font-style: normal; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 22px; }
.map-info .map-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-frame { min-height: 380px; width: 100%; border: 0; filter: grayscale(.15) contrast(1.05); }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--steel), var(--sky-light) 50%, var(--steel)) 1;
}
.footer-top { padding: 68px 0 44px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }
.footer-top img { height: 42px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-top p.tag { font-size: .89rem; color: rgba(255,255,255,.55); max-width: 280px; line-height: 1.65; }
.footer-col h4 {
  color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 18px; padding-bottom: 10px; position: relative;
}
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px;
  background: var(--sky-light);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .89rem; color: rgba(255,255,255,.62); transition: color .2s; }
.footer-col a:hover { color: var(--sky-light); }
.footer-col li { display: flex; align-items: flex-start; gap: 9px; font-size: .89rem; color: rgba(255,255,255,.55); }
.footer-col li a { display: flex; align-items: flex-start; gap: 9px; }
.footer-col li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--sky-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
@media (max-width: 560px) { .footer-bottom { justify-content: center; text-align: center; } }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--sky-light); }

/* Sticky mobile call bar */
.mobile-callbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--navy);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  gap: 10px;
}
@media (max-width: 760px) {
  .mobile-callbar { display: flex; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
}
.mobile-callbar a { display: inline-flex; align-items: center; justify-content: center; gap: 6px; flex: 1; text-align: center; padding: 12px; border-radius: 999px; font-weight: 700; font-size: .88rem; }
.mobile-callbar a svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-callbar .call { background: var(--sky); color: var(--navy-dark); }
.mobile-callbar .quote { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
