/*
=============================================================
  DRIVE AUTO 1ST — style.css  v2.0
  Design System: Claymorphism + Vibrant Block (UI/UX Pro Max)
  Style: Friendly · Playful · Premium — NOT corporate
  Fonts: Fredoka (headings) · Nunito (body)
  Brand: #F93B50 red · #18212F navy · #FFD93D yellow accent
=============================================================
*/

/* Fonts loaded via <link> in header.php for non-blocking delivery */

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

:root {
  /* Brand */
  --red:        #F93B50;
  --red-d:      #d92a3d;
  --red-l:      rgba(249,59,80,0.10);
  --navy:       #18212F;
  --navy-l:     #2a3547;

  /* Primary blue palette */
  --blue:       #1565C0;
  --blue-d:     #0D47A1;
  --blue-l:     #EBF4FD;
  --blue-m:     rgba(21,101,192,0.12);
  --blue-bright:#2196F3;

  /* Fun accents */
  --yellow:     #FFD93D;
  --yellow-d:   #e8c01a;
  --yellow-l:   rgba(255,217,61,0.18);
  --mint:       #06D6A0;
  --sky:        #4ECDC4;
  --coral:      #FF6B6B;

  /* Surfaces */
  --white:      #ffffff;
  --cream:      #FFF9F5;        /* warm off-white — replaces cold #F2F3F8 */
  --cream-d:    #FFF0E8;
  --text:       #18212F;
  --muted:      #545C6B;
  --border:     rgba(24,33,47,0.09);

  /* Clay system */
  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  /* Clay shadows — offset, hard-edged, friendly */
  --shadow-sm:  3px 4px 0px rgba(24,33,47,0.10);
  --shadow:     5px 7px 0px rgba(24,33,47,0.10);
  --shadow-lg:  7px 10px 0px rgba(24,33,47,0.12);
  --shadow-xl: 10px 14px 0px rgba(24,33,47,0.12);

  /* Subtle glow for hover */
  --red-glow:   0 8px 28px rgba(249,59,80,0.30);
  --yellow-glow:0 8px 24px rgba(255,217,61,0.40);
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem);   font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.8; }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.65rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 18px; height: 3px;
  background: var(--blue); border-radius: 99px; flex-shrink: 0;
}

/* ── BUTTONS — pill-shaped clay style ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.15s ease,
              background 0.18s ease;
  white-space: nowrap; gap: 0.5rem;
  position: relative;
}
.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.btn:active { transform: translateY(2px) !important; }

.btn-primary {
  background: var(--yellow); color: var(--navy);
  border-color: var(--yellow-d);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--yellow-d); border-color: var(--yellow-d);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--yellow-glow);
}

.btn-outline-white {
  background: transparent; color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: white; color: var(--navy);
  border-color: white; transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-dark {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-outline-dark:hover {
  background: var(--navy); color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: white; color: var(--red);
  border-color: white;
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--yellow); color: var(--navy);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--yellow-glow);
}

.btn-yellow {
  background: var(--yellow); color: var(--navy);
  border-color: var(--yellow-d);
  box-shadow: var(--shadow);
}
.btn-yellow:hover {
  background: var(--yellow-d);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--yellow-glow);
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--blue-d);
  border-bottom: 3px solid rgba(255,217,61,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex; align-items: center;
  cursor: pointer; flex-shrink: 0;
  /* fallback text style if image fails to load */
  font-family: 'Fredoka', sans-serif;
  font-size: 1.45rem; font-weight: 700; color: white;
  letter-spacing: -0.01em;
}
.site-logo span { color: var(--yellow); }
.site-logo-img {
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block;
  object-fit: contain;
}
.site-logo:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; border-radius: 4px; }

/* Slightly smaller on mobile */
@media (max-width: 640px) {
  .site-logo-img { height: 36px !important; max-height: 36px !important; }
}

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 0; }
.site-nav a {
  font-family: 'Nunito', sans-serif; display: none;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.site-nav a:hover    { color: white; background: rgba(255,255,255,0.1); }
.site-nav a.active   { color: var(--yellow); }
.site-nav a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

/* Header quick links (Pricing, Book Now, hamburger) */
.header-right { display: flex; align-items: center; gap: 0.65rem; }
.header-quick-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85);
  text-decoration: none; padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.header-quick-link:hover,
.header-quick-link.active { color: var(--yellow); background: rgba(255,255,255,0.08); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.78rem; }
@media (max-width: 640px) { .header-right .btn { display: none; } }
.header-social { display: flex; align-items: center; gap: 0.5rem; }
.header-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.09);
  transition: color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
}
.header-social a:hover { color: white; background: var(--red); transform: scale(1.1); }
.header-social a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.header-social svg { width: 16px; height: 16px; fill: currentColor; }

.hamburger {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: white; cursor: pointer; padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s; flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger:focus-visible { outline: 2px solid var(--yellow); }
.hamburger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ── SLIDE-OUT NAV DRAWER ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1090;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100;
  width: 300px; max-width: 85vw;
  background: var(--navy);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
}
.nav-drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.08); border: none; border-radius: 50%;
  color: white; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.18); }
.drawer-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

.drawer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: white;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-logo span { color: var(--yellow); }

.drawer-nav {
  list-style: none; flex: 1; overflow-y: auto;
  padding: 0.75rem 0;
}
.drawer-nav li a {
  display: flex; align-items: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.8);
  padding: 0.9rem 1.75rem;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.drawer-nav li a:hover,
.drawer-nav li a.active {
  color: var(--yellow);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--yellow);
}

.drawer-footer {
  padding: 1.25rem 1.75rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.drawer-social {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s;
}
.drawer-social:hover { color: var(--yellow); }
.drawer-social svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

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

/* Animated gradient mesh background */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,217,61,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(13,71,161,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(33,150,243,0.15) 0%, transparent 60%),
    var(--blue);
  animation: hero-gradient 12s ease-in-out infinite alternate;
}
@keyframes hero-gradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Polka dot overlay on hero */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; padding: 5rem 0;
}

/* Floating blob decorations — injected as .hero-blob in PHP */
.hero-blob {
  position: absolute; z-index: 0;
  pointer-events: none; border-radius: 50%;
  filter: blur(0px);
}
.hero-blob-1 {
  width: 420px; height: 420px;
  background: rgba(255,217,61,0.14);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  top: -60px; right: -80px;
  animation: blob-float-1 14s ease-in-out infinite;
}
.hero-blob-2 {
  width: 280px; height: 280px;
  background: rgba(255,217,61,0.14);
  border-radius: 41% 59% 37% 63% / 43% 57% 43% 57%;
  bottom: -40px; left: 40%;
  animation: blob-float-2 18s ease-in-out infinite;
}
.hero-blob-3 {
  width: 180px; height: 180px;
  background: rgba(78,205,196,0.12);
  border-radius: 50%;
  top: 30%; left: 5%;
  animation: blob-float-3 10s ease-in-out infinite;
}
@keyframes blob-float-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-30px,40px) scale(1.08); }
  66%  { transform: translate(20px,-20px) scale(0.94); }
}
@keyframes blob-float-2 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(-40px,-30px) rotate(15deg) scale(1.1); }
}
@keyframes blob-float-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%  { transform: translate(20px,30px) scale(1.15); }
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { color: white; margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--yellow); }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.07rem; max-width: 500px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.95rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-badge:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.hero-badge svg { width: 14px; height: 14px; stroke: var(--yellow); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }

/* Hero image / right column */
.hero-image-wrap {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-xl), 0 0 0 6px rgba(255,217,61,0.08);
}
.hero-image-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: top center; }
.hero-img-placeholder {
  width: 100%; height: 420px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: rgba(255,255,255,0.35);
  font-family: 'Nunito', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.hero-img-placeholder svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1; opacity: 0.4; }

/* Yellow accent card on hero image */
.hero-image-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 2;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-image-badge-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.hero-image-badge-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 4rem; }
  .hero { min-height: auto; }
  .hero-image-wrap img, .hero-img-placeholder { height: 260px; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--blue);
  padding: 9rem 0 4.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(255,217,61,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(13,71,161,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 90%, rgba(33,150,243,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 80%, rgba(78,205,196,0.08) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.85rem; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto; font-size: 1.07rem; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero .eyebrow::before { background: var(--yellow); }

/* ── WAVY SECTION DIVIDER ── */
.wave-divider { display: block; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── SECTIONS ── */
.section { padding: 5.5rem 0; position: relative; overflow: hidden; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }
.section-mint  { background: var(--blue-l); }
.section-sky   { background: #EEF5FD; }
.section-yellow{ background: #FFFBE8; }
.section-blue  { background: var(--blue); color: white; }

/* Polka-dot section variant */
.section-dots {
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgba(249,59,80,0.07) 2px, transparent 2px);
  background-size: 26px 26px;
}
.section-dots-navy {
  background-color: var(--navy);
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
  background-size: 26px 26px;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 0.85rem; }

/* ── TRUST BADGES — colourful pill badges ── */
.trust-bar {
  background: var(--navy);
  border-bottom: 4px solid var(--yellow);
  padding: 1.4rem 0;
  position: relative; overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.trust-bar-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; flex-wrap: wrap;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  transition: background 0.2s, transform 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.trust-item svg { width: 16px; height: 16px; stroke: var(--yellow); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }

/* ── FEATURES GRID — clay cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: white;
  border: 2px solid rgba(24,33,47,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.2s ease,
              border-color 0.2s;
  cursor: default;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0; transition: opacity 0.2s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(249,59,80,0.2);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 54px; height: 54px;
  background: var(--red-l);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
  border: 2px solid rgba(249,59,80,0.15);
  transition: background 0.2s, transform 0.2s;
}
.feature-card:hover .feature-icon {
  background: var(--red);
  transform: rotate(-5deg) scale(1.05);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.feature-card:hover .feature-icon svg { stroke: white; }
.feature-card h3 { margin-bottom: 0.55rem; font-size: 1.1rem; }
.feature-card p  { font-size: 0.92rem; }

/* ── SPLIT SECTION ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.split-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(24,33,47,0.07);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.img-placeholder {
  min-height: 400px; background: var(--cream);
  border-radius: var(--radius-lg); border: 2px dashed rgba(24,33,47,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.img-placeholder svg { width: 36px; height: 36px; stroke: rgba(24,33,47,0.2); fill: none; stroke-width: 1.5; }
.split-content h2 { margin-bottom: 1.25rem; }
.split-content p  { margin-bottom: 1.25rem; }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── COVERAGE TAGS ── */
.coverage-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.coverage-tag {
  background: white;
  border: 2px solid rgba(24,33,47,0.09);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.coverage-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--red);
  color: var(--red);
}

/* ── STATS BAR — colourful & playful ── */
.stats-bar {
  background: var(--red);
  padding: 4rem 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px);
  background-size: 28px 28px;
}
/* Large decorative blob in stats */
.stats-bar::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: rgba(255,217,61,0.15);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
}
.stats-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; color: white;
  line-height: 1; margin-bottom: 0.4rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.15);
}
.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem; font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 640px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* ── PRICING CARDS — clay style ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; align-items: start;
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
}
.pricing-card {
  background: white;
  border: 2px solid rgba(24,33,47,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.2s ease, border-color 0.2s;
  position: relative;
  cursor: default;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,59,80,0.25);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured {
  border-color: var(--red);
  border-width: 3px;
  background: var(--navy);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured h3,
.pricing-card.featured .price { color: white; }
.pricing-card.featured .price { color: var(--yellow); }
.pricing-card.featured p,
.pricing-card.featured .pricing-includes li { color: rgba(255,255,255,0.65); }
.pricing-card.featured .pricing-includes li { border-color: rgba(255,255,255,0.1); }
.pricing-card.featured:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl), var(--red-glow); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy);
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 1.1rem; border-radius: var(--radius-pill);
  white-space: nowrap; box-shadow: var(--shadow-sm);
  border: 2px solid rgba(24,33,47,0.1);
}
.price {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.75rem; font-weight: 700; color: var(--red);
  line-height: 1; margin: 1rem 0 0.4rem;
}
.price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.75rem; }
.pricing-includes { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-includes li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.88rem; color: var(--muted);
  padding: 0.45rem 0; border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.pricing-includes li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  padding: 5.5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 2px, transparent 2px);
  background-size: 26px 26px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,217,61,0.15);
  border-radius: 50% 30% 60% 40% / 40% 50% 30% 60%;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin-bottom: 0.85rem; }
.cta-band p  { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ── REVIEWS — clay cards ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: white;
  border: 2px solid rgba(24,33,47,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 4rem; color: var(--red-l);
  line-height: 1;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.stars { color: var(--yellow); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.85rem; text-shadow: 1px 1px 0 rgba(24,33,47,0.1); }
.review-text { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.75; font-style: italic; position: relative; z-index: 1; }
.reviewer-name { font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); }
.review-source { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(24,33,47,0.07);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.news-card-img {
  height: 200px; overflow: hidden;
  background: var(--cream);
  position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img-ph {
  height: 200px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-d) 100%);
  display: flex; align-items: center; justify-content: center;
}
.news-card-img-ph svg { width: 44px; height: 44px; stroke: rgba(24,33,47,0.15); fill: none; stroke-width: 1.5; }
.news-card-body { padding: 1.5rem 1.5rem 1rem; flex: 1; }
.news-meta {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.76rem; color: var(--muted);
  font-family: 'Nunito', sans-serif; font-weight: 600;
  margin-bottom: 0.7rem;
}
.news-cat {
  background: var(--blue); color: white;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.65rem; border-radius: var(--radius-pill);
}
.news-card h3 { font-size: 1.05rem; line-height: 1.4; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; }
.news-card h3 a { transition: color 0.2s; cursor: pointer; }
.news-card h3 a:hover { color: var(--red); }
.news-card h3 a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.news-card p { font-size: 0.88rem; }
.news-card-footer { padding: 0 1.5rem 1.5rem; }
.read-more {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue); display: inline-flex; align-items: center; gap: 0.35rem;
  cursor: pointer; transition: gap 0.2s ease;
}
.read-more:hover { gap: 0.65rem; }
.read-more:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }
.read-more svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ── ARTICLE ── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.article-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--red); margin-bottom: 2.5rem; cursor: pointer;
  transition: gap 0.2s ease;
}
.article-back:hover { gap: 0.65rem; }
.article-back:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.article-back svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; transform: rotate(180deg); }
.article-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; font-weight: 600;
}
.article-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow-lg); }
.article-img img { width: 100%; max-height: 420px; object-fit: cover; }
.article-img-ph {
  height: 320px; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.article-body h2 { margin: 2.25rem 0 0.85rem; }
.article-body h3 { margin: 2rem 0 0.65rem; color: var(--red); font-size: 1.2rem; }
.article-body h4, .article-body h5 { margin: 1.75rem 0 0.5rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { color: var(--muted); margin-bottom: 0.4rem; line-height: 1.75; }
.article-body strong { color: var(--navy); }
.article-cta-box {
  background: var(--cream);
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem; margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}
.article-cta-box p { color: var(--text); margin: 0 0 1rem; }
.article-cta-box a { color: var(--red); font-weight: 700; }
.article-cta-box a:hover { text-decoration: underline; }

/* ── BOOKING FORM ── */
.booking-outer { padding: 4rem 0 6rem; background: var(--cream); }
.booking-outer {
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgba(249,59,80,0.06) 2px, transparent 2px);
  background-size: 26px 26px;
}
.booking-form-wrap {
  max-width: 800px; margin: 0 auto;
  background: white; border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-xl);
  border: 2px solid rgba(24,33,47,0.07);
}
.form-intro {
  background: var(--cream); border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; margin-bottom: 2rem;
  font-size: 0.9rem; color: var(--muted); font-weight: 600;
}
.form-intro a { color: var(--red); font-weight: 700; }
.form-intro a:hover { text-decoration: underline; }
.form-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--cream);
  margin: 2.25rem 0 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; font-weight: 800; color: var(--navy); letter-spacing: 0.01em;
}
label .req { color: var(--red); margin-left: 2px; }
input, select, textarea {
  width: 100%; padding: 0.8rem 1.1rem;
  border: 2px solid rgba(24,33,47,0.1); border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: text;
}
select { cursor: pointer; }
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(249,59,80,0.10);
}
textarea { resize: vertical; min-height: 90px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--cream); border: 2px solid rgba(24,33,47,0.08);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.checkbox-label:hover { border-color: var(--red); background: rgba(249,59,80,0.04); }
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; border-radius: 4px;
  accent-color: var(--red); cursor: pointer;
  flex-shrink: 0; margin-top: 2px; padding: 0; border: none; box-shadow: none;
}
.checkbox-label span { font-size: 0.88rem; color: var(--muted); line-height: 1.6; font-weight: 600; }
.form-submit { margin-top: 2rem; }
.form-submit .btn { width: 100%; padding: 1rem; font-size: 0.92rem; }
#formSuccess {
  display: none; background: #edf7ee; border: 2px solid #6ac87a;
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  margin-top: 1.5rem; color: #1d7a2e;
  font-family: 'Nunito', sans-serif; font-weight: 700;
}
#formError {
  display: none; background: rgba(249,59,80,0.06); border: 2px solid rgba(249,59,80,0.3);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  margin-top: 1.5rem; color: var(--red);
  font-family: 'Nunito', sans-serif; font-weight: 700;
}
@media (max-width: 600px) {
  .booking-form-wrap { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon-wrap {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--red-l); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(249,59,80,0.15);
  box-shadow: var(--shadow-sm);
}
.contact-icon-wrap svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.25rem;
}
.contact-item-value { font-size: 1.02rem; font-weight: 700; color: var(--navy); font-family: 'Nunito', sans-serif; }
.contact-item-value a { color: var(--red); transition: color 0.2s; }
.contact-item-value a:hover { text-decoration: underline; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-box {
  background: white; border: 2px solid rgba(24,33,47,0.07);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-box h3 { margin-bottom: 0.85rem; font-size: 1.1rem; }
.contact-box p { font-size: 0.9rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── PRICING FAQ BOXES ── */
.faq-box {
  background: white; border: 2px solid rgba(24,33,47,0.07);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-box:hover { box-shadow: var(--shadow); border-color: rgba(249,59,80,0.2); }
.faq-box h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.faq-box p  { margin: 0; font-size: 0.92rem; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 0.85rem;
}
.footer-logo span { color: var(--yellow); }
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; color: rgba(255,255,255,0.55); }
.footer-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s; cursor: pointer; font-weight: 600;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-links a:focus-visible { outline: 1px dashed var(--yellow); outline-offset: 2px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-row { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; font-weight: 600; }
.footer-contact-row svg { width: 15px; height: 15px; stroke: var(--yellow); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s; cursor: pointer;
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); transform: scale(1.1) rotate(-5deg); }
.footer-social a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bar {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.82rem;
  font-family: 'Nunito', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.footer-bar a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-bar a:hover { color: var(--yellow); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-bar { flex-direction: column; text-align: center; } }

/* ── GALLERY CAROUSEL ── */
.gallery-track-wrap { position: relative; }
.gallery-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 0 2rem;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 0.75rem);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: white; color: var(--navy);
  border: none; border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s, transform 0.2s;
}
.gallery-arrow:hover { background: var(--yellow); transform: translateY(-50%) scale(1.08); }
.gallery-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }
.gallery-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.25rem;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(24,33,47,0.18);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.gallery-dot.active { background: var(--blue); transform: scale(1.4); }
@media (max-width: 768px) {
  .gallery-item { flex: 0 0 calc(75% - 0.5rem); }
  .gallery-arrow { display: none; }
}
@media (max-width: 480px) {
  .gallery-item { flex: 0 0 calc(88% - 0.5rem); }
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
}
.lb-overlay.open { display: flex; }
.lb-img {
  max-width: 92vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}
.lb-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; color: white;
  font-size: 2.25rem; line-height: 1; cursor: pointer;
  opacity: 0.7; transition: opacity 0.2s; padding: 0.25rem;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white; border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.25); }
.lb-nav svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}

/* ── WHATSAPP FLOAT — bigger + bouncier ── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  cursor: pointer;
  animation: wa-pulse 3s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: var(--shadow-lg), 0 0 0 10px rgba(37,211,102,0); }
}
.wa-float:hover { transform: scale(1.15) rotate(8deg); }
.wa-float:focus-visible { outline: 3px solid #25D366; outline-offset: 3px; }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }

/* ── SKELETON LOADER ── */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, rgba(249,59,80,0.06) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════
   MOBILE — comprehensive overrides
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Tighter section spacing */
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.25rem; }
  .cta-band { padding: 3.5rem 0; }

  /* Page hero (inner pages) — was 9rem top */
  .page-hero { padding: 6rem 0 2.75rem; }

  /* Features: single column on tablets too */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* News grid: prevent 310px cards from squashing */
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  /* Compact section spacing */
  .section { padding: 2.75rem 0; }
  .section-header { margin-bottom: 1.75rem; }
  .cta-band { padding: 2.75rem 0; }
  .page-hero { padding: 5.5rem 0 2.25rem; }

  /* Single column everything */
  .features-grid { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  /* Hide decorative blobs/dots in sections — reduce noise on small screens */
  .deco { display: none !important; }

  /* Shrink hero blobs so they don't dominate the background */
  .hero-blob-1 { width: 180px; height: 180px; top: -20px; right: -30px; }
  .hero-blob-2 { width: 130px; height: 130px; }
  .hero-blob-3 { width: 90px;  height: 90px; }

  /* Trust bar — keep items from wrapping too messily */
  .trust-bar-inner { gap: 0.4rem; justify-content: flex-start; padding: 0 0.25rem; }
  .trust-item { font-size: 0.72rem; padding: 0.35rem 0.75rem; }

  /* Hero image */
  .hero-image-wrap { max-width: 300px !important; }
  .hero-image-wrap img { height: auto; }

  /* Pill badge on hero — tuck in so it doesn't overflow */
  .hero-inner > div:last-child > div[style*="top:-18px"] {
    top: -12px; right: -4px; font-size: 0.7rem; padding: 0.3rem 0.65rem;
  }

  /* Section headers */
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1.1rem; }

  /* Booking form */
  .booking-form-wrap { padding: 1.5rem 1rem; }

  /* CTA band buttons stack nicely */
  .cta-band .container > div { flex-direction: column; align-items: center; }
}

/* ── COLOURED FEATURE CARD ICONS ── */
.feature-card:nth-child(1) .feature-icon { background: var(--red-l); border-color: rgba(249,59,80,0.15); }
.feature-card:nth-child(1) .feature-icon svg { stroke: var(--red); }
.feature-card:nth-child(2) .feature-icon { background: rgba(6,214,160,0.12); border-color: rgba(6,214,160,0.2); }
.feature-card:nth-child(2) .feature-icon svg { stroke: var(--mint); }
.feature-card:nth-child(3) .feature-icon { background: rgba(78,205,196,0.12); border-color: rgba(78,205,196,0.2); }
.feature-card:nth-child(3) .feature-icon svg { stroke: var(--sky); }
.feature-card:nth-child(4) .feature-icon { background: rgba(255,107,107,0.12); border-color: rgba(255,107,107,0.2); }
.feature-card:nth-child(4) .feature-icon svg { stroke: var(--coral); }
.feature-card:nth-child(5) .feature-icon { background: rgba(255,217,61,0.18); border-color: rgba(255,217,61,0.3); }
.feature-card:nth-child(5) .feature-icon svg { stroke: #c8960a; }
.feature-card:nth-child(6) .feature-icon { background: rgba(6,214,160,0.12); border-color: rgba(6,214,160,0.2); }
.feature-card:nth-child(6) .feature-icon svg { stroke: var(--mint); }
/* Hover: all flip to their respective colour bg + white stroke */
.feature-card:nth-child(1):hover .feature-icon { background: var(--red); border-color: var(--red); }
.feature-card:nth-child(2):hover .feature-icon { background: var(--mint); border-color: var(--mint); }
.feature-card:nth-child(3):hover .feature-icon { background: var(--sky); border-color: var(--sky); }
.feature-card:nth-child(4):hover .feature-icon { background: var(--coral); border-color: var(--coral); }
.feature-card:nth-child(5):hover .feature-icon { background: var(--yellow); border-color: var(--yellow); }
.feature-card:nth-child(6):hover .feature-icon { background: var(--mint); border-color: var(--mint); }
.feature-card:nth-child(5):hover .feature-icon svg { stroke: var(--navy); }

/* Coloured top border per card */
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--mint), var(--sky)); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, var(--sky), var(--mint)); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, var(--coral), var(--yellow)); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, var(--yellow), var(--coral)); }
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, var(--mint), var(--red)); }

/* ── DECORATIVE HELPERS ── */
.deco { position: absolute; pointer-events: none; z-index: 0; }

@keyframes blob-drift {
  0%, 100% { transform: scale(1) translate(0,0); border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; }
  33%       { transform: scale(1.06) translate(14px,-12px); border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%; }
  66%       { transform: scale(0.96) translate(-10px,16px); border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
}
.deco-blob {
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  animation: blob-drift 10s ease-in-out infinite;
}
.deco-blob.yellow { background: var(--yellow); opacity: 0.22; }
.deco-blob.mint   { background: var(--mint);   opacity: 0.15; animation-duration: 13s; animation-direction: reverse; }
.deco-blob.sky    { background: var(--sky);    opacity: 0.15; animation-duration: 11s; }
.deco-blob.coral  { background: var(--coral);  opacity: 0.13; animation-duration: 14s; animation-direction: reverse; }

/* ── COLOURFUL REVIEW CARDS ── */
.review-card:nth-child(3n+1) { border-top: 4px solid var(--red); }
.review-card:nth-child(3n+2) { border-top: 4px solid var(--mint); }
.review-card:nth-child(3n)   { border-top: 4px solid var(--yellow); }
.review-card:nth-child(3n+1)::before { color: rgba(249,59,80,0.12); }
.review-card:nth-child(3n+2)::before { color: rgba(6,214,160,0.15); }
.review-card:nth-child(3n)::before   { color: rgba(255,217,61,0.2); }

/* ── COLOURFUL CONTACT ICON WRAPS ── */
.contact-item:nth-child(1) .contact-icon-wrap { background: rgba(249,59,80,0.1); border-color: rgba(249,59,80,0.15); }
.contact-item:nth-child(1) .contact-icon-wrap svg { stroke: var(--red); }
.contact-item:nth-child(2) .contact-icon-wrap { background: rgba(78,205,196,0.12); border-color: rgba(78,205,196,0.2); }
.contact-item:nth-child(2) .contact-icon-wrap svg { stroke: var(--sky); }
.contact-item:nth-child(3) .contact-icon-wrap { background: rgba(6,214,160,0.12); border-color: rgba(6,214,160,0.2); }
.contact-item:nth-child(3) .contact-icon-wrap svg { stroke: var(--mint); }
.contact-item:nth-child(4) .contact-icon-wrap { background: rgba(255,217,61,0.18); border-color: rgba(255,217,61,0.3); }
.contact-item:nth-child(4) .contact-icon-wrap svg { stroke: #c8960a; }

/* ── COLOURFUL CONTACT BOXES ── */
.contact-box:nth-child(1) { border-top: 4px solid var(--red); }
.contact-box:nth-child(2) { border-top: 4px solid var(--mint); }
.contact-box:nth-child(3) { border-top: 4px solid var(--yellow); }

/* ── COLOURFUL COVERAGE TAGS ── */
.coverage-tag:nth-child(4n+1):hover { border-color: var(--red);   color: var(--red); }
.coverage-tag:nth-child(4n+2):hover { border-color: var(--mint);  color: #047a5b; }
.coverage-tag:nth-child(4n+3):hover { border-color: var(--sky);   color: #1a8c88; }
.coverage-tag:nth-child(4n):hover   { border-color: var(--coral); color: var(--coral); }

/* ── COLOURFUL NEWS CARD CATEGORIES ── */
.news-card:nth-child(4n+1) .news-cat { background: var(--red); }
.news-card:nth-child(4n+2) .news-cat { background: var(--mint); }
.news-card:nth-child(4n+3) .news-cat { background: var(--sky); color: var(--navy); }
.news-card:nth-child(4n)   .news-cat { background: var(--coral); }

/* ── STATS BAR LEFT BLOB ── */
.stats-bar::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px),
    radial-gradient(ellipse 30% 60% at 5% 50%, rgba(6,214,160,0.12) 0%, transparent 70%);
  background-size: 28px 28px, 100% 100%;
}
