/* ============================================================
   DriveEasy — Premium Car Rental Website
   White + Light Blue Theme | Plus Jakarta Sans
============================================================ */

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

:root {
  --blue-50: #e8f4fd;
  --blue-100: #bdddf8;
  --blue-200: #8ec5f2;
  --blue-400: #3a9fe8;
  --blue-500: #1a7fcf;
  --blue-600: #1464a8;
  --blue-700: #0d4a80;
  --blue-800: #083660;
  --white: #ffffff;
  --gray-50: #f8fafd;
  --gray-100: #edf2f7;
  --gray-200: #d9e4f0;
  --gray-400: #8ba5c0;
  --gray-600: #4a6583;
  --gray-800: #1e3048;
  --accent: #ff6b35;
  --accent-light: #fff4ef;
  --green: #22c55e;
  --red: #ef4444;
  --font: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(26,127,207,.08);
  --shadow-md: 0 8px 32px rgba(26,127,207,.12);
  --shadow-lg: 0 16px 64px rgba(26,127,207,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--blue-200); border-radius: 99px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--blue-100);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon { font-size: 22px; color: var(--blue-500); }
.logo-text { font-size: 22px; font-weight: 800; color: var(--gray-800); letter-spacing: -0.5px; }
.logo-accent { color: var(--blue-500); }
.nav-links { display: flex; list-style: none; gap: 4px; margin-left: auto; }
.nav-links a {
  display: block; padding: 8px 16px; border-radius: 8px;
  color: var(--gray-600); font-weight: 500; font-size: 15px;
  text-decoration: none; transition: all .2s;
}
.nav-links a:hover { background: var(--blue-50); color: var(--blue-500); }
.nav-actions { display: flex; gap: 10px; margin-left: 16px; }
.btn-ghost {
  padding: 8px 20px; border: 1.5px solid var(--blue-200); border-radius: 10px;
  background: transparent; color: var(--blue-600); font-family: var(--font);
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s;
}
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-400); }
.btn-primary {
  padding: 10px 24px; border: none; border-radius: 10px;
  background: var(--blue-500); color: white; font-family: var(--font);
  font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s;
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,127,207,.3); }
.btn-outline {
  padding: 10px 24px; border: 1.5px solid var(--blue-300, var(--blue-200)); border-radius: 10px;
  background: transparent; color: var(--blue-600); font-family: var(--font);
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: var(--blue-50); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--gray-800);
  display: block; border-radius: 2px; transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 120px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  max-width: 1200px; margin: 0 auto;
  position: relative; overflow: visible;
}
.hero-bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.shape {
  position: absolute; border-radius: 50%;
  background: var(--blue-50); opacity: 0.7;
}
.shape1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.shape2 { width: 300px; height: 300px; bottom: 100px; left: -100px; }
.shape3 { width: 150px; height: 150px; top: 40%; left: 40%; background: var(--blue-100); opacity: 0.4; }

.hero-badge {
  display: inline-block; background: var(--blue-50); color: var(--blue-600);
  border: 1px solid var(--blue-100); border-radius: 99px;
  padding: 6px 18px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
  animation: fadeSlideUp .6s ease both;
}
.hero-title {
  font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.1;
  color: var(--gray-800); margin-bottom: 20px; letter-spacing: -1.5px;
  animation: fadeSlideUp .7s ease both;
}
.hero-italic {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--blue-500); font-weight: 300;
}
.hero-sub {
  font-size: 18px; color: var(--gray-600); line-height: 1.6;
  margin-bottom: 36px; max-width: 520px;
  animation: fadeSlideUp .8s ease both;
}

/* SEARCH BOX */
.search-box {
  display: flex; align-items: center; gap: 0;
  background: white; border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 40px;
  animation: fadeSlideUp .9s ease both;
}
.search-field {
  flex: 1; padding: 14px 18px; display: flex;
  flex-direction: column; gap: 4px; min-width: 0;
}
.search-field label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--blue-400);
}
.search-field select, .search-field input {
  border: none; outline: none; font-family: var(--font);
  font-size: 14px; font-weight: 600; color: var(--gray-800);
  background: transparent; padding: 0; width: 100%;
}
.search-field select option { color: var(--gray-800); }
.search-divider { width: 1px; height: 40px; background: var(--blue-100); flex-shrink: 0; }
.btn-search {
  padding: 0 28px; height: 100%; min-height: 80px;
  background: var(--blue-500); color: white; border: none;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  cursor: pointer; white-space: nowrap; transition: all .2s;
  flex-shrink: 0;
}
.btn-search:hover { background: var(--blue-600); }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeSlideUp 1s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--blue-600); }
.stat-label { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.stat-sep { width: 1px; height: 32px; background: var(--blue-100); }

/* HERO CAR CARD */
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-car-card {
  background: white; border-radius: var(--radius-xl);
  padding: 28px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100); position: relative;
  animation: floatCard 3s ease-in-out infinite, fadeSlideUp .8s ease both;
  width: 100%; max-width: 440px;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.car-svg-wrap svg { width: 100%; height: auto; }
.floating-tag {
  position: absolute; background: white; border: 1.5px solid var(--blue-100);
  border-radius: 99px; padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: var(--blue-600); box-shadow: var(--shadow-sm);
}
.tag-fuel { top: 20px; right: 20px; }
.tag-km { bottom: 80px; left: 20px; }
.car-card-info {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--blue-50);
}
.car-card-name { font-weight: 700; font-size: 16px; color: var(--gray-800); }
.car-card-price { font-size: 20px; font-weight: 800; color: var(--blue-500); }
.car-card-price small { font-size: 13px; font-weight: 500; color: var(--gray-400); }

/* ===== SECTIONS ===== */
.section-title {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  color: var(--gray-800); letter-spacing: -0.5px; margin-bottom: 8px;
}
.section-sub { font-size: 16px; color: var(--gray-600); margin-bottom: 40px; }
.center { text-align: center; }

/* CATEGORIES */
.categories-section { padding: 80px 0; background: var(--gray-50); }
.category-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.cat-card {
  background: white; border: 1.5px solid var(--blue-100);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  cursor: pointer; transition: all .25s; display: flex;
  flex-direction: column; align-items: center; gap: 8px;
}
.cat-card:hover {
  border-color: var(--blue-400); box-shadow: var(--shadow-md);
  transform: translateY(-4px); background: var(--blue-50);
}
.cat-icon { font-size: 36px; }
.cat-card span { font-weight: 700; font-size: 15px; color: var(--gray-800); }
.cat-card small { font-size: 12px; color: var(--blue-500); font-weight: 600; }

/* CARS SECTION */
.cars-section { padding: 80px 0; }
.cars-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.filters-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filters-row select {
  padding: 8px 16px; border: 1.5px solid var(--blue-100); border-radius: 8px;
  font-family: var(--font); font-size: 14px; color: var(--gray-700, var(--gray-800));
  background: white; cursor: pointer; outline: none;
}
.filters-row select:focus { border-color: var(--blue-400); }
.cars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.car-card {
  background: white; border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .25s; cursor: pointer;
}
.car-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
  border-color: var(--blue-300, var(--blue-200));
}
.car-img-wrap {
  height: 180px; background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.car-img-wrap svg { width: 80%; height: auto; }
.car-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue-500); color: white; border-radius: 6px;
  padding: 4px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.car-badge.popular { background: var(--accent); }
.car-badge.electric { background: var(--green); }
.car-info { padding: 20px; }
.car-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.car-name { font-size: 17px; font-weight: 800; color: var(--gray-800); }
.car-rating { font-size: 13px; color: var(--accent); font-weight: 700; }
.car-meta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.car-meta span {
  font-size: 12px; color: var(--gray-600); background: var(--gray-100);
  padding: 4px 10px; border-radius: 6px; font-weight: 500;
}
.car-footer { display: flex; justify-content: space-between; align-items: center; }
.car-price { font-size: 22px; font-weight: 800; color: var(--blue-600); }
.car-price small { font-size: 13px; font-weight: 500; color: var(--gray-400); }
.btn-book {
  padding: 8px 20px; background: var(--blue-500); color: white;
  border: none; border-radius: 8px; font-family: var(--font);
  font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s;
}
.btn-book:hover { background: var(--blue-600); }
.btn-detail {
  padding: 8px 12px; background: transparent; color: var(--blue-500);
  border: 1.5px solid var(--blue-200); border-radius: 8px; font-family: var(--font);
  font-weight: 600; font-size: 13px; cursor: pointer; transition: all .2s;
}
.btn-detail:hover { background: var(--blue-50); }
.load-more-wrap { text-align: center; margin-top: 40px; }

/* HOW IT WORKS */
.how-section { padding: 80px 0; background: var(--gray-50); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 24px; margin-bottom: 48px; }
.step-card {
  background: white; border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
}
.step-num {
  font-size: 48px; font-weight: 800; color: var(--blue-100);
  line-height: 1; margin-bottom: 12px;
}
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--gray-800); }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.step-connector { width: 40px; height: 2px; background: var(--blue-200); flex-shrink: 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feat-item {
  display: flex; align-items: center; gap: 10px;
  background: white; padding: 16px; border-radius: var(--radius);
  border: 1px solid var(--blue-100); font-weight: 600; font-size: 14px;
}

/* OFFERS */
.offers-section { padding: 80px 0; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card {
  border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
}
.offer-card.promo-blue { background: var(--blue-50); border: 2px solid var(--blue-200); }
.offer-card.promo-teal { background: #e6fdf5; border: 2px solid #86efca; }
.offer-card.promo-coral { background: #fff4ef; border: 2px solid #fed7c0; }
.offer-badge {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
  background: var(--blue-500); color: white;
}
.promo-teal .offer-badge { background: #059669; }
.promo-coral .offer-badge { background: var(--accent); }
.offer-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: var(--gray-800); }
.offer-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; line-height: 1.5; }
.offer-code {
  background: white; border: 2px dashed var(--blue-300, var(--blue-200));
  border-radius: 8px; padding: 12px 16px; font-weight: 800; font-size: 15px;
  text-align: center; cursor: pointer; color: var(--blue-600); transition: all .2s;
  letter-spacing: 1px;
}
.offer-code:hover { background: var(--blue-50); }
.offer-expiry { font-size: 12px; color: var(--gray-400); margin-top: 10px; }

/* TESTIMONIALS */
.testimonials-section { padding: 80px 0; background: var(--blue-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--blue-100);
}
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; }
.reviewer small { font-size: 12px; color: var(--gray-400); }

/* CONTACT */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info { padding-top: 8px; }
.contact-info p { font-size: 16px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.6; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--blue-50); padding: 16px; border-radius: var(--radius);
}
.contact-item span { font-size: 24px; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; }
.contact-item small { font-size: 13px; color: var(--gray-600); }
.contact-form-wrap {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--blue-100);
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-600); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--blue-100); border-radius: 8px;
  font-family: var(--font); font-size: 14px; color: var(--gray-800);
  background: white; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-400);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; }
.link-blue { color: var(--blue-500); text-decoration: none; font-weight: 600; }
.link-blue:hover { text-decoration: underline; }
.full-width { width: 100%; }
.mt { margin-top: 8px; }

/* FOOTER */
.footer { background: var(--gray-800); color: #a0b4c8; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-brand .logo-text { color: white; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: 12px;
  font-weight: 700; transition: all .2s;
}
.social-links a:hover { background: var(--blue-500); }
.footer-links h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #a0b4c8; text-decoration: none; font-size: 14px; transition: color .2s;
}
.footer-links a:hover { color: var(--blue-300, var(--blue-200)); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; font-size: 13px;
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,30,60,.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
.modal {
  background: white; border-radius: var(--radius-xl);
  padding: 40px; max-width: 480px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: slideUp .3s ease;
}
.modal-wide { max-width: 680px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--gray-100); color: var(--gray-600);
  font-size: 14px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { background: var(--blue-50); color: var(--blue-500); }
.modal-logo { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.modal h2 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.modal-sub { color: var(--gray-600); font-size: 14px; margin-bottom: 24px; }
.modal-divider {
  text-align: center; margin: 20px 0; position: relative;
  color: var(--gray-400); font-size: 13px;
}
.modal-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--blue-100);
}
.modal-divider span {
  background: white; padding: 0 12px; position: relative; z-index: 1;
}
.btn-google {
  width: 100%; padding: 12px; border: 1.5px solid var(--blue-100);
  border-radius: 10px; background: white; font-family: var(--font);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s;
  color: var(--gray-800);
}
.btn-google:hover { background: var(--gray-50); }
.modal-switch { text-align: center; margin-top: 20px; font-size: 14px; color: var(--gray-600); }
.modal-switch a { color: var(--blue-500); font-weight: 700; text-decoration: none; }

/* BOOKING STEPS */
.booking-steps { display: flex; align-items: center; margin-bottom: 28px; gap: 0; }
.bstep {
  padding: 8px 20px; border-radius: 8px; font-size: 13px;
  font-weight: 700; color: var(--gray-400); background: var(--gray-100);
  transition: all .3s;
}
.bstep.active { background: var(--blue-500); color: white; }
.bstep.done { background: var(--blue-50); color: var(--blue-500); }
.bstep-line { flex: 1; height: 2px; background: var(--blue-100); }

.booking-car-info {
  background: var(--blue-50); border-radius: var(--radius);
  padding: 16px; margin-bottom: 20px; display: flex;
  align-items: center; gap: 16px; border: 1px solid var(--blue-100);
}
.booking-price-box {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 16px; margin: 16px 0; border: 1px solid var(--blue-100);
}
.price-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--gray-600); }
.price-row.total { font-weight: 800; font-size: 18px; color: var(--gray-800); border-top: 1px solid var(--blue-100); padding-top: 10px; margin-top: 4px; }

.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.addon-card {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--blue-100); border-radius: var(--radius);
  padding: 14px; cursor: pointer; transition: all .2s;
}
.addon-card:has(input:checked) { border-color: var(--blue-400); background: var(--blue-50); }
.addon-card input { width: 16px; height: 16px; accent-color: var(--blue-500); }
.addon-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.addon-info span { font-size: 13px; font-weight: 600; }
.addon-info small { font-size: 11px; color: var(--gray-400); }

.payment-methods { display: flex; gap: 12px; margin-bottom: 20px; }
.pay-option {
  flex: 1; text-align: center; padding: 12px;
  border: 1.5px solid var(--blue-100); border-radius: 10px;
  cursor: pointer; font-weight: 600; font-size: 14px; transition: all .2s;
}
.pay-option input { display: none; }
.active-pay { border-color: var(--blue-500); background: var(--blue-50); color: var(--blue-600); }
.coupon-row { display: flex; gap: 10px; margin-bottom: 12px; }
.coupon-row input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--blue-100);
  border-radius: 8px; font-family: var(--font); outline: none;
}
.coupon-row input:focus { border-color: var(--blue-400); }
.cod-info {
  background: #e6fdf5; border: 1px solid #86efca; border-radius: 8px;
  padding: 16px; font-size: 14px; color: #065f46; font-weight: 500; margin-bottom: 12px;
}

/* CONFIRMED */
.confirmed-anim { font-size: 72px; margin-bottom: 16px; animation: pop .4s ease; }
@keyframes pop { 0% { transform: scale(0); } 80% { transform: scale(1.2); } 100% { transform: scale(1); } }
.booking-id-box {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: 8px; padding: 12px 20px; font-size: 16px;
  margin: 16px 0; color: var(--blue-700, var(--blue-600));
}

/* TOAST */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--gray-800); color: white; padding: 14px 28px;
  border-radius: 99px; font-size: 14px; font-weight: 600;
  z-index: 9999; transition: transform .3s ease, opacity .3s;
  opacity: 0; pointer-events: none; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ANIMATIONS */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-img-wrap { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: white; padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--blue-100);
    box-shadow: var(--shadow-md); z-index: 999;
  }
  .hamburger { display: flex; }
  .search-box { flex-direction: column; border-radius: var(--radius); }
  .search-divider { width: 100%; height: 1px; }
  .btn-search { height: 48px; border-radius: 0 0 var(--radius) var(--radius); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid, .testimonials-grid, .cars-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .addons-grid { grid-template-columns: 1fr; }
  .payment-methods { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 24px; }
}
