/* ═══════════════════════════════════════════════════════════
   SLS SERVICES — MAIN STYLESHEET
   Palette: Navy #1B2B5E | Teal #1A8C7A | Orange #E8751A | White #FFF
═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:   #1B2B5E;
  --navy-dark: #111d42;
  --navy-mid: #243577;
  --teal:   #1A8C7A;
  --teal-dark: #137062;
  --teal-light: #22b09b;
  --orange: #E8751A;
  --orange-dark: #c4611a;
  --orange-light: #f5892a;
  --white:  #FFFFFF;
  --off-white: #F7F8FC;
  --light-grey: #EEF0F6;
  --mid-grey: #8892A4;
  --text-dark: #1a1f30;
  --text-body: #3d4460;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(27,43,94,0.10);
  --shadow-lg: 0 8px 40px rgba(27,43,94,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

ul { list-style: none; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-in, .fade-up {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up { transform: translateY(28px); }
.fade-in.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards get a subtle scale-up entrance */
.service-card.fade-up {
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.service-card.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* staggered children */
.division-cards .fade-up:nth-child(2),
.services-grid .fade-up:nth-child(2),
.reviews-grid .fade-up:nth-child(2),
.contact-cards .fade-up:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-up:nth-child(3),
.reviews-grid .fade-up:nth-child(3) { transition-delay: 0.15s; }
.services-grid .fade-up:nth-child(4),
.reviews-grid .fade-up:nth-child(4) { transition-delay: 0.2s; }
.services-grid .fade-up:nth-child(5),
.reviews-grid .fade-up:nth-child(5) { transition-delay: 0.25s; }
.services-grid .fade-up:nth-child(6),
.reviews-grid .fade-up:nth-child(6) { transition-delay: 0.3s; }
.services-grid .fade-up:nth-child(7),
.reviews-grid .fade-up:nth-child(7) { transition-delay: 0.35s; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--teal-light); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-xl  { padding: 18px 36px; font-size: 1.1rem; border-radius: 10px; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,117,26,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,117,26,0.45);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,140,122,0.3);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,140,122,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta { margin-left: 8px; padding: 9px 18px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 40px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; width: 100%; padding: 12px 16px; }
  .nav-cta { margin-left: 0; margin-top: 12px; width: 100%; justify-content: center; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,140,122,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(232,117,26,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #111d42 0%, #1B2B5E 40%, #0f1e3d 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px, 100px 100px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 720px;
}

.hero-logo {
  display: block;
  height: clamp(200px, 30vw, 320px);
  width: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.uk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(232,117,26,0.5);
  animation: pulse-badge 3s ease-in-out infinite;
}

@media (max-width: 767px) {
  .uk-badge {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.uk-badge-icon { width: 18px; height: 18px; flex-shrink: 0; }

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,117,26,0.5); }
  50%       { box-shadow: 0 6px 32px rgba(232,117,26,0.75); }
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-sub {
  display: block;
  color: var(--teal-light);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-top: 6px;
}

.hero-desc {
  color: rgba(255,255,255,0.80);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* ── HERO STATS BAR ──────────────────────────────────────── */
.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  gap: 0;
  white-space: nowrap;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.9);
  padding: 0 14px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }
.hero-stat svg { width: 14px; height: 14px; color: var(--teal-light); flex-shrink: 0; }

.hero-stat-stars {
  color: #F4B942;
  font-size: 0.78rem;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-stat-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* On narrow screens, stack into two rows of two */
@media (max-width: 680px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto 1px auto;
    white-space: normal;
    padding: 14px 16px;
    gap: 0;
  }
  .hero-stat { padding: 8px 12px; font-size: 0.82rem; }
  .hero-stat:first-child { padding-left: 12px; }
  .hero-stat:last-child  { padding-right: 12px; }

  /* vertical dividers become horizontal row spans */
  .hero-stat-divider:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1 / 2;
    width: 1px;
    height: auto;
    align-self: stretch;
  }
  .hero-stat-divider:nth-of-type(2) {
    grid-column: 1 / 4;
    grid-row: 2;
    width: auto;
    height: 1px;
    background: rgba(255,255,255,0.14);
  }
  .hero-stat-divider:nth-of-type(3) {
    grid-column: 2;
    grid-row: 3;
    width: 1px;
    height: auto;
    align-self: stretch;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--teal-light); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.4);
  animation: bounce-down 2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 28px; height: 28px; }

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── COVERAGE BANNER ─────────────────────────────────────── */
.coverage-banner {
  background: var(--teal);
  overflow: hidden;
  padding: 0;
}

.coverage-inner {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.coverage-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  animation: scroll-track 22s linear infinite;
  padding: 18px 0;
}

@keyframes scroll-track {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.coverage-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.coverage-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.9; }

.coverage-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── DIVISION CARDS ──────────────────────────────────────── */
.divisions {
  padding: 80px 0 90px;
  background: var(--off-white);
  text-align: center;
}

.divisions .section-eyebrow,
.divisions .section-title {
  text-align: center;
}

.division-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  text-align: left;
}

@media (max-width: 720px) {
  .division-cards { grid-template-columns: 1fr; }
}

.division-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.division-card-header {
  padding: 32px 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.division-logo {
  max-height: 115px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
}

.division-card--caravan {
  border-left: 5px solid var(--navy);
}
.division-card--caravan .division-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.division-card--marine {
  border-left: 5px solid var(--teal);
}
.division-card--marine .division-card-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
}

.division-card-body {
  padding: 28px 32px;
  flex: 1;
}
.division-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.division-card-body p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.65;
}
.division-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.division-highlights li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.division-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.division-card--marine .division-highlights li::before { background: var(--orange); }

.division-card-footer {
  padding: 0 32px 32px;
}
.division-card-footer .btn { width: 100%; justify-content: center; }

/* ── SERVICES SECTIONS ───────────────────────────────────── */
.services-section { padding: 90px 0; }

.services-section--caravan {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.services-section--marine { background: var(--white); }

.services-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.services-division-logo {
  height: 115px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--white);
  padding: 6px 12px;
}

.services-section--caravan .services-division-logo {
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.services-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.7;
}
.services-intro--dark { color: var(--text-body); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Service cards - caravan */
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(26,140,122,0.55);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(26,140,122,0.22), 0 0 0 1px rgba(26,140,122,0.3);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,140,122,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--teal-light);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.price-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}
.price-tag--quote {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.price-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Service cards — marine */
.service-card--marine {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  color: var(--text-dark);
}
.service-card--marine:hover {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(26,140,122,0.18), 0 0 0 1px rgba(26,140,122,0.25);
  transform: translateY(-5px);
}
.service-card--marine h4 { color: var(--navy); }
.service-card--marine p  { color: var(--text-body); }

.service-icon--marine {
  background: rgba(26,140,122,0.12);
  color: var(--teal);
}
.price-tag--marine-quote {
  background: var(--light-grey);
  color: var(--mid-grey);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.marine-solar-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 40px 0;
  color: var(--white);
}

.solar-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.solar-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,117,26,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
}
.solar-icon svg { width: 30px; height: 30px; }
.solar-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}
.solar-content p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-size: 0.98rem;
  max-width: 580px;
}

.services-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section {
  padding: 90px 0;
  background: var(--off-white);
}

.gallery-section .section-eyebrow,
.gallery-section .section-title { text-align: center; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 32px 0 40px;
  background: var(--light-grey);
  border-radius: 12px;
  padding: 6px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-tab {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mid-grey);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-tab--active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(27,43,94,0.12);
}
.gallery-tab:hover:not(.gallery-tab--active) { color: var(--navy); }

.gallery-panel { display: none; }
.gallery-panel--active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--light-grey);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform 0.15s ease;
  z-index: 1;
  user-select: none;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.28); }
.lightbox-arrow:active { transform: translateY(-50%) scale(0.93); }
.lightbox-arrow--prev { left: 24px; }
.lightbox-arrow--next { right: 24px; }

@media (max-width: 600px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.7rem; }
  .lightbox-arrow--prev { left: 10px; }
  .lightbox-arrow--next { right: 10px; }
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section {
  padding: 90px 0;
  background: var(--white);
}
.reviews-section .section-eyebrow,
.reviews-section .section-title { text-align: center; }

.reviews-block { margin-top: 52px; }
.reviews-block--marine { margin-top: 60px; }

.reviews-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-grey);
  flex-wrap: wrap;
}
.reviews-block--marine .reviews-block-header { border-bottom-color: var(--teal); }

.reviews-division-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 5px 10px;
  border: 1px solid var(--light-grey);
}

.reviews-block-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.review-aggregate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.stars {
  color: #F4B942;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-aggregate span {
  font-size: 0.88rem;
  color: var(--mid-grey);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(26,140,122,0.1);
}

.review-stars {
  color: #F4B942;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card blockquote p {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--text-body);
  font-style: italic;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
  margin-top: auto;
}
.review-author::before { content: '— '; }

.marine-reviews-soon {
  background: var(--off-white);
  border: 2px dashed var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.marine-reviews-soon-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.marine-reviews-soon-inner > svg {
  width: 48px;
  height: 48px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.marine-reviews-soon-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.marine-reviews-soon-inner p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ── BOOK A SERVICE ──────────────────────────────────────── */
.book-section {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .book-inner { grid-template-columns: 1fr; }
}

.book-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.book-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  font-weight: 600;
}
.book-placeholder svg { width: 36px; height: 36px; flex-shrink: 0; }

.book-actions {
  text-align: center;
  flex-shrink: 0;
}
.book-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-top: 14px;
  line-height: 1.5;
  max-width: 240px;
  text-align: center;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: 90px 0;
  background: var(--off-white);
}
.contact-section .section-eyebrow,
.contact-section .section-title { text-align: center; }

.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 720px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card-logo {
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
.contact-card--caravan .contact-card-logo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.contact-card--marine .contact-card-logo {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
}
.contact-card-logo img {
  max-height: 95px;
  max-width: 280px;
  object-fit: contain;
}

.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  padding: 22px 28px 14px;
}

.contact-details {
  padding: 0 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
}
.contact-details li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-details li a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-details li a:hover { color: var(--teal); }

.contact-social {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn-arrow { width: 14px !important; height: 14px !important; opacity: 0.7; margin-left: auto; }
.social-btn-label { display: flex; flex-direction: column; line-height: 1.2; font-weight: 500; font-size: 0.82rem; }
.social-btn-label strong { font-size: 0.92rem; font-weight: 700; }

/* Full-width variant for contact cards */
.social-btn--full {
  width: 100%;
  padding: 13px 18px;
}

.social-btn--facebook {
  background: #1877F2;
  color: var(--white);
}
.social-btn--facebook:hover {
  background: #1462c8;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(24,119,242,0.4);
}

.social-btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.social-btn--instagram:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(220,39,67,0.35);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

.footer-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(27,43,94,0.4);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top:not([hidden]) { opacity: 1; pointer-events: auto; }
.scroll-top svg { width: 22px; height: 22px; color: var(--white); }
.scroll-top:hover {
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(26,140,122,0.45);
}

@media (max-width: 480px) {
  .scroll-top { bottom: 90px; right: 20px; width: 42px; height: 42px; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .services-header { flex-direction: column; gap: 16px; }
  .services-division-logo { height: 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .solar-content { flex-direction: column; }
  .marine-reviews-soon-inner { flex-direction: column; }
  .book-inner { gap: 32px; }
  .book-actions .btn { width: 100%; justify-content: center; }
  .gallery-tabs { max-width: 100%; }
  .gallery-tab { font-size: 0.85rem; padding: 10px 16px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .divisions,
  .services-section,
  .gallery-section,
  .reviews-section,
  .contact-section { padding: 64px 0; }
  .contact-details a { word-break: break-all; }
}

/* ── UK WIDE COVERAGE SIDE BADGE ─────────────────────────── */
.uk-side-badge {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  background: var(--teal);
  color: var(--white);
  border-radius: 0 12px 12px 0;
  padding: 22px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 4px 0 20px rgba(26,140,122,0.45);
  cursor: default;
  user-select: none;
  animation: side-badge-pulse 4s ease-in-out infinite;
}

.uk-side-badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.95;
}

.uk-side-badge-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

@keyframes side-badge-pulse {
  0%, 100% { box-shadow: 4px 0 20px rgba(26,140,122,0.45); }
  50%       { box-shadow: 4px 0 34px rgba(26,140,122,0.75); }
}

@media (max-width: 767px) {
  .uk-side-badge {
    top: auto;
    bottom: 28px;
    transform: none;
    padding: 14px 8px;
    gap: 7px;
    border-radius: 0 8px 8px 0;
  }
  .uk-side-badge-icon {
    width: 13px;
    height: 13px;
  }
  .uk-side-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}

/* ── PROMO BADGE ─────────────────────────────────────────── */
.promo-badge {
  position: fixed;
  right: 16px;
  top: 65%;
  transform: translateY(-50%);
  z-index: 997;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange) 55%, var(--orange-dark) 100%);
  border: 3px solid var(--teal-light);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,117,26,0.55);
  animation: promo-pulse 2.5s ease-in-out infinite;
  font-family: var(--font);
  padding: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-badge:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(232,117,26,0.75);
}

.promo-badge-text {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  pointer-events: none;
}

@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,117,26,0.55), 0 0 0 0 rgba(232,117,26,0.45); }
  50%       { box-shadow: 0 6px 28px rgba(232,117,26,0.7), 0 0 0 12px rgba(232,117,26,0); }
}

@media (max-width: 600px) {
  .promo-badge { width: 60px; height: 60px; right: 10px; }
  .promo-badge-text { font-size: 0.88rem; }
}

/* ── PROMO MODAL ─────────────────────────────────────────── */
.promo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-modal.open { display: flex; }

.promo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}

.promo-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  width: min(480px, 92vw);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
}

.promo-modal-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}

.promo-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
  line-height: 1;
}
.promo-modal-close:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

.promo-modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-modal-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.promo-modal-wa-btn:hover {
  background: #1eb557;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
}

.promo-code-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-code-label {
  font-size: 0.88rem;
  color: var(--mid-grey);
  font-weight: 500;
}
.promo-code-chip {
  background: var(--navy);
  color: var(--white);
  font-family: monospace;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 8px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  user-select: none;
}
.promo-code-chip:hover {
  background: var(--teal);
  transform: scale(1.04);
}
.promo-code-chip.copied {
  background: #25D366;
}

@media (max-width: 600px) {
  .promo-modal { padding: 16px; }
  .promo-modal-content { width: 100%; }
  .promo-modal-body { padding: 16px; }
  .promo-modal-wa-btn { padding: 18px 20px; font-size: 1.05rem; }
}
