/* ===================================================================
   Anytime Movers Denver — Stylesheet
   =================================================================== */

:root {
  --navy:        #0f2a43;
  --navy-700:    #16395a;
  --blue:        #1d6fb8;
  --blue-600:    #155a98;
  --green:       #2bb673;
  --green-600:   #1f9b60;
  --accent:      #ff8a3d;
  --accent-600:  #f2761f;

  --ink:         #16222e;
  --body:        #455563;
  --muted:       #6b7a89;
  --line:        #e4e9ef;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;
  --bg-alt:      #eef3f9;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 8px rgba(15, 42, 67, .06);
  --shadow:      0 12px 34px rgba(15, 42, 67, .10);
  --shadow-lg:   0 24px 60px rgba(15, 42, 67, .16);

  --font-head:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --container:   1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--body); background: var(--bg);
  line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 800; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px rgba(255,138,61,.32); }
.btn--primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(242,118,31,.4); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.eyebrow--light { color: #7fd3a8; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #cdddec; font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 14px; }
.topbar__item--right a { color: #fff; font-weight: 600; }
.topbar__item--right a:hover { color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 62px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--navy-700); transition: color .18s; }
.nav a:hover { color: var(--blue); }
.nav__cta { background: var(--accent); color: #fff !important; padding: 10px 20px; border-radius: 999px; box-shadow: 0 8px 18px rgba(255,138,61,.3); }
.nav__cta:hover { background: var(--accent-600); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: transform .25s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(11,28,45,.94) 0%, rgba(13,38,62,.86) 42%, rgba(15,42,67,.55) 78%, rgba(15,42,67,.35) 100%),
    radial-gradient(900px 500px at 88% 120%, rgba(43,182,115,.30), transparent 60%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items: center; padding: 80px 22px 96px; }
.hero__content { max-width: 620px; }
.hero__title { font-size: clamp(2.3rem, 4.7vw, 3.6rem); color: #fff; letter-spacing: -.02em; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero__title span { color: var(--accent); }
.hero__lead { margin-top: 20px; font-size: 1.13rem; color: #e0ebf5; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero__badges li { font-size: 14.5px; color: #cdddec; }
.hero__badges strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; }

.hero__card { background: #fff; color: var(--ink); border-radius: 20px; padding: 30px 28px; box-shadow: var(--shadow-lg); }
.hero__card h2 { font-size: 1.4rem; }
.hero__card > p { color: var(--muted); font-size: 15px; margin-top: 8px; margin-bottom: 20px; }

.quickform { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--navy-700); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.6px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,111,184,.12); }
.field input.invalid, .field select.invalid { border-color: #e3534b; box-shadow: 0 0 0 4px rgba(227,83,75,.12); }
.quickform__note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 2px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-700); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 22px; }
.trust__item { text-align: center; color: #fff; position: relative; }
.trust__item + .trust__item::before { content: ""; position: absolute; left: -9px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.16); }
.trust__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: #fff; }
.trust__suffix { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--accent); }
.trust__label { display: block; font-size: 13.5px; color: #aec4d8; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section--alt { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.3vw, 2.5rem); letter-spacing: -.02em; }
.section__sub { margin-top: 16px; color: var(--body); font-size: 1.06rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(29,111,184,.12), rgba(43,182,115,.14)); color: var(--blue); margin-bottom: 18px; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { font-size: 15.5px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; gap: 22px; }

/* Shared price typography */
.pkg-price { display: inline-flex; flex-direction: column; line-height: 1; }
.pkg-price__label { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pkg-price__amt { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--navy); line-height: 1; }
.pkg-price__range { font-size: .92rem; font-weight: 700; color: var(--muted); margin-left: 1px; }

/* Featured package */
.pkg-feature {
  display: grid; grid-template-columns: 1fr 1.12fr; background: #fff;
  border: 1.5px solid rgba(255,138,61,.5); border-radius: 22px; overflow: hidden;
  box-shadow: 0 20px 48px rgba(255,138,61,.16);
}
.pkg-feature__media { position: relative; min-height: 320px; }
.pkg-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.pkg-feature__tag {
  position: absolute; top: 18px; left: 18px; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 12.5px; letter-spacing: .04em;
  padding: 8px 15px; border-radius: 999px; box-shadow: 0 8px 18px rgba(242,118,31,.45);
}
.pkg-feature__body { padding: 38px 40px; display: flex; flex-direction: column; }
.pkg-feature__eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-600); margin-bottom: 10px; }
.pkg-feature__body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.01em; }
.pkg-feature__body > p { margin-top: 12px; font-size: 1.02rem; color: var(--body); }
.pkg-feature__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 22px 0 26px; }
.pkg-feature__list li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.pkg-feature__list li::before {
  content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(43,182,115,.16); color: var(--green-600); font-size: 11px; font-weight: 800;
}
.pkg-feature__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; flex-wrap: wrap; }
.pkg-feature__foot .pkg-price__amt { font-size: 2.2rem; }
.pkg-feature__foot .btn { white-space: nowrap; }

/* Package grid */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .5s; }
.pkg-card:hover .pkg-card__media img { transform: scale(1.06); }
.pkg-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 20px; }
.pkg-card__body h3 { font-size: 1.12rem; margin-bottom: 7px; line-height: 1.25; }
.pkg-card__body p { font-size: 14px; color: var(--body); }
.pkg-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.pkg-card .pkg-price__amt { font-size: 1.4rem; }
.pkg-card__btn {
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff;
  background: var(--blue); border-radius: 999px; padding: 9px 16px; white-space: nowrap;
  box-shadow: 0 6px 14px rgba(29,111,184,.28); transition: background .18s, transform .15s;
}
.pkg-card__btn:hover { background: var(--blue-600); transform: translateY(-1px); }

.price-note { text-align: center; max-width: 720px; margin: 34px auto 0; font-size: 14px; color: var(--muted); }
.price-note a { color: var(--blue); font-weight: 600; }
.price-note a:hover { text-decoration: underline; }

/* ---------- Brand / tagline strip ---------- */
.brandstrip { background: linear-gradient(135deg, var(--blue-600), var(--navy)); color: #fff; }
.brandstrip__inner { display: flex; align-items: center; gap: 40px; padding: 44px 22px; flex-wrap: wrap; justify-content: center; text-align: center; }
.brandstrip__logo { width: 230px; max-width: 60vw; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); }
.brandstrip__text { max-width: 560px; text-align: left; }
.brandstrip__tag { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.4rem, 2.8vw, 2rem); color: #fff; line-height: 1.25; }
.brandstrip__sub { margin-top: 10px; color: #cfe0ef; font-size: 1.02rem; }

/* ---------- Why Us ---------- */
.why__grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; }
.why__media { position: relative; }
.why__img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.why__img--lg { width: 80%; aspect-ratio: 4/3.4; }
.why__img--sm { position: absolute; right: 0; bottom: -28px; width: 48%; aspect-ratio: 3/4; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.why__badge {
  position: absolute; left: -14px; top: 22px; background: var(--accent); color: #fff;
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-lg); text-align: center; transform: rotate(-4deg);
}
.why__badge strong { display: block; font-family: var(--font-head); font-size: 1.5rem; line-height: 1; }
.why__badge span { font-size: 12px; opacity: .92; }

.why__content .section__sub { margin-bottom: 26px; }
.why__list { display: grid; gap: 16px; margin-bottom: 28px; }
.why__list li { display: flex; gap: 16px; }
.why__icon { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; background: var(--bg-alt); }
.why__list h3 { font-size: 1.1rem; margin-bottom: 2px; }
.why__list p { font-size: 14.5px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: #fff;
  background: linear-gradient(to top, rgba(8,20,33,.86), transparent);
  transform: translateY(6px); opacity: .96; transition: transform .3s;
}
.gallery__item::after {
  content: "⤢"; position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.22);
  color: #fff; font-size: 16px; opacity: 0; transform: scale(.8); transition: opacity .25s, transform .25s; backdrop-filter: blur(4px);
}
.gallery__item:hover::after { opacity: 1; transform: scale(1); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 28px 30px; text-align: center; box-shadow: var(--shadow-sm); }
.step__num { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; box-shadow: 0 8px 18px rgba(29,111,184,.3); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 15px; }
.steps .step:not(:last-child)::after { content: "→"; position: absolute; right: -19px; top: 52px; color: var(--blue); font-size: 22px; font-weight: 700; }

/* ---------- Happy customers band ---------- */
.happy { padding: 86px 0; background: var(--bg-alt); }
.happy__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.happy__item { margin: 0; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; box-shadow: var(--shadow-sm); position: relative; }
.happy__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.happy__item:hover img { transform: scale(1.06); }
.happy__item::after { content: "👍"; position: absolute; bottom: 8px; right: 10px; font-size: 18px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); opacity: .9; }

/* ---------- Reviews ---------- */
.reviews { columns: 3; column-gap: 24px; }
.review { break-inside: avoid; display: inline-block; width: 100%; margin-bottom: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review__stars { color: #ffb22e; letter-spacing: 2px; font-size: 16px; margin-bottom: 12px; }
.review blockquote { font-size: 15.5px; color: var(--ink); line-height: 1.6; }
.review figcaption { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.review__name { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 15px; }
.review__meta { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ---------- Service Areas + Interactive Map ---------- */
.areas { display: grid; grid-template-columns: .82fr 1.18fr; gap: 30px; align-items: stretch; }
.areas__panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; }
.areas__panel-title { font-size: 1.2rem; }
.areas__panel-sub { font-size: 14px; color: var(--muted); margin: 4px 0 16px; }
.areas__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
.areas__chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 11px 12px; text-align: center; font-family: var(--font-head); font-weight: 600;
  font-size: 14px; color: var(--navy-700); cursor: pointer; user-select: none;
  transition: background .18s, color .18s, transform .15s, box-shadow .18s, border-color .18s;
}
.areas__chip:hover, .areas__chip:focus-visible { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); outline: none; }
.areas__chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.areas__chip--hq { border-color: var(--green); color: var(--green-600); }
.areas__chip--hq::before { content: "★ "; }
.areas__chip--hq:hover, .areas__chip--hq.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.areas__cta { margin-top: auto; }

.areas__map-wrap { position: relative; display: flex; flex-direction: column; }
.areas__map {
  flex: 1; min-height: 460px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); z-index: 1; background: #eef3f9;
}
.areas__legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; font-size: 13.5px; color: var(--body); }
.areas__legend-item { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 13px; height: 13px; border-radius: 50%; display: inline-block; }
.dot--hq { background: var(--green); }
.dot--city { background: var(--blue); }
.dot--ring { background: rgba(29,111,184,.18); border: 1.5px solid var(--blue); }

/* Leaflet custom pins */
.mappin { background: none; border: 0; }
.mappin svg path { fill: var(--blue); stroke: #fff; stroke-width: 1.5; }
.mappin--hq svg path { fill: var(--green); }
.mappin__star { position: absolute; top: 5px; left: 0; width: 30px; text-align: center; color: #fff; font-size: 13px; line-height: 1; pointer-events: none; }
.mappin__pulse {
  position: absolute; left: 50%; bottom: 2px; width: 14px; height: 14px; margin-left: -7px;
  border-radius: 50%; background: rgba(29,111,184,.45); transform: translateY(0);
  animation: pinpulse 2.2s ease-out infinite;
}
.mappin--hq .mappin__pulse { background: rgba(43,182,115,.5); }
@keyframes pinpulse { 0% { transform: scale(.6); opacity: .8; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }

/* Leaflet popup styling to match brand */
.leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: var(--shadow); }
.leaflet-popup-content { margin: 14px 16px; font-family: var(--font-body); }
.map-popup { display: grid; gap: 4px; }
.map-popup strong { font-family: var(--font-head); color: var(--navy); font-size: 15px; }
.map-popup span { font-size: 13px; color: var(--body); line-height: 1.5; }
.map-popup__link { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--accent-600); margin-top: 4px; }
.map-popup__link:hover { color: var(--accent); }
.leaflet-container { font-family: var(--font-body); }
.leaflet-bar a { color: var(--navy); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; isolation: isolate; color: #fff; }
.cta-banner__bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,38,62,.93), rgba(21,90,152,.82)); }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 64px 22px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.cta-banner p { color: #d8e6f2; margin-top: 8px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.contact__list { display: grid; gap: 18px; margin-top: 28px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.contact__list strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 14px; }
.contact__list a, .contact__list span { color: var(--body); font-size: 15.5px; }
.contact__list a:hover { color: var(--blue); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__success { background: rgba(43,182,115,.12); color: var(--green-600); border: 1px solid rgba(43,182,115,.3); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14.5px; font-weight: 600; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9cadb; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding: 64px 22px 44px; }
.footer__logo { display: inline-block; background: #fff; border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow); }
.footer__logo img { width: 170px; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; color: #93aac0; max-width: 300px; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .03em; }
.footer__col a, .footer__col span { display: block; font-size: 14.5px; color: #9fb4c8; margin-bottom: 10px; transition: color .18s; }
.footer__col a:hover { color: var(--accent); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 14px; padding: 20px 22px; font-size: 13px; color: #7e93a8; flex-wrap: wrap; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(8,16,26,.92); padding: 24px; }
.lightbox.is-open { display: grid; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure { margin: 0; max-width: min(900px, 92vw); text-align: center; }
.lightbox__figure img { max-height: 78vh; width: auto; margin: 0 auto; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__figure figcaption { color: #e6eef6; font-size: 15px; margin-top: 16px; font-family: var(--font-head); font-weight: 600; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lightbox__close { top: 20px; right: 22px; width: 46px; height: 46px; font-size: 28px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 20px; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Floating call button ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: none; width: 58px; height: 58px; border-radius: 50%; place-items: center; background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(31,155,96,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(43,182,115,.5);} 70% { box-shadow: 0 0 0 16px rgba(43,182,115,0);} 100% { box-shadow: 0 0 0 0 rgba(43,182,115,0);} }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero__card { max-width: 460px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-feature { grid-template-columns: 1fr; }
  .pkg-feature__media { min-height: 240px; }
  .why__grid, .areas, .contact__grid { grid-template-columns: 1fr; gap: 38px; }
  .areas__panel { order: 2; }
  .areas__map-wrap { order: 1; }
  .areas__map { min-height: 380px; }
  .areas__list { grid-template-columns: repeat(3, 1fr); }
  .why__media { max-width: 520px; margin-bottom: 30px; }
  .reviews { columns: 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .happy__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps .step:not(:last-child)::after { display: none; }
  .brandstrip__text { text-align: center; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px 22px 18px; transform: translateY(-130%); transition: transform .3s ease; z-index: 49;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .brand__logo { height: 52px; }
  .topbar__item:not(.topbar__item--right) { display: none; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .trust__item:nth-child(odd)::before { display: none; }
  .fab { display: grid; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section, .happy { padding: 60px 0; }
  .cards { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-feature__list { grid-template-columns: 1fr; }
  .pkg-feature__body { padding: 26px 24px; }
  .reviews { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .hero__badges { gap: 18px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .happy__grid { grid-template-columns: repeat(2, 1fr); }
  .brandstrip__inner { gap: 24px; }
  .why__img--lg { width: 78%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery__item img, .happy__item img { transition: none; }
}
