/* ============================================================
   SUNSET DRIVE — Main Stylesheet
   Flat Material Design | Corporate | Kenya Car Rental
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --primary:       #1a56db;
  --primary-dark:  #1e40af;
  --primary-light: #dbeafe;
  --secondary:     #111827;
  --accent:        #f59e0b;
  --accent-dark:   #b45309;
  --success:       #10b981;
  --danger:        #ef4444;
  --warning:       #f59e0b;
  --info:          #3b82f6;

  --white:         #ffffff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-300:      #d1d5db;
  --gray-400:      #9ca3af;
  --gray-500:      #6b7280;
  --gray-600:      #4b5563;
  --gray-700:      #374151;
  --gray-800:      #1f2937;
  --gray-900:      #111827;

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-logo:    'Bebas Neue', var(--font-display);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:     0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --transition: all 0.2s ease;
  --transition-slow: all 0.35s ease;
}

/* ── Base Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
}

/* ── Typography ───────────────────────────────────────────── */
.display-1 { font-size: clamp(2.5rem, 5vw, 4rem);   font-weight: 800; }
.display-2 { font-size: clamp(2rem,   4vw, 3.25rem); font-weight: 700; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 600px;
}
.text-primary  { color: var(--primary)  !important; }
.text-accent   { color: var(--accent)   !important; }
.text-muted    { color: var(--gray-500) !important; }

/* ── Utility Overrides ────────────────────────────────────── */
.bg-primary  { background-color: var(--primary)  !important; }
.bg-dark     { background-color: var(--gray-900) !important; }
.bg-surface  { background-color: var(--gray-50)  !important; }
.border-primary { border-color: var(--primary) !important; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  padding: 0.625rem 1.5rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}
.btn-dark {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
.btn-dark:hover {
  background: var(--gray-800);
  color: var(--white);
}
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}
.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
}
.btn-icon {
  padding: 0.5rem;
  width: 38px;
  height: 38px;
  justify-content: center;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-slow);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-300);
}
.card-flat { box-shadow: none; border: 1px solid var(--gray-200); }
.card-flat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-main {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar-brand {
  font-family: var(--font-logo);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--primary) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar-brand span { color: var(--accent); }
.navbar-brand i,
.footer-brand i {
  display: inline-block;
  animation: brand-drive 1.8s ease-in-out infinite;
}
@keyframes brand-drive {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25%      { transform: translateX(3px) rotate(6deg); }
  75%      { transform: translateX(-3px) rotate(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .navbar-brand i,
  .footer-brand i {
    animation: none;
  }
}
.navbar-nav .nav-link {
  color: var(--gray-700) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  font-size: .8125rem;
  letter-spacing: .04em;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.navbar-cta { display: flex; align-items: center; gap: 0.75rem; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title .highlight { color: var(--accent); }
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Search Box ───────────────────────────────────────────── */
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}
.search-box .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.375rem;
}
.search-box .form-control,
.search-box .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.search-box .form-control:focus,
.search-box .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
  outline: none;
}

/* ── Vehicle Card ─────────────────────────────────────────── */
.vehicle-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition-slow);
}
.vehicle-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.vehicle-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.04); }
.vehicle-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.vehicle-card-badge.featured { background: var(--accent); color: var(--gray-900); }
.vehicle-card-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition);
}
.vehicle-card-fav:hover, .vehicle-card-fav.active { color: var(--danger); }
.vehicle-card-body { padding: 1.25rem; }
.vehicle-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}
.vehicle-card-title a {
  color: inherit;
  text-decoration: none;
}
.vehicle-card-title a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.vehicle-card-meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0.875rem;
}
.vehicle-specs {
  display: flex;
  gap: 1rem;
  padding: 0.875rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.vehicle-spec i { color: var(--primary); font-size: 0.875rem; }
.vehicle-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vehicle-price-amount {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
}
.vehicle-price-period { font-size: 0.8125rem; color: var(--gray-500); }
.vehicle-rating { display: flex; align-items: center; gap: 0.25rem; }
.vehicle-rating .stars { color: var(--accent); font-size: 0.8125rem; }
.vehicle-rating span  { font-size: 0.8125rem; color: var(--gray-500); }

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
  background: var(--primary);
  padding: 4rem 0;
  color: var(--white);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.375rem;
}

/* ── Why Choose Us ────────────────────────────────────────── */
.feature-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition-slow);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* ── Category Cards ───────────────────────────────────────── */
.category-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: var(--white);
  transition: var(--transition-slow);
  cursor: pointer;
  text-decoration: none;
}
.category-card:hover {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.category-card:hover .cat-icon,
.category-card:hover .cat-title,
.category-card:hover .cat-count { color: var(--white) !important; }
.cat-icon {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 0.875rem;
  display: block;
}
.cat-title {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.cat-count { font-size: 0.8125rem; color: var(--gray-500); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
}
.testimonial-stars { color: var(--accent); font-size: 0.9375rem; margin-bottom: 0.875rem; }
.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-200);
}
.testimonial-name { font-weight: 600; color: var(--gray-900); font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--gray-500); }

/* ── Destinations ─────────────────────────────────────────── */
.destination-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 240px;
  cursor: pointer;
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.destination-card:hover img { transform: scale(1.06); }
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.destination-info .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.destination-info .vehicles { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

/* ── Filters Sidebar ──────────────────────────────────────── */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.filter-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--gray-100);
}
.filter-label { font-size: 0.9rem; color: var(--gray-700); cursor: pointer; }

/* ── Forms ────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  outline: none;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
.input-group-text {
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-500);
}

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.total {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

/* ── Booking Steps ────────────────────────────────────────── */
.booking-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.step.active .step-number  { background: var(--primary);  color: var(--white); }
.step.done   .step-number  { background: var(--success);  color: var(--white); }
.step-label { font-size: 0.875rem; font-weight: 500; color: var(--gray-500); }
.step.active .step-label { color: var(--primary); font-weight: 600; }
.step-line { height: 2px; background: var(--gray-200); flex: 1; }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3125rem 0.75rem;
  border-radius: 100px;
}
.badge-available { background: #dcfce7; color: #166534; }
.badge-rented    { background: #dbeafe; color: #1e40af; }
.badge-maintenance { background: #fef9c3; color: #854d0e; }
.badge-inactive  { background: var(--gray-100); color: var(--gray-600); }

/* ── Section Paddings ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Section Header ───────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2rem;
}
.footer-brand {
  font-family: var(--font-logo);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand span { color: var(--accent); }
.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Alert Toasts ─────────────────────────────────────────── */
.alert-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: var(--radius);
}
.alert-danger {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: var(--radius);
}
.alert-warning {
  background: #fef9c3;
  border: 1px solid #fde047;
  color: #854d0e;
  border-radius: var(--radius);
}
.alert-info {
  background: #dbeafe;
  border: 1px solid #93c5fd;
  color: #1e40af;
  border-radius: var(--radius);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.page-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 0;
}
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--gray-500); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray-400); }

/* ── Gallery ──────────────────────────────────────────────── */
.vehicle-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 180px);
  gap: 0.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-main { grid-row: 1 / 3; }
.gallery-item { overflow: hidden; background: var(--gray-100); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── Availability Calendar ────────────────────────────────── */
.flatpickr-calendar {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-sans) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.flatpickr-day.inRange { background: var(--primary-light) !important; }

/* ── Swiper Slider ────────────────────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
  background: var(--white) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--gray-700) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 1rem !important; font-weight: 700 !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ── Loading Spinner ──────────────────────────────────────── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero-image { margin-top: 2.5rem; max-height: 320px; }
  .section { padding: 3.5rem 0; }
  .vehicle-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 120px 120px;
  }
  .gallery-main { grid-row: 1; }
}
@media (max-width: 767.98px) {
  .search-box { padding: 1.25rem; }
  .hero-title { font-size: 2rem; }
  .section { padding: 2.5rem 0; }
  .stats-section { padding: 2.5rem 0; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 575.98px) {
  .vehicle-specs { flex-wrap: wrap; gap: 0.625rem; }
  .booking-steps { display: none; }
}

/* ── Print Styles ─────────────────────────────────────────── */
@media print {
  .navbar-main, .footer, .btn, .hero { display: none !important; }
  .card { box-shadow: none !important; border: 1px solid #ddd !important; }
}
