/*
Theme Name: Road Life Transport
Theme URI: https://roadlifetransport.rw
Author: Road Life Transport Rwanda
Description: Premium car rental and sales theme — clean blue & white brand identity.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: apexdrive
Tags: custom-logo, custom-menu, featured-images, business, automotive
*/

/* ============================================================
   ROAD LIFE TRANSPORT — BLUE & WHITE DESIGN SYSTEM
   Primary: #1877F2 (Meta blue)  Surface: #ffffff  Base: #f0f2f5
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand blues */
  --blue:           #1877F2;
  --blue-hover:     #1565d8;
  --blue-light:     #e7f0fd;
  --blue-mid:       #4293f5;
  --blue-dark:      #0d47a1;
  --blue-deeper:    #0a2e6e;

  /* Alias (backward compat) */
  --gold:           #1877F2;
  --gold-light:     #4293f5;
  --gold-dark:      #1565d8;
  --border-gold:    rgba(24,119,242,0.2);

  /* Surfaces */
  --bg-base:        #ffffff;
  --bg-card:        #ffffff;
  --bg-surface:     #f5f7fa;
  --bg-featured:    #1877F2;
  --bg-hero:        #0a2e6e;

  /* Text */
  --text-primary:   #050505;
  --text-muted:     #65676b;
  --text-dim:       #8a8d91;
  --text-on-blue:   #ffffff;

  /* Borders */
  --border:         #e4e6ea;
  --border-mid:     #ced0d4;

  /* Typography */
  --font-display:  "Bebas Neue", sans-serif;
  --font-body:     "DM Sans", sans-serif;

  /* Misc */
  --radius:         8px;
  --radius-lg:      16px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-blue:    0 4px 20px rgba(24,119,242,0.25);
  --transition:     0.22s ease;
  --container:      1240px;
  --section-pad:    80px 40px;
}

/* ============================================================
   BASE
   ============================================================ */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 { color: var(--text-primary); line-height: 1.1; }
h1 { font-family: var(--font-display); font-size: clamp(48px, 7vw, 88px); }
h2 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-family: var(--font-display); font-size: 26px; }
h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 600; }
p  { font-size: 15px; color: var(--text-muted); font-weight: 400; }

.display         { font-family: var(--font-display); letter-spacing: 0.02em; }
.text-gold,
.text-blue       { color: var(--blue); }
.text-white      { color: #fff; }
.text-on-hero    { color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-hover); border-color: var(--blue-hover); color: #fff;
  box-shadow: 0 6px 24px rgba(24,119,242,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: #fff;
}
.btn-white {
  background: #fff; color: var(--blue); border-color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--blue-light); color: var(--blue-hover); border-color: var(--blue-light);
}
.btn-ghost {
  background: var(--blue-light); color: var(--blue); border-color: transparent;
  font-size: 13px; padding: 8px 18px;
}
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-eyebrow {
  display: block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 10px;
}
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px;
}
.view-all-link {
  font-size: 13px; color: var(--blue); font-weight: 600;
  padding-bottom: 2px; border-bottom: 2px solid rgba(24,119,242,0.25);
  transition: border-color var(--transition);
}
.view-all-link:hover { border-color: var(--blue); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--container); margin-inline: auto; padding-inline: 40px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { max-height: 44px; width: auto; }
.logo-hex {
  width: 34px; height: 34px; background: var(--blue);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.logo-text { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--text-primary); }
.logo-text span { color: var(--blue); }

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav a {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  padding: 6px 14px; border-radius: 6px; transition: all var(--transition);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--blue); background: var(--blue-light);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.nav-phone i { color: var(--blue); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; }

/* ============================================================
   HERO — Dark blue gradient (brand anchor)
   ============================================================ */
#hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 68px);
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg-hero) 0%, #1a3a8a 40%, #1877F2 100%);
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(66,147,245,0.25) 0%, transparent 65%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.04) 0px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, transparent 1px, transparent 80px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute; right: 0; top: 0; width: 55%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin-inline: auto; padding-inline: 40px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 500;
}
.badge-dot {
  width: 7px; height: 7px; background: #4ade80;
  border-radius: 50%; animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title { color: #fff; max-width: 580px; margin-bottom: 20px; }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.75); font-weight: 400; max-width: 440px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 0; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); overflow: hidden; width: fit-content; }
.hero-stat {
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 38px; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.hero-illustration {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  width: 52%; pointer-events: none; opacity: 0.92;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
#search-bar {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-inline: 40px;
  position: relative; z-index: 10;
  margin-top: 0;
}
.search-bar-inner {
  display: grid; grid-template-columns: 1fr 1fr 1.2fr 1.2fr auto; gap: 0;
}
.sb-field {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.sb-field:last-child { border-right: none; }
.sb-field label {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 6px;
}
.sb-field select,
.sb-field input[type="date"],
.sb-field input[type="text"] {
  width: 100%; background: transparent; border: none; outline: none;
  color: var(--text-primary); font-family: var(--font-body);
  font-size: 14px; font-weight: 500; padding: 2px 0;
}
.sb-field select option { background: #fff; color: var(--text-primary); }
.sb-submit { padding: 20px 24px; display: flex; align-items: flex-end; }

/* ============================================================
   FLEET SECTION
   ============================================================ */
#fleet { padding: var(--section-pad); background: #ffffff; }

.fleet-tabs {
  display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap;
}
.fleet-tab {
  padding: 8px 22px; font-size: 13px; font-weight: 600;
  border-radius: 20px; cursor: pointer; border: 2px solid var(--border);
  background: #ffffff; color: var(--text-muted); transition: all var(--transition);
  font-family: var(--font-body);
}
.fleet-tab.active,
.fleet-tab:hover {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

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

/* ── Vehicle Card ── */
.vehicle-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.vehicle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(24,119,242,0.2);
}
.vehicle-thumbnail {
  position: relative; height: 200px; overflow: hidden;
  background: var(--blue-light);
}
.vehicle-thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-thumbnail img { transform: scale(1.04); }
.thumbnail-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25));
}
.vehicle-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 600;
}
.badge-rent   { background: var(--blue); color: #fff; }
.badge-sale   { background: #fff; color: var(--blue); border: 1.5px solid var(--blue); }
.badge-both   { background: #10b981; color: #fff; }
.badge-new    { background: var(--blue); color: #fff; }
.badge-featured { background: var(--blue); color: #fff; }

.vehicle-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vehicle-make { font-size: 11px; letter-spacing: 1.5px; color: var(--blue); text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.vehicle-name { font-family: var(--font-display); font-size: 26px; line-height: 1; margin-bottom: 12px; color: var(--text-primary); }
.vehicle-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.v-spec { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); }
.v-spec i { color: var(--blue); font-size: 13px; }
.vehicle-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto;
}
.price-label { font-size: 10px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }
.price-amount { font-family: var(--font-display); font-size: 28px; color: var(--blue); line-height: 1; }
.price-period { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FEATURED VEHICLE — Light card design (blue & white)
   ============================================================ */
#featured-vehicle {
  margin-inline: 40px;
  margin-bottom: 80px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
/* Decorative blue accent strip on left */
#featured-vehicle::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-dark));
  border-radius: 20px 0 0 20px;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  align-items: center;
}
.featured-content {
  padding: 56px 48px 56px 56px;
}
.featured-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.featured-eyebrow i { font-size: 13px; }
.featured-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.featured-make {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 6px;
}
.featured-desc {
  font-size: 14px; line-height: 1.75;
  margin-bottom: 28px;
  max-width: 380px;
  color: var(--text-muted);
}
.featured-specs-row {
  display: flex; gap: 0;
  margin-bottom: 28px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.f-spec-item {
  padding: 14px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.f-spec-item:last-child { border-right: none; }
.f-spec-val {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-primary);
  line-height: 1;
}
.f-spec-key {
  font-size: 10px; color: var(--text-dim);
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: 4px;
}
.featured-price-block {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 28px;
}
.featured-price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--blue);
  line-height: 1;
}
.featured-price-note {
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 1px; text-transform: uppercase;
}
.featured-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Right: image panel */
.featured-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f5ff 0%, #e7f0fd 100%);
  height: 100%;
  min-height: 460px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.featured-media::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(24,119,242,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.featured-media img {
  position: relative; z-index: 1;
  max-height: 320px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(24,119,242,0.2));
  transition: transform 0.4s ease;
}
#featured-vehicle:hover .featured-media img {
  transform: scale(1.03) translateY(-4px);
}
/* Featured badge on image */
.featured-badge-img {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: #ffffff; padding: var(--section-pad); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-item {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all var(--transition);
}
.service-item:hover {
  border-color: rgba(24,119,242,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon-wrap {
  width: 52px; height: 52px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 24px; margin-bottom: 18px;
  transition: background var(--transition);
}
.service-item:hover .service-icon-wrap { background: var(--blue); color: #fff; }
.service-title { font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; color: var(--text-primary); }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   WHY US
   ============================================================ */
#why-us { padding: var(--section-pad); background: #ffffff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--container); margin-inline: auto; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 20px;
}
.why-item-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.why-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.why-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-stat-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 20px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.why-stat-card:hover { box-shadow: var(--shadow-md); }
.why-stat-num { font-family: var(--font-display); font-size: 48px; color: var(--blue); line-height: 1; }
.why-stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: #ffffff; padding: var(--section-pad); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-item {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.testimonial-item:hover { box-shadow: var(--shadow-md); border-color: rgba(24,119,242,0.2); }
.stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0; overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-section {
  margin-inline: 40px; margin-bottom: 80px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-hero), #1877F2);
  padding: 72px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
#cta-section h2 { color: #fff; }
#cta-section p  { color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon { background: var(--bg-hero); border-top: none; }
.footer-main { padding: 64px 40px 40px; max-width: var(--container); margin-inline: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 26px; letter-spacing: 2px; color: #fff; display: block; margin-bottom: 14px; }
.footer-logo span { color: #60a5fa; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-contact a i { color: #60a5fa; font-size: 15px; }
.footer-col h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #60a5fa; margin-bottom: 18px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px; max-width: var(--container); margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 16px; transition: all var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); }

/* ============================================================
   SINGLE VEHICLE PAGE
   ============================================================ */
.vehicle-single { padding: 60px 40px; max-width: var(--container); margin-inline: auto; }
.vehicle-single-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; }
.vehicle-main-image {
  background: var(--blue-light); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 12px; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
}
.vehicle-main-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-thumbs { display: flex; gap: 10px; }
.vehicle-thumb {
  width: 80px; height: 60px; border: 2px solid var(--border); border-radius: 8px;
  overflow: hidden; cursor: pointer; transition: border-color var(--transition);
}
.vehicle-thumb:hover, .vehicle-thumb.active { border-color: var(--blue); }
.vehicle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-single-name { font-family: var(--font-display); font-size: 48px; line-height: 0.9; margin-bottom: 8px; }
.vehicle-single-make { font-size: 11px; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.vehicle-single-price { font-family: var(--font-display); font-size: 44px; color: var(--blue); margin-bottom: 4px; }
.vehicle-single-price-note { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
}
.spec-item { background: #ffffff; padding: 14px 16px; }
.spec-key { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.spec-val { font-size: 15px; font-weight: 600; color: var(--text-primary); }

/* ============================================================
   BOOKING / CONTACT FORM
   ============================================================ */
.booking-form-wrap {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.booking-form-wrap h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 24px; color: var(--text-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #ffffff;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text-primary); font-family: var(--font-body);
  font-size: 14px; padding: 10px 14px; outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.wpcf7-submit, .form-submit-btn {
  width: 100%; background: var(--blue); color: #fff;
  border: none; padding: 14px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body); box-shadow: var(--shadow-blue);
}
.wpcf7-submit:hover, .form-submit-btn:hover { background: var(--blue-hover); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-hero), #1877F2);
  padding: 80px 40px; text-align: center;
}
.page-hero h1 { font-size: clamp(36px,6vw,68px); color: #fff; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 520px; margin-inline: auto; margin-top: 14px; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 16px;
  letter-spacing: 1px; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   FLEET ARCHIVE SIDEBAR
   ============================================================ */
.fleet-filters { position: sticky; top: 90px; align-self: start; background: #ffffff; }
.fleet-filters h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.filter-radio {
  display: flex; align-items: center; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid var(--border); cursor: pointer;
  font-size: 14px; color: var(--text-muted); transition: color var(--transition);
}
.filter-radio:hover { color: var(--blue); }
.filter-radio input[type="radio"] { accent-color: var(--blue); width: 15px; height: 15px; }
.filter-radio:has(input:checked) { color: var(--blue); font-weight: 600; }

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.post-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post-thumbnail { height: 200px; overflow: hidden; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-thumbnail img { transform: scale(1.04); }
.post-content { padding: 24px; }
.post-meta { font-size: 11px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.post-title { font-family: var(--font-display); font-size: 22px; line-height: 1.2; margin-bottom: 10px; }
.post-title a { color: var(--text-primary); }
.post-title a:hover { color: var(--blue); }
.post-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PAGINATION
   ============================================================ */
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a,
.nav-links span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text-muted); background: #fff;
  transition: all var(--transition);
}
.nav-links a:hover { border-color: var(--blue); color: var(--blue); }
.nav-links .current { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ============================================================
   NOTICES
   ============================================================ */
.apexdrive-notice { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.apexdrive-notice.success { background: #ecfdf5; border: 1.5px solid #6ee7b7; color: #065f46; }
.apexdrive-notice.error   { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; max-width: 1100px; margin-inline: auto; padding: 60px 40px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 22px;
}
.contact-detail-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: var(--text-muted); }

/* ============================================================
   WIDGETS
   ============================================================ */
.widget { margin-bottom: 28px; padding: 24px; background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.widget-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; font-weight: 700; }
.widget ul li { border-bottom: 1px solid var(--border); padding: 9px 0; font-size: 13px; }
.widget ul li a { color: var(--text-muted); transition: color var(--transition); }
.widget ul li a:hover { color: var(--blue); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none; flex-direction: column;
  background: #ffffff; border-top: 1px solid var(--border); padding: 24px;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.mobile-nav.open { display: flex; max-height: 600px; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list li a {
  display: block; padding: 12px 16px; font-size: 16px; font-weight: 500;
  color: var(--text-primary); border-radius: 8px; transition: all var(--transition);
}
.mobile-nav-list li a:hover { background: var(--blue-light); color: var(--blue); }

#site-header.scrolled { box-shadow: var(--shadow-md); }
body.nav-open { overflow: hidden; }

/* ============================================================
   UTILITIES
   ============================================================ */
.section-pad { padding: var(--section-pad); }
.text-center { text-align: center; }
::selection { background: rgba(24,119,242,0.15); color: var(--text-primary); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #ffffff; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
.vehicle-card a { color: inherit; }
.vehicle-name a { color: var(--text-primary); }
.vehicle-name a:hover { color: var(--blue); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-media { min-height: 280px; order: -1; border-radius: 20px 20px 0 0; }
  .featured-content { padding: 32px 28px 40px; }
  #featured-vehicle::before { width: 100%; height: 6px; bottom: auto; right: 0; border-radius: 20px 20px 0 0; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-single-grid { grid-template-columns: 1fr; }
  #cta-section { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }
  .container { padding-inline: 20px; }
  .nav-inner { padding-inline: 20px; }
  .primary-nav, .nav-phone { display: none; }
  .hamburger { display: flex; }
  #search-bar { margin-inline: 20px; }
  .search-bar-inner { grid-template-columns: 1fr; }
  .sb-field { border-right: none; border-bottom: 1px solid var(--border); }
  #featured-vehicle, #cta-section { margin-inline: 20px; }
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-main, .footer-bottom { padding-inline: 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-illustration { display: none; }
  .posts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .featured-content { padding: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; padding: 40px 20px; }
  .vehicle-single { padding: 40px 20px; }
  #cta-section { padding: 48px 28px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 52px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; width: 100%; border-radius: var(--radius); }
  .hero-stat { padding: 16px 20px; }
}
@media print {
  #site-header, #colophon, .booking-form-wrap, .fleet-filters { display: none !important; }
  body { background: #fff; }
}


/* ============================================================
   FORCE WHITE BACKGROUNDS — All content areas
   ============================================================ */
body { background: #ffffff !important; }

/* All major content sections */
#fleet,
#services,
#why-us,
#testimonials,
.vehicle-single,
.contact-grid,
.posts-grid-wrap,
.page-content-wrap { background: #ffffff; }

/* Inner page content area */
.page-hero + div,
.page-hero + section { background: #ffffff; }

/* Archive, blog, single post wrappers */
.inner-page #content,
.vehicle-page #content { background: #ffffff; }

/* Why-us visual cards */
.why-visual { background: #ffffff; }

/* Alternating section tint — very subtle */
#services   { background: #f8faff; }   /* barely-there blue tint */
#why-us     { background: #ffffff; }
#testimonials { background: #f8faff; }

/* Ensure no stray dark bg on article/main */
main, article, .site-main { background: #ffffff; }

/* Fleet archive page outer wrapper */
.fleet-filters > div { background: #ffffff !important; }

/* ============================================================
   BUG FIXES — v2.1
   ============================================================ */

/* Contact Us price styling */
.price-contact {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--text-muted) !important;
  font-weight: 500;
}

/* Footer logo — invert to white on dark bg */
#colophon .site-logo img,
#colophon img[src*="logo.svg"] {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Search bar — remove negative margin that causes overlap on some themes */
#search-bar {
  margin-top: 0 !important;
  position: relative;
  z-index: 10;
}

/* Hero bottom padding to give search bar space */
#hero { padding-bottom: 60px; }

/* Fix featured vehicle price on small screens */
.featured-price-amount {
  word-break: break-word;
  line-height: 1 !important;
}

/* Vehicle card make — ensure not empty-looking */
.vehicle-make:empty { display: none; }

/* Fix spec grid on single vehicle — no orphan cells */
.spec-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* Fleet page archive — fix on permalink */
.fleet-archive-page #primary,
.fleet-archive-page .site-main { background: #ffffff; }

/* Mobile search bar fix */
@media (max-width: 768px) {
  #search-bar { margin-inline: 16px; border-radius: 8px; }
  .sb-submit .btn { width: 100%; justify-content: center; }
  #hero { padding-bottom: 40px; }
  .featured-price-amount { font-size: 40px; }
}

/* Fix footer nav lists — they render as separate <ul> blocks */
.footer-col > ul,
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col > ul + ul { margin-top: 0; }
.footer-col ul li { margin-bottom: 10px; border: none; padding: 0; }

/* Fleet tab active state — ensure it stays blue */
.fleet-tab.active { background: var(--blue) !important; color: #fff !important; border-color: var(--blue) !important; }

/* Ensure white bg on all content wrappers */
#page, #content, .site-content { background: #ffffff; }

/* Fix for wp-admin bar pushing sticky header */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

/* ── Search bar spacing fix ── */
#search-bar {
  margin-top: 32px !important;
  margin-bottom: 0;
}

/* ── Featured section spacing ── */
#featured-vehicle {
  margin-top: 0;
  margin-bottom: 64px;
}

/* ── Section separators for visual rhythm ── */
#fleet, #services, #why-us, #testimonials {
  padding: 72px 40px;
}
#services  { background: #f8faff !important; }
#why-us    { background: #ffffff !important; }
#testimonials { background: #f8faff !important; }

@media (max-width: 768px) {
  #fleet, #services, #why-us, #testimonials { padding: 48px 20px; }
  .featured-specs-row { flex-wrap: wrap; }
  .f-spec-item { padding: 12px 16px; }
}

/* ============================================================
   VEHICLE CARD — Multi-image slider
   ============================================================ */
.vc-image-wrap {
  position: relative; height: 210px; overflow: hidden;
  background: var(--blue-light);
}
.vc-slides { width: 100%; height: 100%; }
.vc-slide { display: none; width: 100%; height: 100%; }
.vc-slide.active { display: block; }
.vc-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vehicle-card:hover .vc-slide.active img { transform: scale(1.04); }

.vc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); z-index: 3;
  opacity: 0; transition: opacity var(--transition);
}
.vc-arrow.vc-prev { left: 10px; }
.vc-arrow.vc-next { right: 10px; }
.vehicle-card:hover .vc-arrow { opacity: 1; }

.vc-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.vc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  transition: all var(--transition); padding: 0;
}
.vc-dot.active { background: #fff; width: 18px; border-radius: 3px; }

.vc-count {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 10px;
  display: flex; align-items: center; gap: 4px; z-index: 3;
}
.vc-badges-top {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px; z-index: 3;
}
.vc-quick-actions {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; gap: 6px; z-index: 3;
  opacity: 0; transform: translateY(6px);
  transition: all var(--transition);
}
.vehicle-card:hover .vc-quick-actions { opacity: 1; transform: translateY(0); }
.vc-quick-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all var(--transition);
}
.vc-quick-btn:hover { background: var(--blue); color: #fff; }
.vc-quick-wa:hover { background: #25D366 !important; }

/* Card meta row */
.vc-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.vc-category-tag {
  font-size: 11px; color: var(--blue); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.vc-year-tag {
  font-size: 11px; color: var(--text-dim);
  background: var(--bg-surface); padding: 2px 8px; border-radius: 8px;
  font-weight: 500;
}

/* ============================================================
   BROWSE BY CATEGORY
   ============================================================ */
.cat-browse-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 14px;
}
.cat-browse-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 16px;
  text-align: center; text-decoration: none;
  transition: all var(--transition); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.cat-browse-card:hover {
  border-color: var(--blue); box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.cat-browse-card:hover .cat-browse-icon { background: var(--blue); color: #fff; }
.cat-browse-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; transition: all var(--transition);
}
.cat-browse-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.cat-browse-count { font-size: 12px; color: var(--text-dim); }
.cat-browse-arrow {
  font-size: 14px; color: var(--blue);
  opacity: 0; transform: translateX(-4px);
  transition: all var(--transition);
}
.cat-browse-card:hover .cat-browse-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   TRIP PLANNER
   ============================================================ */
#trip-planner {
  padding: 72px 40px;
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tp-header { text-align: center; margin-bottom: 40px; }

.tp-card {
  max-width: 860px; margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Steps */
.tp-steps {
  display: flex; align-items: center;
  padding: 24px 32px; background: var(--bg-hero);
  border-bottom: none;
}
.tp-step {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.45; transition: opacity var(--transition);
}
.tp-step.active { opacity: 1; }
.tp-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
}
.tp-step.active .tp-step-num { background: #fff; color: var(--blue); border-color: #fff; }
.tp-step-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); white-space: nowrap; }
.tp-step.active .tp-step-label { color: #fff; }
.tp-step-line { flex: 1; height: 1px; background: rgba(255,255,255,0.2); margin: 0 12px; }

/* Panels */
.tp-panel { display: none; padding: 32px; }
.tp-panel.active { display: block; }

/* Inputs */
.tp-input-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.tp-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tp-input-row:has(.tp-input-wrap:nth-child(3)) { grid-template-columns: 1fr 1fr 1fr; }
.tp-input-wrap {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg-surface); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color var(--transition);
}
.tp-input-wrap:focus-within { border-color: var(--blue); background: #fff; }
.tp-input-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.tp-dot-green { background: #dcfce7 !important; color: #16a34a !important; }
.tp-dot-blue  { background: var(--blue-light); color: var(--blue); }
.tp-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; display: block; }
.tp-input {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-primary); padding: 0;
}
.tp-input::placeholder { color: var(--text-dim); font-weight: 400; }

/* Destination chips */
.tp-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tp-chip {
  background: var(--blue-light); color: var(--blue);
  border: 1.5px solid rgba(24,119,242,0.2); border-radius: 20px;
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  cursor: pointer; transition: all var(--transition);
  font-family: var(--font-body);
}
.tp-chip:hover { background: var(--blue); color: #fff; }

/* Summary bar */
.tp-summary-bar {
  background: linear-gradient(135deg, var(--bg-hero), #1877F2);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 12px 20px; border-radius: 10px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}

/* Category tabs inside planner */
.tp-car-category-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tp-cat-tab {
  padding: 6px 16px; font-size: 12px; font-weight: 600; border-radius: 20px;
  border: 1.5px solid var(--border); background: #fff; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.tp-cat-tab.active, .tp-cat-tab:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Vehicle list in planner */
.tp-vehicle-list { display: flex; flex-direction: column; gap: 10px; max-height: 380px; overflow-y: auto; }
.tp-vehicle-item {
  display: flex; gap: 14px; align-items: center;
  background: var(--bg-surface); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  transition: all var(--transition);
}
.tp-vehicle-item:hover { border-color: var(--blue); background: #fff; box-shadow: var(--shadow-sm); }
.tp-vehicle-item img {
  width: 100px; height: 68px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
  background: var(--blue-light);
}
.tp-vi-info { flex: 1; min-width: 0; }
.tp-vi-name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 5px; }
.tp-vi-specs { display: flex; gap: 10px; flex-wrap: wrap; }
.tp-vi-specs span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 3px; }
.tp-vi-price { text-align: right; flex-shrink: 0; }
.tp-vi-amount { font-family: var(--font-display); font-size: 18px; color: var(--blue); }
.tp-vi-period { font-size: 11px; color: var(--text-dim); margin-bottom: 8px; }

/* Confirm box */
.tp-confirm-summary { margin-bottom: 20px; }

/* Single vehicle gallery */
.vs-gallery { display: flex; flex-direction: column; gap: 12px; }
.vs-main-img {
  position: relative; height: 400px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--blue-light); cursor: zoom-in;
  border: 1px solid var(--border);
}
.vs-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vs-main-img:hover img { transform: scale(1.02); }
.vs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
  width: 40px; height: 40px; font-size: 20px; cursor: pointer; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 3; transition: all var(--transition);
}
.vs-prev { left: 14px; } .vs-next { right: 14px; }
.vs-arrow:hover { background: var(--blue); color: #fff; }
.vs-img-counter {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 12px; z-index: 3;
}
.vs-zoom-hint {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
  font-size: 11px; padding: 4px 10px; border-radius: 10px;
  display: flex; align-items: center; gap: 5px; z-index: 3;
  opacity: 0; transition: opacity var(--transition);
}
.vs-main-img:hover .vs-zoom-hint { opacity: 1; }
.vs-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.vs-thumb {
  width: 76px; height: 56px; border-radius: 8px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer; transition: all var(--transition);
  flex-shrink: 0;
}
.vs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vs-thumb.active, .vs-thumb:hover { border-color: var(--blue); }

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */
@media (max-width: 1024px) {
  .cat-browse-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .tp-input-row { grid-template-columns: 1fr; }
  .tp-input-row:has(.tp-input-wrap:nth-child(3)) { grid-template-columns: 1fr; }
  .tp-steps { padding: 18px 20px; gap: 0; }
  .tp-step-label { display: none; }
  .tp-card .tp-panel { padding: 20px; }
  .cat-browse-grid { grid-template-columns: repeat(2,1fr); }
  .tp-vehicle-item img { width: 72px; height: 54px; }
  #trip-planner { padding: 48px 20px; }
  .vs-main-img { height: 260px; }
}

/* ============================================================
   AUDIT FIXES v2.2
   ============================================================ */

/* Booking confirmation flash toast */
.rl-toast {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
  z-index: 9999; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn .3s ease;
}
@keyframes toastIn { from { opacity:0; transform:translateX(-50%) translateY(-10px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.rl-toast-success { background: #10b981; color: #fff; }
.rl-toast-error   { background: #dc2626; color: #fff; }

/* FAQ accordion */
.faq-item { background: #fff; }
.faq-item.open .faq-a { display: block !important; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

/* About/Services page responsive */
@media (max-width: 768px) {
  .about-grid,
  .service-row { grid-template-columns: 1fr !important; direction: ltr !important; }
}

/* Services page alternating rows */
@media (max-width: 768px) {
  div[style*="direction:rtl"] { direction: ltr !important; }
}

/* Footer logo white — stronger rule */
#colophon img,
#colophon .custom-logo {
  filter: brightness(0) invert(1) !important;
  opacity: 0.9 !important;
}

/* Vehicle single page — booking success message */
.booking-success-banner {
  background: #ecfdf5; border: 1.5px solid #6ee7b7;
  color: #065f46; border-radius: 12px; padding: 16px 20px;
  margin-bottom: 20px; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.booking-error-banner {
  background: #fef2f2; border: 1.5px solid #fca5a5;
  color: #991b1b; border-radius: 12px; padding: 16px 20px;
  margin-bottom: 20px; font-size: 14px;
}

/* Dual pricing block improvements */
.vehicle-single-price { font-family: var(--font-display); font-size: 42px; color: var(--blue); line-height: 1; }

/* Nav active state for current page */
.primary-nav a.current { color: var(--blue) !important; background: var(--blue-light); border-radius: 6px; }

/* Print improvements */
@media print {
  .whatsapp-float, #trip-planner, #cta-section { display: none !important; }
  .vehicle-single-grid { grid-template-columns: 1fr !important; }
}

/* Schema / SEO — visually hidden but present for accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Services page icon background hover */
.service-item a { color: inherit; }

/* About/Services page responsive grids */
@media (max-width: 1024px) {
  div[style*="grid-template-columns:1fr 1fr"] {
    /* Can't easily target all, but specific classes: */
  }
}
@media (max-width: 768px) {
  #browse-categories { padding: 48px 20px; }
  .cat-browse-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .cat-browse-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 40px;
}
.about-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.about-headline { font-family: var(--font-display); font-size: clamp(36px,5vw,58px); line-height: 1; margin-bottom: 22px; }
.about-lead { font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.about-body { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 28px; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.about-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-stat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.about-stat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(24,119,242,0.12);
  transform: translateY(-2px);
}
.about-stat-icon { font-size: 26px; color: var(--blue); display: block; margin-bottom: 10px; }
.about-stat-num { font-family: var(--font-display); font-size: 40px; color: var(--blue); line-height: 1; }
.about-stat-label { font-size: 11px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* Story timeline */
.about-story {
  background: linear-gradient(135deg, #0a2e6e 0%, #1877F2 100%);
  padding: 88px 40px;
  position: relative; overflow: hidden;
}
.about-story::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.about-story-inner { max-width: var(--container); margin: 0 auto; }
.about-story-header { text-align: center; margin-bottom: 64px; }
.about-story-header h2 { color: #fff; }
.about-story-header p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 12px auto 0; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.timeline-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
  position: relative;
}
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.timeline-item:hover .timeline-dot {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.1);
}
.timeline-year { font-family: var(--font-display); font-size: 32px; color: rgba(255,255,255,0.5); line-height: 1; margin-bottom: 8px; }
.timeline-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.timeline-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Values section */
.about-values { padding: 88px 40px; background: #f8faff; }
.about-values-inner { max-width: var(--container); margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 56px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(24,119,242,0.2); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  transition: all var(--transition);
}
.value-card:hover .value-icon { background: var(--blue); color: #fff; }
.value-title { font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Team / trust section */
.about-trust { padding: 88px 40px; background: #fff; }
.about-trust-inner { max-width: var(--container); margin: 0 auto; }
.trust-header { text-align: center; margin-bottom: 56px; }
.trust-logos {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 20px; align-items: center;
}
.trust-logo {
  background: #f8faff; border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 16px;
  text-align: center; transition: all var(--transition);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.trust-logo:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-sm); }
.trust-logo i { font-size: 24px; color: var(--blue); opacity: 0.5; }

/* About CTA */
.about-cta {
  background: linear-gradient(135deg, #0a2e6e, #1877F2);
  padding: 88px 40px; text-align: center;
}
.about-cta h2 { color: #fff; margin-bottom: 16px; }
.about-cta p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; font-size: 16px; }
.about-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero-section {
  padding: 88px 40px;
  max-width: var(--container);
  margin: 0 auto;
}
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}
.service-intro-text h2 { font-size: clamp(32px,4vw,52px); margin-bottom: 18px; }
.service-intro-text p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 28px; }

/* Service cards — main grid */
.services-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.service-card-full {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.service-card-full:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(24,119,242,0.25);
}
.sc-header {
  padding: 28px 28px 20px;
  position: relative;
}
.sc-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
  transition: all var(--transition);
}
.service-card-full:hover .sc-icon-wrap { transform: scale(1.08); }
.sc-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.sc-title { font-family: var(--font-display); font-size: 26px; line-height: 1; margin-bottom: 6px; }
.sc-price { font-size: 13px; font-weight: 600; color: var(--blue); }
.sc-body { padding: 0 28px 28px; flex: 1; display: flex; flex-direction: column; }
.sc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.sc-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.sc-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-primary);
}
.sc-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.sc-cta { margin-top: auto; }
.sc-cta a { width: 100%; justify-content: center; display: flex; }

/* Featured service — full-width banner style */
.service-featured-banner {
  background: linear-gradient(135deg, #0a2e6e 0%, #1877F2 100%);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  position: relative; overflow: hidden;
}
.service-featured-banner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.sfb-content h2 { color: #fff; font-size: clamp(28px,3.5vw,48px); margin-bottom: 14px; }
.sfb-content p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.sfb-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 32px;
}
.sfb-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.sfb-feature i { color: #60a5fa; font-size: 16px; flex-shrink: 0; }
.sfb-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sfb-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 20px 16px; text-align: center;
  backdrop-filter: blur(8px);
}
.sfb-stat-num { font-family: var(--font-display); font-size: 36px; color: #fff; }
.sfb-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* Process — how it works */
.services-process { padding: 88px 40px; background: #f8faff; }
.services-process-inner { max-width: var(--container); margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 56px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--blue-light), var(--blue), var(--blue-light));
}
.process-step { text-align: center; position: relative; }
.ps-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 28px; color: var(--blue);
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(24,119,242,0.15);
  transition: all var(--transition);
}
.process-step:hover .ps-num { background: var(--blue); color: #fff; transform: scale(1.05); }
.ps-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.ps-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* FAQ section */
.services-faq { padding: 88px 40px; background: #fff; }
.services-faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; }
.faq-item-new { border-bottom: 1px solid var(--border); }
.faq-item-new:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: #fff; border: none;
  padding: 22px 28px; text-align: left;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--text-primary); transition: background var(--transition);
}
.faq-question:hover { background: #f8faff; }
.faq-question.open { background: var(--blue-light); color: var(--blue); }
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
}
.faq-answer {
  display: none; padding: 0 28px 24px;
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  background: var(--blue-light);
}
.faq-answer.open { display: block; }

/* Services CTA */
.services-cta {
  padding: 88px 40px; text-align: center;
  background: #fff;
}
.services-cta h2 { margin-bottom: 14px; }
.services-cta p { color: var(--text-muted); max-width: 460px; margin: 0 auto 36px; font-size: 16px; }
.services-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-section { grid-template-columns: 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .timeline::before { display: none; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .services-main-grid { grid-template-columns: repeat(2,1fr); }
  .service-featured-banner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .trust-logos { grid-template-columns: repeat(3,1fr); }
  .services-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .about-hero-section, .about-values, .about-trust, .about-story { padding: 56px 20px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .services-main-grid { grid-template-columns: 1fr; }
  .service-featured-banner { padding: 32px 24px; }
  .sfb-features { grid-template-columns: 1fr; }
  .sfb-visual { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-logos { grid-template-columns: repeat(2,1fr); }
  .services-hero-section, .services-process, .services-faq, .services-cta { padding: 56px 20px; }
  .about-cta { padding: 56px 20px; }
  .faq-question { padding: 18px 20px; font-size: 14px; }
}
