/* ==========================================================================
   VINZ RENTAL - MODERN LIGHT THEME & POLISHED HEADER DESIGN SYSTEM
   Clean, Premium, High-Converting Car Rental UI
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables / Light Design Tokens --- */
:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Bright & Modern Light Palette */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-card: #ffffff;
  --bg-overlay: rgba(15, 23, 42, 0.5);

  /* Brand Accents */
  --primary: #2563eb;
  --primary-glow: rgba(37, 99, 235, 0.22);
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-subtle: #eff6ff;

  --accent-green: #10b981;
  --accent-green-light: #ecfdf5;
  --accent-green-dark: #059669;

  --accent-gold: #d97706;
  --accent-gold-light: #fffbeb;
  --accent-gold-glow: rgba(217, 119, 6, 0.2);

  --accent-sky: #0284c7;

  /* Typography Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --text-light: #94a3b8;

  /* Borders & Shadows */
  --border-subtle: #e2e8f0;
  --border-card: #e2e8f0;
  --border-active: #3b82f6;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -4px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 35px -8px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(16, 185, 129, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(217, 119, 6, 0.02) 0%, transparent 50%);
  padding-bottom: 70px; /* Space for mobile bottom bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.section-title span {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.65;
}

.text-center {
  text-align: center;
}

/* --- Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-elevated);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navbar (Polished Pill Design)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #0284c7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 10px var(--primary-glow);
  flex-shrink: 0;
}

.brand-logo .logo-icon.sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name-row {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.brand-main {
  color: var(--text-main);
}

.brand-highlight {
  color: var(--primary);
  margin-left: 2px;
}

.brand-tagline-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Navigation Center & Links */
.nav-center {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  background: #f1f5f9;
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link .nav-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.nav-link.active {
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Header Actions Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-phone-pill:hover {
  background: var(--primary-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulseDot 2s infinite;
}

.nav-wa-btn {
  padding: 0.48rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition-fast);
}

.mobile-toggle .bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .bar-2 {
  opacity: 0;
  transform: scale(0);
}

.mobile-toggle.active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer-header,
.mobile-drawer-footer {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Section with Dynamic Glowing Background Blur (Glassmorphism)
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 45%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

/* Ambient Glowing Background Blobs */
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
}

.hero-bg-blobs .blob-1 {
  top: -12%;
  right: -5%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(56, 189, 248, 0.22) 50%, transparent 70%);
  filter: blur(80px);
  animation: floatGlow1 9s ease-in-out infinite alternate;
}

.hero-bg-blobs .blob-2 {
  bottom: -15%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.28) 0%, rgba(52, 211, 153, 0.18) 50%, transparent 70%);
  filter: blur(75px);
  animation: floatGlow2 11s ease-in-out infinite alternate;
}

.hero-bg-blobs .blob-3 {
  top: 30%;
  left: 25%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, rgba(251, 191, 36, 0.08) 50%, transparent 70%);
  filter: blur(65px);
  animation: floatGlow3 13s ease-in-out infinite alternate;
}

.hero-mesh-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.18) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, transparent 80%);
}

@keyframes floatGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-35px, 25px) scale(1.08); }
  100% { transform: translate(25px, -20px) scale(0.96); }
}

@keyframes floatGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
  100% { transform: translate(-25px, 20px) scale(0.94); }
}

@keyframes floatGlow3 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(25px, 25px) scale(1.06); }
  100% { transform: translate(-20px, -20px) scale(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 99, 235, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Frosted Glass Hero Stats Card */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.2rem;
  padding: 1.25rem 1.6rem;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-stats:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -6px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-num span {
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Glassmorphism Frosted Hero Booking Card */
.hero-booking-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.95) inset, 0 10px 20px -5px rgba(15, 23, 42, 0.04);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-booking-card:hover {
  box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.22), 0 0 0 1px #ffffff inset, 0 12px 25px -5px rgba(15, 23, 42, 0.06);
}

.hero-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-green));
  border-radius: var(--radius-full);
}

.booking-card-header {
  margin-bottom: 1.4rem;
}

.booking-card-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.booking-card-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  outline: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px var(--primary-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* ==========================================================================
   Key Highlights & Trust Badges
   ========================================================================== */
.features-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Fleet Catalog Section
   ========================================================================== */
.fleet-section {
  padding: 5.5rem 0;
  position: relative;
  background: var(--bg-body);
}

.fleet-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-glow);
}

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

.vehicle-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-lg);
}

.vehicle-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.06);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.vehicle-badge.vip {
  background: #d97706;
  color: #ffffff;
}

.vehicle-seat-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.vehicle-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-header {
  margin-bottom: 0.75rem;
}

.vehicle-category-sub {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.vehicle-name {
  font-size: 1.25rem;
  margin-top: 0.2rem;
  color: var(--text-main);
}

.vehicle-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.spec-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.spec-chip .spec-icon {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.spec-chip .spec-val {
  font-weight: 700;
  color: var(--text-main);
}

.vehicle-features-preview {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.feature-pill-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-pill-item .check-icon {
  color: var(--accent-green-dark);
  font-weight: 800;
}

.vehicle-pricing {
  background: var(--bg-surface-elevated);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

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

.price-allin-sub {
  font-size: 0.82rem;
  color: var(--accent-gold);
  margin-top: 0.35rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
}

/* ==========================================================================
   Interactive Live Cost Calculator (Clean Light Design)
   ========================================================================== */
.calculator-section {
  padding: 5.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.calculator-wrapper {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.calc-form-side h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.calc-form-side p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.package-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pkg-radio-btn {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.pkg-radio-btn input {
  display: none;
}

.pkg-radio-btn.active {
  border-color: var(--primary);
  background: var(--primary-subtle);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.pkg-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.pkg-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-summary-side {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.calc-summary-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-green));
}

.calc-summary-header h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.calc-summary-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-breakdown {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.breakdown-row.highlight {
  color: var(--text-main);
  font-weight: 700;
}

.breakdown-row.discount {
  color: var(--accent-green-dark);
  font-weight: 700;
}

.summary-total-box {
  background: var(--primary-subtle);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.total-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.total-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 0.2rem;
}

/* ==========================================================================
   Tour & Drop-off Packages
   ========================================================================== */
.tours-section {
  padding: 5.5rem 0;
  background: var(--bg-body);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}

.tour-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.tour-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-lg);
}

.tour-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e2e8f0;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  background: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.tour-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.tour-dest {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.tour-price-box {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Drop-off Matrix Table */
.dropoff-container {
  margin-top: 4rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.table-responsive {
  overflow-x: auto;
  margin-top: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.dropoff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.dropoff-table th {
  padding: 1rem 1.25rem;
  background: var(--bg-surface-elevated);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-subtle);
}

.dropoff-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.dropoff-table tr:hover td {
  background: #f8fafc;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================= */
.testimonials-section {
  padding: 5.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.client-info h5 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.client-info span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border-subtle);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Modals (Detail Kendaraan & Booking Wizard)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: all var(--transition-normal);
}

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

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.modal-header-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #e2e8f0;
}

.modal-body {
  padding: 2rem;
}

.modal-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.modal-feature-tag {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-weight: 500;
}

/* ==========================================================================
   Floating Actions & Mobile Sticky Bottom Bar
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.floating-wa {
  background: #16a34a;
  color: #ffffff;
  animation: pulseWaLight 2.5s infinite;
}

@keyframes pulseWaLight {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

/* Mobile Sticky Bottom Quick Actions Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.65rem 1rem;
  z-index: 1001;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
}

.mobile-bottom-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================================================================
   Footer (Clean Light Modern)
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: #ffffff;
  border: 1px solid var(--border-active);
  color: var(--text-main);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideToast 0.3s ease forwards;
  pointer-events: auto;
}

@keyframes slideToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints (< 1024px & < 768px)
   ========================================================================== */
@media (max-width: 1024px) {
  /* Mobile Drawer Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    border-radius: 0;
    border: none;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.12);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem 1.25rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-subtle);
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .drawer-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color: var(--text-main);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .drawer-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: var(--text-main);
  }

  .nav-link:hover {
    background: #f8fafc;
  }

  .nav-link.active {
    background: #eff6ff;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    box-shadow: none;
  }

  .mobile-drawer-footer {
    display: block;
    margin-top: auto;
    padding: 1.25rem;
    background: #f8fafc;
    border-top: 1px solid var(--border-subtle);
  }

  .drawer-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .drawer-contact-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 600;
  }

  .drawer-phone-btn {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.35rem 0;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-actions .nav-phone-pill {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .calculator-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Hero Mobile */
  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
  }

  .hero-booking-card {
    padding: 1.5rem;
  }

  /* Filter Bar Scrollable on Mobile */
  .fleet-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.5rem 0.25rem 1rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .fleet-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 0.55rem 1.15rem;
    font-size: 0.88rem;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .calculator-wrapper {
    padding: 1.5rem;
  }

  .package-toggle-group {
    grid-template-columns: 1fr;
  }

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

  .dropoff-container {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  /* Floating and Bottom Bar Mobile */
  .floating-actions {
    display: none;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .modal-container {
    max-height: 95vh;
    border-radius: var(--radius-lg);
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-header-img {
    height: 200px;
  }
}
