/* ============================================================
   Runway Rides Ltd — Master Stylesheet
   Licensed Private Hire Operator, Leeds
   Light Theme — Modern & Professional
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --navy: #0f1729;
  --navy-light: #1a2340;
  --gold: #c9a84c;
  --gold-light: #d4b85e;
  --gold-text: #9a7d2e;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --grey-100: #f0f0f0;
  --grey-200: #e2e0dc;
  --grey-300: #d0cec9;
  --grey-500: #888;
  --grey-700: #555;
  --text: #1a1a1a;
  --text-light: rgba(255, 255, 255, 0.7);
  --text-muted: #6b6b6b;
  --whatsapp: #25D366;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- FOCUS VISIBLE ---------- */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea,
button {
  font: inherit;
}


/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

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

/* Gold on dark backgrounds keeps the brighter shade */
.page-header .gold,
.dark-section .gold,
.cta-box .gold,
.hero .gold {
  color: var(--gold);
}


/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
  border-radius: 6px;
}


/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 24px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--gold);
}

.cookie-content a:hover {
  color: var(--gold-light);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}


/* ==========================================================
   CCTV NOTICE (hidden)
   ========================================================== */
.cctv-notice {
  display: none;
}


/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(15, 23, 41, 0.97);
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo,
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo img,
.header-logo img,
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav,
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--gold);
  background: none;
}

.nav-whatsapp {
  color: var(--whatsapp) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-whatsapp:hover {
  color: #20bd5a !important;
  background: rgba(37, 211, 102, 0.1);
}

/* Mobile toggle (both class names) */
.mobile-toggle,
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .bar,
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.mobile-toggle.active .bar:nth-child(1),
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .bar:nth-child(2),
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active .bar:nth-child(3),
.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(15, 23, 41, 0.75) 0%, rgba(15, 23, 41, 0.4) 45%, transparent 100%),
    linear-gradient(to top, rgba(15, 23, 41, 0.5) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 120px 0 60px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(15, 23, 41, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero h1 .gold-line {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust span,
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-trust svg,
.hero-trust img,
.hero-trust-item svg,
.hero-trust-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s ease infinite;
  transition: color var(--transition);
}

.scroll-indicator:hover {
  color: var(--gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}


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

.section-alt {
  background: var(--off-white);
}

.dark-section {
  background: var(--navy);
  color: var(--white);
}

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

.dark-section .section-header p {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

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

.section-header-light p {
  color: var(--text-light);
}

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--grey-700);
  line-height: 1.7;
}

.section-title {
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--grey-700);
  margin-bottom: 40px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}


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

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--grey-200);
  border-top-color: var(--gold);
}

.service-card .service-icon,
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
}

.service-card .service-icon svg,
.service-card .service-icon img {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--text);
}

.service-card p {
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .service-link,
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-text);
  transition: gap var(--transition);
}

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

/* Arrow provided in HTML, no CSS pseudo needed */


/* ==========================================================
   ABOUT / TRUST
   ========================================================== */
.about-section {
  /* section wrapper - no grid here */
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  max-width: 520px;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--grey-700);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat strong,
.about-stat-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.about-stat span,
.about-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-top: 4px;
}


/* ==========================================================
   FLEET — LIGHT BACKGROUND, WHITE CARDS
   ========================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.fleet-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-lg);
}

.fleet-card.featured,
.fleet-card-featured {
  border-color: var(--gold);
  border-width: 2px;
}

.fleet-card-image,
.fleet-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--grey-100);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-card-image img,
.fleet-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform var(--transition);
}

.fleet-card:hover .fleet-card-image img,
.fleet-card:hover .fleet-img img {
  transform: scale(1.03);
}

.fleet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  z-index: 2;
}

.fleet-card-body,
.fleet-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card h3 {
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.fleet-card-cap {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.fleet-card-desc {
  color: var(--grey-700);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-200);
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--grey-700);
}

.fleet-spec svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.fleet-spec .spec-label {
  font-size: 0.78rem;
  color: var(--grey-500);
}

.fleet-features {
  list-style: none;
  margin-top: auto;
}

.fleet-features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.8;
}

.fleet-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.fleet-features li::after {
  content: '';
  display: block;
}

.fleet-footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-500);
}


/* ==========================================================
   HOW IT WORKS / STEPS
   ========================================================== */
.steps-section {
  background: var(--white);
}

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

.step-card {
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.step-card p {
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ==========================================================
   BUSINESS TRAVEL — LIGHT BACKGROUND
   ========================================================== */
.biz-section {
  background: var(--off-white);
}


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

.biz-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.biz-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-content h2 {
  color: var(--text);
  margin-bottom: 16px;
}

.biz-content p {
  color: var(--grey-700);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.biz-features {
  margin-bottom: 32px;
}

.biz-features li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 2;
}

/* Checkmark provided by inline SVG, no CSS pseudo needed */


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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-700);
  font-style: normal;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-service {
  font-size: 0.82rem;
  color: var(--gold-text);
  font-weight: 500;
}


/* ==========================================================
   CTA SECTION
   ========================================================== */
.cta-section {
  background: var(--off-white);
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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


/* ==========================================================
   FOOTER — DARK NAVY
   ========================================================== */
.footer {
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links,
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: all var(--transition);
}

.social-link:hover,
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.social-link svg,
.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}

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

.footer-contact li,
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.footer-contact li svg,
.footer-contact-list li svg,
.footer-contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

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


/* ==========================================================
   FLOATING BUTTONS
   ========================================================== */
.whatsapp-float,
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover,
.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg,
.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

.call-float,
.float-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  transition: all var(--transition);
}

.call-float:hover,
.float-call:hover {
  transform: scale(1.08);
}

.call-float svg,
.float-call svg {
  width: 24px;
  height: 24px;
}


/* ==========================================================
   PAGE HEADER (INNER PAGES) — NAVY WITH GOLD ACCENT
   ========================================================== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 80%, rgba(201, 168, 76, 0.15) 100%);
  padding: 140px 0 60px;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}


/* ==========================================================
   INNER PAGE CONTENT
   ========================================================== */
.content-section {
  padding: 80px 0;
}

.content-section-tight {
  padding: 48px 0;
}

.form-actions {
  text-align: center;
  margin-top: 8px;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-narrow h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.content-narrow h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-narrow p {
  color: var(--grey-700);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-narrow ul,
.content-narrow ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-narrow ul {
  list-style: disc;
}

.content-narrow ol {
  list-style: decimal;
}

.content-narrow li {
  font-size: 1rem;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 6px;
}

.content-narrow a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-narrow a:hover {
  color: var(--gold-light);
}

.content-narrow strong {
  font-weight: 600;
  color: var(--text);
}

.content-narrow table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.content-narrow th,
.content-narrow td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
}

.content-narrow th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--grey-100);
}

.content-narrow td {
  color: var(--grey-700);
}


/* ==========================================================
   FORMS
   ========================================================== */
.quote-form,
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-500);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--grey-700);
  line-height: 1.6;
  margin-top: 12px;
}

.required {
  color: #e74c3c;
}


/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-icon,
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  color: var(--gold);
}

.contact-icon svg,
.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--grey-700);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--gold-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--gold);
}

/* Don't override .btn colours inside contact cards */
.contact-card .btn.btn-gold {
  color: var(--navy);
}

.contact-card .btn.btn-gold:hover {
  color: var(--navy);
}

.address-block {
  margin-top: 32px;
}

.info-note {
  background: var(--off-white);
  padding: 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--grey-700);
}


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

.airport-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.airport-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.airport-code {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.airport-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.airport-card p {
  font-size: 0.88rem;
  color: var(--grey-700);
}

.coverage-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.coverage-areas span,
.coverage-areas li {
  display: inline-block;
  padding: 10px 18px;
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--grey-700);
  text-align: center;
  transition: all var(--transition);
}

.coverage-areas span:hover,
.coverage-areas li:hover {
  border-color: var(--gold);
  color: var(--text);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.coverage-card {
  background: var(--off-white);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}

.coverage-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.coverage-card:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ==========================================================
   POLICY
   ========================================================== */
.policy-meta {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--grey-700);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 40px 0 16px;
  font-size: 1.4rem;
}

.policy-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--grey-700);
}

.policy-content ul,
.policy-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--grey-700);
  list-style: disc;
}

.policy-content ol li {
  list-style: decimal;
}

.policy-content a {
  color: var(--gold);
  text-decoration: underline;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}


/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.commitment-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
}

.commitment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-200);
  text-align: left;
  font-size: 0.95rem;
}

.info-table th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--navy);
  width: 35%;
}

.policy-links {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.policy-links li {
  margin-bottom: 10px;
}

.policy-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.policy-link:hover {
  text-decoration: underline;
}


/* ==========================================================
   SERVICES PAGE
   ========================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.standard-item {
  text-align: center;
  padding: 24px;
}

.standard-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--gold);
}

.standard-icon svg {
  stroke: var(--gold);
}

.standard-item h4 {
  margin-bottom: 8px;
}

.standard-item p {
  color: var(--grey-700);
  font-size: 0.9rem;
}


/* ==========================================================
   VISUAL SPLIT LAYOUT
   ========================================================== */
.visual-split {
  display: grid;
  grid-template-columns: minmax(300px, 480px) 1fr;
  gap: 40px;
  align-items: center;
}

.visual-copy h2:first-child {
  margin-top: 0;
}

.section-visual {
  position: relative;
}

.section-visual-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-visual-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.visual-pillars span {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}


/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-enabled .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================== */
@media (max-width: 1024px) {
  .visual-split {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .biz-grid {
    gap: 40px;
  }

  .airports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-areas {
    grid-template-columns: repeat(3, 1fr);
  }

  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================== */
@media (max-width: 768px) {
  .visual-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visual-pillars span {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  /* Header mobile nav */
  .mobile-toggle,
  .nav-toggle {
    display: flex;
  }

  .nav,
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }

  .nav.active,
  .header-nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  /* Hero mobile */
  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Grid stacking */
  .services-grid,
  .steps-grid,
  .contact-grid,
  .airports-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .biz-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .about-stats {
    gap: 24px;
  }

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

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .contact-form {
    padding: 28px 20px;
  }

  /* CTA */
  .cta-box {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Cookie */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  /* Page header */
  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* Content */
  .content-section {
    padding: 60px 0;
  }

  /* Coverage */
  .coverage-areas {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Floating buttons mobile */
  .call-float,
  .float-call {
    display: flex;
  }
}


/* ==========================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================================== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

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

  .coverage-areas,
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
  }

  .btn-nav {
    width: auto;
  }

  .section {
    padding: 48px 0;
  }

  .cta-box {
    padding: 32px 20px;
  }
}
