/* ===========================
   ARYAN TAXI SERVICES
   style.css — v2
   =========================== */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --yellow: #ffd100;
  --yellow2: #ffc200;
  --white: #ffffff;
  --gray: #888888;
  --gray2: #555555;
  --light: #f5f5f0;
  --light2: #e8e8e3;
  --green: #2ecc71;

  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "DM Serif Display", serif;
  --font-body: "Outfit", sans-serif;

  --nav-h: 70px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 20px 80px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SECTION LABELS / TITLES ── */
.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.section-label.light {
  background: rgba(255, 209, 0, 0.15);
  color: var(--yellow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--yellow2);
  letter-spacing: 0;
}
.section-title.light {
  color: var(--white);
}
.section-title.light em {
  color: var(--yellow);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary,
form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style) {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-color: var(--yellow);
}
.btn-primary:hover,
form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover {
  background: var(--yellow2);
  border-color: var(--yellow2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 209, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark2);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light2);
  transform: translateY(-2px);
}
.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ─────────────────────────────
   NAVBAR
───────────────────────────── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.nav-header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}
.logo-icon-fa {
  font-size: 1.5rem;
  color: var(--yellow);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.logo-text em {
  color: var(--yellow);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover {
  background: var(--yellow2) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ─────────────────────────────
   HERO — FULL WIDTH + REAL IMAGE
───────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Real photo background — car on open road at dusk */
.hero-img-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&q=80&fit=crop&crop=center");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  /* subtle Ken-Burns-style zoom */
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

/* Dark gradient overlay — heavier on left for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* Full-width two-column layout */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 5% 4rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}

/* ── Hero Left ── */
.hero-left {
  padding-right: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 209, 0, 0.12);
  border: 1px solid rgba(255, 209, 0, 0.3);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.6s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.5s ease infinite;
}

.hero-title {
  display: flex;
  flex-direction: column;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}
.title-line {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
}
.title-line.accent {
  color: var(--yellow);
}
.title-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.5rem 0 2rem;
  max-width: 540px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}
.hero-actions .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── Hero Book Panel (right) ── */
.hero-book-panel {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeSlideUp 0.6s 0.35s ease both;
}

.hbp-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
}
.hbp-header i {
  font-size: 1.1rem;
}

.hbp-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hbp-field {
  position: relative;
  display: flex;
  align-items: center;
}
.hbp-field i {
  position: absolute;
  left: 0.85rem;
  color: var(--yellow);
  font-size: 0.88rem;
  pointer-events: none;
  z-index: 1;
}
.hbp-field input {
  width: 100%;
  padding: 0.75rem 0.85rem 0.75rem 2.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.hbp-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hbp-field input:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
}
/* date/time inputs — make text white */
.hbp-field input[type="date"],
.hbp-field input[type="time"] {
  color-scheme: dark;
  color: rgba(255, 255, 255, 0.8);
}

.hbp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ── Scroll indicator ── */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: fadeSlideUp 0.6s 0.8s ease both;
}
.scroll-down span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: scrollBounce 1.4s ease-in-out infinite;
}

/* ─────────────────────────────
   TRUST BAR
───────────────────────────── */
.trust-bar {
  background: var(--yellow);
  padding: 1rem 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
}
.trust-item i {
  font-size: 1rem;
}

/* ─────────────────────────────
   BOOKING SECTION
───────────────────────────── */
.booking-section {
  background: var(--light);
  padding: 5rem 0;
}
.booking-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.booking-section .section-label {
  display: block;
  text-align: center;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-top: 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--light2);
}

.booking-tabs {
  display: flex;
  background: var(--dark);
  padding: 1rem 1.5rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.booking-form {
  padding: 2rem 2rem 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray2);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon-fa {
  position: absolute;
  left: 0.9rem;
  color: var(--gray);
  pointer-events: none;
  z-index: 1;
  font-size: 0.85rem;
}
.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: 0.8rem 0.9rem 0.8rem 2.5rem;
  border: 2px solid var(--light2);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--light);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 209, 0, 0.15);
  background: var(--white);
}
.input-wrap input::placeholder {
  color: #bbb;
}
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 0.9rem;
  color: var(--gray);
  pointer-events: none;
  font-size: 0.8rem;
}

.notes-group {
  margin-top: 1.25rem;
}
.notes-group textarea {
  padding: 0.8rem;
  resize: vertical;
  min-height: 70px;
  border: 2px solid var(--light2);
  border-radius: var(--radius);
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  background: var(--light);
  font-size: 0.92rem;
  color: var(--dark);
}
.notes-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 209, 0, 0.15);
  background: var(--white);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light2);
}
.form-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray);
}
.form-note i {
  color: var(--yellow2);
}

.booking-success {
  text-align: center;
  padding: 4rem 2rem;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.booking-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.booking-success p {
  color: var(--gray2);
  margin-bottom: 2rem;
}

/* ─────────────────────────────
   SERVICES
───────────────────────────── */
.services-section {
  padding: 5rem 0;
  background: var(--dark);
}
.services-section .section-title {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 0, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.service-card.featured {
  border-color: rgba(255, 209, 0, 0.3);
  background: linear-gradient(135deg, var(--dark2), rgba(255, 209, 0, 0.04));
}
.service-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}
.service-icon {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-list {
  margin-bottom: 1.5rem;
}
.service-list li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.75rem;
}
.service-link {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.service-link:hover {
  opacity: 0.8;
}

/* ─────────────────────────────
   WHY US
───────────────────────────── */
.why-section {
  position: relative;
  padding: 6rem 0;
  background: var(--black);
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(255, 209, 0, 0.06) 0%,
    transparent 60%
  );
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-feat {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.why-feat h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.why-feat p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

.why-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 0, 0.2);
}
.wc-icon {
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.wc-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.wc-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ─────────────────────────────
   FLEET
───────────────────────────── */
.fleet-section {
  padding: 5rem 0;
  background: var(--light);
}
.fleet-section .section-title,
.fleet-section .section-label {
  text-align: center;
  display: block;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.fleet-card {
  background: var(--white);
  border: 2px solid var(--light2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 10px 40px rgba(255, 209, 0, 0.15);
}
.fleet-card.fleet-featured {
  border-color: var(--yellow);
  background: linear-gradient(135deg, var(--white), #fffbea);
}
.fleet-badge {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.fleet-icon {
  font-size: 2.5rem;
  color: var(--yellow2);
  margin-bottom: 0.75rem;
}
.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.fleet-meta {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.fleet-meta span {
  background: var(--light);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.fleet-meta i {
  color: var(--gray2);
  font-size: 0.75rem;
}
.fleet-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.fleet-card p {
  color: var(--gray2);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.fleet-card .btn {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────
   COVERAGE
───────────────────────────── */
.coverage-section {
  padding: 5rem 0;
  background: var(--dark);
}
.coverage-section .section-title {
  color: var(--white);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.coverage-map {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  height: 300px;
  overflow: hidden;
}
.map-dot.main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.dot-pulse {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  animation: mapPulse 1.5s ease-in-out infinite;
}
.dot-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 209, 0, 0.4);
  border-radius: 50%;
  animation: mapPulse 1.5s ease-in-out infinite 0.2s;
}
.map-dot.main span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.route-lines {
  position: absolute;
  inset: 0;
}
.city-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.city-tag:hover {
  background: rgba(255, 209, 0, 0.15);
  color: var(--yellow);
}

.coverage-list h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.route-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.route-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.route-item:hover {
  border-color: rgba(255, 209, 0, 0.25);
}
.route-from,
.route-to {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.route-arrow {
  color: var(--yellow);
  font-size: 0.8rem;
}
.route-dist {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}

/* ─────────────────────────────
   TESTIMONIALS
───────────────────────────── */
.testimonials-section {
  padding: 5rem 0;
  background: var(--light);
}
.testimonials-section .section-title,
.testimonials-section .section-label {
  text-align: center;
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured-review {
  border-color: var(--yellow);
  background: linear-gradient(135deg, #fff, #fffbea);
}
.stars {
  color: var(--yellow2);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.testimonial-card p {
  color: var(--gray2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.review-meta {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.15rem;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.reviews-cta span {
  color: var(--gray2);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ─────────────────────────────
   FAQ
───────────────────────────── */
.faq-section {
  padding: 5rem 0;
  background: var(--dark);
}
.faq-section .section-title {
  color: var(--white);
  text-align: center;
}
.faq-section .section-label {
  display: block;
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(255, 209, 0, 0.25);
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary:hover {
  color: var(--yellow);
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item div {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ─────────────────────────────
   CTA STRIP
───────────────────────────── */
.cta-strip {
  background: var(--yellow);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1.1;
}
.cta-strip h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0;
}
.cta-strip p {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1rem 0;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.footer-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-badges i {
  color: var(--green);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-links a i {
  font-size: 0.65rem;
  color: var(--yellow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.contact-item i {
  flex-shrink: 0;
  color: var(--yellow);
  width: 16px;
  text-align: center;
}
.contact-item a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--yellow);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.whatsapp-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ─────────────────────────────
   FLOATING BUTTONS
───────────────────────────── */
.fab-whatsapp,
.fab-call {
  position: fixed;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  font-size: 1.4rem;
}
.fab-whatsapp {
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--white);
}
.fab-call {
  bottom: 6.5rem;
  right: 2rem;
  background: var(--yellow);
  color: var(--black);
  display: none;
}
.fab-whatsapp:hover,
.fab-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn-cta {
  background: #25d366 !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
}
.btn-ghost {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgb(255 255 255 / 40%) !important;
  transition: all 0.2s !important;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--white) !important;
}
/* ─────────────────────────────
   ANIMATIONS
───────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(-6px);
    opacity: 0;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
@keyframes mapPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* ─────────────────────────────
   SCROLL REVEAL
───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1100px) {
  .hero-content-wrap {
    grid-template-columns: 1fr 360px;
  }
}

@media (max-width: 900px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }
  .hero-book-panel {
    max-width: 500px;
  }
  .hero-left {
    padding-right: 0;
  }
  .why-inner,
  .coverage-inner {
    grid-template-columns: 1fr;
  }
  .why-right {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 999;
  }
  .nav-cta,
  .whatsapp-btn-cta {
    display: block;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  .nav-toggle {
    display: flex;
  }
  .booking-form {
    padding: 1.5rem;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fab-call {
    display: flex;
  }
  .fab-whatsapp {
    bottom: 6.5rem;
  }
  .fab-call {
    bottom: 2rem;
  }
  .hbp-row {
    grid-template-columns: 1fr;
  }
  .booking-card {
    padding: 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .booking-tabs {
    gap: 0.35rem;
  }
  .tab-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
  }
  .trust-inner {
    gap: 1rem;
  }
  .trust-item {
    font-size: 0.75rem;
  }
  .why-card-stack {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

body:not(.home) .nav-header {
  background: #0a0a0a;
}

.vehicle-card {
  border: 1px solid #e6e6e6;
  border-left: 4px solid var(--green);
  background: var(--light);
  padding: 14px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}
.vehicle-card p {
  margin: 0 0 6px;
}
.vehicle-card strong {
  color: #111;
}


@media (min-width: 769px) and (max-width: 1080px) {
  .whatsapp-btn-cta {
    display: none;
  }
}