/* ======================================================
   MILES CAR RENTAL — Premium Chauffeur Website CSS
   ====================================================== */

/* === FONTS & RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #080808;
  color: #D8D8D8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === CSS VARIABLES === */
:root {
  --gold: #C9A84C;
  --gold-lt: #E8C96D;
  --gold-dk: #9A7630;
  --dark: #080808;
  --dark-2: #0F0F0F;
  --dark-3: #161616;
  --dark-4: #1E1E1E;
  --border: rgba(201, 168, 76, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #D8D8D8;
  --text-muted: #666;
  --text-dim: #444;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

/* === UTILITY === */
.section-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 5%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  background: rgba(201, 168, 76, 0.05);
}

.section-badge.light {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 8px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* === BUTTONS === */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s;
}

.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
.cta-primary:hover::after { opacity: 1; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--tr);
}

.cta-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* === TOPBAR === */
.topbar {
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
  padding: 9px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.topbar-divider { color: var(--text-dim); }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-miles {
  font-family: var(--font-serif);
  font-size: 2rem; /* Increased size */
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
}

.logo-sub {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--tr);
  position: relative;
}

.nav-link:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--tr);
  border-bottom: 1px solid var(--border-subtle);
}

.dropdown-item:last-child { border: none; }
.dropdown-item:hover { color: var(--gold); background: rgba(201,168,76,0.06); padding-left: 24px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  transition: var(--tr);
}

.nav-call:hover { color: var(--gold); border-color: var(--border); }

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  transition: var(--tr);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.nav-book-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  background: var(--dark-4);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--tr);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 970;
}

.nav-mobile-overlay.active { display: block; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
  transform: scale(1.05);
}

.hero-bg-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.75) 45%,
    rgba(8, 8, 8, 0.4) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Floating info cards */
.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  animation: floatAnim 6s ease-in-out infinite;
}

.hero-float-tl { top: 22%; left: 5%; }
.hero-float-br { bottom: 22%; right: 5%; animation-delay: -3s; }

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

.float-icon { font-size: 1.4rem; }

.float-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-text strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.float-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 5%;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-headline {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 720px;
}

.headline-line {
  display: block;
  animation: fadeUp 0.7s ease both;
}

.headline-line:first-child { animation-delay: 0.3s; }
.headline-line:last-child { animation-delay: 0.5s; }

.headline-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease 0.65s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.7s ease 0.75s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.7s ease 0.9s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-num-suffix {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.trust-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}

.trust-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollGrow 2s ease-in-out infinite;
}

@keyframes scrollGrow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* === BOOKING SECTION === */
.booking-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 5%;
}

.booking-container {
  max-width: 1300px;
  margin: 0 auto;
}

.booking-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.booking-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.booking-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.booking-title em { font-style: italic; color: var(--gold); }

.booking-tabs {
  display: flex;
  gap: 6px;
  background: var(--dark-3);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.btab {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: var(--tr);
}

.btab.active {
  background: var(--gold);
  color: #000;
}

.btab:hover:not(.active) { color: var(--gold); }

.booking-form { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--white);
  transition: border-color 0.25s;
  outline: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field input::placeholder { color: var(--text-dim); }
.form-field select option { background: var(--dark-3); }

.form-action-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.form-phone-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-phone-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-phone-field input {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
}

.form-phone-field input:focus { border-color: var(--gold); }

.btn-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.btn-search:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.4); }

.booking-perks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.perk span { color: var(--gold); font-weight: 700; }

/* === SERVICES === */
.services-section {
  background: var(--dark);
}

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

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--tr);
  position: relative;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.6);
}

.service-card:hover .service-img { transform: scale(1.06); filter: brightness(0.75); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,1) 0%, transparent 70%);
}

.service-body { padding: 24px; }

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  transition: var(--tr);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
  color: #000;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.service-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}

.service-link:hover { gap: 10px; }

/* === FLEET === */
.fleet-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.fleet-left .section-desc { margin-bottom: 28px; }

.fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fleet-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feat-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.fleet-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fleet-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: var(--tr);
}

.fleet-card:hover {
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.fleet-img-box {
  position: relative;
  overflow: hidden;
  background: var(--dark-4);
}

.fleet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}

.fleet-card:hover .fleet-img-box img { transform: scale(1.06); }

.fleet-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.fleet-tag-gold { background: var(--gold); }
.fleet-tag-white { background: var(--white); }

.fleet-info { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }

.fleet-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.fleet-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.fleet-rate {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.fleet-rate strong { color: var(--gold); font-size: 0.95rem; }

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

.fleet-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.fleet-specs svg { color: var(--gold); flex-shrink: 0; }

.fleet-book-btn {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--tr);
  margin-top: 4px;
}

.fleet-book-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* === WHY US === */
.why-section { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-visual { position: relative; }

.why-img-stack { position: relative; }

.why-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
}

.why-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: var(--shadow);
}

.why-badge-float {
  position: absolute;
  top: 24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.why-badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.why-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.why-content .section-desc { margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 28px; }

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dk);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.point-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.point-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* === COVERAGE === */
.coverage-section { background: var(--dark-2); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.city-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: var(--tr);
  cursor: default;
}

.city-card:hover {
  border-color: var(--border);
  background: var(--dark-4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.city-icon { font-size: 1.8rem; margin-bottom: 10px; }

.city-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 600;
}

.city-card p { font-size: 0.75rem; color: var(--text-dim); line-height: 1.5; }

.city-card-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.05);
  border-color: var(--border);
}

.city-more-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--dark); }

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars-xl { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; }

.testimonials-track {
  overflow: hidden;
  margin-bottom: 32px;
}

.testimonials-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex: 0 0 calc(33.333% - 14px);
  position: relative;
  transition: var(--tr);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
}

.testi-featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-color: var(--border);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 0.88rem; color: var(--white); font-weight: 700; }
.testi-author span { font-size: 0.75rem; color: var(--text-dim); }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testi-prev, .testi-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}

.testi-prev:hover, .testi-next:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.testi-dots { display: flex; gap: 7px; }

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-subtle);
  transition: var(--tr);
  border: none;
  cursor: pointer;
}

.testi-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* === CTA SECTION === */
.cta-section {
  position: relative;
  padding: 120px 5%;
  text-align: center;
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.9), rgba(27,27,27,0.7));
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-content p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 32px; }
.cta-content strong { color: var(--gold); }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CONTACT === */
.contact-section { background: var(--dark-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: var(--tr);
}

.contact-card:hover { border-color: var(--border); background: var(--dark-4); }

.cc-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card strong { display: block; font-size: 0.8rem; color: var(--white); font-weight: 700; margin-bottom: 3px; }
.contact-card span { font-size: 0.85rem; color: var(--text-muted); }

.social-row { display: flex; gap: 10px; }

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--tr);
}

.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.cf-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--dark-4);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--gold); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-dim); }

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* === FOOTER === */
.footer { background: #050505; border-top: 1px solid var(--border-subtle); }

.footer-top { padding: 72px 5%; }

.footer-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-cert { display: flex; gap: 8px; flex-wrap: wrap; }

.cert-badge {
  padding: 5px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 5%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom a { color: var(--gold); }

.payment-icons { display: flex; gap: 8px; }

.pay-icon {
  padding: 4px 10px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--tr);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5); }

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulsate 2.5s ease-out infinite;
}

@keyframes pulsate {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-check { color: var(--gold); font-weight: 700; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="250"] { transition-delay: 0.25s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="350"] { transition-delay: 0.35s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="450"] { transition-delay: 0.45s; }
.reveal[data-delay="50"] { transition-delay: 0.05s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .form-row { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-layout { grid-template-columns: 1fr; gap: 40px; }
  .fleet-card { grid-template-columns: 180px 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-wrap { grid-template-columns: 1fr 1fr 1fr; }
  .testimonials-inner .testi-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--dark-2);
    border-right: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 4px;
    z-index: 980;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { left: 0; }
  .nav-link { font-size: 1rem; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-accent { display: none; }
  .why-badge-float { left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-inner .testi-card { flex: 0 0 100%; }
  .booking-title-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float { display: none; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-img-box { height: 180px; }
  .booking-tabs { flex-wrap: wrap; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .footer-wrap { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-action-row { flex-direction: column; }
  .btn-search { width: 100%; justify-content: center; }
}

/* ═════════ FAQ SECTION ═════════ */

.faq-section {
  padding: 100px 20px;
  background: #0f0f0f;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  margin-top: 50px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.15);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.faq-item p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
