/* ============================================================
   MIRAMAR BUS RENTALS — styles.css
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --primary:       #0a1f3c;
  --primary-mid:   #0e2d55;
  --primary-light: #1a4a7a;
  --accent:        #d4872a;
  --accent-light:  #f0a84a;
  --accent-dark:   #a86320;
  --white:         #ffffff;
  --off-white:     #f8f9fb;
  --light-gray:    #f1f4f8;
  --mid-gray:      #dde3ec;
  --dark-gray:     #556070;
  --text:          #1a2537;
  --text-light:    #64748b;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.18);
  --transition:    .3s ease;
  --header-h:      80px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.two-col-wide { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.site-header.scrolled,
.site-header.opaque {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-link { display: flex; flex-direction: column; line-height: 1.2; text-decoration: none; }
.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-tagline { font-size: 0.7rem; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; }

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link, .nav-parent {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.nav-link:hover, .nav-parent:hover,
.nav-item.active > .nav-link,
.nav-item.active > .nav-parent { color: var(--accent-light); }

.drop-arrow {
  width: 14px; height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-item:hover .drop-arrow,
.nav-item:focus-within .drop-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--primary-mid);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding-top: 8px;
  padding-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.dropdown a:hover { color: var(--accent-light); background: rgba(255,255,255,0.05); }

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  margin-left: 12px;
  text-decoration: none;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hamburger */
.mob-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 4px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
}
.mob-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
#mob-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--primary-mid);
  z-index: 999;
  transform: translateY(-110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s ease, visibility .35s ease;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
#mob-nav.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mob-nav-inner { padding: 16px 0 32px; }

.mob-nav-link {
  display: block;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-nav-link:hover { color: var(--accent-light); background: rgba(255,255,255,0.04); }

.mob-group { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mob-group-header {
  display: flex;
  align-items: center;
}

.mob-group-link {
  flex: 1;
  display: block;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.mob-group-link:hover { color: var(--accent-light); }

.mob-expand-btn {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.mob-expand-btn:hover { color: var(--accent-light); }

.mob-sub {
  display: none;
  background: rgba(0,0,0,0.2);
  padding: 4px 0;
}
.mob-sub.open { display: block; }
.mob-sub a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.mob-sub a:hover { color: var(--accent-light); }

.mob-cta-wrap {
  padding: 20px 24px 0;
}
.mob-cta-wrap .btn { width: 100%; text-align: center; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  background:
    linear-gradient(105deg,
      rgba(10,31,60,1) 28%,
      rgba(10,31,60,0.8) 50%,
      rgba(10,31,60,0.3) 70%,
      rgba(10,31,60,0) 100%
    ),
    url('/img/charter-bus-hero.jpg') center 45% / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(10,31,60,0.55), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 60px) 0 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--accent-light); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.hero-phone:hover { color: var(--accent-light); }
.hero-phone svg { flex-shrink: 0; }

/* Scroll Arrow */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  animation: bounce 2s infinite;
}
.scroll-arrow:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
.scroll-arrow svg { color: var(--white); }

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

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: calc(var(--header-h) + 56px) 0 56px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding: 12px 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.85rem;
}

.breadcrumb li { display: flex; align-items: center; gap: 6px; }

.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
}

.breadcrumb a { color: var(--primary) !important; font-weight: 500; }
.breadcrumb a:hover { color: var(--accent) !important; text-decoration: underline; }
.breadcrumb li:last-child { color: var(--accent-dark); font-weight: 600; }

/* ── Sections ────────────────────────────────────────────────── */
.section {
  padding: 80px 0;
  background: var(--white);
}

.section-light {
  padding: 80px 0;
  background: var(--off-white);
}

.section-dark {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.section-dark .section-header p { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  background: rgba(212,135,42,0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-dark .section-tag {
  background: rgba(212,135,42,0.2);
  color: var(--accent-light);
}

.divider {
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-body { padding: 24px; flex: 1; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--mid-gray); display: flex; gap: 10px; }

/* Vehicle Cards */
.vehicle-card { display: flex; flex-direction: column; }

.vehicle-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  flex-shrink: 0;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition);
  display: block;
}
.card:hover .vehicle-img img { transform: scale(1.04); }

/* Vehicle Detail Image */
.vehicle-detail-img {
  object-fit: contain;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background-color: var(--light-gray);
  display: block;
}

.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.vehicle-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}
.vehicle-name:hover { color: var(--accent); }

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(212,135,42,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { color: var(--accent); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); flex: 1; }

.service-detail-icon {
  width: 64px; height: 64px;
  background: rgba(212,135,42,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-detail-icon svg { color: var(--accent); }

/* ── Stats / Why Us ──────────────────────────────────────────── */
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }

.credential-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 52px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.credential-badge svg { color: var(--accent-light); flex-shrink: 0; }

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.stat-card-icon {
  width: 52px; height: 52px;
  background: rgba(212,135,42,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-card-icon svg { color: var(--accent-light); }
.stat-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.stat-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--dark-gray);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-text::before { content: '\201C'; color: var(--accent); font-size: 2.5rem; line-height: 0.5; vertical-align: -0.4em; margin-right: 4px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.cta-phone:hover { color: rgba(255,255,255,0.85); }

/* ── Booking Box ─────────────────────────────────────────────── */
.booking-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border-top: 4px solid var(--accent);
}

.booking-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.booking-box p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }

.booking-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  transition: background var(--transition);
}
.booking-phone:hover { background: var(--primary-light); }

.booking-divider { text-align: center; font-size: 0.82rem; color: var(--text-light); margin: 14px 0; position: relative; }
.booking-divider::before, .booking-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--mid-gray);
}
.booking-divider::before { left: 0; }
.booking-divider::after { right: 0; }

.booking-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 14px; }

/* ── Specs Table ─────────────────────────────────────────────── */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.specs-table tr { border-bottom: 1px solid var(--mid-gray); }
.specs-table td { padding: 12px 0; font-size: 0.92rem; }
.specs-table td:first-child { color: var(--text-light); width: 45%; font-weight: 600; }
.specs-table td:last-child { color: var(--text); font-weight: 700; }

/* ── Feature / Amenity Lists ─────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d4872a'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.amenity-item svg { color: var(--accent); flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.97rem;
}
.faq-q:hover { background: var(--off-white); color: var(--accent); }

.faq-item.open .faq-q { background: var(--primary); color: var(--white); }

.faq-icon {
  width: 24px; height: 24px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,255,255,0.2); }

.faq-a {
  display: none;
  padding: 16px 20px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  background: var(--off-white);
  border-top: 1px solid var(--mid-gray);
}
.faq-item.open .faq-a { display: block; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {}

.footer-logo-name { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-logo-tagline { font-size: 0.72rem; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── Floating Call Button ────────────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,135,42,0.5);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  animation: pulse-ring 2.5s infinite;
}
.float-call:hover { background: var(--accent-dark); transform: scale(1.1); }
.float-call svg { color: var(--white); }

@keyframes pulse-ring {
  0% { box-shadow: 0 4px 20px rgba(212,135,42,0.5), 0 0 0 0 rgba(212,135,42,0.4); }
  70% { box-shadow: 0 4px 20px rgba(212,135,42,0.5), 0 0 0 12px rgba(212,135,42,0); }
  100% { box-shadow: 0 4px 20px rgba(212,135,42,0.5), 0 0 0 0 rgba(212,135,42,0); }
}

/* ── Fade Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Inline Link Colors ──────────────────────────────────────── */
.section p a,
.section li a,
.section-light p a,
.section-light li a {
  color: var(--accent);
  text-decoration: underline;
}
.section p a:hover,
.section li a:hover,
.section-light p a:hover,
.section-light li a:hover { color: var(--accent-dark); }

/* ── Two-col content layout ──────────────────────────────────── */
.content-main h2 { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 16px; letter-spacing: -0.3px; }
.content-main h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.content-main p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.content-main ul { margin-bottom: 16px; }

.vehicle-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }

/* ── Pricing page ────────────────────────────────────────────── */
.factor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.factor-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.factor-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.factor-icon { width: 36px; height: 36px; background: rgba(212,135,42,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.factor-icon svg { color: var(--accent); }

.included-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.included-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 16px;
}
.included-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.included-item span { font-size: 0.9rem; color: var(--text); font-weight: 600; }

.scenario-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.scenario-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.scenario-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ── About page ──────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.value-icon {
  width: 60px; height: 60px;
  background: rgba(212,135,42,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { color: var(--accent); }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
}
.contact-detail-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 24px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(212,135,42,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--accent); }
.contact-item-label { font-size: 0.78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-value { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.contact-item-value a { color: var(--accent); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; }

/* ── Fleet Page Standard Amenities ──────────────────────────── */
.fleet-std-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fleet-std-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.fleet-std-item svg { color: var(--accent); margin-bottom: 10px; }
.fleet-std-item span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .nav-cta.desktop-only,
  .desktop-only { display: none !important; }
  .mob-toggle { display: flex; }
  #mob-nav { display: block; }

  .two-col-wide { grid-template-columns: 1fr; }
  .booking-box { position: static; }

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

  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-std-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .included-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section, .section-light, .section-dark { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { flex-direction: column; }
  .why-us-grid { grid-template-columns: 1fr; }
  .fleet-std-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .credential-bar { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .container { padding: 0 16px; }
  .booking-box { padding: 24px 20px; }
  .fleet-std-grid { grid-template-columns: 1fr; }
}
