/* ============================================================
   FRED'S CAR SPA — styles.css
   Brand Blue: #2171B5  (matched from logo)
   ============================================================ */

/* ── RESET & CUSTOM PROPERTIES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #2171B5;
  --blue-dark:   #17538A;
  --blue-mid:    #4A90CC;
  --blue-light:  #E8F3FB;
  --blue-pale:   #F0F7FD;
  --white:       #FFFFFF;
  --grey-50:     #F8F9FA;
  --grey-100:    #F1F3F5;
  --grey-200:    #E5E9ED;
  --grey-300:    #CDD3DA;
  --grey-500:    #8896A4;
  --grey-700:    #4A5568;
  --text:        #1A2535;
  --gold:        #F5A623;
  --section-py:  96px;
  --container:   1160px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-xs:   0 1px 4px rgba(33,113,181,.07);
  --shadow-sm:   0 2px 12px rgba(33,113,181,.09);
  --shadow-md:   0 6px 28px rgba(33,113,181,.13);
  --shadow-lg:   0 16px 56px rgba(33,113,181,.17);
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;
  --nav-h:       70px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; line-height: 1.08; color: var(--text);
}
.section-title em { font-style: normal; color: var(--blue); }
.section-body {
  font-size: 1.05rem; color: var(--grey-700);
  max-width: 560px; margin-top: 14px; line-height: 1.75;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 700;
  transition: all .2s ease; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost-white { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h); background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--grey-200);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--blue); letter-spacing: .01em; display: block; line-height: 1.1; }
.nav__logo-tag { font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-500); display: block; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: .875rem; font-weight: 500; color: var(--grey-700); transition: color .15s; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--blue); border-radius: 2px; transition: width .2s; }
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 700; color: var(--blue); }
.nav__phone:hover { color: var(--blue-dark); }
.nav__phone svg { width: 16px; height: 16px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav__mobile { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--grey-200); box-shadow: var(--shadow-md); padding: 16px 24px 24px; flex-direction: column; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: .95rem; font-weight: 500; color: var(--text); padding: 13px 0; border-bottom: 1px solid var(--grey-100); }
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--blue); }
.nav__mobile-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.nav__mobile-cta .btn { justify-content: center; }
@media (max-width: 860px) { .nav__links, .nav__cta { display: none; } .nav__burger { display: flex; } }

/* ============================================================ HERO */
.hero { position: relative; min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; overflow: hidden; background: var(--blue-dark); }
.hero__bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1800&q=80&auto=format&fit=crop'); background-size: cover; background-position: center 40%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(23,83,138,.93) 0%, rgba(23,83,138,.8) 50%, rgba(33,113,181,.5) 100%); }
.hero__inner { position: relative; z-index: 1; padding: 80px 0 70px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero__kicker { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 40px; margin-bottom: 22px; }
.hero__kicker::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulsedot 2s ease-in-out infinite; }
@keyframes pulsedot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.5)} }
.hero__h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.04; color: #fff; margin-bottom: 20px; }
.hero__h1 span { color: var(--gold); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; max-width: 480px; }
.hero__badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); padding: 10px 14px; }
.hero__badge-icon { width: 32px; height: 32px; background: rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__badge-icon svg { width: 18px; height: 18px; color: #fff; }
.hero__badge-text { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.3; }
.hero__card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero__card-head { background: var(--blue); padding: 22px 28px 18px; color: #fff; }
.hero__card-head-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.hero__card-head-sub { font-size: .82rem; opacity: .82; margin-top: 3px; }
.hero__card-body { padding: 22px 28px 26px; }
.hform .frow { margin-bottom: 13px; }
.hform label { display: block; font-size: .78rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.hform input, .hform select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; color: var(--text); background: var(--grey-50); outline: none; transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; appearance: none; }
.hform input:focus, .hform select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(33,113,181,.12); }
.hform select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238896A4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.hform__submit { width: 100%; padding: 14px; background: var(--blue); color: #fff; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: all .2s; margin-top: 4px; }
.hform__submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hform__note { text-align: center; font-size: .72rem; color: var(--grey-500); margin-top: 10px; }
@media (max-width: 960px) { .hero__inner { grid-template-columns: 1fr; padding: 60px 0 50px; } .hero__card { max-width: 500px; } }
@media (max-width: 540px) { .hero__trust { grid-template-columns: 1fr; } }

/* ============================================================ STATS */
.stats { background: var(--blue); }
.stats__inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: none; }
.stat__number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat__number span { color: var(--gold); }
.stat__label { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 5px; font-weight: 500; }
@media (max-width: 640px) {
  .stats__inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.15); border-top: 1px solid rgba(255,255,255,.15); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
}

/* ============================================================ WHY */
.why { padding: var(--section-py) 0; background: var(--white); }
.why__header { text-align: center; margin-bottom: 56px; }
.why__header .section-body { margin: 14px auto 0; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.why__card { padding: 30px 24px; border-radius: var(--radius-md); border: 1.5px solid var(--grey-200); background: var(--white); text-align: center; transition: all .22s; position: relative; overflow: hidden; }
.why__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform .22s; border-radius: 3px 3px 0 0; }
.why__card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why__card:hover::before { transform: scaleX(1); }
.why__icon { width: 60px; height: 60px; background: var(--blue-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: background .22s; }
.why__card:hover .why__icon { background: var(--blue); }
.why__icon svg { width: 28px; height: 28px; color: var(--blue); transition: color .22s; }
.why__card:hover .why__icon svg { color: #fff; }
.why__card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why__card p { font-size: .855rem; color: var(--grey-700); line-height: 1.65; }

/* ============================================================ SERVICES */
.services { padding: var(--section-py) 0; background: var(--grey-50); }
.services__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 52px; flex-wrap: wrap; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-md); border: 1.5px solid var(--grey-200); display: flex; flex-direction: column; overflow: hidden; transition: all .22s; }
.service-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__top { padding: 26px 26px 0; flex: 1; }
.service-card__icon { width: 50px; height: 50px; background: var(--blue-light); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background .22s; }
.service-card:hover .service-card__icon { background: var(--blue); }
.service-card__icon svg { width: 24px; height: 24px; color: var(--blue); transition: color .22s; }
.service-card:hover .service-card__icon svg { color: #fff; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card__desc { font-size: .87rem; color: var(--grey-700); line-height: 1.65; margin-bottom: 14px; }
.service-card__benefits { padding: 0 26px 14px; }
.service-card__benefits li { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--grey-700); padding: 3px 0; }
.service-card__benefits li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: .8rem; }
.service-card__meta { display: flex; align-items: center; gap: 14px; padding: 4px 26px 8px; font-size: .78rem; color: var(--grey-500); }
.service-card__meta span { display: flex; align-items: center; gap: 4px; }
.service-card__meta svg { width: 13px; height: 13px; }
.service-card__bottom { padding: 15px 26px; border-top: 1px solid var(--grey-100); background: var(--grey-50); display: flex; align-items: center; justify-content: space-between; }
.service-card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.service-card__price small { display: block; font-size: .68rem; font-weight: 500; color: var(--grey-500); font-family: var(--font-body); margin-top: 2px; }
.service-card__cta { font-size: .83rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: gap .15s; }
.service-card:hover .service-card__cta { gap: 8px; }

/* ============================================================ GALLERY */
.gallery { padding: var(--section-py) 0; background: var(--white); }
.gallery__header { text-align: center; margin-bottom: 52px; }
.gallery__header .section-body { margin: 12px auto 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 240px 240px; gap: 14px; border-radius: var(--radius-lg); overflow: hidden; }
.gitem:nth-child(1) { grid-column: 1/7; grid-row: 1; }
.gitem:nth-child(2) { grid-column: 7/10; grid-row: 1; }
.gitem:nth-child(3) { grid-column: 10/13; grid-row: 1; }
.gitem:nth-child(4) { grid-column: 1/5; grid-row: 2; }
.gitem:nth-child(5) { grid-column: 5/9; grid-row: 2; }
.gitem:nth-child(6) { grid-column: 9/13; grid-row: 2; }
.gitem { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--blue-light); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gitem:hover img { transform: scale(1.06); }
.gitem__label { position: absolute; bottom: 12px; left: 12px; background: rgba(23,83,138,.88); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; }
.gallery__note { text-align: center; margin-top: 28px; font-size: .88rem; color: var(--grey-500); }
.gallery__note a { color: var(--blue); font-weight: 600; }
@media (max-width: 700px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,180px); }
  .gitem:nth-child(1) { grid-column: 1/3; grid-row: 1; }
  .gitem:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gitem:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gitem:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gitem:nth-child(5) { grid-column: 2; grid-row: 3; }
  .gitem:nth-child(6) { display: none; }
}

/* ============================================================ REVIEWS */
.reviews { padding: var(--section-py) 0; background: var(--grey-50); }
.reviews__header { text-align: center; margin-bottom: 52px; }
.reviews__score-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.reviews__stars { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 1.3rem; }
.reviews__score-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.reviews__score-sub { font-size: .82rem; color: var(--grey-500); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.review-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; border: 1.5px solid var(--grey-200); display: flex; flex-direction: column; gap: 14px; transition: all .2s; }
.review-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); }
.review-card__stars { display: flex; gap: 2px; }
.review-card__text { font-size: .875rem; color: var(--grey-700); line-height: 1.72; flex: 1; font-style: italic; }
.review-card__footer { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--grey-100); }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.review-card__name { font-weight: 700; font-size: .88rem; color: var(--text); }
.review-card__loc { font-size: .76rem; color: var(--grey-500); }
.review-card__google { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--grey-500); }
.google-g { width: 18px; height: 18px; border-radius: 50%; background: #4285F4; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .55rem; font-weight: 700; }

/* ============================================================ COVERAGE */
.coverage { padding: var(--section-py) 0; background: var(--white); }
.coverage__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.coverage__map { position: relative; background: var(--blue-pale); border-radius: var(--radius-xl); height: 400px; border: 2px solid var(--blue-light); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.coverage__map-word { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: rgba(33,113,181,.1); letter-spacing: .08em; user-select: none; }
.coverage__pins { position: absolute; inset: 0; }
.pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 3px; transform: translate(-50%,-50%); }
.pin__dot { width: 12px; height: 12px; background: var(--blue); border-radius: 50%; border: 2.5px solid #fff; box-shadow: 0 0 0 4px rgba(33,113,181,.2); animation: ping 2.5s ease-in-out infinite; }
@keyframes ping { 0%,100%{box-shadow:0 0 0 4px rgba(33,113,181,.2)} 50%{box-shadow:0 0 0 8px rgba(33,113,181,.08)} }
.pin__label { font-size: .66rem; font-weight: 700; color: var(--blue-dark); background: #fff; padding: 2px 8px; border-radius: 20px; box-shadow: var(--shadow-xs); white-space: nowrap; }
.coverage__areas { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.coverage__tag { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: var(--grey-50); border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); font-size: .875rem; font-weight: 600; color: var(--text); transition: all .2s; }
.coverage__tag:hover { background: var(--blue-light); border-color: var(--blue-mid); color: var(--blue); }
.coverage__tag svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.coverage__note { margin-top: 18px; font-size: .855rem; color: var(--grey-500); line-height: 1.7; }
@media (max-width: 860px) { .coverage__inner { grid-template-columns: 1fr; } .coverage__map { height: 280px; } }

/* ============================================================ HOW IT WORKS */
.hiw { padding: var(--section-py) 0; background: var(--blue); position: relative; overflow: hidden; }
.hiw::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E"); }
.hiw__header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.hiw__header .section-title { color: #fff; }
.hiw__header .section-body { color: rgba(255,255,255,.78); margin: 12px auto 0; }
.hiw__header .section-eyebrow { color: var(--gold); }
.hiw__header .section-eyebrow::before { background: var(--gold); }
.hiw__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; z-index: 1; }
.hiw__steps::before { content: ''; position: absolute; top: 27px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 2px; background: rgba(255,255,255,.2); }
.hiw__step { text-align: center; }
.hiw__step-num { width: 56px; height: 56px; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 auto 20px; }
.hiw__step-icon { width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.hiw__step-icon svg { width: 22px; height: 22px; color: #fff; }
.hiw__step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hiw__step p { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.65; }
@media (max-width: 760px) { .hiw__steps { grid-template-columns: 1fr 1fr; } .hiw__steps::before { display: none; } }
@media (max-width: 440px) { .hiw__steps { grid-template-columns: 1fr; } }

/* ============================================================ FAQ */
.faq { padding: var(--section-py) 0; background: var(--grey-50); }
.faq__inner { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.faq__sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__sidebar .section-body { margin-top: 12px; }
.faq__sidebar-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
.faq__item.open { border-color: var(--blue-mid); }
.faq__q { width: 100%; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: .9rem; font-weight: 600; color: var(--text); text-align: left; transition: color .15s; }
.faq__q:hover { color: var(--blue); }
.faq__chevron { width: 20px; height: 20px; color: var(--grey-500); flex-shrink: 0; transition: transform .25s; }
.faq__item.open .faq__chevron { transform: rotate(180deg); color: var(--blue); }
.faq__a { padding: 0 22px; max-height: 0; overflow: hidden; font-size: .875rem; color: var(--grey-700); line-height: 1.75; transition: max-height .3s ease, padding .3s ease; }
.faq__item.open .faq__a { max-height: 500px; padding: 0 22px 20px; }
@media (max-width: 860px) { .faq__inner { grid-template-columns: 1fr; } .faq__sidebar { position: static; } }

/* ============================================================ CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%); padding: 80px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 800; color: #fff; line-height: 1.1; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 1rem; margin-top: 8px; max-width: 500px; }
.cta-band__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================ CONTACT */
.contact { padding: var(--section-py) 0; background: var(--white); }
.contact__inner { display: grid; grid-template-columns: 1fr 520px; gap: 64px; align-items: start; }
.contact__info-items { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.contact__info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon { width: 46px; height: 46px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__info-icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact__info-title { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 3px; }
.contact__info-val { font-size: .875rem; color: var(--grey-700); line-height: 1.65; }
.contact__info-val a { color: var(--blue); font-weight: 600; }
.contact__info-val a:hover { text-decoration: underline; }
.contact__hours { margin-top: 32px; background: var(--grey-50); border: 1.5px solid var(--grey-200); border-radius: var(--radius-md); overflow: hidden; }
.contact__hours-head { background: var(--blue); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 10px 18px; }
.contact__hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 18px; font-size: .855rem; border-bottom: 1px solid var(--grey-100); }
.contact__hours-row:last-child { border: none; }
.contact__hours-row strong { font-weight: 600; color: var(--text); }
.contact__hours-row span { color: var(--grey-500); }
.contact__map { margin-top: 28px; border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--grey-200); height: 160px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--grey-500); font-size: .85rem; }
.contact__map svg { width: 20px; height: 20px; color: var(--blue); }
.contact__form-card { background: var(--grey-50); border-radius: var(--radius-xl); padding: 38px; border: 1.5px solid var(--grey-200); }
.contact__form-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1/-1; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .78rem; font-weight: 700; color: var(--text); letter-spacing: .02em; }
.form-field input, .form-field select, .form-field textarea { padding: 12px 14px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; color: var(--text); background: var(--white); outline: none; transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; appearance: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(33,113,181,.12); }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238896A4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input.error, .form-field select.error, .form-field textarea.error { border-color: #E53E3E; box-shadow: 0 0 0 3px rgba(229,62,62,.1); }
.form__submit { width: 100%; padding: 15px; background: var(--blue); color: #fff; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: all .2s; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form__submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form__submit svg { width: 18px; height: 18px; }
.form__note { text-align: center; font-size: .73rem; color: var(--grey-500); margin-top: 12px; }
@media (max-width: 960px) { .contact__inner { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: 1; } }
@media (max-width: 540px) { .contact__form-card { padding: 22px; } }

/* ============================================================ FOOTER */
.footer { background: var(--text); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer__desc { font-size: .855rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all .2s; }
.footer__social a:hover { background: var(--blue); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer__col a { display: block; font-size: .855rem; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color .15s; }
.footer__col a:hover { color: var(--blue-mid); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .84rem; color: rgba(255,255,255,.65); }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--blue-mid); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,.65); }
.footer__contact-item a:hover { color: var(--blue-mid); }
.footer__bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.4); }
.footer__bottom a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }
.footer__bottom-links { display: flex; gap: 22px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ============================================================ STICKY CALL */
.sticky-call { position: fixed; bottom: 22px; right: 22px; z-index: 300; display: none; }
@media (max-width: 860px) { .sticky-call { display: block; } }
.sticky-call__btn { display: flex; align-items: center; gap: 10px; background: var(--blue); color: #fff; padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: .9rem; box-shadow: 0 6px 30px rgba(33,113,181,.5); animation: pcall 2.8s ease-in-out infinite; }
@keyframes pcall { 0%,100%{box-shadow:0 6px 30px rgba(33,113,181,.5)} 50%{box-shadow:0 6px 30px rgba(33,113,181,.5),0 0 0 12px rgba(33,113,181,.1)} }
.sticky-call__btn svg { width: 20px; height: 20px; animation: ringing 3s ease-in-out infinite; }
@keyframes ringing { 0%,85%,100%{transform:rotate(0)} 88%{transform:rotate(-15deg)} 92%{transform:rotate(15deg)} 96%{transform:rotate(-8deg)} }

@media (max-width: 640px) { :root { --section-py: 64px; } .btn { padding: 13px 22px; font-size: .9rem; } }

/* ============================================================
   GALLERY TABS + SECONDARY GRID (additions for real photos)
   ============================================================ */
.gallery__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gtab {
  padding: 9px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: all .18s;
}
.gtab:hover { border-color: var(--blue); color: var(--blue); }
.gtab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Secondary grid — 4-col uniform tiles */
.gallery__grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gitem2 {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  aspect-ratio: 4/3;
}
.gitem2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gitem2:hover img { transform: scale(1.07); }
.gitem2 .gitem__label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(23,83,138,.88);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* Hide filtered-out items */
.gitem[data-hidden], .gitem2[data-hidden] { display: none !important; }

@media (max-width: 900px) {
  .gallery__grid2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery__grid2 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MOBILE OPTIMISATION — Full responsive overhaul
   Targets: 480px (small phones) and 768px (tablets/large phones)
   ============================================================ */

/* ── Global mobile tweaks ── */
@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --nav-h: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .section-body {
    font-size: .95rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: .88rem;
  }
}

/* ── Nav logo on mobile ── */
@media (max-width: 768px) {
  .nav__logo-img {
    height: 40px !important;
  }
}

/* ── Hero ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  /* Make sure the background photo covers properly and isn't squished */
  .hero__bg {
    background-position: center center;
    background-size: cover;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .hero__h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 14px;
  }

  .hero__sub {
    font-size: .95rem;
    margin-bottom: 24px;
  }

  .hero__btns {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .hero__badge {
    padding: 8px 10px;
  }

  .hero__badge-text {
    font-size: .72rem;
  }

  .hero__card {
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .hero__card-head {
    padding: 18px 20px 14px;
  }

  .hero__card-body {
    padding: 18px 20px 22px;
  }
}

@media (max-width: 480px) {
  .hero__trust {
    grid-template-columns: 1fr;
  }

  .hero__h1 {
    font-size: 2rem;
  }
}

/* ── Stats strip ── */
@media (max-width: 768px) {
  .stats__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 20px 16px;
  }

  .stat__number {
    font-size: 1.75rem;
  }

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,.15);
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
}

/* ── Why cards ── */
@media (max-width: 768px) {
  .why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why__card {
    padding: 22px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .why__icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
  }

  .why__card::before {
    display: none;
  }

  .why__card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .why__card p {
    font-size: .84rem;
  }
}

/* ── Services ── */
@media (max-width: 768px) {
  .services__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .services__header .btn {
    width: 100%;
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card__top {
    padding: 20px 20px 0;
  }

  .service-card__benefits {
    padding: 0 20px 12px;
  }

  .service-card__meta {
    padding: 4px 20px 6px;
  }

  .service-card__bottom {
    padding: 14px 20px;
  }

  .service-card__price {
    font-size: 1.3rem;
  }
}

/* ── Gallery ── */
@media (max-width: 768px) {
  .gallery__tabs {
    gap: 8px;
    margin-bottom: 20px;
  }

  .gtab {
    padding: 7px 14px;
    font-size: .8rem;
  }

  /* Primary grid — stack to 2 columns on mobile */
  .gallery__grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 180px 180px 180px !important;
    gap: 8px;
  }

  /* Reset all nth-child positioning and re-assign simply */
  .gallery__grid .gitem:nth-child(1) { grid-column: 1 / 3 !important; grid-row: 1 !important; }
  .gallery__grid .gitem:nth-child(2) { grid-column: 1 !important; grid-row: 2 !important; }
  .gallery__grid .gitem:nth-child(3) { grid-column: 2 !important; grid-row: 2 !important; }
  .gallery__grid .gitem:nth-child(4) { grid-column: 1 !important; grid-row: 3 !important; }
  .gallery__grid .gitem:nth-child(5) { grid-column: 2 !important; grid-row: 3 !important; }
  .gallery__grid .gitem:nth-child(6) { display: none !important; }

  /* Images must fill their containers correctly — no squishing */
  .gitem img,
  .gitem2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Secondary grid — 2 columns on mobile */
  .gallery__grid2 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .gitem2 {
    aspect-ratio: 4 / 3;
  }

  .gitem__label {
    font-size: .62rem;
    padding: 3px 8px;
    bottom: 8px;
    left: 8px;
  }

  .gallery__note {
    font-size: .82rem;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-rows: 160px 160px 160px !important;
  }

  .gallery__grid2 {
    grid-template-columns: 1fr 1fr;
  }

  .gitem2 {
    aspect-ratio: 1 / 1;
  }
}

/* ── Reviews ── */
@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    padding: 18px;
  }

  .review-card__text {
    font-size: .84rem;
  }

  .reviews__score-row {
    flex-direction: column;
    gap: 6px;
  }
}

/* ── Coverage ── */
@media (max-width: 768px) {
  .coverage__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .coverage__map {
    height: 220px;
    border-radius: var(--radius-md);
  }

  .coverage__map-word {
    font-size: 2.5rem;
  }

  .coverage__areas {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .coverage__tag {
    padding: 10px 12px;
    font-size: .82rem;
  }

  /* Make pins slightly smaller on mobile */
  .pin__label {
    font-size: .58rem;
    padding: 1px 6px;
  }

  .pin__dot {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 480px) {
  .coverage__areas {
    grid-template-columns: 1fr;
  }
}

/* ── How it works ── */
@media (max-width: 768px) {
  .hiw__steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hiw__steps::before {
    display: none;
  }

  .hiw__step p {
    font-size: .82rem;
  }
}

@media (max-width: 480px) {
  .hiw__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── CTA band ── */
@media (max-width: 768px) {
  .cta-band {
    padding: 52px 0;
  }

  .cta-band__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .cta-band p {
    margin: 8px auto 0;
  }

  .cta-band__btns {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .cta-band__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── FAQ ── */
@media (max-width: 768px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq__sidebar {
    position: static;
  }

  .faq__sidebar-cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .faq__sidebar-cta .btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }

  .faq__q {
    font-size: .85rem;
    padding: 15px 16px;
  }

  .faq__a {
    font-size: .84rem;
  }

  .faq__item.open .faq__a {
    padding: 0 16px 16px;
  }
}

/* ── Contact ── */
@media (max-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form-card {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  .contact__form-card h3 {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-grid .full {
    grid-column: 1;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
    padding: 12px 13px;
  }

  .form__submit {
    padding: 14px;
    font-size: .95rem;
  }

  .contact__hours-row {
    font-size: .82rem;
  }

  .contact__map {
    height: 120px;
    font-size: .8rem;
  }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer {
    padding: 48px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .footer__logo-img {
    height: 40px !important;
  }

  .footer__desc {
    font-size: .82rem;
    max-width: 100%;
  }

  .footer__col h4 {
    margin-bottom: 12px;
  }

  .footer__col a {
    margin-bottom: 8px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 18px 0;
    font-size: .72rem;
  }

  .footer__bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── Sticky call button ── */
@media (max-width: 768px) {
  .sticky-call {
    bottom: 16px;
    right: 16px;
  }

  .sticky-call__btn {
    padding: 12px 18px;
    font-size: .85rem;
  }
}

/* ── Extra small phones (iPhone SE etc) ── */
@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }

  .hero__h1 {
    font-size: 1.75rem;
  }

  .hero__badge-text {
    font-size: .68rem;
  }

  .gtab {
    padding: 6px 10px;
    font-size: .76rem;
  }

  .service-card__price {
    font-size: 1.2rem;
  }
}
