:root {
  --black: #080a0d;
  --surface: #0f1218;
  --card: #161c26;
  --card-hover: #1d2535;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(245,166,35,0.3);
  --amber: #f5a623;
  --amber-dark: #c4841a;
  --amber-glow: rgba(245,166,35,0.15);
  --steel: #2a6db5;
  --steel-light: #4d94d4;
  --text: #e2e8f0;
  --muted: #64748b;
  --light-muted: #94a3b8;
  --green: #22c55e;
  --red: #ef4444;
  --white: #ffffff;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; overflow-x:hidden; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  padding-top: 106px; /* 34px ticker + 72px nav */
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(8,10,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-badge {
  width: 38px; height: 38px;
  background: var(--amber);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue';
  font-size: 18px;
  color: var(--black);
  letter-spacing: 1px;
}

.nav-logo-text {
  font-family: 'Bebas Neue';
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--light-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--amber); }

.nav-cta {
  background: var(--amber);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover {
  background: #ffc04a !important;
  color: var(--black) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 40px 80px;
  margin-top: -106px; /* pull hero back to fill full viewport */
  padding-top: 146px; /* 106px offset + 40px breathing room */
  background: linear-gradient(180deg,
    #0c0a14 0%,
    #1a1228 12%,
    #3d1f3a 26%,
    #6b2f42 40%,
    #a8453f 54%,
    #d4682f 66%,
    #e8923a 76%,
    #f0ab4a 84%,
    #0f1318 92%
  );
}

/* Sun glow */
.hero-sun {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(255,210,120,0.9) 0%,
    rgba(245,166,35,0.55) 30%,
    rgba(212,104,63,0.25) 55%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 1;
}

/* Soft cloud bands */
.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.cloud-band {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  filter: blur(8px);
}
.cloud-band.c1 { top: 14%; height: 40px; background: rgba(255,200,150,0.06); }
.cloud-band.c2 { top: 22%; height: 30px; background: rgba(255,180,140,0.05); }
.cloud-band.c3 { top: 30%; height: 50px; background: rgba(255,160,130,0.05); }

/* Isle of Wight coastline silhouette layers (parallax-style depth) */
.hero-coastline {
  position: absolute;
  bottom: 78px;
  left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.hero-coastline svg { display: block; width: 100%; height: auto; }
.coast-far   { opacity: 0.35; }
.coast-mid   { opacity: 0.55; margin-top: -40px; }
.coast-near  { opacity: 0.85; margin-top: -60px; }

/* Stars (subtle, upper sky only) */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 50%;
  animation: star-twinkle 3s ease-in-out infinite;
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.7; }
}

/* Road scene */
.road-scene {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  overflow: hidden;
  z-index: 3;
}

.road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(180deg, #221824 0%, #0f1318 100%);
}

.road-line {
  position: absolute;
  bottom: 42px;
  height: 6px;
  width: 80px;
  background: var(--amber);
  border-radius: 3px;
  animation: road-dash 1.2s linear infinite;
  opacity: 0.6;
}

.road-line:nth-child(1) { left: 5%; animation-delay: 0s; }
.road-line:nth-child(2) { left: 20%; animation-delay: -0.3s; }
.road-line:nth-child(3) { left: 35%; animation-delay: -0.6s; }
.road-line:nth-child(4) { left: 50%; animation-delay: -0.9s; }
.road-line:nth-child(5) { left: 65%; animation-delay: -0.12s; }
.road-line:nth-child(6) { left: 80%; animation-delay: -0.15s; }
.road-line:nth-child(7) { left: -15%; animation-delay: -0.48s; }

@keyframes road-dash {
  0% { transform: translateX(0); }
  100% { transform: translateX(100vw); }
}

/* Truck + Trailer SVG animation */
.truck-scene {
  position: absolute;
  bottom: 80px;
  left: -600px;
  display: flex;
  align-items: flex-end;
  animation: truck-drive 18s linear infinite;
}

@keyframes truck-drive {
  0%   { left: -620px; }
  100% { left: 110vw; }
}

.truck-body { position: relative; }

/* WHEEL SPIN — handled by SVG animateTransform on each spoke group, no CSS needed */

/* Dust particles */
.dust-trail {
  position: absolute;
  right: -10px;
  bottom: 22px;
}

.dust {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(200,200,180,0.3);
  animation: dust-puff 1.5s ease-out infinite;
}

.dust:nth-child(1) { animation-delay: 0s; }
.dust:nth-child(2) { animation-delay: 0.5s; width: 5px; height: 5px; bottom: 5px; }
.dust:nth-child(3) { animation-delay: 1s; width: 6px; height: 6px; bottom: -5px; right: 10px; }

@keyframes dust-puff {
  0% { transform: translate(0,0) scale(1); opacity: 0.5; }
  100% { transform: translate(-40px, -20px) scale(3); opacity: 0; }
}

/* Grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glow orb - now subtler since sunset provides ambient warmth */
.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,200,120,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  background: var(--amber-glow);
  animation: fade-up 0.6s ease both;
}

.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1.hero-title {
  font-family: 'Bebas Neue';
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fade-up 0.6s 0.1s ease both;
}

h1.hero-title span {
  color: var(--amber);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  color: var(--white);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 44px;
  animation: fade-up 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ffc14a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  right: 40px;
  top: 34%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fade-up 0.6s 0.4s ease both;
}

.hero-stat {
  text-align: right;
}

.hero-stat-number {
  font-family: 'Bebas Neue';
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION STYLES ─── */
section { padding: 100px 40px; }

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue';
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--light-muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── TRAILERS ─── */
#trailers {
  background: var(--surface);
  position: relative;
}

.trailer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}


/* Trailer photo slots — populated from admin */
.trailer-photo { display:none; width:100%; height:190px; border-radius:12px; overflow:hidden; margin:14px 0 6px; border:1px solid var(--border); position:relative; z-index:1; }
.trailer-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.trailer-desc { display:none; font-size:13px; color:var(--light-muted); line-height:1.7; margin:8px 0 4px; position:relative; z-index:1; }

.trailer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.trailer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.trailer-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.trailer-card:hover::before { opacity: 1; }

.trailer-card.popular {
  border-color: rgba(245,166,35,0.4);
}

.popular-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--amber);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.trailer-icon {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.trailer-name {
  font-family: 'Bebas Neue';
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.trailer-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.trailer-price-num {
  font-family: 'Bebas Neue';
  font-size: 56px;
  color: var(--amber);
  line-height: 1;
}

.trailer-price-unit {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.trailer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.trailer-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--light-muted);
}

.feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.trailer-cta {
  margin-top: 36px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Animated trailer SVG */
.trailer-svg-scene {
  position: absolute;
  right: -20px;
  bottom: 0px;
  opacity: 0.06;
  transition: opacity 0.35s;
}

.trailer-card:hover .trailer-svg-scene { opacity: 0.12; }

/* ─── HOW IT WORKS ─── */
#how-it-works { position: relative; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}

.how-connector {
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--steel-light) 100%);
  opacity: 0.25;
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Bebas Neue';
  font-size: 26px;
  color: var(--amber);
  transition: all 0.3s;
  position: relative;
}

.how-step:hover .how-step-num {
  background: var(--amber-glow);
  border-color: var(--amber);
  box-shadow: 0 0 30px rgba(245,166,35,0.3);
  transform: scale(1.1);
}

.how-step-icon {
  font-size: 22px;
}

.how-step-title {
  font-family: 'Bebas Neue';
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PRICE CALCULATOR ─── */
#calculator {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.calc-bg {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at top right, rgba(42,109,181,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
  align-items: start;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-muted);
}

.form-control {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 18px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-control option {
  background: var(--card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Toggle buttons */
.toggle-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  padding: 13px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 14px;
  font-family: 'DM Sans';
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.toggle-btn.active {
  background: var(--amber);
  color: var(--black);
  font-weight: 700;
}

.toggle-btn:hover:not(.active) {
  background: var(--card-hover);
  color: var(--text);
}

/* Add-ons grid */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.addon-item:hover {
  border-color: var(--border-bright);
}

.addon-item input[type="checkbox"] {
  accent-color: var(--amber);
  width: 16px; height: 16px;
  cursor: pointer;
}

.addon-item input[type="number"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--amber);
  font-size: 14px;
  font-family: 'Space Mono';
  width: 40px;
  text-align: center;
  outline: none;
}

.addon-label {
  flex: 1;
  font-size: 13px;
  color: var(--light-muted);
}

.addon-price {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Space Mono';
}

/* Quote result panel */
.quote-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.quote-panel-header {
  background: linear-gradient(135deg, var(--amber) 0%, #e8920f 100%);
  padding: 28px 32px;
}

.quote-panel-title {
  font-family: 'Bebas Neue';
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 4px;
}

.quote-panel-sub {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

.quote-body {
  padding: 32px;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.quote-line:last-of-type { border-bottom: none; }

.quote-line-label { color: var(--muted); }
.quote-line-value { color: var(--text); font-weight: 500; font-family: 'Space Mono'; font-size: 13px; }
.quote-line-value.amber { color: var(--amber); }
.quote-line-value.green { color: var(--green); }

.quote-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.quote-total {
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-total-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
}

.quote-total-value {
  font-family: 'Bebas Neue';
  font-size: 42px;
  color: var(--amber);
  letter-spacing: 1px;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.quote-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border-left: 2px solid var(--amber);
}

.quote-cta {
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ─── AVAILABILITY CALENDAR ─── */
#availability {
  position: relative;
}

.avail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  margin-top: 60px;
  align-items: start;
}

.calendar-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.cal-month {
  font-family: 'Bebas Neue';
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
}

.cal-nav {
  display: flex;
  gap: 8px;
}

.cal-nav-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.cal-nav-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.cal-trailer-tabs {
  display: flex;
  gap: 0;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
}

.cal-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans';
}

.cal-tab:first-child { border-radius: 8px 0 0 8px; }
.cal-tab:last-child { border-radius: 0 8px 8px 0; border-left: none; }

.cal-tab.active {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}

.cal-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 12px 28px 4px;
}

.cal-day-name {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 8px 28px 28px;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.cal-cell.other-month {
  color: var(--muted);
  opacity: 0.3;
  cursor: default;
}

.cal-cell.available {
  color: var(--text);
}

.cal-cell.available:hover {
  background: var(--amber-glow);
  color: var(--amber);
}

.cal-cell.booked {
  background: rgba(239,68,68,0.1);
  color: rgba(239,68,68,0.5);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-cell.booked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(239,68,68,0.05) 3px,
    rgba(239,68,68,0.05) 4px
  );
  border-radius: 8px;
}

.cal-cell.today {
  border: 2px solid var(--amber);
  color: var(--amber);
  font-weight: 700;
}

.cal-cell.selected-start,
.cal-cell.selected-end {
  background: var(--amber);
  color: var(--black);
  font-weight: 700;
}

.cal-cell.in-range {
  background: rgba(245,166,35,0.12);
  color: var(--amber);
  border-radius: 0;
}

.cal-legend {
  display: flex;
  gap: 20px;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.legend-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
}

.legend-dot.available { background: rgba(34,197,94,0.4); border: 1px solid rgba(34,197,94,0.6); }
.legend-dot.booked { background: rgba(239,68,68,0.3); border: 1px solid rgba(239,68,68,0.5); }
.legend-dot.selected { background: var(--amber); }

/* Avail sidebar */
.avail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.avail-status-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.avail-status-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.trailer-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.trailer-status-item:last-child { border-bottom: none; }

.trailer-status-name {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.status-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.status-pill.available {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

.status-pill.booked {
  background: rgba(239,68,68,0.1);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.3);
}

/* Quick Enquiry */
.enquiry-card {
  background: linear-gradient(135deg, var(--amber) 0%, #e8920f 100%);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.enquiry-card-title {
  font-family: 'Bebas Neue';
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 8px;
}

.enquiry-card-sub {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.enquiry-quick-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.enquiry-quick-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  font-weight: 500;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.btn-dark:hover {
  background: #1a1f2a;
  transform: translateY(-1px);
}

/* ─── BOOKING FORM ─── */
#booking {
  background: var(--surface);
}

.booking-form-wrap {
  max-width: 780px;
  margin: 60px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.booking-form-header {
  padding: 36px 48px;
  background: linear-gradient(135deg, var(--card) 0%, var(--card-hover) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.booking-form-icon {
  width: 52px; height: 52px;
  background: var(--amber-glow);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

.booking-form-title {
  font-family: 'Bebas Neue';
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.booking-form-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.booking-form-body {
  padding: 48px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form-grid.full { grid-template-columns: 1fr; }

.docs-list {
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 8px;
}

.docs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--light-muted);
  padding: 6px 0;
  list-style: none;
}

.docs-list li::before {
  content: '→';
  color: var(--amber);
  font-weight: 700;
}

.form-section-title {
  font-family: 'Bebas Neue';
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.form-section-title:first-child { margin-top: 0; }

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.checkbox-wrap input[type="checkbox"] {
  accent-color: var(--amber);
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 13px;
  color: var(--light-muted);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-label a { color: var(--amber); text-decoration: none; }
.checkbox-label a:hover { text-decoration: underline; }

.form-submit-wrap {
  margin-top: 32px;
}

.booking-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.form-reassurance {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  justify-content: center;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ─── TRUST ─── */
#trust {
  position: relative;
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.trust-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.trust-icon {
  width: 56px; height: 56px;
  background: var(--amber-glow);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.trust-title {
  font-family: 'Bebas Neue';
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 10px;
}

.trust-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: var(--border-bright); }

.review-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  color: var(--light-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.review-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ─── FAQ ─── */
#faq {
  background: var(--surface);
}

.faq-list {
  max-width: 760px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  gap: 20px;
}

.faq-q:hover { color: var(--amber); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--amber);
  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.35s ease;
}

.faq-a-inner {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ─── FOOTER ─── */
footer {
  background: #050709;
  border-top: 1px solid var(--border);
  padding: 60px 40px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--amber); }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 90%;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover { color: var(--amber); border-color: var(--amber); }

.modal-title {
  font-family: 'Bebas Neue';
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FLOATING BADGE ─── */
.float-badge {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  animation: float-bounce 3s ease infinite;
}

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

.float-badge a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--black);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(245,166,35,0.4);
  transition: all 0.2s;
}

.float-badge a:hover {
  background: #ffc14a;
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(245,166,35,0.5);
}

/* ─── MOBILE ─── */
.nav-burger { display: none; background: transparent; border: 1px solid var(--border); border-radius: 8px; width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--amber); border-radius: 2px; transition: all 0.25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  nav { padding: 0 20px; top: 34px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 106px; left: 0; right: 0;
    background: rgba(8,10,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 15px; }
  .nav-links a.nav-cta { margin: 10px 24px 0; text-align: center; }
  body { padding-top: 106px; }
  section { padding: 70px 20px; }
  #hero { padding: 40px 20px 200px; padding-top: 146px; margin-top: -106px; }
  h1.hero-title { font-size: 52px; }
  .hero-stats { display: none; }
  .trailer-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-connector { display: none; }
  .calc-layout { grid-template-columns: 1fr; }
  .avail-layout { grid-template-columns: 1fr; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-form-body { padding: 28px 24px; }
  .booking-form-header { padding: 28px 24px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
}

input[type="date"], input[type="time"], select { color-scheme: dark; }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.9; cursor: pointer; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, canvas:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
}

/* Ticker / announcement bar */
.ticker-bar {
  background: var(--amber);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  height: 34px;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--amber);
  z-index: 9999;
  transition: width 0.1s;
}

/* Number counter */
.counter { transition: all 0.3s; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  animation: success-pop 0.5s ease;
}

@keyframes success-pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-title {
  font-family: 'Bebas Neue';
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}

.success-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Spinning wheel animation for spinners */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── DELIVERY STYLES ─── */
.delivery-launch-banner {
  background: linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(34,197,94,0.04) 100%);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.delivery-launch-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.delivery-launch-text {
  font-size: 13px;
  color: var(--light-muted);
  line-height: 1.65;
}

.delivery-launch-text strong {
  color: var(--green);
  font-weight: 600;
}

.delivery-strikethrough {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 12px;
  font-family: 'Space Mono';
}

.delivery-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.delivery-launch-sub {
  font-size: 10px;
  color: rgba(34,197,94,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.distance-lookup-wrap {
  display: flex;
  gap: 8px;
}

.distance-lookup-btn {
  padding: 13px 18px;
  background: var(--amber);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Sans';
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.distance-lookup-btn:hover { background: #ffc14a; }
.distance-lookup-btn:disabled { background: var(--card); color: var(--muted); cursor: not-allowed; }

.distance-result {
  font-size: 12px;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}

.distance-result.visible { display: block; }
.distance-result.free { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: var(--green); }
.distance-result.paid { background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.2); color: var(--amber); }
.distance-result.error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: var(--red); }

/* ═══════════════════════════════════════════
   ADMIN SYSTEM
═══════════════════════════════════════════ */
#adminGate {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
}
.admin-gate-box {
  background: #161c26; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 48px; width: 380px; text-align: center;
}
.admin-gate-logo { font-family: 'Bebas Neue'; font-size: 32px; letter-spacing: 3px; color: #f5a623; margin-bottom: 6px; }
.admin-gate-sub { font-size: 13px; color: #64748b; margin-bottom: 28px; }
.admin-gate-box input[type="password"] {
  width: 100%; padding: 14px 18px; background: #0f1218;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  color: white; font-size: 16px; font-family: 'Space Mono'; letter-spacing: 3px;
  outline: none; margin-bottom: 16px; text-align: center; transition: border-color 0.2s;
}
.admin-gate-box input[type="password"]:focus { border-color: #f5a623; }
.admin-gate-box .btn-primary { width: 100%; justify-content: center; }
.admin-gate-cancel { font-size: 12px; color: #64748b; margin-top: 14px; cursor: pointer; }
.admin-gate-cancel:hover { color: #f5a623; }
#adminPwError { display:none; color: #ef4444; font-size: 13px; margin-bottom: 12px; }
#adminPanel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(100vw, 900px); background: #080a0d;
  border-left: 1px solid rgba(255,255,255,0.08); z-index: 8000;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); overflow: hidden;
}
#adminPanel.open { transform: translateX(0); }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; background: #161c26; border-bottom: 1px solid rgba(255,255,255,0.08); flex-shrink: 0;
}
.admin-header-title { font-family: 'Bebas Neue'; font-size: 22px; letter-spacing: 2px; color: #f5a623; display: flex; align-items: center; gap: 10px; }
.admin-header-sub { font-size: 11px; color: #64748b; letter-spacing: 1px; text-transform: uppercase; }
.admin-close {
  width: 36px; height: 36px; border-radius: 50%; background: #0f1218;
  border: 1px solid rgba(255,255,255,0.08); color: #64748b; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.admin-close:hover { color: #ef4444; border-color: #ef4444; }
.admin-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); background: #161c26; flex-shrink: 0; }
.atab {
  flex: 1; padding: 14px; background: transparent; border: none; color: #64748b;
  font-size: 13px; font-weight: 600; font-family: 'DM Sans'; cursor: pointer;
  letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.2s; border-bottom: 2px solid transparent;
}
.atab:hover { color: #f5a623; }
.atab.active { color: #f5a623; border-bottom-color: #f5a623; background: rgba(245,166,35,0.04); }
.admin-body { flex: 1; overflow-y: auto; padding: 28px; }
.atab-content { display: none; }
.acal-controls { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.acal-title { font-family: 'Bebas Neue'; font-size: 26px; letter-spacing: 2px; color: white; }
.acal-nav { display: flex; gap: 8px; }
.acal-nav button {
  width: 34px; height: 34px; border-radius: 8px; background: #161c26;
  border: 1px solid rgba(255,255,255,0.08); color: white; font-size: 16px; cursor: pointer; transition: all 0.2s;
}
.acal-nav button:hover { border-color: #f5a623; color: #f5a623; }
.atrailer-toggle { display: flex; gap: 8px; margin-bottom: 16px; }
.atrailer-btn {
  flex: 1; padding: 10px; border-radius: 8px; background: #161c26;
  border: 1px solid rgba(255,255,255,0.08); color: #64748b;
  font-size: 13px; font-weight: 600; font-family: 'DM Sans'; cursor: pointer; transition: all 0.2s;
}
.atrailer-btn.active { background: #f5a623; color: #080a0d; border-color: #f5a623; }
.acal-day-names { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 4px; }
.acal-day-name { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #64748b; padding: 6px 0; }
#adminCalGrid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.acal-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.15s; border: 1px solid transparent;
}
.acal-cell.empty { cursor: default; }
.acal-cell.available { color: white; background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.15); }
.acal-cell.available:hover { background: rgba(34,197,94,0.2); border-color: rgba(34,197,94,0.5); color: #22c55e; }
.acal-cell.booked { background: rgba(239,68,68,0.12); color: rgba(239,68,68,0.6); border-color: rgba(239,68,68,0.25); text-decoration: line-through; }
.acal-cell.booked:hover { background: rgba(239,68,68,0.25); color: #ef4444; }
.acal-cell.service { background: rgba(245,166,35,0.12); color: rgba(245,166,35,0.7); border-color: rgba(245,166,35,0.3); }
.acal-cell.service:hover { background: rgba(245,166,35,0.25); color: #f5a623; }
.acal-cell.service::after { content: '🔧'; position:absolute; top:2px; right:3px; font-size:7px; }
.acal-cell.today { border-color: #f5a623 !important; color: #f5a623 !important; font-weight: 700; }
.acal-legend { display: flex; gap: 20px; margin-top: 14px; }
.acal-legend-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #64748b; }
.acal-legend-dot { width: 10px; height: 10px; border-radius: 3px; }
.admin-form { background: #161c26; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; margin-top: 24px; }
.admin-form-title { font-family: 'Bebas Neue'; font-size: 20px; letter-spacing: 1.5px; color: white; margin-bottom: 18px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-form-grid.full { grid-template-columns: 1fr; }
.admin-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #64748b; margin-bottom: 6px; display: block; }
.admin-input {
  width: 100%; padding: 12px 14px; background: #0f1218;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  color: white; font-size: 14px; font-family: 'DM Sans'; outline: none; transition: border-color 0.2s;
}
.admin-input:focus { border-color: #f5a623; }
.admin-input option { background: #161c26; }
.admin-submit {
  width: 100%; margin-top: 16px; padding: 14px; background: #f5a623; color: #080a0d;
  border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
  font-family: 'DM Sans'; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s;
}
.admin-submit:hover { background: #ffc14a; }
#ab-error { display: none; color: #ef4444; font-size: 13px; margin-bottom: 10px; }
.booking-row { background: #161c26; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px 18px; margin-bottom: 10px; transition: border-color 0.2s; }
.booking-row:hover { border-color: rgba(245,166,35,0.25); }
.brow-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.brow-id { font-family: 'Space Mono'; font-size: 13px; color: #f5a623; font-weight: 700; }
.brow-trailer { font-size: 12px; background: rgba(255,255,255,0.06); padding: 3px 10px; border-radius: 100px; color: #94a3b8; }
.brow-status { font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.brow-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.brow-status-sel { padding: 6px 10px; background: #0f1218; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; color: white; font-size: 12px; font-family: 'DM Sans'; cursor: pointer; outline: none; }
.brow-del { width: 28px; height: 28px; border-radius: 6px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #ef4444; font-size: 12px; cursor: pointer; transition: all 0.2s; }
.brow-del:hover { background: rgba(239,68,68,0.25); }
.brow-detail { display: flex; flex-wrap: wrap; gap: 12px; }
.brow-detail span { font-size: 12px; color: #64748b; }
.settings-section { background: #161c26; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; margin-bottom: 16px; }
.settings-title { font-family: 'Bebas Neue'; font-size: 20px; letter-spacing: 1.5px; color: white; margin-bottom: 16px; }
.settings-btn { padding: 11px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; font-family: 'DM Sans'; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; }
.settings-btn.amber { background: #f5a623; color: #080a0d; border: none; }
.settings-btn.amber:hover { background: #ffc14a; }
.settings-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,0.08); color: #94a3b8; }
.settings-btn.outline:hover { border-color: #f5a623; color: #f5a623; }
.settings-btn.danger { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }
.settings-btn.danger:hover { background: rgba(239,68,68,0.2); }
#s-pass-msg { font-size: 13px; margin-top: 10px; min-height: 18px; }
#adminToast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: #22c55e; color: #080a0d; padding: 12px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 700; z-index: 9999; transition: transform 0.3s ease; white-space: nowrap; pointer-events: none;
}
#adminToast.show { transform: translateX(-50%) translateY(0); }



/* ═══════════════════════════════════════════
   INVOICE MODAL
═══════════════════════════════════════════ */
#invoiceModal {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 16px;
}
#invoiceModal.open { display: flex; }
.inv-box {
  background: #0f1218; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; width: 100%; max-width: 680px;
  max-height: 94vh; overflow-y: auto; display: flex; flex-direction: column;
}
.inv-hdr {
  background: linear-gradient(135deg, #f5a623 0%, #c4841a 100%);
  padding: 22px 28px; border-radius: 20px 20px 0 0;
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.inv-hdr-title { font-family: 'Bebas Neue'; font-size: 24px; letter-spacing: 2px; color: #080a0d; }
.inv-hdr-ref { font-family: 'Space Mono'; font-size: 13px; background: rgba(0,0,0,0.15); color: #080a0d; padding: 4px 12px; border-radius: 6px; }
.inv-hdr-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.2); border: none; color: #080a0d; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.inv-bdy { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; }
.inv-sec { background: #161c26; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 18px 20px; }
.inv-sec-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #f5a623; margin-bottom: 14px; }
.inv-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inv-g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.inv-g1 { display: grid; grid-template-columns: 1fr; gap: 12px; }
.inv-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #64748b; margin-bottom: 5px; display: block; }
.inv-fld { background: #0f1218; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: white; font-size: 13px; font-family: 'DM Sans'; padding: 10px 12px; outline: none; transition: border-color 0.2s; width: 100%; }
.inv-fld:focus { border-color: #f5a623; }
.inv-fld option { background: #161c26; }
.inv-addon-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; color: #94a3b8; }
.inv-addon-row:last-child { border-bottom: none; }
.inv-addon-row input[type="checkbox"] { accent-color: #f5a623; width: 16px; height: 16px; cursor: pointer; }
.inv-addon-row input[type="number"] { background: #0f1218; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #f5a623; font-family: 'Space Mono'; font-size: 13px; padding: 4px 8px; width: 56px; outline: none; text-align: center; }
.inv-prow { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; }
.inv-prow:last-child { border-bottom: none; }
.inv-prow-lbl { color: #94a3b8; }
.inv-prow-val { font-family: 'Space Mono'; font-size: 12px; color: #e2e8f0; }
.inv-ptotal { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.2); border-radius: 10px; margin-top: 10px; }
.inv-ptotal-lbl { font-weight: 700; color: #f5a623; font-size: 13px; text-transform: uppercase; }
.inv-ptotal-val { font-family: 'Bebas Neue'; font-size: 30px; color: #f5a623; letter-spacing: 1px; }
.inv-actions { display: flex; gap: 12px; padding: 0 28px 24px; }
.inv-btn-primary { flex: 2; padding: 14px; background: #f5a623; color: #080a0d; border: none; border-radius: 10px; font-size: 14px; font-weight: 700; font-family: 'DM Sans'; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s; }
.inv-btn-primary:hover { background: #ffc14a; }
.inv-btn-outline { flex: 1; padding: 14px; background: transparent; border: 1px solid rgba(255,255,255,0.1); color: #94a3b8; border-radius: 10px; font-size: 14px; font-family: 'DM Sans'; cursor: pointer; transition: all 0.2s; }
.inv-btn-outline:hover { border-color: #f5a623; color: #f5a623; }
.brow-inv { padding: 5px 12px; border-radius: 6px; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3); color: #f5a623; font-size: 12px; font-weight: 600; font-family: 'DM Sans'; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.brow-inv:hover { background: rgba(245,166,35,0.25); }


/* ═══ MULTI-PAGE ADDITIONS (restructure) ═══ */
.nav-links a.active { color: var(--amber); }
.nav-links a.active:not(.nav-cta)::after { content:''; display:block; height:2px; background:var(--amber); border-radius:2px; margin-top:2px; }
.page-hero { padding: 140px 24px 40px; text-align: center; max-width: 900px; margin: 0 auto; }
.page-hero h1 { font-family: 'Bebas Neue'; font-size: clamp(40px, 7vw, 64px); letter-spacing: 3px; color: var(--white); margin: 0 0 10px; }
.page-hero p { color: var(--light-muted); font-size: 16px; line-height: 1.8; margin: 0 auto; max-width: 640px; }
.content-page { max-width: 860px; margin: 0 auto; padding: 20px 24px 90px; }
.content-page h2 { font-family:'Bebas Neue'; font-size: 30px; letter-spacing: 2px; color: var(--white); margin: 44px 0 12px; }
.content-page h3 { font-size: 17px; color: var(--amber); margin: 26px 0 8px; }
.content-page p, .content-page li { color: var(--light-muted); font-size: 14.5px; line-height: 1.9; }
.content-page ul { padding-left: 22px; }
.content-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 28px; margin: 18px 0; }
.price-pill { display:inline-block; background: rgba(245,166,35,0.1); border:1px solid rgba(245,166,35,0.35); color: var(--amber); font-weight:700; border-radius: 999px; padding: 3px 14px; font-size: 13px; }
.summary-cta-row { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:26px; }

/* ═══ SALES SECTION ═══ */
.sales-toolbar { display:flex; flex-wrap:wrap; gap:10px; align-items:center; max-width:1100px; margin: 10px auto 26px; padding: 0 24px; }
.sales-toolbar select, .sales-toolbar input { background:#12161e; border:1px solid var(--border); color:var(--text); border-radius:10px; padding:10px 12px; font-size:13px; font-family:'DM Sans'; }
.sales-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:22px; max-width:1100px; margin:0 auto; padding:0 24px 80px; }
.sale-card { background:var(--card); border:1px solid var(--border); border-radius:18px; overflow:hidden; display:flex; flex-direction:column; transition:transform .25s, border-color .25s; position:relative; }
.sale-card:hover { transform:translateY(-4px); border-color:rgba(245,166,35,0.45); }
.sale-card-img { height:180px; background:#12161e center/cover no-repeat; display:flex; align-items:center; justify-content:center; font-size:44px; }
.sale-card-body { padding:16px 18px 20px; display:flex; flex-direction:column; gap:6px; flex:1; }
.sale-card-title { font-weight:600; color:var(--white); font-size:15px; }
.sale-card-meta { font-size:12px; color:var(--muted); }
.sale-card-price { font-family:'Space Mono'; font-size:18px; color:var(--amber); font-weight:700; margin-top:auto; }
.sale-badge { position:absolute; top:12px; left:12px; z-index:2; font-size:11px; font-weight:700; letter-spacing:1px; padding:4px 12px; border-radius:999px; text-transform:uppercase; }
.sale-badge.reserved { background:rgba(245,166,35,0.9); color:#111; }
.sale-badge.sold { background:rgba(239,68,68,0.9); color:#fff; }
.sale-badge.oos { background:rgba(100,116,139,0.9); color:#fff; }
.sale-badge.featured { background:rgba(34,197,94,0.9); color:#08110a; left:auto; right:12px; }
.sale-gallery-main { width:100%; max-height:420px; border-radius:16px; background:#12161e; object-fit:contain; }
.sale-thumbs { display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.sale-thumbs img { width:74px; height:56px; object-fit:cover; border-radius:8px; cursor:pointer; border:2px solid transparent; }
.sale-thumbs img.active { border-color:var(--amber); }
.spec-table { width:100%; border-collapse:collapse; font-size:13.5px; }
.spec-table td { padding:9px 12px; border-bottom:1px solid var(--border); color:var(--light-muted); }
.spec-table td:first-child { color:var(--muted); width:44%; }
.sale-form input, .sale-form textarea { width:100%; background:#12161e; border:1px solid var(--border); color:var(--text); border-radius:10px; padding:11px 13px; font-size:13.5px; font-family:'DM Sans'; margin-bottom:10px; box-sizing:border-box; }
.sale-btn { background:var(--amber); color:#111; border:none; border-radius:10px; padding:13px 26px; font-weight:700; font-size:14px; cursor:pointer; font-family:'DM Sans'; }
.sale-btn.outline { background:transparent; border:1px solid var(--border); color:var(--text); }

/* Sales admin */
.sadm-table { width:100%; border-collapse:collapse; font-size:12.5px; }
.sadm-table th, .sadm-table td { padding:8px 9px; border-bottom:1px solid rgba(255,255,255,0.07); text-align:left; color:#cbd5e1; }
.sadm-table th { color:#94a3b8; font-weight:600; cursor:pointer; white-space:nowrap; }
.sadm-table img { width:46px; height:34px; object-fit:cover; border-radius:6px; display:block; }
.sadm-status { font-size:10px; font-weight:700; letter-spacing:0.5px; padding:3px 9px; border-radius:999px; text-transform:uppercase; }
.sadm-status.draft{background:rgba(100,116,139,0.25);color:#94a3b8;} .sadm-status.available{background:rgba(34,197,94,0.2);color:#22c55e;}
.sadm-status.reserved{background:rgba(245,166,35,0.2);color:#f5a623;} .sadm-status.sold{background:rgba(239,68,68,0.2);color:#ef4444;}
.sadm-status.out_of_stock{background:rgba(148,163,184,0.2);color:#cbd5e1;} .sadm-status.hidden{background:rgba(255,255,255,0.08);color:#64748b;}
.sadm-gal { display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.sadm-gal-item { position:relative; width:86px; }
.sadm-gal-item img { width:86px; height:62px; object-fit:cover; border-radius:8px; display:block; }
.sadm-gal-item .g-btns { display:flex; gap:3px; margin-top:3px; }
.sadm-gal-item button { flex:1; background:#1f2733; border:none; color:#94a3b8; border-radius:5px; font-size:10px; padding:2px 0; cursor:pointer; }


/* ═══ PROMO BANNERS ═══ */
.promo-banner-wrap { max-width: 1180px; margin: 0 auto; padding: 26px 24px; }
.promo-banner { display: block; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(168,127,31,0.35);
  box-shadow: 0 4px 14px rgba(20,26,34,0.10), 0 22px 50px rgba(20,26,34,0.12);
  transition: transform .25s ease, box-shadow .25s ease; }
.promo-banner:hover { transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20,26,34,0.13), 0 30px 64px rgba(20,26,34,0.16); }
.promo-banner img { display: block; width: 100%; height: auto; }

/* ═══ BRAND LOCKUP ═══ */
.nav-logo { display: inline-flex !important; align-items: center; gap: 12px; text-decoration: none; }
.brand-badge { height: 46px; width: 46px; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 6px rgba(20,26,34,0.18)); transition: transform .22s ease; }
.nav-logo:hover .brand-badge { transform: scale(1.05); }
.brand-word { font-family: 'Bebas Neue'; font-size: 23px; letter-spacing: 2.5px;
  color: var(--white); line-height: 1; white-space: nowrap; }
.brand-word em { font-style: normal; color: var(--amber); }
@media (max-width: 620px) { .brand-word { display: none; } .brand-badge { height: 44px; width: 44px; } }

/* ═══ TRUCK & TRAILER DIVIDER ═══ */
.truck-run { position: relative; height: 96px; overflow: hidden; max-width: 1180px; margin: 10px auto -6px; }
.truck-road { position: absolute; left: 24px; right: 24px; bottom: 18px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--amber) 12%, var(--amber) 88%, transparent);
  opacity: 0.45; }
.truck-mover { position: absolute; bottom: 12px; left: 0; transform: translateX(-360px);
  animation: truckDrive 30s linear infinite; cursor: pointer; opacity: 0.9; }
.truck-mover svg { display: block; }
.truck-wheel { transform-box: fill-box; transform-origin: center; animation: truckWheel 1.1s linear infinite; }
@keyframes truckDrive {
  0%   { transform: translateX(-360px); }
  100% { transform: translateX(calc(100vw + 40px)); }
}
@keyframes truckWheel { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .truck-mover { animation: none; left: 50%; transform: translateX(-50%); }
  .truck-wheel { animation: none; }
}

/* ═══ NAV RESPONSIVE FIX (10-item nav + brand lockup) ═══ */
.nav-links { flex-wrap: nowrap; align-items: center; }
.nav-links a { white-space: nowrap; }

/* Laptop tier: tighten spacing so everything fits on one line */
@media (max-width: 1500px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 12.5px; letter-spacing: 0.3px; }
  .nav-cta { padding: 9px 16px; }
}
/* Below 1380px the wordmark yields — badge carries the brand */
@media (max-width: 1380px) { .brand-word { display: none; } }

/* Burger takes over earlier: 10 items need the room */
@media (max-width: 1180px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 106px; left: 0; right: 0;
    background: rgba(8,10,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 15px; white-space: normal; }
  .nav-links a.nav-cta { margin: 10px 24px 0; text-align: center; }
}

/* ═══ FLOATING REVIEW BUTTON (bottom-left, subordinate to Book CTA) ═══ */
.review-float {
  position: fixed; bottom: 32px; left: 24px; z-index: 500;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card);
  border: 1.5px solid rgba(168,127,31,0.55);
  color: var(--text);
  border-radius: 999px; padding: 10px 18px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 20px rgba(20,26,34,0.14);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.review-float:hover { transform: translateY(-2px); border-color: #a87f1f; box-shadow: 0 10px 28px rgba(20,26,34,0.18); }
@media (max-width: 700px) {
  .review-float { padding: 10px 13px; bottom: 26px; left: 14px; }
  .review-float span { display: none; }  /* icon-only on phones so it never crowds Book a Trailer */
}

/* ═══ FOOTER REVIEW BLOCK ═══ */
.footer-review-block {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; text-align: center;
  padding: 18px 20px; margin: 0 0 20px;
  border: 1px solid rgba(168,127,31,0.35); border-radius: 14px;
  background: rgba(217,183,87,0.07);
}
.footer-review-block .fr-stars { color: #d9b757; font-size: 17px; letter-spacing: 2px; }
.footer-review-block .fr-text { font-size: 13px; max-width: 420px; }
.footer-review-block .fr-btn {
  background: linear-gradient(160deg, #dfc06a, #a87f1f);
  color: #1a1206 !important; text-decoration: none;
  border-radius: 999px; padding: 9px 20px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer-review-block .fr-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(168,127,31,0.4); }

/* ═══ FULL LOGO LOCKUP IN NAV ═══ */
.brand-lockup { height: 52px; width: auto; object-fit: contain; display: block;
  transition: transform .22s ease; }
.nav-logo:hover .brand-lockup { transform: scale(1.04); }
@media (max-width: 1180px) { .brand-lockup { height: 46px; } }
@media (max-width: 620px)  { .brand-lockup { height: 40px; } }

/* Stop the floating buttons colliding with the footer's bottom bar */
footer { padding-bottom: 96px; }
@media (max-width: 700px) { footer { padding-bottom: 84px; } }
