/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
  --bg-main: #FFFFFF;
  --bg-soft: #FFF8F3;
  --bg-section: #FEF3E8;
  --bg-dark-footer: #1A1008;
  --primary: #E07020;
  --primary-light: #F5A855;
  --primary-pale: #FFF0E0;
  --primary-dark: #B85A10;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #7A7A8A;
  --border: #F0E4D4;
  --border-strong: #E8C9A0;
  --card-bg: #FFFFFF;
  --white: #FFFFFF;
  --cta-gradient: linear-gradient(135deg, var(--primary), var(--primary-light));

  --font-main: 'Outfit', sans-serif;

  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);

  --shadow-sm: 0 2px 8px rgba(224, 112, 32, 0.08);
  --shadow-md: 0 8px 24px rgba(224, 112, 32, 0.12);
  --shadow-lg: 0 20px 50px rgba(224, 112, 32, 0.15);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
}

h1 { font-size: 62px; margin-bottom: 20px; }
h2 { font-size: 44px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 12px; }

.orange-text { color: var(--primary); }
.gold-text { color: var(--primary); }

.orange-gradient-text,
.gold-gradient-text {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.bg-soft { background-color: var(--bg-soft); }
.bg-section { background-color: var(--bg-section); }
.bg-darker { background-color: var(--bg-soft); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }

/* Section Labels */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: none;
  gap: 8px;
  z-index: 1;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--cta-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(224, 112, 32, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 112, 32, 0.45);
  color: #fff;
}

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

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

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1EB657;
  transform: translateY(-2px);
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 600ms linear;
  background-color: rgba(255, 255, 255, 0.35);
}

@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-car {
  font-size: 48px;
  color: var(--primary);
  animation: drive 2s infinite ease-in-out;
  margin-bottom: 20px;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(224, 112, 32, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

#loader-text {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

@keyframes drive {
  0% { transform: translateX(-50px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(50px); opacity: 0; }
}

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

/* ==========================================================================
   SCROLL PROGRESS & FLOATING
   ========================================================================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; height: 3px;
  background: var(--cta-gradient);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s;
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform var(--transition-fast);
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.float-whatsapp {
  background-color: #25D366;
  animation: pulse-green 2s infinite;
}

.float-call {
  background: var(--cta-gradient);
}

.scroll-top {
  background: var(--white);
  border: 2px solid var(--border-strong);
  color: var(--primary);
  width: 46px;
  height: 46px;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

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

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 16px 0;
  z-index: 1000;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(224, 112, 32, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition-fast);
}

.navbar.scrolled .logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  padding: 8px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--primary-pale);
  color: var(--primary);
  padding-left: 26px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION — SPLIT LAYOUT
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #FFF5EC 0%, #FFFAF6 40%, #FEF0E0 100%);
  overflow: hidden;
  padding-top: 88px;
}

/* ── Premium background layers ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(224,112,32,0.18) 0%, transparent 70%);
  top: -120px; right: -60px;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,168,85,0.14) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(224,112,32,0.10) 0%, transparent 70%);
  top: 45%; left: 38%;
  animation: orb-drift 22s ease-in-out infinite alternate;
}

.hero-streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,112,32,0.25), transparent);
  transform-origin: left center;
}

.hero-streak-1 {
  width: 60%; top: 28%;
  left: 10%;
  transform: rotate(-8deg);
  animation: streak-fade 4s ease-in-out infinite alternate;
}
.hero-streak-2 {
  width: 40%; top: 62%;
  left: 30%;
  transform: rotate(-5deg);
  animation: streak-fade 6s ease-in-out 1s infinite alternate;
}
.hero-streak-3 {
  width: 30%; top: 48%;
  left: 5%;
  transform: rotate(-3deg);
  animation: streak-fade 5s ease-in-out 2s infinite alternate;
}

/* Subtle dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(224,112,32,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes streak-fade {
  0%   { opacity: 0.4; transform: rotate(-8deg) scaleX(0.8); }
  100% { opacity: 1;   transform: rotate(-8deg) scaleX(1); }
}

/* ── Two-column split ── */
.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 88px);
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* ── Left: text ── */
.hero-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-left h1 {
  font-size: 62px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--primary);
  font-size: 15px;
}

/* ── Right: car scene ── */
.hero-right {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.hero-car-scene {
  position: relative;
  width: 100%;
  padding-bottom: 12px;
}

/* Glow disc under the car */
.car-glow-disc {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(224,112,32,0.22) 0%, transparent 70%);
  filter: blur(18px);
  border-radius: 50%;
  z-index: 0;
}

.hero-car-img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: car-float 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.12));
}

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

/* ── Floating stats card (bottom) ── */
.hero-float-stats {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224,112,32,0.18);
  border-radius: 18px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(224,112,32,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 3;
  white-space: nowrap;
}

.float-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.float-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.float-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.float-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Floating badge top-right ── */
.hero-float-badge {
  position: absolute;
  top: 16px;
  right: -12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(224,112,32,0.18);
  border-radius: 50px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(224,112,32,0.12);
  z-index: 3;
  backdrop-filter: blur(10px);
  animation: badge-float 4s ease-in-out 1s infinite;
}

.hero-float-badge i {
  color: var(--primary);
  font-size: 15px;
}

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

/* ── Floating fare chip bottom-left ── */
.hero-float-fare {
  position: absolute;
  top: 52%;
  left: -16px;
  background: var(--cta-gradient);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(224,112,32,0.3);
  z-index: 3;
  animation: badge-float 4.5s ease-in-out 0.5s infinite;
}

.fare-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fare-price {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.fare-price small {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

/* ── Badge pill ── */
.badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary-pale);
  border: 1px solid rgba(224, 112, 32, 0.25);
  border-radius: 50px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ==========================================================================
   CLEAN CARDS (replaced glassmorphism)
   ========================================================================== */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--cta-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

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

.glass-card:hover::before {
  transform: scaleX(1);
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.feature-card h3 { color: var(--text-dark); }
.feature-card p { color: var(--text-muted); font-size: 14px; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-main);
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link {
  gap: 12px;
}

/* ==========================================================================
   FLEET — COMPACT 3-COLUMN CARDS
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.fleet-img-wrapper {
  height: 110px;
  background: linear-gradient(135deg, var(--bg-section), var(--primary-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.fleet-content {
  padding: 20px 22px 22px;
}

.fleet-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.fleet-specs {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.spec-item i {
  color: var(--primary);
  font-size: 11px;
}

.fleet-features {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fleet-features span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--primary-pale);
  border-radius: 4px;
  color: var(--primary-dark);
}

.fleet-actions {
  display: flex;
  gap: 10px;
}

.fleet-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
}

/* ==========================================================================
   STATS COUNTER
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 60px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-item p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ==========================================================================
   BOOKING PROCESS TIMELINE
   ========================================================================== */
/* ==========================================================================
   BOOKING STEPS SECTION
   ========================================================================== */
.booking-steps-section {
  background: var(--white);
}

.steps-subtitle {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--text-muted);
}

.steps-subtitle i {
  color: var(--primary);
}

/* 7-column grid: card · arrow · card · arrow · card · arrow · card */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(224, 112, 32, 0.05);
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(224, 112, 32, 0.14);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(224, 112, 32, 0.08);
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
}

.step-icon-wrap {
  width: 70px; height: 70px;
  background: var(--primary-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition-fast);
}

.step-card:hover .step-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.step-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Arrow connectors */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px; /* align with icon center */
  color: var(--primary);
  opacity: 0.45;
  font-size: 20px;
}

/* ==========================================================================
   SEO CONTENT SECTION
   ========================================================================== */
.seo-section {
  background: var(--bg-soft);
}

.seo-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.seo-text { flex: 1; }

.seo-text h2 {
  font-size: 32px;
  color: var(--text-dark);
}

.seo-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.seo-logo {
  width: 220px;
  opacity: 0.75;
  flex-shrink: 0;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.seo-link-col h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}

.seo-link-col ul li {
  margin-bottom: 8px;
}

.seo-link-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.seo-link-col ul li a i {
  color: var(--primary);
  font-size: 9px;
}

.seo-link-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px 28px;
}

.stars {
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cta-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 16px;
}

.client-details h4 {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.client-details p {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

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

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

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

.faq-item.active .faq-question {
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer p {
  padding: 18px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   BLOG PREVIEW
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
}

.blog-tag {
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.blog-date {
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-dark);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ==========================================================================
   PRICING TABLES
   ========================================================================== */
.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.pricing-table th {
  background: var(--bg-section);
  color: var(--primary-dark);
  font-weight: 800;
  font-family: var(--font-main);
  font-size: 15px;
}

.pricing-table tr:hover td {
  background: var(--bg-soft);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224, 112, 32, 0.1);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  padding: 36px;
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-detail-item i {
  font-size: 22px;
  color: var(--primary);
  margin-top: 3px;
}

.contact-detail-item h4 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-detail-item p {
  color: var(--text-muted);
  font-size: 14px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark-footer);
  padding-top: 72px;
  border-top: 3px solid var(--primary);
  position: relative;
  z-index: 10;
}

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

.footer-brand .logo {
  height: 52px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--primary);
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-map {
  margin-bottom: 28px;
  border-radius: 10px;
  overflow: hidden;
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--primary-light);
}

.dev-credit {
  text-align: center;
  padding: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.4px;
  font-weight: 400;
}

.dev-credit a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.dev-credit a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

/* ==========================================================================
   PAGE HEADERS (Inner Pages)
   ========================================================================== */
.page-header {
  padding: 150px 0 70px;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg-section) 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: inline-flex;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--primary);
}

/* ==========================================================================
   ANIMATIONS (Intersection Observer)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible, .fade-left.visible, .fade-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1199px) {
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .seo-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border);
    align-items: flex-start;
  }

  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding-left: 16px; display: none; }
  .nav-dropdown.active .dropdown-menu { display: block; }

  /* ── Hero: stack columns on tablet ── */
  .hero-container {
    flex-direction: column;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
    gap: 48px;
    text-align: center;
  }

  .hero-left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero-left h1 { font-size: 48px; }

  .hero-btns  { justify-content: center; }
  .trust-badges { justify-content: center; }

  .hero-right {
    flex: none;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-float-badge { right: 4px; }
  .hero-float-fare  { left: 4px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step-connector { display: none; }

  .seo-content { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }

  .section { padding: 72px 0; }

  /* ── Hero: single-column mobile layout ── */
  .hero {
    padding-top: 72px;
  }

  .hero-container {
    flex-direction: column;
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 48px;
    gap: 36px;
    text-align: center;
  }

  .hero-left {
    flex: none;
    max-width: 100%;
    width: 100%;
    order: 1;
  }

  .hero-left h1 {
    font-size: 36px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
    gap: 14px;
  }

  .trust-item { font-size: 12px; }

  /* Car scene — centered below text */
  .hero-right {
    flex: none;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    order: 2;
  }

  .hero-car-img {
    max-width: 280px;
  }

  /* Floating stats — pull inside, compact */
  .hero-float-stats {
    padding: 10px 16px;
    gap: 12px;
    border-radius: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 16px);
  }

  .float-num  { font-size: 16px; }
  .float-lbl  { font-size: 10px; }

  /* Keep floating chips inside the scene */
  .hero-float-badge {
    right: 0;
    top: 8px;
    font-size: 11px;
    padding: 7px 12px;
    gap: 5px;
  }

  .hero-float-fare {
    left: 0;
    top: auto;
    bottom: 54px;
    padding: 9px 14px;
  }

  .fare-price { font-size: 17px; }

  /* Other sections */
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-links-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }

  .hero-left h1 { font-size: 32px; }
  .hero-subtitle { font-size: 14px; }

  .hero-right { max-width: 300px; }
  .hero-car-img { max-width: 240px; }

  /* Hide fare chip on very small screens to avoid clutter */
  .hero-float-fare { display: none; }

  /* Compact float badge */
  .hero-float-badge {
    right: 0;
    font-size: 10px;
    padding: 6px 10px;
  }

  .glass-card { padding: 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
