/* ===================================================
   VELOX RENT — Kurumsal Açık Tema
   Palette: Beyaz + Koyu Lacivert + Amber Aksan
   Font: Playfair Display + Plus Jakarta Sans
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:      #0D1B3E;
  --navy-mid:  #1A2F5E;
  --navy-lt:   #2A4480;
  --amber:     #D4890A;
  --amber-lt:  #F5A623;
  --amber-dim: rgba(212,137,10,0.1);
  --white:     #FFFFFF;
  --off-white: #F7F8FC;
  --gray-50:   #F0F2F7;
  --gray-100:  #E4E8F0;
  --gray-200:  #CBD2E0;
  --gray-400:  #8896B3;
  --gray-600:  #4A5878;
  --gray-800:  #1E2A42;
  --text:      #0D1B3E;
  --text-mid:  #3D4F6E;
  --text-lt:   #6B7DA0;
  --red:       #C0392B;
  --green:     #1A8A4A;
  --border:    #DDE2EE;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm:  0 1px 4px rgba(13,27,62,0.08);
  --shadow:     0 4px 20px rgba(13,27,62,0.10);
  --shadow-lg:  0 12px 48px rgba(13,27,62,0.14);
  --shadow-xl:  0 24px 80px rgba(13,27,62,0.18);

  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--ff-body); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.18;
  color: var(--navy);
}
.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber);
  font-family: var(--ff-body);
}
.label-tag::before {
  content: ''; width: 28px; height: 2px; background: var(--amber);
}

/* ── Container ── */
.container     { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-sm  { max-width: 900px;  margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--transition);
}
.site-header.transparent .nav-inner { background: transparent; }
.site-header.scrolled .nav-inner {
  background: var(--white);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; padding: 0 40px;
  transition: var(--transition);
}
.nav-right {
  display: flex; align-items: center; margin-left: auto;
}
.nav-right .nav-links {
  margin-right: 32px;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.375rem; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo .dot { color: var(--amber); }
.site-header.scrolled .nav-logo { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.site-header.scrolled .nav-links a { color: var(--text-mid); }
.site-header.scrolled .nav-links a:hover { color: var(--navy); }
.site-header.scrolled .nav-links a.active { color: var(--amber); }

.nav-cta {
  padding: 11px 26px;
  background: var(--amber);
  color: var(--white) !important;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(212,137,10,0.35);
}
.nav-cta:hover { background: var(--amber-lt); box-shadow: 0 6px 20px rgba(212,137,10,0.45); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.site-header.scrolled .nav-hamburger span { background: var(--navy); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--white);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--ff-display); font-size: 2rem; color: var(--navy); transition: color var(--transition); }
.mobile-nav a:hover { color: var(--amber); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Gerçekçi araç fotoğrafı hissi — SVG tabanlı arka plan */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.75) 48%, rgba(5,12,30,0.55) 100%),
    linear-gradient(to bottom right, #0D1B3E 0%, #1A2F5E 40%, #0D2952 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 120% 80% at 75% 60%, rgba(212,137,10,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

/* Yol çizgisi efekti */
.hero-road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, rgba(212,137,10,0.06), transparent);
  border-top: 1px solid rgba(212,137,10,0.15);
}
.hero-road::before {
  content: '';
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 120px;
  background: repeating-linear-gradient(to top, rgba(255,255,255,0.4) 0px, rgba(255,255,255,0.4) 20px, transparent 20px, transparent 36px);
}

/* Dekoratif şerit */
.hero-stripe {
  position: absolute; top: 0; right: 280px; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--amber) 30%, var(--amber) 70%, transparent);
  opacity: 0.25;
}

.hero-content { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 70vh;
}
.hero-car-side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.hero-car-photo {
  width: 100%;
  max-width: 660px;
  object-fit: contain;
  animation: carFloat 6s ease-in-out infinite;
}
@keyframes carFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,137,10,0.15);
  border: 1px solid rgba(212,137,10,0.35);
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #F5C842; margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--amber-lt); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.8)} }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.06; color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--amber-lt); font-style: italic; }
.hero-desc {
  font-size: 1.0625rem; color: rgba(255,255,255,0.72);
  max-width: 500px; line-height: 1.72; margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-num { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--white); line-height: 1; }
.trust-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.08em; }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ═══════════════════════════════════════════
   BOOKING BAR
═══════════════════════════════════════════ */
.booking-outer {
  background: var(--navy);
  padding: 0 0 60px;
  margin-top: -2px;
}
.booking-section {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-top: 48px;
  border: 1px solid var(--border);
  position: relative; z-index: 3;
}
.booking-section::before {
  content: '';
  position: absolute; top: 0; left: 40px; right: 40px; height: 3px;
  background: linear-gradient(to right, var(--amber), var(--amber-lt));
  border-radius: 0 0 3px 3px; top: auto; bottom: auto; top: 0;
  border-radius: 3px 3px 0 0;
}
.booking-section h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.booking-section h3::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-100);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 14px; align-items: end;
}
.bfield label {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 7px;
}
.bfield input,
.bfield select {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  transition: var(--transition);
  appearance: none;
}
.bfield input:focus,
.bfield select:focus {
  outline: none; border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,137,10,0.12);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border: none; font-family: var(--ff-body);
  font-weight: 700; transition: var(--transition);
  text-decoration: none; white-space: nowrap; border-radius: var(--radius);
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 14px 32px; font-size: 0.85rem; letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(212,137,10,0.3);
}
.btn-primary:hover { background: var(--amber-lt); box-shadow: 0 8px 28px rgba(212,137,10,0.4); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 14px 32px; font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 28px; font-size: 0.85rem;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px; font-size: 0.82rem;
  box-shadow: 0 4px 16px rgba(13,27,62,0.2);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  padding: 10px 22px; font-size: 0.8rem;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn-sm { padding: 8px 18px; font-size: 0.75rem; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   SECTION
═══════════════════════════════════════════ */
.section      { padding: 100px 0; }
.section-sm   { padding: 64px 0; }
.section-gray { background: var(--off-white); }
.section-navy { background: var(--navy); }

.section-header { margin-bottom: 56px; }
.section-header .label-tag { margin-bottom: 14px; }
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-mid); margin-top: 14px;
  max-width: 540px; font-size: 0.975rem; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 36px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 700; color: var(--amber-lt);
  line-height: 1; margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   CAR CARDS
═══════════════════════════════════════════ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 28px;
}
.car-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212,137,10,0.4);
}
.car-card-img {
  height: 210px; overflow: hidden; position: relative;
  background: var(--gray-50);
}
.car-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.car-card:hover .car-card-img img { transform: scale(1.05); }

/* SVG araba görseli */
.car-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  position: relative; overflow: hidden;
}
.car-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,137,10,0.06));
}
.car-placeholder svg { position: relative; z-index: 1; }

.car-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.car-badge.blue { background: var(--navy); }

.car-card-body { padding: 22px 24px 24px; }
.car-cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 6px;
}
.car-name {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin-bottom: 14px;
}
.car-specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.car-spec {
  font-size: 0.72rem; font-weight: 500; color: var(--text-mid);
  background: var(--gray-50); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 100px;
}
.car-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.car-price-lbl { font-size: 0.65rem; color: var(--text-lt); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.car-price-val {
  font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.car-price-val small { font-size: 0.85rem; color: var(--text-lt); font-family: var(--ff-body); font-weight: 400; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(212,137,10,0.3); transform: translateY(-3px); }
.feature-num {
  font-family: var(--ff-display); font-size: 3.5rem; font-weight: 700;
  color: var(--gray-100); line-height: 1; margin-bottom: 20px;
  position: relative;
}
.feature-num::after {
  content: attr(data-n);
  position: absolute; left: 0; top: 0;
  font-size: 3.5rem; color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  opacity: 0.3;
}
.feature-card h3 { font-size: 1.175rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.feature-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }
.feature-line {
  position: absolute; top: 0; left: 30px; width: 40px; height: 3px;
  background: var(--amber); border-radius: 0 0 3px 3px;
}

/* ═══════════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════════ */
.filter-bar {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 40px;
  padding: 6px; background: var(--gray-50); border-radius: 10px;
  border: 1px solid var(--border); width: fit-content;
}
.filter-btn {
  padding: 9px 20px;
  background: transparent; border: none;
  color: var(--text-mid); font-size: 0.78rem; font-weight: 600;
  border-radius: 7px; cursor: pointer;
  transition: var(--transition); font-family: var(--ff-body);
  letter-spacing: 0.03em;
}
.filter-btn:hover { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.filter-btn.active { background: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════════
   PAGE HERO (İç sayfalar)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0D2952 100%);
  padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 90% 50%, rgba(212,137,10,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.breadcrumb a { color: var(--amber-lt); }
.breadcrumb span { opacity: .5; }
.page-hero h1 {
  font-size: clamp(1.8rem,4vw,3.25rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════ */
.booking-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
}
.booking-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow);
  position: sticky; top: 96px;
}
.booking-card h3 {
  font-size: 1.175rem; padding-bottom: 18px;
  border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.sum-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--gray-50);
  font-size: 0.875rem;
}
.sum-row:last-child { border-bottom: none; }
.sum-row .lbl { color: var(--text-lt); font-weight: 500; }
.sum-row.total { padding-top: 16px; margin-top: 6px; border-top: 2px solid var(--border); border-bottom: none; }
.sum-row.total .lbl { font-size: 1rem; font-weight: 700; color: var(--navy); }
.sum-row.total .val {
  font-family: var(--ff-display); font-size: 1.75rem; font-weight: 700;
  color: var(--amber);
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.form-section { margin-bottom: 32px; }
.form-section-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 10px;
}
.form-section-title::before { content: ''; width: 20px; height: 2px; background: var(--amber); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 400;
  transition: var(--transition); width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,137,10,0.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }

.extras-list { display: flex; flex-direction: column; gap: 10px; }
.extra-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  cursor: pointer; transition: var(--transition);
}
.extra-item:hover { border-color: var(--amber); background: rgba(212,137,10,0.03); }
.extra-item input[type=checkbox] { accent-color: var(--amber); width: 17px; height: 17px; flex-shrink: 0; }
.extra-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.extra-desc { font-size: 0.75rem; color: var(--text-lt); margin-top: 2px; }
.extra-price { font-size: 0.82rem; font-weight: 700; color: var(--amber); white-space: nowrap; margin-left: auto; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: var(--transition);
}
.tcard:hover { box-shadow: var(--shadow-lg); border-color: rgba(212,137,10,0.3); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.tcard-stars span { color: var(--amber-lt); font-size: 1rem; }
.tcard-text {
  font-family: var(--ff-display); font-size: 1.0625rem; font-style: italic;
  color: var(--text-mid); line-height: 1.7; margin-bottom: 22px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1rem; color: var(--white); font-weight: 600;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.72rem; color: var(--text-lt); margin-top: 2px; }

/* ═══════════════════════════════════════════
   CAR DETAIL
═══════════════════════════════════════════ */
.detail-gallery { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.spec-item {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
}
.spec-lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 5px; }
.spec-val { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════
   CONFIRMATION
═══════════════════════════════════════════ */
.confirm-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 56px 48px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.confirm-icon {
  width: 80px; height: 80px;
  background: rgba(26,138,74,0.08); border: 2px solid rgba(26,138,74,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2rem; color: var(--green);
}
.confirm-num {
  font-family: var(--ff-display); font-size: 2.25rem; font-weight: 700;
  color: var(--amber); letter-spacing: 0.06em; margin: 16px 0;
}
.confirm-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; text-align: left; margin: 32px 0;
}

/* ═══════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════ */
.alert {
  padding: 13px 18px; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(26,138,74,0.08); border: 1.5px solid rgba(26,138,74,0.25); color: var(--green); }
.alert-error   { background: rgba(192,57,43,0.08); border: 1.5px solid rgba(192,57,43,0.25); color: var(--red); }
.alert-info    { background: var(--amber-dim);      border: 1.5px solid rgba(212,137,10,0.25); color: var(--amber); }

/* ═══════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; color: var(--text-mid);
  transition: var(--transition); text-decoration: none;
}
.page-btn:hover, .page-btn.active { border-color: var(--amber); color: var(--amber); background: var(--amber-dim); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--amber-dim); border: 1.5px solid rgba(212,137,10,0.25);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 1.2rem;
}
.contact-info-lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 4px; }
.contact-info-val { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em; margin-bottom: 14px; display: block;
}
.footer-logo .dot { color: var(--amber); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px; font-family: var(--ff-body);
}
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.65);
  margin-bottom: 10px; font-weight: 500; transition: color var(--transition);
}
.footer-col a:hover { color: var(--amber-lt); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(110deg, var(--amber) 0%, var(--amber-lt) 100%);
  padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 32px; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-right { gap: 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.25rem; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-car-side { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-section { padding: 24px 20px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 72px 0; }
  .page-hero { padding: 110px 0 52px; }
  .form-grid { grid-template-columns: 1fr; }
  .confirm-details { grid-template-columns: 1fr; }
  .confirm-box { padding: 36px 24px; }
  .detail-specs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-sep { display: none; }
  .detail-specs-grid { grid-template-columns: 1fr; }
}