/* ============================================
   GEAR ON — Vehicle Rental Website
   Premium Light Theme CSS
   ============================================ */

/* ── Self-hosted Outfit font (WOFF2) — no CDN, no render-blocking import ── */
/* latin-ext subset */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin subset */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── CSS Custom Properties ── */
:root {
  --primary: #1B5E20;
  --primary-dark: #0D3B0F;
  --primary-light: #E8F5E9;
  --accent-orange: #FF6B35;
  --accent-orange-dark: #E55A2B;
  --accent-orange-light: #FFF0EB;
  --secondary: #1B2A4A;
  --secondary-light: #2D4470;
  --accent: #00B4D8;
  --accent-light: #E0F7FA;
  --success: #2ECC71;
  --bg: #FFFFFF;
  --surface: #F8F9FC;
  --surface-alt: #F0F2F8;
  --text-primary: #1A1A2E;
  --text-secondary: #555770;
  --text-muted: #8A8DA0;
  --border: #E8EAF0;
  --border-light: #F0F2F8;
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.12);
  --shadow-xl: 0 16px 60px rgba(27, 42, 74, 0.16);
  --radius-card: 12px;
  --radius-btn: 50px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   1. CSS RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--primary);
  color: #FFFFFF;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.3;
}

.brand-green {
  color: var(--primary);
  font-weight: 700;
}

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

/* ── Animation Utilities ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   3. BUTTON STYLES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* ============================================
   4. NAVIGATION (Sticky)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--primary);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.drawer-close-container {
  display: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-links .nav-cta {
  background: var(--primary);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.nav-links .nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
/* Full-bleed background photo — natural proportions, no zoom/crop */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-color: #2a2a2a;
  background-image: url('images/hero-bg.jpeg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Left-side overlay for text readability over the grey photo area */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(230, 230, 230, 0.60) 0%,
    rgba(230, 230, 230, 0.30) 42%,
    transparent 62%
  );
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  display: none;
}

/* Hero container: full width, no max-width centering */
.hero > .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  width: clamp(280px, 40vw, 560px);
  padding: clamp(100px, 12vw, 140px) clamp(24px, 4vw, 64px) clamp(48px, 8vw, 100px) clamp(24px, 5vw, 80px);
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: clamp(1.4rem, 3.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: clamp(8px, 1.5vw, 20px);
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.hero-text h1 span {
  color: var(--primary);
  position: relative;
}

.hero-text p {
  font-size: clamp(0.7rem, 1.3vw, 1.15rem);
  color: #2c2c2c;
  margin-bottom: clamp(12px, 2.5vw, 32px);
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.hero-buttons {
  display: flex;
  gap: clamp(6px, 1vw, 16px);
  flex-wrap: wrap;
  margin-bottom: clamp(16px, 3vw, 40px);
}

.hero-stats {
  display: flex;
  gap: clamp(12px, 3vw, 40px);
  flex-wrap: wrap;
}

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

.hero-stat .stat-number {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--accent-orange);
}

.hero-stat .stat-label {
  font-size: clamp(0.6rem, 1vw, 0.85rem);
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image {
  display: none;
}

.hero-image img {
  display: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: float 6s ease-in-out infinite;
}

.hero-badge:nth-child(2) {
  top: 10%;
  left: -10%;
  animation-delay: -2s;
}

.hero-badge:nth-child(3) {
  bottom: 15%;
  right: -5%;
  animation-delay: -4s;
}

/* ============================================
   6. ABOUT SECTION
   ============================================ */
.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.about-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-card .card-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.about-card:nth-child(1) .card-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.about-card:nth-child(2) .card-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.about-card:nth-child(3) .card-icon {
  background: #E8F5E9;
  color: var(--success);
}

.about-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   7. HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  background: #FFFFFF;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 2.5vw, 32px);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: clamp(36px, 6vw, 70px);
  height: clamp(36px, 6vw, 70px);
  border-radius: 50%;
  background: #FFFFFF;
  border: clamp(2px, 0.3vw, 3px) solid var(--primary);
  color: var(--primary);
  font-size: clamp(0.8rem, 1.4vw, 1.5rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(8px, 2vw, 24px);
  transition: var(--transition);
  position: relative;
}

.step-card:hover .step-number {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.1);
}

.step-card h3 {
  font-size: clamp(0.8rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: clamp(4px, 0.6vw, 8px);
}

.step-card p {
  color: var(--text-secondary);
  font-size: clamp(0.7rem, 1.2vw, 1.4rem);
}

/* ============================================
   8. VEHICLES SECTION
   ============================================ */
.vehicles {
  background: var(--surface);
}

.vehicle-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.vehicle-tab {
  padding: 10px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--border);
  background: #FFFFFF;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: inherit;
}

.vehicle-tab.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.vehicle-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.vehicle-tab.active:hover {
  color: #FFFFFF;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.city-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.city-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Clickable card wrapper — the entire article is a link */
.vehicle-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
}

/* Full-card link overlay */
.vehicle-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vehicle-card .card-image img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.5s;
}

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

.vehicle-card .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.8rem;
  font-weight: 600;
}

.vehicle-card .card-body {
  padding: 24px;
}

.vehicle-card .card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.vehicle-card .card-body .vehicle-type {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.vehicle-card .card-body .vehicle-features {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.vehicle-card .card-body .feature-tag {
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.vehicle-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vehicle-card .card-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-orange);
}

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

.vehicle-card .card-book-btn,
.vehicle-card a.card-book-btn {
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.vehicle-card .card-book-btn:hover,
.vehicle-card a.card-book-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* ============================================
   9. WHY CHOOSE US
   ============================================ */
.why-us {
  background: #FFFFFF;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-us-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: #f3f6f8;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.4s;
}

.why-us-card:hover::before {
  height: 100%;
}

.why-us-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 94, 32, 0.2);
}

.why-us-card .why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-us-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
}

/* ============================================
   10. APP DOWNLOAD SECTION
   ============================================ */
.app-download {
  background: linear-gradient(135deg, var(--secondary) 0%, #2D4470 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.app-download::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 94, 32, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.app-download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px 60px;
  align-items: center;
  text-align: left;
}

.app-download-content h2 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.app-download-text {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.app-download-image {
  grid-column: 2;
  grid-row: 1 / -1;
}

.app-download-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.store-btn .store-icon {
  font-size: 2rem;
}

.store-btn .store-text {
  text-align: left;
}

.store-btn .store-text small {
  font-size: 0.75rem;
  opacity: 0.8;
  display: block;
}

.store-btn .store-text strong {
  font-size: 1.05rem;
  display: block;
}

.app-download-image {
  display: flex;
  justify-content: center;
}

.app-mockup {
  max-width: 280px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ── Download Actions (Store Buttons + QR) ── */
.download-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.qr-code-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.qr-code-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.qr-code-img {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 8px;
}

.qr-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   11. CITY COVERAGE SECTION
   ============================================ */
.cities {
  background: var(--surface);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 24px;
}

.city-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  cursor: default;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 94, 32, 0.3);
}

.city-card .city-hero-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.city-card:hover .city-hero-img {
  transform: scale(1.06);
}

.city-card .city-hero-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #4a6741 0%, #1b5e20 50%, #2d4470 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.city-card .city-body {
  padding: 20px 20px 22px;
}

.city-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

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

.cities-counter {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.counter-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.counter-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============================================
   12. FAQ SECTION
   ============================================ */
.faq {
  background: #FFFFFF;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(27, 94, 32, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.05rem;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  background: var(--primary-light);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================
   13. FOOTER
   ============================================ */
.footer {
  background: var(--secondary);
  color: #FFFFFF;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.footer-logo h3 span {
  color: var(--primary);
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ============================================
   14. SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================
   15. MOBILE RESPONSIVE
   ============================================ */

/* ── Tablet / Small Desktop ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .section-title {
    font-size: 2rem;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {

  /* ─── Container & Utilities ─── */
  .container {
    padding: 0 20px;
  }

  .section-padding {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 36px;
  }

  /* ─── Navigation Drawer ─── */
  .mobile-toggle {
    display: flex;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  .nav-logo .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 999;
  }

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

  .drawer-close-container {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .drawer-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
  }

  .drawer-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
  }


  .nav-links a {
    font-size: 1.05rem;
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--primary-light);
    color: var(--primary);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 24px;
    border-radius: var(--radius-btn);
  }

  /* ─── Hero Section (Mobile — road background photo) ─── */
  .hero {
    min-height: 70vh;
    padding: 0;
    background-color: #1a1a1a;
    background-image: url('images/hero-bg.jpeg');
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: stretch;
  }

  /* Dark gradient overlay on mobile for text readability */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.70) 60%,
      rgba(0, 0, 0, 0.50) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Remove desktop right-side overlay on mobile */
  .hero::after {
    display: none;
  }

  .hero > .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    max-width: 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: left;
    width: 100%;
  }

  /* Text panel — left-aligned, left edge of screen */
  .hero-text {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 110px 20px 56px 24px;
    box-shadow: none;
    width: auto;
    max-width: 85vw;
    flex-shrink: 0;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.35;
    margin-bottom: 16px;
    color: #FFFFFF;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  }

  .hero-text h1 span {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #FFFFFF;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 0 0 28px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    line-height: 1.65;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  /* Outline button is white on the dark gradient hero */
  .hero-text .btn-outline,
  .hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #FFFFFF;
  }

  .hero-text .btn-outline:hover,
  .hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Stat labels/numbers: white on dark bg */
  .hero-stats {
    justify-content: flex-start;
    gap: 32px;
  }

  .hero-stat .stat-number {
    font-size: 1.5rem;
    color: #FFFFFF;
  }

  .hero-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-image {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  /* ─── About Section (2×2 Grid) ─── */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-card {
    padding: 24px 16px;
  }

  .about-card .card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .about-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .about-card p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  /* ─── How It Works (2×2 Grid) ─── */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .step-card h3 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }

  .step-card p {
    font-size: 0.8rem;
  }

  /* ─── Vehicles Section (2×2 Grid) ─── */
  .vehicle-tabs {
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .vehicle-tabs::-webkit-scrollbar {
    display: none;
  }

  .vehicle-tab {
    padding: 8px 18px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .vehicle-card .card-image {
    height: 150px;
    padding: 12px;
  }

  .vehicle-card .card-image img {
    max-height: 120px;
  }

  .vehicle-card .card-body {
    padding: 14px 16px;
  }

  .vehicle-card .card-body h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .vehicle-card .card-body .vehicle-type {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .vehicle-card .card-body .vehicle-features {
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .vehicle-card .card-body .feature-tag {
    padding: 3px 8px;
    font-size: 0.68rem;
  }

  .vehicle-card .card-price {
    font-size: 1.1rem;
  }

  .vehicle-card .card-price span {
    font-size: 0.72rem;
  }

  .vehicle-card .card-book-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  /* ─── Why Choose Us (2-col with borders) ─── */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-us-card {
    padding: 20px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-card);
  }

  .why-us-card .why-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .why-us-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .why-us-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: justify;
  }

  /* ─── App Download ─── */
  .app-download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .app-download-content h2 {
    font-size: 1.6rem;
    align-self: center;
  }

  .app-download-text {
    align-self: center;
  }

  .download-actions {
    flex-direction: column;
    align-items: center;
  }

  .store-buttons {
    justify-content: center;
  }

  .app-phone-mockup {
    width: 200px;
  }

  .app-download-text p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .store-btn {
    padding: 12px 20px;
    gap: 10px;
  }

  .store-btn .store-icon svg {
    width: 26px;
    height: 26px;
  }

  .store-btn .store-text small {
    font-size: 0.65rem;
  }

  .store-btn .store-text strong {
    font-size: 0.9rem;
  }

  .qr-code-wrapper {
    display: none;
  }

  /* ─── Cities (2-col) ─── */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .city-card .city-hero-img,
  .city-card .city-hero-placeholder {
    height: 140px;
  }

  .city-card h3 {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .city-card p {
    font-size: 0.78rem;
  }

  .cities-counter {
    margin-top: 28px;
    padding: 28px 20px;
  }

  .counter-number {
    font-size: 3rem;
  }

  .counter-label {
    font-size: 0.92rem;
  }

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

  .faq-question .faq-toggle {
    width: 24px;
    height: 24px;
  }

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

  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  /* ─── CTA Banner ─── */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .cta-banner p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  /* ─── Footer ─── */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-logo .logo-icon {
    width: 30px;
    height: 30px;
  }

  .footer-logo h3 {
    font-size: 1.3rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .footer-bottom {
    padding: 20px 0;
    font-size: 0.78rem;
  }

  /* ─── Scroll to Top ─── */
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 16px;
  }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }

  /* ─── Hero Fine-Tune ─── */
  .hero > .container {
    padding: 0;
    max-width: 100%;
  }

  .hero-text {
    width: auto;
    max-width: 90vw;
    padding: 96px 16px 40px 24px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: fit-content;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat .stat-number {
    font-size: 1.3rem;
  }

  /* ─── About (stay 2×2 but tighter) ─── */
  .about-grid {
    gap: 10px;
  }

  .about-card {
    padding: 18px 12px;
  }

  .about-card .card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .about-card h3 {
    font-size: 0.92rem;
  }

  .about-card p {
    font-size: 0.75rem;
  }

  /* ─── How It Works tighter ─── */
  .steps-grid {
    gap: 16px 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .step-card h3 {
    font-size: 0.82rem;
  }

  .step-card p {
    font-size: 0.72rem;
  }

  /* ─── Vehicles tighter ─── */
  .vehicles-grid {
    gap: 10px;
  }

  .vehicle-card .card-image {
    height: 120px;
    padding: 8px;
  }

  .vehicle-card .card-image img {
    max-height: 100px;
  }

  .vehicle-card .card-body {
    padding: 10px 12px;
  }

  .vehicle-card .card-body h3 {
    font-size: 0.85rem;
  }

  .vehicle-card .card-body .vehicle-type {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .vehicle-card .card-body .vehicle-features {
    gap: 4px;
    margin-bottom: 8px;
  }

  .vehicle-card .card-body .feature-tag {
    padding: 2px 6px;
    font-size: 0.62rem;
  }

  .vehicle-card .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .vehicle-card .card-price {
    font-size: 1rem;
  }

  .vehicle-card .card-book-btn {
    width: 100%;
    text-align: center;
    padding: 8px 12px;
  }

  /* ─── Why Us tighter ─── */
  .why-us-grid {
    gap: 10px;
  }

  .why-us-card {
    padding: 16px 12px;
  }

  .why-us-card .why-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .why-us-card h3 {
    font-size: 0.85rem;
  }

  .why-us-card p {
    font-size: 0.72rem;
  }

  /* ─── App Download tighter ─── */
  .app-download-content {
    gap: 20px;
  }

  .app-download-content h2 {
    font-size: 1.35rem;
  }

  .app-phone-mockup {
    width: 180px;
  }

  .app-download-text p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .store-btn {
    padding: 10px 16px;
  }

  .store-btn .store-text strong {
    font-size: 0.82rem;
  }


  /* ─── Cities ─── */
  .cities-grid {
    gap: 10px;
  }

  .city-card .city-hero-img,
  .city-card .city-hero-placeholder {
    height: 110px;
  }

  .city-card h3 {
    font-size: 0.88rem;
  }

  .city-card p {
    font-size: 0.72rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  /* ─── CTA Banner ─── */
  .cta-banner {
    padding: 36px 0;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .cta-banner p {
    font-size: 0.85rem;
  }

  /* ─── FAQ ─── */
  .faq-question {
    padding: 14px 14px;
    font-size: 0.85rem;
  }

  .faq-answer p {
    font-size: 0.82rem;
  }

  /* ─── Footer ─── */
  .footer {
    padding: 36px 0 0;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 24px;
  }
}

/* ============================================
   16. ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   17. PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================
   18. CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-light) 0%, #FFF 50%, var(--accent-light) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA banner mobile styles are now in the main 768px media query above */

/* ============================================
   19. PHONE MOCKUP
   ============================================ */
.app-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-phone-mockup {
  width: 280px;
  background: #1A1A2E;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
  animation-delay: -1s;
}

.app-screenshot-img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}

/* ============================================
   20. ACTIVE NAV LINK
   ============================================ */
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── Vehicle card transition for tab filtering ── */
.vehicle-card {
  transition: var(--transition), opacity 0.3s ease;
}

/* ============================================
   21. TESTIMONIALS SECTION
   ============================================ */

/* ── Section wrapper ── */
.testimonials {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 94, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Rating Overview ── */
.rating-overview {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  margin: 2rem 0 3rem;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.rating-big-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 110px;
}

.big-score-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -2px;
}

.big-score-stars {
  display: flex;
  gap: 2px;
}

.big-score-stars svg {
  width: 20px;
  height: 20px;
}

.big-score-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Rating Bars */
.rating-bars {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 28px;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), #FFD700);
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill--mid {
  background: linear-gradient(90deg, #aaa, #ccc);
}

.bar-fill--low {
  background: linear-gradient(90deg, #d0d0d0, #e8e8e8);
}

.bar-pct {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 28px;
  text-align: right;
}

/* CTA Link inside rating bar */
.rating-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.25);
}

.rating-cta-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.35);
}

/* ── Testimonials Grid ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* ── Base Card ── */
.testi-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* unified white style for all cards */
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.testi-card:hover {
  transform: translateY(-5px);
}

/* ── All card variants — unified to white style ── */
.testi-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testi-card--accent,
.testi-card--dark {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.testi-card--accent::before,
.testi-card--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Quote Icon ── */
.testi-quote-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.testi-quote-icon svg {
  width: 18px;
  height: 18px;
}

.testi-quote-icon--light {
  background: var(--primary-light);
  color: var(--primary);
}

/* ── Trip Tag ── */
.testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  width: fit-content;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Stars ── */
.testi-stars {
  display: flex;
  gap: 2px;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
}

/* ── Review Text ── */
.testi-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  font-style: italic;
}

.testi-card--dark .testi-text {
  color: var(--text-secondary);
}

/* ── Author Block ── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.testi-card--dark .testi-author {
  border-top-color: var(--border-light);
}

/* Avatar initials circle */
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-orange), #FFD700);
  color: #fff;
  letter-spacing: 0.02em;
}

.testi-avatar--green {
  background: linear-gradient(135deg, var(--primary), #4CAF50);
}

.testi-avatar--dark {
  background: linear-gradient(135deg, var(--accent), #00e5ff);
  color: var(--secondary);
}

.testi-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testi-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-card--dark .testi-name {
  color: var(--text-primary);
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testi-meta--light {
  color: var(--text-muted);
}

/* Verified badge */
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.2rem 0.45rem;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}

.testi-verified--light {
  background: var(--primary-light);
  color: var(--primary);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .testi-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  /* Cards: single horizontal scrollable row */
  .testimonials-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
  }

  .testi-card {
    flex: 0 0 75vw;
    max-width: 75vw;
    scroll-snap-align: start;
    padding: 1rem;
    gap: 0.55rem;
  }

  .testi-card--featured {
    grid-column: unset;
  }

  /* Rating overview — compact on mobile */
  .rating-overview {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0.75rem;
    margin: 1.25rem 0 1.75rem;
  }

  .rating-big-score {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: unset;
  }

  .big-score-number {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .big-score-stars svg {
    width: 14px;
    height: 14px;
  }

  .rating-bars {
    min-width: 140px;
    flex: 1;
  }

  .bar-track {
    height: 6px;
  }

  .rating-cta-link {
    width: 100%;
    justify-content: center;
    font-size: 0.76rem;
    padding: 0.55rem 1rem;
  }
}

