/* ════════════════════════════════════════════════
   BATTERY AUSTRALIA — MAIN STYLESHEET
   style.css
════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
/* Colors extracted directly from the real Battery Australia logo */
:root {
  /* ── Logo Red ── */
  --red:          #b52934;   /* exact logo red */
  --red-dark:     #8c1e27;
  --red-light:    #f9eaea;

  /* ── Logo Blue (replaces yellow as accent) ── */
  --blue:         #ffd200;   /* exact logo blue */
  --blue-dark:    #ffd200;
  --blue-light:   #ffd200;
  --blue-mid:     #ffd200;

  /* ── Neutral Palette ── */
  --white:        #ffffff;
  --dark:         #1a1a2e;   /* deep navy-dark, matches logo feel */
  --dark2:        #16213e;
  --dark3:        #0f3460;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --bg-light:     #f4f6fb;   /* slight blue tint matching brand */
  --bg-dark:      #1a1a2e;

  /* ── Status ── */
  --green:        #16a34a;
  --green-light:  #dcfce7;

  /* ── Typography ── */
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* ── Shadows ── */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.18);

  /* ── Misc ── */
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   .22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea, input, select { font-family: inherit; }

/* ── CONTAINER ── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 22px; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 14px;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.tag-red     { background: var(--red); color: #fff; }
.tag-blue-accent  { background: var(--blue); color: var(--text); }
.tag-green   { background: var(--green-light); color: var(--green); }
.tag-marine-accent  { background: var(--blue-light); color: var(--blue-dark); }
.tag-outline { background: transparent; border: 1.5px solid var(--red); color: var(--red); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 18px rgba(181,41,52,.28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(181,41,52,.38); }
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover  { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,0,185,.4); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline-dark  { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline-dark:hover  { border-color: var(--red); color: var(--red); }

/* ════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.stagger.visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:.04s; }
.stagger.visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:.12s; }
.stagger.visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:.20s; }
.stagger.visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:.28s; }
.stagger.visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:.36s; }
.stagger.visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:.44s; }
.stagger.visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:.52s; }
.stagger.visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:.60s; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
/* Ticker */
.header-top    { background: var(--red); padding: 6px 0; overflow: hidden; }
.header-ticker { display: flex; gap: 0; animation: ticker 30s linear infinite; width: max-content; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 32px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; white-space: nowrap;
}
.ticker-item::before { content: '★'; opacity: .55; font-size: 10px; }
/* Main nav bar */
.header-main { background: rgba(24,24,24,.97); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.07); }
.header-main-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
/* Logo */
.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
/* Nav */
nav.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-head); font-size: 14.5px; font-weight: 600;
  color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .06em;
  padding: 8px 13px; border-radius: var(--radius);
  transition: all var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.hot { color: var(--blue); }
.nav-link.hot:hover { background: rgba(16,0,185,.1); }
/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone-btn {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--blue); letter-spacing: .02em;
  padding: 9px 18px; border-radius: var(--radius);
  border: 2px solid rgba(16,0,185,.35);
  transition: all var(--transition); text-decoration: none;
  background: rgba(16,0,185,.06);
}
.header-phone-btn:hover { background: rgba(16,0,185,.14); border-color: var(--blue); color: #fff; }
.header-phone-btn svg { width: 17px; height: 17px; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 7px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--dark);
  z-index: 998; padding: 90px 24px 50px; overflow-y: auto;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu .main-nav { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
.mobile-menu .nav-link { font-size: 28px; padding: 13px 8px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu .header-actions { flex-direction: column; align-items: stretch; margin-top: 28px; gap: 12px; }
.mobile-menu .header-phone-btn, .mobile-menu .btn { justify-content: center; }
/* Mobile menu close button */
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.2); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  min-height: 100vh; background: var(--bg-dark);
  position: relative; display: flex; align-items: center;
  padding-top: 108px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../images/Brisbane-CBD.png') center/cover no-repeat;
  opacity: .12; filter: saturate(.4);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(24,24,24,.97) 42%, rgba(24,24,24,.78) 70%, rgba(24,24,24,.55) 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow  { position:absolute; top:-150px; right:-100px; width:700px; height:700px; background:radial-gradient(circle,rgba(181,41,52,.15) 0%,transparent 65%); animation:glow 7s ease-in-out infinite; pointer-events:none; }
.hero-glow2 { position:absolute; bottom:-200px; left:5%; width:500px; height:500px; background:radial-gradient(circle,rgba(16,0,185,.08) 0%,transparent 65%); animation:glow 9s ease-in-out infinite reverse; pointer-events:none; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%; padding: 50px 0 70px;
}
/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,0,185,.12); border: 1px solid rgba(16,0,185,.25);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 22px;
  animation: fadeDown .6s ease .15s both;
}
.hero-eyebrow-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; animation: pulse 2s ease infinite; }
.hero-eyebrow span { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .07em; }
/* H1 */
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 900; line-height: .93; text-transform: uppercase; color: #fff;
  animation: fadeUp .7s ease .25s both;
}
.hero-h1 .line-accent { color: var(--blue); display: block; }
.hero-h1 .line-stroke  { -webkit-text-stroke: 2.5px rgba(255,255,255,.6); color: transparent; display: block; }
.hero-sub { font-size: 17px; line-height: 1.72; color: rgba(255,255,255,.62); margin: 22px 0 34px; animation: fadeUp .7s ease .38s both; max-width: 490px; }
.hero-cta  { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp .7s ease .48s both; }
/* Trust row */
.hero-trust { display: flex; flex-wrap: wrap; margin-top: 36px; animation: fadeUp .7s ease .58s both; border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; }
.hero-trust-item { display: flex; align-items: center; gap: 9px; padding-right: 5px; margin-right: 5px; border-right: 1px solid rgba(255,255,255,.1); }
.hero-trust-item:last-child { border-right: none; }
.hero-trust-icon { width: 36px; height: 36px; background: rgba(181,41,52,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-trust-icon svg { width: 16px; height: 16px; color: var(--red); }
.hero-trust-label { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .03em; line-height: 1.2; }
.hero-trust-sub { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 1px; }
/* Right image */
.hero-right { position: relative; animation: fadeLeft .8s ease .35s both; }
.hero-main-img { width: 100%; max-width: 520px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.6); position: relative; }
.hero-main-img img { width: 100%; height: 420px; object-fit: contain; background: #1a1a1a; padding: 20px; }
.hero-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--red); color: #fff; border-radius: var(--radius); padding: 10px 16px; font-family: var(--font-head); }
.hero-img-badge-title { font-size: 19px; font-weight: 900; text-transform: uppercase; line-height: 1; }
.hero-img-badge-sub   { font-size: 12px; opacity: .8; margin-top: 2px; }
.hero-floating { position: absolute; top: 20px; right: -20px; background: var(--blue); border-radius: var(--radius); padding: 12px 16px; font-family: var(--font-head); box-shadow: var(--shadow-lg); animation: float 4s ease-in-out infinite; }
.hero-floating-num   { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.hero-floating-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
/* Scroll hint */
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 3; cursor: pointer; animation: fadeUp .7s ease 1s both; }
.hero-scroll span { font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.scroll-track { width: 1px; height: 48px; background: rgba(255,255,255,.15); overflow: hidden; }
.scroll-fill  { width: 1px; height: 40%; background: var(--blue); animation: scrollFill 2s ease infinite; }

/* ════════════════════════════════════
   TRUST STRIP
════════════════════════════════════ */
#trust-strip { background: var(--blue); padding: 14px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-strip-item { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 15.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.trust-strip-item svg { width: 18px; height: 18px; color: #fff; flex-shrink: 0; opacity:.85; }
.payment-icons { display: flex; align-items: center; gap: 8px; }
.payment-icon  { height: 24px; width: auto; object-fit: contain; }
/* Trust strip slide - hidden on desktop, shown on mobile */
.trust-strip-slide { display: none; }
@keyframes trustSlide { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
#services { padding: 100px 0; background: var(--bg-light); }
.section-header { margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all .32s cubic-bezier(.16,1,.3,1); cursor: pointer; }
.svc-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-img { height: 210px; overflow: hidden; position: relative; background: #1a1a1a; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.65) 0%,rgba(0,0,0,.1) 60%,transparent 100%); }
.svc-img-label   { position: absolute; bottom: 14px; left: 16px; right: 16px; display: flex; align-items: flex-end; justify-content: space-between; }
.svc-badge { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.1; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.svc-body  { padding: 20px 22px 22px; }
.svc-desc  { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.svc-link  { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; transition: gap var(--transition); }
.svc-card:hover .svc-link { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; }

/* ════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════ */
#why-us { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
#why-us::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--red),var(--blue),var(--red)); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-title { color: #fff; }
.why-left .section-title span { color: var(--blue); }
.why-left .section-label { color: var(--blue-mid); }
.why-left .section-sub { color: rgba(255,255,255,.55); max-width: none; }
.counters { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.counter-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; transition: all var(--transition); }
.counter-box:hover { background: rgba(181,41,52,.09); border-color: rgba(181,41,52,.22); }
.counter-val { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--blue); line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.counter-val sub { font-size: 22px; }
.counter-lbl { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 5px; font-weight: 500; }
.why-right { display: flex; flex-direction: column; gap: 24px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-feat { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 22px; transition: all var(--transition); }
.why-feat:hover { background: rgba(181,41,52,.07); border-color: rgba(181,41,52,.2); transform: translateY(-3px); }
.why-feat-icon { width: 42px; height: 42px; background: rgba(181,41,52,.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.why-feat-icon svg { width: 20px; height: 20px; color: var(--red); }
.why-feat h4 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: #fff; text-transform: uppercase; margin-bottom: 5px; }
.why-feat p  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }
.mechanic-visual { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 260px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.mechanic-visual img { width: 100%; height: 100%; object-fit: cover; }
.mechanic-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.6) 0%,transparent 50%); }
.mechanic-tag { position: absolute; bottom: 20px; left: 20px; background: var(--red); color: #fff; border-radius: var(--radius); padding: 12px 18px; font-family: var(--font-head); }
.mechanic-tag-title { font-size: 20px; font-weight: 900; text-transform: uppercase; line-height: 1; }
.mechanic-tag-sub   { font-size: 12px; opacity: .75; margin-top: 3px; }

/* ════════════════════════════════════
   BRANDS STRIP
════════════════════════════════════ */
#brands { padding: 42px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-label { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); text-align: center; margin-bottom: 22px; }
.brands-list  { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.brand-pill { font-family: var(--font-head); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); padding: 8px 16px; border-radius: 4px; border: 1.5px solid var(--border); transition: all var(--transition); cursor: default; }
.brand-pill:hover { color: var(--red); border-color: var(--red); background: var(--red-light); }

/* ════════════════════════════════════
   PRODUCTS SLIDER
════════════════════════════════════ */
#products { padding: 100px 0; background: #fff; }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 44px; flex-wrap: wrap; }
.swiper-nav-row { display: flex; gap: 10px; }
.swiper-nav-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-light); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); color: var(--text); }
.swiper-nav-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.swiper-nav-btn svg { width: 18px; height: 18px; }
.prod-card { background: var(--bg-light); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all .3s cubic-bezier(.16,1,.3,1); height: 100%; }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.prod-card-img { height: 190px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 16px; overflow: hidden; }
.prod-card-img img { height: 100%; width: 100%; object-fit: contain; transition: transform .4s ease; }
.prod-card:hover .prod-card-img img { transform: scale(1.07); }
.prod-card-body { padding: 18px 20px 22px; }
.prod-card-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--text); margin: 8px 0 6px; line-height: 1.1; }
.prod-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.prod-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prod-price { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--red); }
.prod-price small { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.prod-btn { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--red); display: flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.prod-card:hover .prod-btn { gap: 9px; }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
#how { padding: 100px 0; background: var(--bg-light); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-sub { margin: 14px auto 0; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 48px; left: calc(12.5% + 32px); right: calc(12.5% + 32px); height: 2px; background: linear-gradient(90deg,var(--red),var(--blue)); z-index: 0; }
.step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--text-muted); margin: 0 auto 20px; transition: all .3s ease; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg-light); }
.step:hover .step-num, .step.active .step-num { background: var(--red); border-color: var(--red); color: #fff; }
.step-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--red-light); border: 2px dashed var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: all .3s ease; }
.step:hover .step-icon { background: var(--red); border-style: solid; }
.step-icon svg { width: 22px; height: 22px; color: var(--red); transition: color .3s; }
.step:hover .step-icon svg { color: #fff; }
.step h4 { font-family: var(--font-head); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════
   MID CTA
════════════════════════════════════ */
#cta-mid { padding: 80px 0; background: var(--red); position: relative; overflow: hidden; }
#cta-mid::after { content: 'BATTERY AUSTRALIA'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: var(--font-head); font-size: 140px; font-weight: 900; color: rgba(0,0,0,.07); pointer-events: none; line-height: 1; white-space: nowrap; }
.cta-mid-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-mid-text .section-title { color: #fff; }
.cta-mid-text .section-title span { color: var(--blue); }
.cta-mid-text p { font-size: 17px; color: rgba(255,255,255,.75); margin-top: 10px; max-width: 520px; line-height: 1.65; }
.cta-mid-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════
   LOCATIONS
════════════════════════════════════ */
#locations { padding: 100px 0; background: #fff; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
.locations-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.loc-card { display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: var(--bg-light); border-radius: var(--radius); border: 1.5px solid var(--border); cursor: pointer; transition: all var(--transition); }
.loc-card:hover { border-color: var(--red); background: var(--red-light); transform: translateX(5px); }
.loc-dot  { width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(181,41,52,.15); }
.loc-name { font-family: var(--font-head); font-size: 15.5px; font-weight: 700; text-transform: uppercase; color: var(--text); line-height: 1.1; }
.loc-sub  { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.map-vis  { border-radius: var(--radius-lg); overflow: hidden; height: 420px; position: relative; box-shadow: var(--shadow-lg); }
.map-vis img { width: 100%; height: 100%; object-fit: cover; }
.map-vis-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.65) 0%,rgba(0,0,0,.15) 50%,rgba(0,0,0,.05) 100%); }
.map-vis-info  { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.map-vis-title { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1; }
.map-vis-sub   { font-size: 15px; color: rgba(255,255,255,.65); margin-top: 6px; }
.map-pins-wrap { position: absolute; inset: 0; pointer-events: none; }
.mpin { position: absolute; width: 14px; height: 14px; background: var(--red); border-radius: 50%; border: 2px solid #fff; transform: translate(-50%,-50%); }
.mpin::after { content: ''; position: absolute; inset: -5px; background: rgba(181,41,52,.3); border-radius: 50%; animation: ping 2.2s ease infinite; }

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
#testimonials { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
#testimonials .section-title { color: #fff; }
#testimonials .section-label { color: var(--blue); }
.testi-swiper { margin-top: 48px; padding-bottom: 50px; }
.testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 34px; height: 100%; transition: all var(--transition); }
.testi-card:hover { background: rgba(255,255,255,.07); border-color: rgba(181,41,52,.25); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars svg { width: 17px; height: 17px; color: var(--blue); }
.testi-quote { font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,.72); font-style: italic; margin-bottom: 22px; }
.testi-quote::before { content: '"'; font-family: Georgia,serif; font-size: 40px; color: rgba(181,41,52,.4); line-height: .5; display: block; margin-bottom: 10px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.testi-av     { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 17px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-name   { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: #fff; text-transform: uppercase; }
.testi-detail { font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 2px; }
.testi-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 18px; }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
#faq { padding: 100px 0; background: var(--bg-light); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-top: 16px; }
.faq-sidebar { position: sticky; top: 120px; }
.faq-cta-box { background: var(--red); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 18px; }
.faq-cta-box h3 { font-family: var(--font-head); font-size: 30px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.faq-cta-box p  { font-size: 14.5px; color: rgba(255,255,255,.72); margin-bottom: 22px; line-height: 1.6; }
.faq-phone-row  { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 14px; }
.faq-phone-row svg  { width: 18px; height: 18px; color: var(--blue); }
.faq-phone-row span { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff; letter-spacing: .02em; }
.hours-box { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.hours-box h4  { font-family: var(--font-head); font-size: 17px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; color: var(--text); }
.hours-row     { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-muted); padding: 9px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--text); }
.open-badge    { color: var(--green) !important; display: flex; align-items: center; gap: 4px; }
.open-badge::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; display: inline-block; }
.faq-list  { display: flex; flex-direction: column; gap: 8px; }
.faq-item  { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--red); }
.faq-q     { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; cursor: pointer; user-select: none; }
.faq-q-text { font-family: var(--font-head); font-size: 17.5px; font-weight: 700; text-transform: uppercase; color: var(--text); line-height: 1.2; }
.faq-toggle { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-light); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
.faq-item.open .faq-toggle { background: var(--red); border-color: var(--red); }
.faq-toggle svg { width: 13px; height: 13px; transition: transform var(--transition); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); color: #fff; }
.faq-a     { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .3s ease; }
.faq-a.open { max-height: 280px; padding: 0 22px 20px; }
.faq-a p   { font-size: 14.5px; line-height: 1.75; color: var(--text-muted); }

/* ════════════════════════════════════
   FINAL CTA
════════════════════════════════════ */
#cta-final { padding: 100px 0; background: var(--dark2); position: relative; overflow: hidden; }
.cta-final-bg-img     { position: absolute; inset: 0; background: url('../images/No-call-out-fees.jpg') center/cover no-repeat; opacity: .06; filter: saturate(.3); }
.cta-final-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%,rgba(181,41,52,.22),transparent 55%),radial-gradient(ellipse at 70% 50%,rgba(16,0,185,.1),transparent 55%); }
.cta-final-inner { position: relative; z-index: 1; text-align: center; max-width: 740px; margin: 0 auto; }
.cta-final-inner .section-title { color: #fff; }
.cta-final-inner .section-title span { color: var(--blue); }
.cta-final-inner p { font-size: 18px; color: rgba(255,255,255,.58); margin: 18px auto 40px; line-height: 1.75; max-width: 560px; }
.cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-guarantees { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.09); }
.cta-guarantee  { display: flex; align-items: center; gap: 7px; font-size: 14px; color: rgba(255,255,255,.45); }
.cta-guarantee svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.payment-bar { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.payment-bar span { font-family: var(--font-head); font-size: 13px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.payment-bar img { height: 22px; width: auto; filter: brightness(1.4) grayscale(.3); opacity: .75; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.07); }
.footer-top  { padding: 60px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.72; margin: 16px 0 18px; max-width: 300px; }
.footer-socials { display: flex; gap: 9px; }
.social-btn { width: 36px; height: 36px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all var(--transition); }
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.social-btn svg { width: 15px; height: 15px; }
.footer-col h5 { font-family: var(--font-head); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-links  { display: flex; flex-direction: column; gap: 7px; }
.footer-link   { font-size: 13.5px; color: rgba(255,255,255,.42); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.footer-link svg { width: 11px; height: 11px; opacity: .35; flex-shrink: 0; }
.footer-link:hover { color: var(--blue); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 13px; }
.footer-contact-item svg  { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.55; }
.footer-contact-item a    { font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy   { font-size: 12.5px; color: rgba(255,255,255,.28); }
.footer-policy { display: flex; gap: 18px; }
.footer-policy a { font-size: 12.5px; color: rgba(255,255,255,.28); transition: color var(--transition); }
.footer-policy a:hover { color: #fff; }

/* ════════════════════════════════════
   STICKY MOBILE CTA
════════════════════════════════════ */
.sticky-mobile { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; gap: 10px; padding: 11px 14px; background: rgba(24,24,24,.97); border-top: 2px solid var(--red); }
.sticky-mobile .btn { flex: 1; justify-content: center; font-size: 15px; padding: 12px 14px; }

/* ════════════════════════════════════
   CONTACT MODAL
════════════════════════════════════ */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s ease both;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%; max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  animation: slideUp .35s cubic-bezier(.16,1,.3,1) both;
}
/* Modal header */
.modal-head {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, var(--red-dark) 100%);
  border-bottom: 3px solid var(--red);
  padding: 28px 32px 22px;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; line-height: 1;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.28); }
.modal-head h2 { font-family: var(--font-head); font-size: 30px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1; margin: 12px 0 6px; }
.modal-head p  { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.modal-trust-pills { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.modal-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 4px 12px; font-size: 11.5px; font-weight: 700; color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; }
.modal-pill.gold { background: rgba(181,41,52,.25); border-color: rgba(181,41,52,.5); color: #ffb3bb; }
/* Modal body / form */
.modal-body { padding: 28px 32px 32px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  display: block;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: #374151;
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s;
  background: var(--bg-light);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181,41,52,.1);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-select   { cursor: pointer; }
/* Submit button */
.form-submit {
  width: 100%; padding: 15px 24px;
  background: var(--red); color: #fff; border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 20px;
}
.form-submit:hover:not(:disabled)   { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,41,52,.35); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: #9ca3af; text-align: center; margin-top: 12px; line-height: 1.5; }
/* Error / Success */
.form-error {
  display: none;
  background: var(--red-light); border: 1px solid #f5b8b8;
  border-radius: var(--radius); padding: 10px 14px;
  margin-bottom: 14px; font-size: 13.5px; color: var(--red-dark);
}
.form-error.show { display: block; }
.modal-success {
  display: none;
  padding: 48px 32px;
  text-align: center;
}
.modal-success.show { display: block; }
.success-icon { width: 72px; height: 72px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 36px; height: 36px; }
.success-title { font-family: var(--font-head); font-size: 32px; font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.success-sub   { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.success-sub strong { color: var(--red); }

/* ════════════════════════════════════
   KEYFRAME ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp    { from{opacity:0;transform:translateY(22px)}  to{opacity:1;transform:none} }
@keyframes fadeDown  { from{opacity:0;transform:translateY(-14px)} to{opacity:1;transform:none} }
@keyframes fadeLeft  { from{opacity:0;transform:translateX(36px)}  to{opacity:1;transform:none} }
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes slideUp   { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:none} }
@keyframes glow      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.06)} }
@keyframes ticker    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollFill{ from{top:-40%;opacity:0} 50%{opacity:1} to{top:120%;opacity:0} }
@keyframes pulse     { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.5} }
@keyframes ping      { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(2.8);opacity:0} }
@keyframes float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin      { to{transform:rotate(360deg)} }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-content { padding: 20px 0 40px; }
  .hero-floating { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #hero { padding-top: 82px; }
  .header-top { display: none; }
  nav.main-nav { display: none; }
  .header-phone-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-right { display: none; }
  .hero-h1 { font-size: clamp(46px,13vw,72px); }
  .hero-trust-item { padding-right: 0; margin-right: 0; border-right: none; flex-basis: 45%; }
  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; gap: 30px; }
  .locations-list { grid-template-columns: 1fr; }
  .cta-mid-inner { flex-direction: column; text-align: center; }
  .cta-mid-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 68px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .counters { grid-template-columns: 1fr 1fr; }
  #trust-strip { overflow: hidden; }
  .trust-strip-inner { gap: 0; justify-content: flex-start; overflow: hidden; flex-wrap: nowrap; padding: 0; }
  .trust-strip-slide { display: flex !important; animation: trustSlide 20s linear infinite; width: max-content; gap: 0; align-items: center; flex-shrink: 0; }
  .trust-strip-slide .trust-strip-item { padding: 0 24px; border-right: 1px solid rgba(255,255,255,.2); white-space: nowrap; font-size: 13.5px; }
  .trust-strip-slide .payment-icons { padding: 0 24px; display: flex; gap: 6px; align-items: center; border-right: 1px solid rgba(255,255,255,.2); }
  /* Hide desktop static items on mobile */
  .trust-strip-inner > .trust-strip-item,
  .trust-strip-inner > .payment-icons { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .modal-body { padding: 20px 20px 24px; }
  .modal-head { padding: 22px 20px 18px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .cta-final-btns { flex-direction: column; align-items: stretch; }
  .cta-final-btns .btn { justify-content: center; }
}

/* ── Extra color aliases for template compatibility ── */
.tag-blue-accent  { background: var(--blue-light); color: var(--blue); }
.tag-marine-accent{ background: var(--blue-light); color: var(--blue-dark); }
.btn-yellow { background: var(--blue); color: #fff; }
.btn-yellow:hover { background: var(--blue-dark); transform: translateY(-2px); }



.mobile-menu.open nav.main-nav {
    display: block !important;
}

.mobile-menu .nav-link {
    display: inline-block;
}