/* =====================================================
   Ride Right Now — Main Stylesheet v2.0
   Single consolidated file — no duplicate media queries
   Skrp Holdings Pty Ltd · Trading as Ride Right Now
   ===================================================== */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #080808;
  --deep:       #0e0e0e;
  --charcoal:   #161616;
  --card:       #141414;
  --border:     rgba(201,168,76,0.18);
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim:   rgba(201,168,76,0.08);
  --offwhite:   #f0ebe3;
  --muted:      #6b6258;
  --muted2:     #4a4540;
  --text:       #cdc8c0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* Cursor hidden until JS confirms it's active */
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button { cursor: none; }

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 900;
  opacity: 0.7;
}

/* ===== CUSTOM CURSOR ===== */
.cursor { position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot  { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translate(-50%,-50%); transition: transform 0.1s; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%; transform: translate(-50%,-50%); transition: all 0.18s ease; opacity: 0.6; }

/* ===== VISIBILITY HELPERS ===== */
.desktop-only { display: block; }
.mobile-only  { display: none; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 0 clamp(20px,5vw,80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled { background: rgba(8,8,8,0.95); backdrop-filter: blur(12px); border-color: var(--border); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.nav-logo-icon svg { width: 17px; height: 17px; fill: var(--gold); }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.14em; color: var(--offwhite); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--offwhite); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book { background: var(--gold) !important; color: var(--black) !important; padding: 9px 20px !important; letter-spacing: 0.15em !important; transition: background 0.2s !important; }
.nav-book:hover { background: var(--gold-light) !important; }
.nav-book::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 810; position: relative; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--offwhite); transition: all 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 795; flex-direction: column; align-items: center; justify-content: center; gap: 40px; }
.mobile-menu.open { display: flex; animation: menuFadeIn 0.35s ease both; }
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes menuFadeOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-8px) scale(0.98); }
}
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; letter-spacing: 0.1em; color: var(--offwhite); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--gold); color: var(--black); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; padding: 15px 36px; transition: background 0.2s, transform 0.2s; text-decoration: none; border: none; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { display: inline-block; border: 1px solid var(--border); color: var(--offwhite); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; padding: 15px 36px; transition: border-color 0.2s, color 0.2s; text-decoration: none; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 clamp(20px,6vw,100px);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #080808 0%, #0c0c0c 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 680px; padding-top: 72px; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 16px; animation: fadeUp 0.8s 0.2s both; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.8rem,9vw,9rem); font-weight: 300; line-height: 0.92; letter-spacing: -0.01em; animation: fadeUp 0.9s 0.35s both; }
.hero-h1 strong { font-weight: 600; color: var(--gold); display: block; }
.hero-h1 em { font-style: italic; color: var(--offwhite); }
.hero-sub { margin-top: 24px; font-size: clamp(0.9rem,1.3vw,1.05rem); font-weight: 300; color: var(--text); max-width: 460px; line-height: 1.8; animation: fadeUp 0.9s 0.5s both; }
.hero-ctas { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.9s 0.8s both; }
.hero-stats { position: absolute; right: clamp(20px,6vw,100px); bottom: 80px; display: flex; gap: 48px; animation: fadeUp 0.9s 0.9s both; }
.stat { text-align: right; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--gold); line-height: 1; }
.stat-km { font-size: 1.4rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.hero-scroll { position: absolute; bottom: 40px; left: clamp(20px,6vw,100px); display: flex; align-items: center; gap: 12px; animation: fadeUp 1s 1s both; }
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted2); }
.scroll-line { width: 48px; height: 1px; background: var(--muted2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold); animation: scrollLine 2s 1.5s infinite; }
@keyframes scrollLine { to { left: 100%; } }

/* Hero animated SVG car */
.hero-anim-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-car-svg { position: absolute; right: -60px; bottom: 60px; width: clamp(500px,60vw,860px); opacity: 0.2; animation: carFloat 6s ease-in-out infinite; }
@keyframes carFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.ground-glow { animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.headlight-beam { animation: beamPulse 2s ease-in-out infinite; }
@keyframes beamPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero-particles { position: absolute; inset: 0; }
.particle { position: absolute; border-radius: 50%; background: var(--gold); animation: particleDrift linear infinite; opacity: 0; }
.p1 { width:3px; height:3px; left:72%; bottom:30%; animation-duration:7s; animation-delay:0s; }
.p2 { width:2px; height:2px; left:65%; bottom:20%; animation-duration:9s; animation-delay:1.5s; }
.p3 { width:4px; height:4px; left:78%; bottom:40%; animation-duration:6s; animation-delay:3s; }
.p4 { width:2px; height:2px; left:60%; bottom:50%; animation-duration:8s; animation-delay:0.8s; }
.p5 { width:3px; height:3px; left:82%; bottom:25%; animation-duration:10s; animation-delay:2s; }
.p6 { width:2px; height:2px; left:70%; bottom:60%; animation-duration:7s; animation-delay:4s; }
@keyframes particleDrift { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.3; } 100% { transform: translateY(-120px) translateX(20px); opacity: 0; } }

/* Hero quick form — desktop */
.hero-quick-form { margin-top: 36px; position: relative; z-index: 10; max-width: 660px; animation: fadeUp 0.9s 0.65s both; }
.hqf-fields { display: grid; grid-template-columns: 1fr 1fr 140px 140px; gap: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.35); backdrop-filter: blur(8px); }
.hqf-field { display: flex; flex-direction: column; border-right: 1px solid rgba(201,168,76,0.15); padding: 12px 16px; }
.hqf-field:last-child { border-right: none; }
.hqf-field label { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.hqf-field input { background: none; border: none; outline: none; color: var(--offwhite); font-family: 'DM Sans', sans-serif; font-size: 0.88rem; padding: 0; }
.hqf-field input::placeholder { color: var(--muted); font-size: 0.82rem; }
.hqf-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--black); border: none; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 28px; white-space: nowrap; margin-top: 12px; height: 46px; width: 100%; transition: background 0.2s; text-decoration: none; }
.hqf-btn:hover { background: var(--gold-light); }
.hqf-btn svg { width: 16px; height: 16px; fill: var(--black); }

/* Hero mobile CTAs */
.hero-mobile-ctas { display: none; flex-direction: column; gap: 12px; margin-top: 32px; width: 100%; }
.hero-mobile-ctas .btn-primary,
.hero-mobile-ctas .btn-outline { width: 100%; text-align: center; padding: 18px; font-size: 0.82rem; display: block; }

/* ===== BOTTOM SHEET ===== */
.sheet-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000; backdrop-filter: blur(4px); }
.sheet-overlay.active { display: block; }
.bottom-sheet { position: fixed; bottom: 0; left: 0; right: 0; background: #111; border-top: 1px solid var(--gold); border-radius: 20px 20px 0 0; z-index: 1001; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.32,0.72,0,1); padding-bottom: max(32px, env(safe-area-inset-bottom)); max-height: 92vh; overflow-y: auto; }
.bottom-sheet.open { transform: translateY(0); }
.sheet-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 12px auto 0; }
.sheet-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px 12px; border-bottom: 1px solid var(--border); }
.sheet-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; }
.sheet-close { background: none; border: none; color: var(--muted); font-size: 1.1rem; padding: 4px 8px; line-height: 1; }
.sheet-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.sheet-field { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sheet-field label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.sheet-field input,
.sheet-field select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 4px; color: var(--offwhite); font-family: 'DM Sans', sans-serif; font-size: 1rem; padding: 14px 16px; outline: none; -webkit-appearance: none; transition: border-color 0.2s; }
.sheet-field input:focus, .sheet-field select:focus { border-color: var(--gold); }
.sheet-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.sheet-field select option { background: #111; }
.sheet-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sheet-submit { display: block; width: 100%; text-align: center; padding: 18px; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; background: var(--gold); color: var(--black); text-decoration: none; border-radius: 4px; margin-top: 4px; transition: background 0.2s; }
.sheet-submit:hover { background: var(--gold-light); }

/* ===== FIXED MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(10,10,10,0.97); border-top: 1px solid var(--border); backdrop-filter: blur(12px); padding: 12px 20px; padding-bottom: max(12px, env(safe-area-inset-bottom)); flex-direction: row; align-items: center; gap: 12px; }
.mbb-phone { display: flex; align-items: center; gap: 8px; color: var(--offwhite); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; border: 1px solid var(--border); padding: 12px 16px; flex: 1; justify-content: center; transition: border-color 0.2s; }
.mbb-phone:hover { border-color: var(--gold); }
.mbb-phone svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.mbb-book { flex: 2; background: var(--gold); color: var(--black); border: none; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 14px 20px; transition: background 0.2s; }
.mbb-book:hover { background: var(--gold-light); }

/* ===== SERVICES STRIP ===== */
.services-strip { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px clamp(20px,6vw,100px); display: flex; }
.strip-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding: 0 24px; border-right: 1px solid var(--border); white-space: nowrap; }
.strip-item:last-child { border-right: none; }
.strip-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: clamp(80px,10vw,140px) clamp(20px,6vw,100px); }
.section-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,5vw,5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 60px; }
.section-h2 em { color: var(--gold); font-style: italic; }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.why-card { background: var(--card); padding: 44px 36px; transition: background 0.3s; }
.why-card:hover { background: #1a1a1a; }
.why-icon { width: 44px; height: 44px; border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 28px; }
.why-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; }
.why-text { font-size: 0.88rem; line-height: 1.8; color: var(--text); font-weight: 300; }

/* ===== HOW IT WORKS ===== */
/* ===== HOW IT WORKS ===== */
.hiw-section { background: var(--deep); border-top: 1px solid var(--border); }
.hiw-grid { display: flex; align-items: flex-start; position: relative; }

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 36px;
  position: relative;
  transition: opacity 0.4s ease;
}
.hiw-step:first-child { padding-left: 0; }
.hiw-step:last-child  { padding-right: 0; }

/* Step number — big, low contrast by default, lights up when active */
.hiw-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(201,168,76,0.15);
  transition: color 0.5s ease, text-shadow 0.5s ease;
}
.hiw-step.hiw-active .hiw-num {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201,168,76,0.5);
}

/* Icon box */
.hiw-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}
.hiw-icon svg { width: 22px; height: 22px; fill: var(--muted); transition: fill 0.5s ease; }
.hiw-step.hiw-active .hiw-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 24px rgba(201,168,76,0.15);
}
.hiw-step.hiw-active .hiw-icon svg { fill: var(--gold); }

.hiw-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.5s ease;
}
.hiw-step.hiw-active h3 { color: var(--offwhite); }

.hiw-step p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--muted2);
  font-weight: 300;
  transition: color 0.5s ease;
}
.hiw-step.hiw-active p { color: var(--text); }

.hiw-step-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  border: 1px solid var(--border);
  padding: 5px 12px;
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  transition: color 0.5s ease, border-color 0.5s ease;
}
.hiw-step.hiw-active .hiw-step-tag {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}

/* Connector with animated fill */
.hiw-connector {
  width: 80px;
  flex-shrink: 0;
  margin-top: 88px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-connector::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
}
.hiw-connector-fill {
  position: absolute;
  top: 50%; left: 0;
  height: 1px;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.8);
  transform: translateY(-50%);
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.hiw-connector-fill.filled { width: 100%; }
.hiw-connector-arrow {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  color: var(--muted2);
  background: var(--deep);
  padding: 0 4px;
  transition: color 0.5s ease;
}
.hiw-connector.hiw-conn-active .hiw-connector-arrow { color: var(--gold); }

/* ===== PHOTO STRIP ===== */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 280px; }
.photo-strip-item { background-size: cover; background-position: center; filter: grayscale(30%) brightness(0.7); transition: filter 0.4s, transform 0.4s; overflow: hidden; }
.photo-strip-item:hover { filter: grayscale(0%) brightness(0.85); transform: scale(1.02); z-index: 1; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px clamp(20px,6vw,100px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px; }
.trust-item svg { width: 28px; height: 28px; fill: var(--gold); flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 0.82rem; font-weight: 500; color: var(--offwhite); letter-spacing: 0.04em; }
.trust-item span { font-size: 0.72rem; color: var(--muted); }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ===== COVERAGE ===== */
.coverage { padding: clamp(60px,8vw,120px) clamp(20px,6vw,100px); background: var(--deep); border-top: 1px solid var(--border); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coverage-map { position: relative; aspect-ratio: 1; max-width: 480px; }
.map-circle-outer { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(201,168,76,0.15); animation: pulse 3s infinite; }
.map-circle-mid  { position: absolute; inset: 15%; border-radius: 50%; border: 1px solid rgba(201,168,76,0.12); animation: pulse 3s 0.5s infinite; }
.map-circle-inner{ position: absolute; inset: 30%; border-radius: 50%; border: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.04); }
.map-dot   { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 20px rgba(201,168,76,0.5); }
.map-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,18px); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.map-radius{ position: absolute; top: 8%; left: 50%; transform: translateX(-50%); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.coverage-text p { font-size: 0.95rem; line-height: 1.8; color: var(--text); font-weight: 300; margin-bottom: 20px; }
.coverage-points { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.coverage-point { display: flex; align-items: center; gap: 14px; font-size: 0.82rem; color: var(--text); }
.coverage-point::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--deep); border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.tcard { background: var(--card); border: 1px solid var(--border); padding: 36px 32px; display: flex; flex-direction: column; gap: 20px; transition: border-color 0.3s; }
.tcard:hover { border-color: rgba(201,168,76,0.45); }
.tcard-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }
.tcard-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; line-height: 1.7; color: var(--offwhite); font-weight: 300; flex: 1; }
.tcard-attr { display: flex; align-items: center; gap: 14px; }
.tcard-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border); display: grid; place-items: center; font-size: 0.65rem; letter-spacing: 0.08em; color: var(--gold); flex-shrink: 0; }
.tcard-attr strong { display: block; font-size: 0.82rem; font-weight: 500; }
.tcard-attr span { font-size: 0.7rem; color: var(--muted); }

/* ===== PRICING ===== */
.pricing-section { background: var(--black); border-top: 1px solid var(--border); padding: clamp(60px,8vw,120px) clamp(20px,6vw,100px); }
.pricing-note { font-size: 0.82rem; color: var(--muted); margin-top: -40px; margin-bottom: 52px; max-width: 560px; line-height: 1.7; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); padding: 40px 32px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.3s, transform 0.3s; }
.pricing-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.pricing-card--gold { border-color: rgba(201,168,76,0.5); background: #111; }
.pricing-badge { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 4px 12px; display: inline-block; margin-bottom: 8px; width: fit-content; }
.pricing-vehicle { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; }
.pricing-eg { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-price { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--muted); margin-top: 16px; letter-spacing: 0.05em; }
.pricing-price span { font-size: 3.5rem; color: var(--offwhite); line-height: 1; }
.pricing-per { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 12px 0 24px; flex: 1; }
.pricing-list li { font-size: 0.82rem; color: var(--text); display: flex; align-items: center; gap: 10px; }
.pricing-list li::before { content: ''; width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; }
.pricing-card .btn-primary { text-align: center; }

/* ===== FAQ ===== */
.faq-section { border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--offwhite); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 400; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }
.faq-a p { font-size: 0.9rem; line-height: 1.8; color: var(--text); font-weight: 300; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: clamp(120px,15vw,180px) clamp(20px,6vw,100px) clamp(60px,8vw,100px); background: linear-gradient(180deg, var(--deep) 0%, var(--black) 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.page-hero-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,7vw,7rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.01em; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { margin-top: 24px; font-size: 1rem; color: var(--text); font-weight: 300; max-width: 500px; line-height: 1.8; }

/* ===== FLEET ===== */
.fleet-section { padding: clamp(60px,8vw,120px) clamp(20px,6vw,100px); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 24px; }
.fleet-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.fleet-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.fleet-card-img { height: 220px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.fleet-card-img svg { width: 200px; transition: transform 0.4s; }
.fleet-card:hover .fleet-card-img svg { transform: translateX(8px); }
.fleet-card-img-label { position: absolute; top: 16px; left: 16px; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 5px 12px; }
.fleet-card-body { padding: 28px 28px 32px; }
.fleet-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 8px; }
.fleet-card-eg { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.fleet-card-text { font-size: 0.86rem; line-height: 1.8; color: var(--text); font-weight: 300; margin-bottom: 20px; }
.fleet-specs { display: flex; gap: 20px; flex-wrap: wrap; }
.spec { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--muted); }
.spec svg { width: 12px; height: 12px; fill: var(--gold); }

/* ===== SERVICES LIST ===== */
.services-list-section { padding: 0 clamp(20px,6vw,100px) clamp(60px,8vw,120px); }
.service-row { border-top: 1px solid var(--border); padding: 36px 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 32px; transition: background 0.2s; margin: 0 -20px; }
.service-row:hover { background: rgba(201,168,76,0.02); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--muted2); letter-spacing: 0.1em; padding-top: 4px; }
.service-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 10px; }
.service-content p { font-size: 0.88rem; line-height: 1.8; color: var(--text); font-weight: 300; max-width: 560px; }
.service-arrow { width: 40px; height: 40px; border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; transition: border-color 0.2s, background 0.2s; margin-top: 4px; text-decoration: none; }
.service-arrow svg { width: 14px; height: 14px; fill: var(--gold); }
.service-row:hover .service-arrow { border-color: var(--gold); background: var(--gold-dim); }

/* ===== BOOKING ===== */
.booking-section { padding: clamp(120px,15vw,180px) clamp(20px,6vw,100px) clamp(60px,8vw,120px); }
.booking-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.booking-form-wrap { background: var(--card); border: 1px solid var(--border); padding: clamp(28px,4vw,52px); }
.booking-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 8px; }
.booking-form-wrap .sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--offwhite); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; padding: 13px 16px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--charcoal); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-divider { display: flex; align-items: center; gap: 14px; margin: 8px 0 24px; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted2); }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-submit { width: 100%; background: var(--gold); color: var(--black); font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; padding: 16px; border: none; transition: background 0.2s; margin-top: 8px; }
.btn-submit:hover { background: var(--gold-light); }
.booking-success { display: none; text-align: center; padding: 48px 0; }
.booking-success .check { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 24px; color: var(--gold); }
.booking-success .check svg { width: 22px; height: 22px; }
.booking-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 12px; }
.booking-success p { font-size: 0.88rem; color: var(--text); line-height: 1.8; }
.booking-success a { color: var(--gold); }
.booking-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--card); border: 1px solid var(--border); padding: 28px; }
.sidebar-card--gold { background: var(--gold-dim); border-color: rgba(201,168,76,0.3); }
.sidebar-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sidebar-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-list li { list-style: none; display: flex; align-items: flex-start; gap: 12px; font-size: 0.82rem; line-height: 1.6; color: var(--text); font-weight: 300; }
.sidebar-list li::before { content: ''; width: 16px; height: 1px; background: var(--gold); margin-top: 10px; flex-shrink: 0; }
.sidebar-note { font-size: 0.75rem; color: var(--muted); line-height: 1.7; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.sidebar-note a { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-section { padding: clamp(120px,15vw,180px) clamp(20px,6vw,100px) clamp(60px,8vw,120px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,5vw,5rem); font-weight: 300; line-height: 0.95; margin-bottom: 24px; }
.contact-info h1 em { color: var(--gold); font-style: italic; }
.contact-info p { font-size: 0.95rem; line-height: 1.8; color: var(--text); font-weight: 300; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 6px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.contact-item-value { font-size: 0.95rem; color: var(--offwhite); }
.contact-item-value a { color: var(--offwhite); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--card); border: 1px solid var(--border); padding: clamp(28px,4vw,52px); }
.contact-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 24px; }

/* ===== FOOTER ===== */
footer { background: var(--deep); border-top: 1px solid var(--border); padding: clamp(40px,6vw,80px) clamp(20px,6vw,100px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand .nav-logo { margin-bottom: 20px; display: inline-flex; }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; color: var(--muted); font-weight: 300; max-width: 280px; }
.footer-col h5 { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--offwhite); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.7rem; color: var(--muted2); letter-spacing: 0.08em; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* =======================================================
   SINGLE CONSOLIDATED MOBILE BLOCK — max-width: 768px
   Everything mobile lives here and nowhere else.
   ======================================================= */

/* Hide cursor on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

@media (max-width: 768px) {

  /* Visibility helpers */
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
  .hero-mobile-ctas { display: flex !important; }

  /* Body padding for fixed bottom bar */
  body { padding-bottom: 76px; }

  /* Show bottom bar */
  .mobile-bottom-bar { display: flex; }

  /* ── NAV ── */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* ── HERO ── */
  .hero { min-height: 100svh; padding: 88px 20px 48px; flex-direction: column; justify-content: flex-start; align-items: flex-start; }
  .hero-content { padding-top: 0; width: 100%; z-index: 10; }
  .hero-h1 { font-size: clamp(2.8rem,12vw,4.2rem); line-height: 0.95; }
  .hero-eyebrow { font-size: 0.62rem; margin-bottom: 20px; }
  .hero-sub { font-size: 0.88rem; max-width: 100%; margin-top: 16px; }
  .hero-anim-bg { display: none; }
  .hero-stats { position: static; display: flex; flex-direction: row; gap: 28px; margin-top: 32px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .stat { text-align: left; flex-shrink: 0; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.6rem; }
  .hero-scroll { display: none; }

  /* ── SERVICES STRIP ── */
  .services-strip { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
  .strip-item { padding: 14px 12px; font-size: 0.6rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); justify-content: flex-start; gap: 8px; white-space: normal; }
  .strip-item:nth-child(even) { border-right: none; }
  .strip-item:nth-child(n+3) { border-bottom: none; }

  /* ── SECTIONS ── */
  .section { padding: 52px 20px; }
  .section-h2 { font-size: clamp(1.8rem,7vw,2.4rem); margin-bottom: 32px; }
  .section-label { font-size: 0.62rem; }

  /* ── WHY GRID ── */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }

  /* ── HOW IT WORKS ── */
/* ── HOW IT WORKS ── */
.hiw-section { padding: 52px 20px; }
.hiw-grid { flex-direction: column; gap: 0; }
.hiw-connector {
  width: 2px;
  height: 60px;
  flex-shrink: 0;
  margin: 0 0 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hiw-connector::before {
  top: 0; left: 50%;
  width: 1px; height: 100%; right: auto;
  transform: translateX(-50%);
}
.hiw-connector-fill {
  top: 0; left: 50%;
  width: 1px;
  height: 0%;
  transform: translateX(-50%);
  transition: height 0.8s cubic-bezier(0.4,0,0.2,1);
}
.hiw-connector-fill.filled { height: 100%; width: 1px; }
.hiw-connector-arrow { display: none; }
.hiw-step { padding: 0; }
.hiw-step:first-child { padding-left: 0; }
.hiw-num { font-size: 2.4rem; }
.hiw-step h3 { font-size: 1.1rem; }

  /* ── PHOTO STRIP ── */
  .photo-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px; height: auto; }

  /* ── TRUST BAR ── */
  .trust-bar { flex-direction: column; padding: 28px 20px; gap: 20px; align-items: flex-start; }
  .trust-divider { display: none; }
  .trust-item { min-width: unset; width: 100%; }

  /* ── COVERAGE ── */
  .coverage { padding: 52px 20px; }
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-map { display: none; }
  .coverage-points { gap: 10px; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 52px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .tcard { padding: 24px 18px; }
  .tcard-quote { font-size: 1rem; }

  /* ── PRICING ── */
  .pricing-section { padding: 52px 20px; }
  .pricing-note { margin-top: 0; margin-bottom: 28px; font-size: 0.8rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-card { padding: 28px 20px; }
  .pricing-card--gold { order: -1; }
  .pricing-price span { font-size: 2.6rem; }
  .pricing-card .btn-primary { width: 100%; text-align: center; display: block; }

  /* ── FAQ ── */
  .faq-section { padding: 52px 20px; }
  .faq-list { max-width: 100%; }
  .faq-q { font-size: 0.9rem; padding: 18px 0; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 100px 20px 44px; }
  .page-hero h1 { font-size: clamp(2.2rem,10vw,3.6rem); }
  .page-hero p { font-size: 0.9rem; }

  /* ── FLEET ── */
  .fleet-section { padding: 44px 20px; }
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── SERVICES LIST ── */
  .services-list-section { padding: 0 20px 52px; }
  .service-row { grid-template-columns: auto 1fr; padding: 24px 0; margin: 0; gap: 16px; }
  .service-arrow { display: none; }

  /* ── BOOKING ── */
  .booking-section { padding: 88px 20px 52px; }
  .booking-grid { grid-template-columns: 1fr; gap: 24px; }
  .booking-form-wrap { padding: 24px 16px; }
  .booking-form-wrap h2 { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; gap: 14px; }
  .sidebar-card { padding: 18px; }
  .btn-submit { padding: 18px; font-size: 0.8rem; }

  /* ── CONTACT ── */
  .contact-section { padding: 88px 20px 52px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 24px 16px; }
  .contact-info h1 { font-size: 2.6rem; }

  /* ── FOOTER ── */
  footer { padding: 44px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom p { font-size: 0.62rem; }

}

/* Very small phones */
@media (max-width: 380px) {
  .hero-h1 { font-size: 2.4rem; }
  .photo-strip { grid-template-columns: 1fr; grid-template-rows: 200px; }
  .photo-strip-item:nth-child(n+2) { display: none; }
}




/* ===================================================
   LIGHT / DARK THEME SYSTEM
   =================================================== */

/* Smooth transition on theme switch */
body, nav, footer, .why-card, .tcard, .pricing-card,
.booking-form-wrap, .sidebar-card, .contact-form-wrap,
.fleet-card, .mobile-menu, .bottom-sheet,
.mobile-bottom-bar, .services-strip, .trust-bar,
.hiw-section, .testimonials-section, .coverage,
.pricing-section, .page-hero {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ── LIGHT THEME OVERRIDES ── */
body.light-theme {
  --black:      #f5f0e8;
  --deep:       #ede8e0;
  --charcoal:   #e4dfd6;
  --card:       #ede8df;
  --border:     rgba(160,120,40,0.2);
  --gold:       #a07828;
  --gold-light: #c9a84c;
  --gold-dim:   rgba(160,120,40,0.08);
  --offwhite:   #1a1612;
  --muted:      #7a6e62;
  --muted2:     #9a8e82;
  --text:       #3a3028;
  background: #f5f0e8;
  color: #1a1612;
}

/* Nav in light mode */
body.light-theme nav.scrolled {
  background: rgba(245,240,232,0.96);
  border-color: rgba(160,120,40,0.2);
}
body.light-theme nav:not(.scrolled) {
  background: rgba(245,240,232,0.6);
}

/* Mobile menu in light mode */
body.light-theme .mobile-menu {
  background: #f5f0e8;
}
body.light-theme .mobile-menu a { color: #1a1612; }
body.light-theme .mobile-menu a:hover { color: var(--gold); }

/* Bottom sheet in light mode */
body.light-theme .bottom-sheet {
  background: #ede8df;
  border-top-color: var(--gold);
}
body.light-theme .sheet-field input,
body.light-theme .sheet-field select {
  background: rgba(0,0,0,0.04);
  border-color: rgba(160,120,40,0.25);
  color: #1a1612;
}

/* Fixed bottom bar in light mode */
body.light-theme .mobile-bottom-bar {
  background: rgba(245,240,232,0.97);
  border-top-color: rgba(160,120,40,0.2);
}
body.light-theme .mbb-phone { color: #1a1612; border-color: rgba(160,120,40,0.2); }

/* Forms in light mode */
body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
  background: rgba(0,0,0,0.04);
  border-color: rgba(160,120,40,0.2);
  color: #1a1612;
}
body.light-theme .form-group select option { background: #ede8df; }

/* Hero in light mode */
body.light-theme .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(160,120,40,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(160,120,40,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f0ebe2 0%, #ede8df 100%);
}

/* Why grid in light mode */
body.light-theme .why-grid { background: rgba(160,120,40,0.12); }
body.light-theme .why-card { background: #ede8df; }
body.light-theme .why-card:hover { background: #e4dfd5; }

/* Noise overlay — lighter in light mode */
body.light-theme::after { opacity: 0.3; }

/* Scrollbar in light mode */
body.light-theme ::-webkit-scrollbar { width: 6px; }
body.light-theme ::-webkit-scrollbar-track { background: #ede8df; }
body.light-theme ::-webkit-scrollbar-thumb { background: rgba(160,120,40,0.3); border-radius: 3px; }

/* ── THEME TOGGLE BUTTON — MOBILE MENU ── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 8px;
}
.theme-toggle:hover { border-color: var(--gold); background: var(--gold-dim); }
.theme-toggle-icon { display: flex; align-items: center; }
.theme-toggle-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  transition: opacity 0.2s;
}
/* Show moon by default (currently dark), hide sun */
.icon-moon { display: block; }
.icon-sun  { display: none; }
/* When light theme active — show sun, hide moon */
body.light-theme .icon-moon { display: none; }
body.light-theme .icon-sun  { display: block; }

/* ── THEME TOGGLE BUTTON — DESKTOP NAV ── */
.nav-theme-btn {
  background: none;
  border: 1px solid var(--border);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nav-theme-btn:hover { border-color: var(--gold); background: var(--gold-dim); }
.nav-theme-btn svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}
