/* ============================================================
   HUBB Group Ltd — Premium Site Styles
   Black #111 · Yellow #F5C518 · White · Light grey #F4F5F7
   ============================================================ */

:root {
  --navy: #111111;
  --navy-deep: #000000;
  --navy-soft: #1c1c1c;
  --yellow: #F5C518;
  --yellow-hover: #e2b40b;
  --white: #FFFFFF;
  --grey-50: #F8F9FB;
  --grey-100: #F4F5F7;
  --grey-200: #E8E8E8;
  --grey-300: #D0D0D0;
  --grey-500: #888888;
  --grey-700: #444444;
  --text: #111111;
  --text-muted: #555555;
  --border: #E5E5E5;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 18px 50px rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1240px;
  --header-h: 110px;
  --topbar-h: 40px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--text-muted); }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.eyebrow.dark { color: var(--navy); }
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section--grey  { background: var(--grey-100); }
.section--navy  { background: #111; color: #ccc; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.65); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-yellow { background: var(--yellow); color: var(--navy); box-shadow: 0 8px 24px rgba(245,197,24,.35); }
.btn-yellow:hover { background: var(--yellow-hover); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--grey-100); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Top bar ---------- */
.topbar {
  background: #000; color: #ccc;
  font-size: .85rem; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.topbar__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,.15); color: var(--yellow);
  padding: 3px 10px; border-radius: 999px; font-weight: 700;
  font-size: .75rem; letter-spacing: .04em; text-transform: uppercase;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--yellow); }
.topbar .dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; display: inline-block; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px; position: relative;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: -10px; margin-top: -5px; }
.brand__logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; font-weight: 900; font-size: 1.05rem;
  letter-spacing: .04em; position: relative; overflow: hidden;
}
.brand__logo span { position: relative; z-index: 1; }
.brand__name { font-weight: 800; font-size: 1.15rem; color: var(--navy); line-height: 1; }
.brand__tag  { font-size: .72rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
/* Real logo images */
.brand__img { height: 110px; width: auto; display: block; }
.brand__img--dark { height: 110px; }

.nav { display: flex; align-items: center; gap: 2px; justify-content: center; flex: 1; }
.nav__link {
  position: relative; padding: 8px 9px; font-weight: 600; font-size: .86rem;
  color: var(--text-muted); border-radius: 8px; white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--navy); background: var(--grey-100); }
.nav__link.is-active { color: var(--navy); font-weight: 700; }
.nav__link.is-active::after {
  content: ''; position: absolute; left: 11px; right: 11px; bottom: 2px;
  height: 2px; background: var(--yellow); border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; position: relative; z-index: 2; }
.header__phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy); font-size: .95rem;
}
.header__phone .icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center;
}
.header__phone .icon svg { width: 16px; height: 16px; }
.header__phone .label { font-size: .7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; display: block; line-height: 1; margin-bottom: 2px;}
.header__phone strong { font-weight: 800; }
.guarantee-badge {
  display: none; /* shown in topbar already */
}
/* keep it available if used elsewhere */
.service-hero .guarantee-badge,
.hero .guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grey-100); color: var(--navy);
  padding: 8px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  border: 1px solid var(--border);
}
.guarantee-badge .dot { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; box-shadow: 0 0 0 4px rgba(46,204,113,.18); }

.hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: #fff; align-items: center; justify-content: center; }
.hamburger svg { width: 22px; height: 22px; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; background: #0f0f0f; color: #fff; z-index: 200;
  padding: 30px 24px; transform: translateY(-100%); transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center;}
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__links a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.15rem; font-weight: 600; }
.mobile-nav__links a:hover { color: var(--yellow); }
.mobile-nav__cta { margin-top: 28px; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #000 url('images/hero-vans.jpg') center 60% / cover no-repeat;
  color: #fff; overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 10vw, 150px);
}
.hero::before, .hero::after { content: ''; position: absolute; pointer-events: none; }
.hero::before {
  inset: 0;
  background:
    /* Dark overlay for readability over photo */
    linear-gradient(90deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.20) 100%),
    /* Yellow diagonal slash — van livery inspired */
    linear-gradient(115deg, transparent 38%, rgba(245,197,24,.10) 38%, rgba(245,197,24,.06) 52%, transparent 52%),
    /* Yellow glow bottom-left */
    radial-gradient(ellipse at 0% 100%, rgba(245,197,24,.15), transparent 50%);
}
.hero::after {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 15%, transparent 65%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--yellow); }
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.72); max-width: 560px; margin-bottom: 30px; font-weight: 500; }
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,197,24,.14); color: var(--yellow);
  padding: 8px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 24px; border: 1px solid rgba(245,197,24,.3);
}
.hero__chip .pulse { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; position: relative; }
.hero__chip .pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--yellow); opacity: .4; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .6;} 100% { transform: scale(1.6); opacity: 0;} }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px; border-radius: 12px;
}
.hero__rating .stars { color: var(--yellow); letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating .count { font-size: .85rem; color: rgba(255,255,255,.6); }
.hero__rating .count strong { color: #fff; font-weight: 700; }

/* Hero form */
.hero-form {
  background: #fff; color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  background: linear-gradient(135deg, var(--yellow), transparent 50%);
  z-index: -1; opacity: .5;
}
.hero-form h3 { margin-bottom: 6px; font-size: 1.4rem; }
.hero-form .lede { font-size: .92rem; color: var(--text-muted) !important; margin-bottom: 22px; }
.hero-form__row { display: grid; gap: 14px; margin-bottom: 14px; }
.hero-form__row.cols-2 { grid-template-columns: 1fr 1fr; }
.field label {
  display: block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font: inherit; font-size: .95rem; color: var(--navy);
  background: #fff; transition: border .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245,197,24,.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.hero-form .btn { width: 100%; justify-content: center; padding: 16px; margin-top: 6px; }
.hero-form__note { font-size: .8rem; color: var(--text-muted); text-align: center; margin: 14px 0 0; }
.hero-form__note .secure { color: #2ecc71; font-weight: 700; }

.service-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius);
  border: 2px solid var(--border); background: #fff;
  font-weight: 700; font-size: .9rem; color: var(--navy);
  transition: border-color .15s, background .15s, transform .15s;
}
.service-btn:hover { border-color: var(--yellow); background: #fffbea; transform: translateY(-2px); }
.service-btn svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--navy); }

.hero-form__divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--text-muted); font-size: .85rem; }
.hero-form__divider::before, .hero-form__divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.hero-form__divider span { white-space: nowrap; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-strip__inner { display: flex; justify-content: center; gap: 48px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item__text strong { display: block; font-weight: 800; color: var(--navy); font-size: .92rem; line-height: 1.2; }
.trust-item__text span { font-size: .78rem; color: var(--text-muted); }

/* ---------- Accreditations bar ---------- */
.accred-bar { background: var(--grey-50); border-bottom: 1px solid var(--border); padding: 24px 0; }
.accred-bar__inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.accred-bar__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.accred-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.accred-logo-item { display: flex; align-items: center; justify-content: center; }
.accred-logo-item img { height: 70px; width: auto; object-fit: contain; filter: grayscale(20%); transition: filter .2s; }
.accred-logo-item--lg img { height: 100px; }
.accred-logo-item img:hover { filter: grayscale(0%); }
.accred-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8px 18px; border-radius: 8px; border: 2px solid currentColor;
  line-height: 1.2; text-align: center;
}
.accred-badge strong { font-size: 1rem; font-weight: 900; letter-spacing: .04em; display: block; }
.accred-badge em { font-style: normal; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.accred-badge--nadc { color: #1a4f9c; }
.accred-badge--watersafe { color: #0077b6; }
.accred-badge--wiaps { color: #005f8e; }

/* ---------- Stats ---------- */
.stats { background: #111; color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,197,24,.12), transparent 60%);
}
.stats__inner { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat__num {
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1; color: var(--yellow);
  letter-spacing: -.03em; margin-bottom: 8px;
}
.stat__label { font-size: .92rem; color: rgba(255,255,255,.62); font-weight: 600; }
.stat__divider { width: 1px; background: rgba(255,255,255,.1); }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px 30px;
  transition: transform .25s var(--ease), border .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow); transform: translateY(-4px);
  transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: translateY(0); }
.service-card__icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .25s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--yellow); color: var(--navy); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.service-card p { margin-bottom: 22px; font-size: .95rem; }
.service-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy); font-size: .92rem;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
.service-card__bullets { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 6px; }
.service-card__bullets li { font-size: .87rem; color: var(--text-muted); padding-left: 22px; position: relative; }
.service-card__bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--yellow); opacity: .25;
}
.service-card__bullets li::after {
  content: ''; position: absolute; left: 3px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
}

/* ---------- Audience cards ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.audience-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 38px 32px; border: 1px solid var(--border);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-card__num {
  font-family: 'Inter', monospace; font-weight: 900; font-size: 4.5rem;
  color: var(--grey-200); line-height: 1; letter-spacing: -.04em;
  position: absolute; top: 20px; right: 26px; z-index: 0;
}
.audience-card__icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--yellow); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 24px; position: relative; z-index: 1;
}
.audience-card__icon svg { width: 26px; height: 26px; }
.audience-card h3 { position: relative; z-index: 1; }
.audience-card p { position: relative; z-index: 1; }
.audience-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; position: relative; z-index: 1; }
.audience-card ul li { font-size: .92rem; color: var(--text); padding-left: 26px; position: relative; }
.audience-card ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}
.audience-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy); padding-top: 18px;
  border-top: 1px solid var(--border); position: relative; z-index: 1;
}
.audience-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.audience-card:hover .audience-card__link svg { transform: translateX(4px); }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 28px; }
.why-item { text-align: left; }
.why-item__icon { margin-bottom: 16px; }
.why-item__icon svg { width: 26px; height: 26px; color: var(--yellow); }
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.why-item p { font-size: .92rem; margin: 0; }
.why-card { text-align: left; }
.why-card__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--grey-100); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 22px;
  position: relative;
}
.why-card__icon::after {
  content: ''; position: absolute; right: -4px; bottom: -4px;
  width: 18px; height: 18px; border-radius: 5px; background: var(--yellow);
  z-index: -1;
}
.why-card__icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: .92rem; margin: 0; }

/* ---------- Process / How it works ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.process::before {
  content: ''; position: absolute; top: 38px; left: 12%; right: 12%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--grey-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  background: #fff; padding: 36px 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); position: relative; z-index: 1;
  text-align: center;
}
.process-step__num {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; font-weight: 900;
  font-size: 1.6rem; margin: 0 auto 22px;
  border: 6px solid #fff; box-shadow: 0 0 0 2px var(--yellow);
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { font-size: .92rem; margin: 0; }

/* ---------- Reviews ---------- */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.reviews-head__left h2 { margin: 0 0 6px; }
.reviews-head__left p { margin: 0; }
.google-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow-sm);
}
.google-pill__logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: conic-gradient(from 0deg, #4285F4 0 25%, #DB4437 25% 50%, #F4B400 50% 75%, #0F9D58 75%);
  display: grid; place-items: center; color: #fff; font-weight: 900;
}
.google-pill__rating .stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.google-pill__rating strong { font-weight: 800; }
.google-pill__rating .meta { font-size: .8rem; color: var(--text-muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; }
.review-card__stars { color: var(--yellow); letter-spacing: 3px; font-size: 1.15rem; margin-bottom: 16px; }
.review-card__quote { font-size: 1rem; color: var(--text); margin-bottom: 22px; flex: 1; line-height: 1.65; }
.review-card__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .92rem; color: var(--navy); font-weight: 700; }
.review-card__author span { font-size: .8rem; color: var(--text-muted); }

/* ---------- Coverage map ---------- */
.coverage { position: relative; overflow: hidden; }
.coverage__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.coverage h2 { color: #fff; }
.coverage .areas {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.coverage .areas li {
  list-style: none; padding: 10px 20px;
  background: rgba(245,197,24,.10); border: 1px solid rgba(245,197,24,.25);
  border-radius: 50px; color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: .02em;
}
.coverage .areas li::before { display: none; }
.coverage__map {
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; aspect-ratio: 4 / 3;
}
.coverage__map iframe { width: 100%; height: 100%; display: block; border: 0; filter: grayscale(30%) contrast(1.05); }

/* ---------- Contact / quote form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.contact-info ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 20px; }
.contact-info li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__text strong { display: block; font-weight: 800; color: var(--navy); margin-bottom: 4px; font-size: .92rem; }
.contact-info__text a, .contact-info__text span { color: var(--text-muted); font-size: 1rem; }
.contact-info__text a:hover { color: var(--navy); }
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form .hero-form__row.cols-2 { grid-template-columns: 1fr 1fr; }

.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff; border-radius: var(--radius-lg);
  padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 30px;
  position: relative; overflow: hidden; margin-top: 30px;
}
.cta-banner::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; background: var(--yellow); opacity: .08; border-radius: 50%;
}
.cta-banner__text strong { display: block; font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; color: #fff; }
.cta-banner__text span { color: rgba(255,255,255,.62); }

/* ---------- Footer ---------- */
.footer { background: #000; color: #aaa; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: var(--yellow); }
.footer__brand p { margin: 14px 0 20px; font-size: .92rem; max-width: 320px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.footer__accred { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__accred span {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.80);
  padding: 8px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.08);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: .82rem;
}
.footer__bottom .legal { display: flex; gap: 24px; flex-wrap: wrap;}

/* ---------- Service page hero ---------- */
.service-hero {
  background: #000 url('images/hero-vans.jpg') center 40% / cover no-repeat;
  color: #fff; padding: clamp(60px,8vw,100px) 0;
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.20) 100%),
    linear-gradient(115deg, transparent 35%, rgba(245,197,24,.08) 35%, rgba(245,197,24,.05) 50%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(245,197,24,.12), transparent 50%);
}
.service-hero__inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.service-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.service-hero h1 .accent { color: var(--yellow); }
.service-hero .lede { font-size: 1.15rem; color: rgba(255,255,255,.72); margin-bottom: 30px; max-width: 600px; }
.service-hero__list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.service-hero__list li { font-size: 1rem; color: rgba(255,255,255,.80); padding-left: 30px; position: relative; }
.service-hero__list li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 18px; height: 10px;
  border-left: 2.5px solid var(--yellow); border-bottom: 2.5px solid var(--yellow); transform: rotate(-45deg);
}
.service-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 24px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .4; }

/* ---------- Content blocks for service pages ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse > :first-child { order: 2; }
.split img, .split .visual { border-radius: var(--radius-lg); }
.split__photo { border-radius: var(--radius-lg); overflow: hidden; max-height: 480px; }
.split__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; max-height: 480px; }
.visual {
  aspect-ratio: 4 / 3; background: var(--grey-100); display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.visual--navy { background: var(--navy); color: var(--yellow); }
.visual svg { width: 50%; height: auto; opacity: .8; }
.visual__caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.95); padding: 14px 18px; border-radius: 10px;
  font-size: .9rem; color: var(--navy); font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.visual--navy .visual__caption { background: var(--yellow); color: var(--navy); }
.visual__caption svg { width: 18px; height: 18px; opacity: 1; }

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
}
.method-card__num {
  font-weight: 900; font-size: .82rem; color: var(--yellow); letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 18px;
}
.method-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.method-card p { font-size: .94rem; margin: 0; }
.method-card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; margin-bottom: 20px;
}
.method-card__icon svg { width: 24px; height: 24px; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start;
}
.benefit__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--yellow); color: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 6px; }
.benefit p { margin: 0; font-size: .92rem; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  list-style: none; padding: 22px 26px; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.8rem; font-weight: 400; color: var(--yellow);
  line-height: 1; transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 26px; margin: 0; }

/* Related */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* ---------- Pricing page ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  background: var(--navy); border-color: var(--navy); color: #fff;
  position: relative;
}
.pricing-card--featured::before { display: none; }
.pricing-card__header { display: flex; align-items: center; gap: 14px; }
.pricing-card__icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--yellow); color: var(--navy); display: grid; place-items: center;
}
.pricing-card--featured .pricing-card__icon { background: rgba(245,197,24,.15); color: var(--yellow); }
.pricing-card__icon svg { width: 24px; height: 24px; }
.pricing-card__price { display: flex; align-items: baseline; gap: 8px; }
.price__amount { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; color: var(--navy); line-height: 1; }
.pricing-card--featured .price__amount { color: var(--yellow); }
.price__unit { font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.pricing-card--featured .price__unit { color: rgba(255,255,255,.6); }
.pricing-card__desc { font-size: .95rem; color: var(--text-muted); line-height: 1.65; }
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,.7); }
.pricing-card__includes { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; flex: 1; }
.pricing-card__includes li { font-size: .9rem; padding-left: 24px; position: relative; color: var(--text); }
.pricing-card--featured .pricing-card__includes li { color: rgba(255,255,255,.85); }
.pricing-card__includes li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-5' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* Pricing card — out-of-hours strip & sub-rate note */
.pricing-card__ooh {
  font-size: .875rem; color: var(--text-muted);
  background: var(--grey-50); border-left: 3px solid var(--yellow);
  border-radius: 0 6px 6px 0; padding: 9px 14px;
}
.pricing-card__ooh strong { color: var(--navy); font-weight: 700; }
.pricing-card--featured .pricing-card__ooh { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); }
.pricing-card--featured .pricing-card__ooh strong { color: var(--yellow); }
.pricing-card__rate-note { font-size: .875rem; color: var(--text-muted); margin: -12px 0 0; }

.related-card {
  display: flex; gap: 18px; align-items: center;
  padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; flex-shrink: 0;
}
.related-card__icon svg { width: 24px; height: 24px; }
.related-card strong { display: block; color: var(--navy); font-weight: 800; font-size: 1rem; }
.related-card span { font-size: .82rem; color: var(--text-muted); }

/* Equipment list */
.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.equipment {
  background: var(--grey-100); border-radius: var(--radius);
  padding: 22px; text-align: center;
}
.equipment__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.equipment__icon svg { width: 26px; height: 26px; }
.equipment h4 { margin-bottom: 4px; }
.equipment p { font-size: .85rem; margin: 0; }

/* Two-up dark sections (fire/flood) */
.dual-service {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.dual-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 40px 36px;
  display: flex; flex-direction: column;
}
.dual-card--fire { border-top: 6px solid #E55934; }
.dual-card--flood { border-top: 6px solid #2D9CDB; }
.dual-card__icon {
  width: 70px; height: 70px; border-radius: 16px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; margin-bottom: 22px;
}
.dual-card--fire .dual-card__icon { background: #E55934; color: #fff; }
.dual-card--flood .dual-card__icon { background: #2D9CDB; color: #fff; }
.dual-card__icon svg { width: 32px; height: 32px; }
.dual-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.dual-card ul li { font-size: .95rem; color: var(--text); padding-left: 24px; position: relative; }
.dual-card ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px; border-left: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow); transform: rotate(-45deg);
}

/* Highlight banner */
.highlight-banner {
  background: linear-gradient(120deg, var(--yellow), #ffdd58);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; align-items: center; gap: 30px; color: var(--navy);
}
.highlight-banner__icon {
  width: 80px; height: 80px; border-radius: 16px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; flex-shrink: 0;
}
.highlight-banner__icon svg { width: 38px; height: 38px; }
.highlight-banner h3 { margin-bottom: 4px; color: var(--navy); font-size: 1.4rem; }
.highlight-banner p { margin: 0; color: rgba(0,0,0,.75); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-hero__inner, .coverage__inner, .contact-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse > :first-child { order: initial; }
  .service-grid, .audience-grid, .review-grid, .related-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .trust-strip__inner { gap: 24px; }
  .accred-bar__inner { gap: 20px; }
  .accred-logos { gap: 18px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .method-grid, .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .dual-service { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* Prevent horizontal overflow */
  html, body { overflow-x: hidden; }

  /* Header */
  .nav, .header__phone .text { display: none; }
  .guarantee-badge { display: none; }
  .hamburger { display: inline-flex; }
  .brand__img { height: 40px; }
  .brand__img--dark { height: 40px; }

  /* Topbar */
  .topbar { font-size: .78rem; }
  .topbar__inner { gap: 8px; flex-wrap: wrap; justify-content: center; }

  /* Sections */
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 1rem; }

  /* Hero CTAs — stack and fill width */
  .hero__ctas, .service-hero__ctas { flex-direction: column; gap: 10px; }
  .hero__ctas .btn, .service-hero__ctas .btn { width: 100%; justify-content: center; }

  /* Hero form */
  .hero-form { padding: 24px; }
  .hero-form__row, .hero-form__row.cols-2, .form-row.cols-2 { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }

  /* Trust strip */
  .trust-strip__inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Accreditations */
  .accred-bar__inner { gap: 12px; }
  .accred-logos { gap: 12px; justify-content: center; }
  .accred-logo-item img { height: 40px; }
  .accred-logo-item--lg img { height: 50px; }

  /* Grids → single column */
  .service-grid, .audience-grid, .review-grid, .related-grid, .why-grid, .why-grid--5, .pricing-grid,
  .stats__inner, .method-grid, .equipment-grid, .benefits-grid, .coverage .areas, .process { grid-template-columns: 1fr; }
  .process::before { display: none; }

  /* Cards */
  .pricing-card { padding: 26px 22px; }
  .review-card { padding: 22px; }
  .service-card { padding: 26px 22px; }
  .audience-card { padding: 28px 22px; }

  /* Contact */
  .contact-grid { gap: 32px; }
  .contact-form { padding: 24px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__brand { grid-column: auto; }

  /* Misc */
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .highlight-banner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .split__photo, .split__photo img { max-height: 280px; }
  .faq-item summary { font-size: .95rem; padding: 18px 20px; }
  .faq-item p { padding: 0 20px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

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