/* ==========================================================================
   Aryan Mobile Mechanics - Premium Stylesheet
   ========================================================================== */

/* CSS variables for consistent design tokens */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Montserrat', sans-serif;

  /* Color Palette */
  --bg-main: #0a0c10;
  --bg-card: rgba(22, 26, 38, 0.65);
  --bg-card-solid: #161a26;
  --bg-input: #1a1e2d;
  
  --primary: #00f2fe;        /* Electric Neon Cyan */
  --primary-rgb: 0, 242, 254;
  --secondary: #00ff87;      /* Vivid Neon Green/Mint */
  --secondary-rgb: 0, 255, 135;
  --accent-yellow: #fecb00;  /* Official UK License Plate Yellow */
  --accent-yellow-rgb: 254, 203, 0;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #0f172a;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.25);
  
  --status-pass: #10b981;
  --status-fail: #ef4444;
  --status-warning: #f59e0b;

  /* Glassmorphism & Shadow details */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --glass-backdrop: blur(16px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, filter 0.3s ease, padding-left 0.3s ease;
}

/* Base Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 135, 0.05) 0%, transparent 40%);
  background-attachment: scroll;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.hero-info-panel {
  padding: 40px;
  text-align: left;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-light);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.postcode-mini-input:focus-visible,
.postcode-input-wrapper input:focus-visible,
.postcode-checker-bar input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 0;
}

.btn:disabled, .btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

/* Navigation Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-light);
  padding: 15px 5%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  box-shadow: 0 0 0 2px rgba(0, 242, 254, 0.35), 0 0 14px rgba(0, 242, 254, 0.2);
}

.logo-img {
  width: 160%;
  height: auto;
  margin-left: -30%;
  margin-top: -5%;
  display: block;
  object-fit: cover;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span {
  font-weight: 400;
  color: var(--text-main);
  -webkit-text-fill-color: var(--text-main);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--secondary);
}

.phone-link svg {
  fill: var(--secondary);
}

/* Mobile Navigation Toggle & Overlay */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-card-solid);
  border-left: 1px solid var(--border-light);
  z-index: 200;
  padding: 80px 30px 30px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.mobile-nav-phone {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-weight: 700;
  color: var(--secondary);
}

/* ═══════════════════════════════════════════════
   HERO — Full-Viewport Cinematic Video Background
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(10,12,16,0.92) 0%, rgba(10,12,16,0.6) 55%, rgba(10,12,16,0.35) 100%),
    linear-gradient(to bottom, rgba(10,12,16,0.45) 0%, transparent 25%, transparent 70%, rgba(10,12,16,0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 5% 100px 5%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Scroll hint mouse icon at bottom of hero */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: scrollHintFade 2.5s ease-in-out infinite;
}

.scroll-hint-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-hint-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(9px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes scrollHintFade {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.65; }
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 600px;
}

.trust-badges-inline {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.trust-badge-item svg {
  color: var(--secondary);
}

/* Flatpickr Calendar Styling Overrides */
.flatpickr-calendar {
  background: var(--bg-card-solid) !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: var(--glass-shadow) !important;
  font-family: var(--font-sans) !important;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  border-bottom-color: var(--bg-card-solid) !important;
  border-top-color: var(--bg-card-solid) !important;
}

.flatpickr-day {
  color: var(--text-main) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition) !important;
}

.flatpickr-day:hover, .flatpickr-day:focus {
  background: rgba(0, 242, 254, 0.1) !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.flatpickr-day.selected, .flatpickr-day.selected:hover, .flatpickr-day.selected:focus {
  background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%) !important;
  color: var(--text-dark) !important;
  border-color: var(--primary) !important;
  font-weight: 700;
}

.flatpickr-day.disabled, .flatpickr-day.disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
}

.flatpickr-months .flatpickr-month, .flatpickr-current-month,
span.flatpickr-weekday, .flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  color: var(--text-main) !important;
  fill: var(--text-main) !important;
}

.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: var(--primary) !important;
  fill: var(--primary) !important;
}

/* SweetAlert2 Popup Overrides */
.swal2-popup {
  background: var(--bg-card-solid) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--glass-shadow) !important;
  color: var(--text-main) !important;
  font-family: var(--font-sans) !important;
}

.swal2-title {
  color: var(--text-main) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}

.swal2-html-container {
  color: var(--text-muted) !important;
}

.swal2-confirm {
  background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-md) !important;
  border: none !important;
  outline: none !important;
}

.swal2-cancel {
  background: transparent !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  transition: var(--transition) !important;
}

.swal2-cancel:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* UK License Plate lookup container in Hero/Widget */
.plate-search-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-backdrop);
}

.plate-search-box h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* The Yellow UK License Plate design */
.uk-plate-input-container {
  background: var(--accent-yellow);
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(254, 203, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #000;
}

/* EU/UK blue strip on left side of plate */
.uk-plate-strip {
  width: 35px;
  height: 45px;
  background: #002f6c;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-right: 15px;
  line-height: 1;
}

.uk-plate-strip-uk {
  font-size: 0.6rem;
  margin-top: 2px;
}

.uk-plate-input-wrapper {
  flex: 1;
  display: flex;
}

.uk-plate-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  outline: none;
}

.uk-plate-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.postcode-mini-input-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 15px;
}

.postcode-mini-input {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-sans);
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.postcode-mini-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--border-glow);
}

/* Booking Funnel Styles */
.booking-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-title {
  text-align: center;
  margin-bottom: 50px;
}

.booking-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.booking-title p {
  color: var(--text-muted);
}

/* Stepper Indicator */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.stepper-progress {
  position: absolute;
  top: 25px;
  left: 40px;
  width: 0%; /* Dynamic */
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1;
  transition: var(--transition);
}

.step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-main);
  padding: 0 10px;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.step.active .step-num {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
  background: #0d1e2e;
}

.step.active .step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: stepPulse 2s infinite ease-out;
}

@keyframes stepPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.step.completed .step-num {
  border-color: var(--secondary);
  color: var(--secondary);
  background: #0d2822;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 100px;
}

.step.active .step-label {
  color: var(--text-main);
}

.step.completed .step-label {
  color: var(--secondary);
}

/* Step Content Cards */
.booking-funnel {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 40px;
}

.step-panel {
  display: none;
  opacity: 0;
}

.step-panel.active {
  display: block;
  animation: stepSlideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.step-panel.slide-out-left {
  animation: stepSlideOutLeft 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.step-panel.slide-out-right {
  animation: stepSlideOutRight 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepSlideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-40px); }
}

@keyframes stepSlideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Step 1: Service Selection */
.services-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card-select {
  border: 1px solid var(--border-light);
  padding: 25px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-select:hover {
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-3px);
}

.service-card-select.selected {
  border-color: var(--primary);
  background: rgba(0, 242, 254, 0.06);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.15), inset 0 0 0 1px rgba(0, 242, 254, 0.25);
  transform: translateY(-4px) scale(1.01);
}

.service-card-select::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  transition: var(--transition);
}

.service-card-select.selected::before {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.service-card-select-checkbox {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card-select.selected .service-card-select-checkbox {
  border-color: var(--primary);
  background: var(--primary);
}

.service-card-select-checkbox svg {
  display: none;
  width: 12px;
  height: 12px;
  stroke: var(--text-dark);
  stroke-width: 3px;
}

.service-card-select.selected .service-card-select-checkbox svg {
  display: block;
}

.service-card-icon {
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card-select.selected .service-card-icon {
  color: var(--secondary);
}

.service-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.service-card-price-tag {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.service-card-price-tag span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Selected Services Bar (Step 1) */
.selected-services-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-card-solid);
  margin-bottom: 10px;
  animation: fadeIn 0.35s ease forwards;
}

.selected-services-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.selected-services-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.selected-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.selected-service-chip .chip-remove {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  transition: var(--transition);
}

.selected-service-chip .chip-remove:hover {
  background: rgba(0, 242, 254, 0.3);
}

.selected-services-total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  white-space: nowrap;
}

/* Step Requirements Checklist Bar */
.step-requirements-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-card-solid);
  margin-top: 25px;
  animation: fadeIn 0.35s ease forwards;
}

.req-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.req-item.done {
  background: rgba(0, 255, 135, 0.08);
  border-color: rgba(0, 255, 135, 0.3);
  color: var(--secondary);
}

.req-item.done .req-icon svg {
  stroke: var(--secondary);
}

.req-item.done .req-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.req-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.req-item.done .req-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.req-item.done .req-icon svg {
  display: none;
}

.req-item.done .req-icon::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300ff87' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

/* Tyre Services — Category Divider */
.service-category-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0 2px;
}

.category-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.category-divider-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Badge in divider header */
.dvla-adaptive-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.2);
  color: var(--secondary);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: none;
  letter-spacing: 0;
}

/* Per-card badge shown after DVLA lookup adapts price */
.tyre-dvla-badge {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 10px;
  opacity: 0.9;
}

/* Card styling when price has been DVLA-adapted */
.service-card-select.tyre-price-adapted .service-card-price-tag {
  color: var(--secondary);
}

.service-card-select.tyre-price-adapted {
  border-color: rgba(0, 255, 135, 0.2);
}

.service-card-select.tyre-price-adapted.selected {
  border-color: var(--secondary);
  background: rgba(0, 255, 135, 0.06);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.15), inset 0 0 0 1px rgba(0, 255, 135, 0.25);
}

/* Tyre class indicator bar (full-width, above divider) */
.tyre-class-indicator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 135, 0.06);
  border: 1px solid rgba(0, 255, 135, 0.18);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 4px;
}

/* Step 2: Vehicle DVLA Details Card */
.vehicle-lookup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.vehicle-info-card {
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.vehicle-info-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vehicle-info-title h4 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.vehicle-info-title p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.vehicle-badge-vrn {
  background: var(--accent-yellow);
  color: #000;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  border: 1px solid #000;
}

.vehicle-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin-bottom: 30px;
}

.detail-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.detail-val {
  font-size: 1rem;
  font-weight: 600;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.status-badge.pass {
  background: rgba(16, 185, 129, 0.15);
  color: var(--status-pass);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.fail {
  background: rgba(239, 68, 68, 0.15);
  color: var(--status-fail);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.vehicle-alert-box {
  padding: 15px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.85rem;
}

.vehicle-alert-box.warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

.vehicle-alert-box.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

/* Loading overlay for API Lookup */
.loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 242, 254, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Step 3: Date, Time & Postcode Check */
.scheduling-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.postcode-checker-container {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  margin-bottom: 25px;
}

.postcode-input-wrapper {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.postcode-input-wrapper input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.postcode-input-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--border-glow);
}

.coverage-status-msg {
  font-size: 0.9rem;
  margin-top: 10px;
  display: none; /* Dynamic */
  align-items: center;
  gap: 8px;
}

.coverage-status-msg.success {
  color: var(--secondary);
}

.coverage-status-msg.fail {
  color: var(--status-fail);
}

/* Custom Calendar & Slot Selectors */
.calendar-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--bg-card);
}

.calendar-card h4 {
  margin-bottom: 20px;
}

.date-selector-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 15px;
  margin-bottom: 25px;
  scrollbar-width: thin;
}

.date-selector-row::-webkit-scrollbar {
  height: 6px;
}

.date-selector-row::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

.date-bubble {
  min-width: 75px;
  padding: 12px 5px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.date-bubble:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.02);
}

.date-bubble.selected {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.date-bubble .day-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.date-bubble.selected .day-name {
  color: var(--primary);
}

.date-bubble .day-num {
  font-size: 1.25rem;
  font-weight: 700;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.time-slot {
  padding: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.time-slot:hover {
  border-color: var(--primary);
}

.time-slot.selected {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.04);
  background: var(--bg-input);
  color: rgba(255, 255, 255, 0.2);
}

.time-slot.limited {
  border-color: var(--status-warning);
  position: relative;
}

.time-slot.limited::after {
  content: '1 left';
  position: absolute;
  top: -7px;
  right: -6px;
  background: var(--status-warning);
  color: #000;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 8px;
  line-height: 1;
  pointer-events: none;
}

/* Step 4: Summary & Checkout */
.summary-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-details-form {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.contact-details-form h4 {
  margin-bottom: 20px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--border-glow);
}

/* Invoice Summary Card */
.invoice-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card-solid);
  box-shadow: var(--glass-shadow);
}

.invoice-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.invoice-header h4 {
  font-size: 1.25rem;
}

.invoice-vehicle-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.invoice-vehicle-plate {
  background: var(--accent-yellow);
  color: #000;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid #000;
}

.invoice-services-list {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.invoice-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.invoice-item.sub {
  color: var(--text-muted);
}

.invoice-item-name {
  max-width: 70%;
}

.invoice-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 25px;
}

.invoice-total-row span {
  color: var(--secondary);
}

/* Nav Action Buttons at Bottom of Funnel */
.funnel-nav-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
}

/* Confirmation Success Modal Layout */
.booking-success-container {
  text-align: center;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 255, 135, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  border: 2px solid rgba(0, 255, 135, 0.3);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.2);
}

.booking-success-container h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
}

.booking-success-container p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.booking-details-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: left;
  margin-bottom: 30px;
}

.booking-details-box h5 {
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.success-details-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Standalone Services Grid Section */
.services-overview-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--text-dark);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.service-price {
  font-size: 1.15rem;
  font-weight: 700;
}

.service-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-card:hover .service-link {
  color: var(--secondary);
}

/* Postcode Coverage & Search Standalone Widget */
.coverage-banner-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #101626 0%, #060913 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.coverage-banner-container {
  max-width: 800px;
  margin: 0 auto;
}

.coverage-banner-container h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
}

.coverage-banner-container p {
  color: var(--text-muted);
  margin-bottom: 35px;
}

.postcode-checker-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto 20px auto;
  gap: 10px;
}

.postcode-checker-bar input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.1rem;
  outline: none;
  transition: var(--transition);
}

.postcode-checker-bar input:focus {
  border-color: var(--primary);
}

.coverage-result-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition);
}

.coverage-result-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

.coverage-result-bubble.success {
  background: rgba(0, 255, 135, 0.05);
  border-color: rgba(0, 255, 135, 0.2);
  color: var(--secondary);
}

.coverage-result-bubble.fail {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
  color: var(--status-fail);
}

/* Trust Elements / Testimonials */
.testimonials-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2a334a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--border-light);
}

.author-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FAQs Section */
.faqs-section {
  padding: 80px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.faqs-header {
  text-align: center;
  margin-bottom: 50px;
}

.faqs-header h2 {
  font-size: 2.5rem;
}

.faqs-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 25px 20px 25px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(45deg);
  color: var(--primary);
}

/* Footer styling */
footer {
  background: #060910;
  border-top: 1px solid var(--border-light);
  padding: 60px 5% 30px 5%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-links h5 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.dvla-verification-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.dvla-verification-tag span {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--secondary);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   MEDIA SHOWCASE SECTION
   ═══════════════════════════════════════════════ */
.media-showcase-section {
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.media-showcase-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 25%, rgba(0,242,254,0.35) 50%, var(--border-light) 75%, transparent 100%);
}

.media-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.media-showcase-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(0,242,254,0.07);
  border: 1px solid rgba(0,242,254,0.22);
  border-radius: 20px;
}

.media-showcase-header h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.media-showcase-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
}

/* Bento grid — single photo layout */
.media-bento-grid {
  display: grid;
  gap: 18px;
}

.media-bento-grid--single {
  grid-template-columns: 1fr;
  grid-template-rows: 560px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background: var(--bg-card-solid);
  cursor: pointer;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.media-card:hover {
  border-color: rgba(0,242,254,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,242,254,0.1);
}

.media-card--featured {
  grid-row: 1 / 3;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.04);
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,12,16,0.93) 0%,
    rgba(10,12,16,0.45) 38%,
    rgba(10,12,16,0.1)  60%,
    transparent         100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: background 0.4s ease;
}

.media-card:hover .media-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10,12,16,0.97) 0%,
    rgba(10,12,16,0.6)  45%,
    rgba(10,12,16,0.2)  65%,
    transparent         100%
  );
}

.media-card-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,12,16,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,242,254,0.32);
  color: var(--primary);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 20px;
}

.media-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(0,255,135,0.6);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66,0,0,1);
  flex-shrink: 0;
}

.media-card-caption {
  /* anchored to overlay bottom */
}

.media-card-caption h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  transform: translateY(8px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.media-card:hover .media-card-caption h4 {
  transform: translateY(0);
}

.media-card-caption p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease 0.06s, transform 0.35s cubic-bezier(0.4,0,0.2,1) 0.06s;
}

.media-card:hover .media-card-caption p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .vehicle-lookup-layout, .scheduling-layout, .summary-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .media-bento-grid--single {
    grid-template-rows: 480px;
  }
  .media-showcase-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .media-showcase-section {
    padding: 80px 5%;
  }
  .media-showcase-header h2 {
    font-size: 2rem;
  }
  .media-bento-grid--single {
    grid-template-rows: 380px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .booking-section {
    padding: 60px 16px;
  }

  .booking-funnel {
    padding: 20px 16px;
  }

  .hero-info-panel {
    padding: 24px 20px;
  }

  .postcode-mini-input-group {
    grid-template-columns: 1fr;
  }

  .postcode-mini-input-group .btn {
    width: 100%;
  }

  .services-overview-section,
  .testimonials-section,
  .coverage-banner-section,
  .faqs-section,
  .media-showcase-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .media-bento-grid--single {
    grid-template-rows: 300px;
  }

  .media-showcase-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .stepper {
    margin-bottom: 30px;
  }
  .step-label {
    font-size: 0.62rem;
    max-width: 65px;
    word-break: break-word;
    line-height: 1.2;
  }
  .stepper::before, .stepper-progress {
    top: 20px;
    left: 20px;
    right: 20px;
  }
  .step-num {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .booking-funnel {
    padding: 28px 20px;
  }
  .hero-info-panel {
    padding: 28px 24px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .postcode-checker-bar {
    flex-direction: column;
  }
  .postcode-checker-bar button {
    width: 100%;
  }
}

/* --- LEAFLET PREMIUM DARK MAP STYLING --- */
#coverageMap {
  height: 450px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-top: 30px;
  background-color: var(--bg-card);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

/* Customizing Leaflet interface widgets to neon theme */
.leaflet-bar {
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

.leaflet-bar a {
  background-color: #101626 !important;
  color: var(--text-main) !important;
  border-bottom: 1px solid var(--border-light) !important;
  transition: var(--transition);
}

.leaflet-bar a:hover {
  background-color: var(--primary) !important;
  color: var(--text-dark) !important;
}

/* Dark popup design */
.leaflet-popup-content-wrapper {
  background-color: #101626 !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
  font-family: var(--font-body) !important;
}

.leaflet-popup-content {
  margin: 15px 20px !important;
  font-size: 0.9rem;
  line-height: 1.4;
}

.leaflet-popup-tip {
  background-color: #101626 !important;
  border-left: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.leaflet-container {
  background: var(--bg-main) !important;
}

/* --- LIVE STATUS PULSING INDICATOR --- */
.live-pulse-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
  vertical-align: middle;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 135, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 135, 0);
  }
}

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

/* ── WhatsApp Floating Button ──────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.98);
}

/* On mobile collapse to icon-only */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-float-text {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE — COMPREHENSIVE FIXES
   Breakpoints: 768px | 480px | 360px
   ═══════════════════════════════════════════════ */

/* ── Tablet & large phones (≤ 768px) ─────────────────── */
@media (max-width: 768px) {

  /* Services grid: force single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials grid: force single column */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Section heading sizes */
  .services-header h2,
  .testimonials-header h2,
  .coverage-banner-container h2,
  .booking-title h2 {
    font-size: 1.85rem;
  }

  /* Coverage map — smaller on tablets */
  #coverageMap {
    height: 320px;
  }

  /* Postcode checker bar input area */
  .postcode-checker-bar input {
    font-size: 1rem;
    padding: 12px 16px;
  }

  /* Hero info panel list items — allow wrapping */
  .hero-info-panel ul li {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* ── Phones (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {

  /* ── Header fix: prevent overflow ── */
  /* Hide "Mobile Mechanics" sub-text, keep "ARYAN" + icon */
  header .logo-sub {
    display: none;
  }

  /* Shrink logo font size slightly */
  header .logo {
    font-size: 1.25rem;
    gap: 8px;
  }

  /* Phone link: show icon only, hide number text */
  header .phone-text {
    display: none;
  }

  /* Make phone icon a proper touch target (44×44px) */
  header .phone-link {
    padding: 10px;
    margin: -10px;
    border-radius: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  /* Hamburger button touch target */
  .mobile-nav-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  /* ── Booking section ── */

  /* Services selection — single column */
  .services-selection-grid {
    grid-template-columns: 1fr;
  }

  /* Selected services bar — stack vertically */
  .selected-services-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .selected-services-total {
    align-self: flex-end;
  }

  /* Funnel nav buttons — full width, equal size */
  .funnel-nav-actions {
    gap: 12px;
  }

  .funnel-nav-actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* UK plate input — smaller font */
  .uk-plate-input {
    font-size: 1.8rem;
  }

  /* Time slots — 2 per row */
  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking funnel headings */
  .booking-funnel h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  /* Invoice total row */
  .invoice-total-row {
    font-size: 1.2rem;
  }

  /* Success screen padding — was 60px 40px, too big for phones */
  .booking-success-container {
    padding: 30px 16px;
  }

  .booking-success-container h2 {
    font-size: 1.75rem;
  }

  /* Vehicle info card */
  .vehicle-info-card {
    padding: 20px 16px;
  }

  /* Invoice card */
  .invoice-card {
    padding: 20px 16px;
  }

  /* Contact details form */
  .contact-details-form {
    padding: 20px 16px;
  }

  /* Service cards padding */
  .service-card {
    padding: 24px 18px;
  }

  /* Testimonial cards padding */
  .testimonial-card {
    padding: 24px 18px;
  }

  /* FAQ padding */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px;
  }

  /* Coverage map — smaller on phones */
  #coverageMap {
    height: 250px;
  }

  /* Plate search box padding */
  .plate-search-box {
    padding: 22px 18px;
  }

  /* Calendar card padding */
  .calendar-card {
    padding: 20px 16px;
  }

  /* Postcode checker container */
  .postcode-checker-container {
    padding: 20px 16px;
  }

  /* Section headings */
  .faqs-header h2 {
    font-size: 1.85rem;
  }

  /* Hero info panel padding */
  .hero-info-panel {
    padding: 20px 16px;
  }

  /* Hero info panel list — stack label and value */
  .hero-info-panel ul li span:last-child {
    font-size: 0.85rem;
  }
}

/* ── Very small phones (≤ 360px) ────────────────────── */
@media (max-width: 360px) {

  /* Stepper — hide text labels, show numbers only */
  .step-label {
    display: none;
  }

  .step-num {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .stepper::before,
  .stepper-progress {
    top: 17px;
    left: 17px;
    right: 17px;
  }

  .step {
    padding: 0 2px;
  }

  /* Hero heading */
  .hero-content h1 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  /* Plate input */
  .uk-plate-input {
    font-size: 1.5rem;
  }

  /* Plate search */
  .plate-search-box {
    padding: 18px 14px;
  }

  /* Service select cards */
  .service-card-select {
    padding: 16px 12px;
  }

  /* Section headings */
  .services-header h2,
  .testimonials-header h2,
  .faqs-header h2,
  .booking-title h2,
  .coverage-banner-container h2 {
    font-size: 1.6rem;
  }

  /* Vehicle info card */
  .vehicle-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Invoice total row */
  .invoice-total-row {
    font-size: 1rem;
  }
}


/* ══════════════════════════════════════════════════════
   ADDITIONAL MOBILE FIXES
   ══════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  /* Footer bottom padding — clear the fixed WhatsApp button */
  footer {
    padding-bottom: 90px;
  }

  /* Step 3 postcode input — stack on phones */
  .postcode-input-wrapper {
    flex-direction: column;
  }
  .postcode-input-wrapper .btn {
    width: 100%;
  }

  /* Vehicle info header — allow wrap so VRN badge doesn't push title off */
  .vehicle-info-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Success rows — long addresses should break, not overflow */
  .success-details-row {
    flex-wrap: wrap;
    gap: 4px;
  }
  .success-details-row span:last-child {
    word-break: break-word;
    text-align: right;
  }

  /* Tyre category divider — allow text wrap on narrow screens */
  .category-divider-content {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  /* Flatpickr calendar — scroll horizontally rather than overflow */
  .flatpickr-inline-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── Cookie Consent Banner ───────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #0f1220;
  border-top: 1px solid var(--border-light);
  padding: 18px 5%;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 5px;
  color: var(--text-main);
}

.cookie-banner-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
  }
}


