:root {
  --primary-white: #ffffff;
  --primary-neon-blue: #00d4ff;
  --primary-sky-blue: #8ee9ff;
  --accent-blue: #37b8ff;
  --dark-blue: #0a2540;
  --text-dark: #152033;
  --text-muted: #64748b;
  --border-soft: rgba(0, 212, 255, 0.12);
  --shadow-light: rgba(0, 212, 255, 0.14);
  --shadow-neon: rgba(0, 212, 255, 0.28);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-xl: clamp(3rem, 6vw, 5.25rem);
  --fs-lg: clamp(2.2rem, 4vw, 3.6rem);
  --fs-md: clamp(1.3rem, 2.4vw, 2rem);
  --fs-sm: clamp(1rem, 1.8vw, 1.18rem);
  --fs-xs: 0.95rem;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4.75rem, 8vw, 7rem) 0;
}

.eyebrow {
  display: inline-block;
  color: var(--primary-neon-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-heading h2,
.contact__info h2,
.booking__content h2 {
  margin: 0 0 1rem;
  font-size: var(--fs-lg);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p,
.contact__info p,
.booking__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 60px var(--shadow-light);
}

/* ── Page loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #effbff 100%);
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 60%);
  animation: pulse-loader 2.4s ease-in-out infinite;
}

.loader-logo {
  position: relative;
  text-align: center;
  z-index: 1;
  animation: loader-zoom 2.4s ease forwards;
}

.loader-logo__mark {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--primary-neon-blue), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-logo__name {
  margin-top: 0.25rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark-blue);
}

.loader-logo__sub {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@keyframes pulse-loader {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%       { transform: scale(1.08); opacity: 0.12; }
}

@keyframes loader-zoom {
  0%  { opacity: 0; transform: scale(0.9); }
  40% { opacity: 1; }
  100%{ opacity: 1; transform: scale(1.04); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 36px rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand__badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e6faff, #ffffff);
  box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
}

.brand__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text strong {
  display: block;
  color: var(--dark-blue);
  font-size: 1rem;
  line-height: 1.1;
}

.brand__text small {
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(0, 212, 255, 0.12);
  color: var(--primary-neon-blue);
}

.nav-actions {
  display: flex;
  gap: 0.45rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark-blue);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  min-height: 52px;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-neon-blue), var(--accent-blue));
  box-shadow: 0 14px 36px var(--shadow-neon);
}

.btn--primary:hover { box-shadow: 0 18px 42px rgba(0, 212, 255, 0.36); }

.btn--outline {
  color: var(--primary-neon-blue);
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--primary-neon-blue);
  color: #ffffff;
}

.btn--small { min-height: 46px; padding: 0.75rem 1.25rem; }
.btn--full  { width: 100%; }

.btn--ripple::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%);
  transition: width 0.45s ease, height 0.45s ease, opacity 0.45s ease;
  opacity: 0;
}

.btn--ripple:active::after,
.btn--ripple-active::after {
  width: 240px;
  height: 240px;
  opacity: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 45%, rgba(10,37,64,0.15) 100%),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  z-index: -3;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(0,212,255,0.22), transparent 25%),
    radial-gradient(circle at 82% 72%, rgba(55,184,255,0.22), transparent 22%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  z-index: -2;
  animation: float-blob 8s ease-in-out infinite;
}

.hero__orb--one {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -5%;
  background: rgba(0, 212, 255, 0.45);
}

.hero__orb--two {
  width: 280px;
  height: 280px;
  bottom: 10%;
  right: -5%;
  background: rgba(55, 184, 255, 0.3);
  animation-delay: -4s;
}

@keyframes float-blob {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%       { transform: translateY(-24px) translateX(10px); }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero__content h1 {
  margin: 0 0 1.25rem;
  font-size: var(--fs-xl);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 2rem;
  font-size: var(--fs-md);
  color: var(--text-dark);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 620px;
}

.mini-card {
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.mini-card span {
  display: block;
  color: var(--primary-neon-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.mini-card strong {
  display: block;
  font-size: 0.96rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image-card {
  position: relative;
  width: min(100%, 560px);
  min-height: 530px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__image-card img {
  height: 100%;
  object-fit: cover;
}

.hero__floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.1);
  font-weight: 700;
  color: var(--dark-blue);
  animation: float-badge 4s ease-in-out infinite;
}

.hero__floating--top    { top: 1.25rem; right: 1.25rem; }
.hero__floating--bottom { left: 1.25rem; bottom: 1.25rem; animation-delay: -2s; }

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

/* ── Grids ── */
.services-grid,
.fleet-grid,
.features-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fleet-grid     { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.features-grid  { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.gallery-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── Cards ── */
.service-card,
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(142,233,255,0.05));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 70px var(--shadow-neon);
}

.service-card:hover::before,
.feature-card:hover::before { opacity: 1; }

.service-card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.service-icon,
.feature-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(142,233,255,0.4));
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.16);
  font-size: 2rem;
}

.service-card h3,
.feature-card h3,
.fleet-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.service-card p,
.feature-card p,
.fleet-card p {
  margin: 0;
  color: var(--text-muted);
}

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(10, 37, 64, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 80px rgba(0, 212, 255, 0.2);
}

.fleet-card img {
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.fleet-card__body {
  padding: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

/* ── Stats ── */
.stats {
  padding: 80px 20px;
  background: linear-gradient(to right, #f9feff, #eefaff);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 207, 255, 0.2);
}

.stat-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00cfff, #87ceeb);
}

.counter {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0077b6;
  display: block;
  margin-bottom: 10px;
}

.stat-card span {
  font-size: 1rem;
  color: #555;
  letter-spacing: 0.5px;
}

/* ── Booking ── */
.booking {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(55,184,255,0.08));
}

.booking__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: shape-float 10s ease-in-out infinite;
}

.booking__shape--one {
  width: 420px;
  height: 420px;
  left: -10%;
  top: 10%;
  background: rgba(0, 212, 255, 0.24);
}

.booking__shape--two {
  width: 300px;
  height: 300px;
  right: -8%;
  bottom: -8%;
  background: rgba(142, 233, 255, 0.28);
  animation-delay: -5s;
}

@keyframes shape-float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -16px); }
}

.booking__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 2.5rem;
  align-items: center;
  z-index: 1;
}

.booking-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.booking-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-weight: 500;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-neon-blue), var(--accent-blue));
  box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.12);
}

.booking-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.booking-form.animated {
  transform: translateX(0);
  opacity: 1;
}

/* ── Forms ── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  padding: 1rem 1.1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-neon-blue);
  box-shadow: 0 0 0 5px rgba(0, 212, 255, 0.14);
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

/* ── Testimonials ── */
.testimonial-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 3rem 4.5rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: translateX(30px);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-card .stars {
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin: 0 0 1rem;
  max-width: 640px;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.testimonial-card strong { color: var(--primary-neon-blue); }

.slider-btn {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-neon-blue);
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.12);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--primary-neon-blue);
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

#prevTestimonial { left: -20px; }
#nextTestimonial { right: -20px; }

/* ── Gallery ── */
.gallery-card {
  position: relative;
  height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(10, 37, 64, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.05), rgba(0,212,255,0.68));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 80px rgba(0, 212, 255, 0.18);
}

.gallery-card:hover::before { opacity: 1; }

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img { transform: scale(1.08); }

.gallery-card span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact ── */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.contact-list strong { color: var(--primary-neon-blue); }

.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 1rem;
}

.contact-form input { margin-bottom: 1rem; }

.contact__map {
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.12);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer ── */
.site-footer {
  padding: 4rem 0 1.5rem;
  background: linear-gradient(180deg, var(--dark-blue) 0%, #081a2d 100%);
  color: #ffffff;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand strong { font-size: 1.15rem; }

.footer__brand p,
.footer-links a { color: rgba(255, 255, 255, 0.74); }

.footer h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary-neon-blue);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-links a:hover {
  background: var(--primary-neon-blue);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.25);
}

.footer-copy {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-animate="fade-up"]  { transform: translateY(36px); }
[data-animate="fade-left"]{ transform: translateX(44px); }
[data-animate="zoom-in"]  { transform: scale(0.94); }

.reveal.animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ── Accessibility ── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
}

/* ── WhatsApp widget ── */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: white;
  font-size: 26px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn i { font-size: 28px; }

.whatsapp-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: white;
  padding: 15px;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-popup.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-popup p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.whatsapp-popup a {
  display: inline-block;
  background: #00cfff;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .fleet-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .hero__grid,
  .booking__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .hero__content { text-align: center; }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__mini-cards {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image-card { min-height: 420px; }
  .booking-form     { transform: none; opacity: 1; }
  .nav-actions      { display: none; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 1.25rem, 1400px); }

  .nav { min-height: 76px; }

  .nav-toggle {
    display: block;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 1rem auto 1rem;
    padding: 1rem;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a { display: block; text-align: center; }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__mini-cards,
  .services-grid,
  .fleet-grid,
  .features-grid,
  .stats-grid,
  .gallery-grid,
  .form-grid,
  .footer { grid-template-columns: 1fr; }

  .hero__content h1  { max-width: none; }
  .hero__image-card  { min-height: 340px; }
  .slider-btn        { display: none; }

  .testimonial-card  { padding: 2rem 1.25rem; }
  .testimonial-track { min-height: 360px; }
  .contact__map      { min-height: 340px; }
}

@media (max-width: 560px) {
  .btn { width: 100%; }

  .hero__actions { flex-direction: column; }

  .hero__floating {
    font-size: 0.8rem;
    min-height: 40px;
    padding: 0.65rem 0.9rem;
  }

  .booking-form,
  .service-card,
  .feature-card,
  .stat-card { padding: 1.4rem; }
}

@media (max-width: 600px) {
  .counter { font-size: 2.2rem; }
}
/* ── Trust Bar ── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3rem;
}
.trust-item {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  background: var(--glass-bg);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-neon-blue);
  line-height: 1;
}
.trust-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── Feature Cards (icon update) ── */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  color: var(--primary-neon-blue);
}

/* ── Why Us Bottom Row ── */
.why-us-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.why-us-cta {
  background: linear-gradient(135deg, var(--primary-neon-blue), var(--accent-blue));
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.why-us-cta strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.why-us-cta span {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.why-us-cta .btn--outline {
  flex-shrink: 0;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  white-space: nowrap;
}
.why-us-cta .btn--outline:hover {
  background: #fff;
  color: var(--primary-neon-blue);
}
.why-us-certs {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-neon-blue);
  flex-shrink: 0;
}
.cert-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.cert-item p strong {
  color: var(--text-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .why-us-bottom { grid-template-columns: 1fr; }
  .why-us-cta { flex-direction: column; align-items: flex-start; }
}
/* ── Services Grid (updated) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.2s ease;
  overflow: hidden;
}

.service-card:hover { background: #f8fdff; }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-neon-blue);
}

.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-neon-blue);
  text-decoration: none;
  transition: gap 0.2s;
}

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

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-neon-blue), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover::after { transform: scaleX(1); }

/* ── Services Bottom ── */
.services-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.services-note {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.services-note__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-neon-blue);
  flex-shrink: 0;
}

.services-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.services-note p strong { color: var(--text-dark); }

.services-cta {
  background: var(--dark-blue);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.services-cta strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-bottom { grid-template-columns: 1fr; }
}
/* ── Quotation Page ── */
.page-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--primary-neon-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.page-banner__badges {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 999px;
}

.banner-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-neon-blue);
  flex-shrink: 0;
}

/* ── Quotation Layout ── */
.quotation-section { padding-top: 3rem; }

.quotation-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.75rem;
  align-items: start;
}

.quotation-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quotation-info__card {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.quotation-info__card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 .7rem;
  line-height: 1.25;
}

.quotation-info__card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.75;
}

/* Steps */
.quotation-steps {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.quotation-step {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}

.quotation-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  color: var(--primary-neon-blue);
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.quotation-step__text {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.quotation-step__text strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: .15rem;
}

/* Trust bar */
.quotation-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quotation-trust__item {
  background: var(--glass-bg);
  padding: 1.1rem .75rem;
  text-align: center;
}

.quotation-trust__item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-neon-blue);
  line-height: 1;
}

.quotation-trust__item span {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-top: .3rem;
}

/* Contact strip */
.quotation-contact__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 0 0 1rem !important;
}

.quotation-contact {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.quotation-contact__item {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.quotation-contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.quotation-contact__item span {
  display: block;
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

.quotation-contact__item strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
  margin-top: .1rem;
}

/* Form */
.quotation-form-wrap { position: sticky; top: 100px; }

.quotation-form {
  border-radius: var(--radius-md);
  padding: 2rem;
}

.quotation-form__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

.quotation-form__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 .3rem;
}

.quotation-form__header p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

.quotation-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-size: .875rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-dark);
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-neon-blue);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.quotation-form .btn {
  margin-top: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.quotation-form__note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.quotation-form__note i {
  color: var(--primary-neon-blue);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.quotation-form__note span {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .quotation-grid { grid-template-columns: 1fr; }
  .quotation-form-wrap { position: static; }
}

@media (max-width: 600px) {
  .quotation-form__grid { grid-template-columns: 1fr; }
  .quotation-form { padding: 1.5rem; }
}
/* ── Booking Form Enhanced ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.form-field input,
.form-field select {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-size: .875rem;
  font-family: inherit;
  background: rgba(255,255,255,0.6);
  color: var(--text-dark);
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-neon-blue);
  background: #fff;
}

/* Driver Toggle */
.driver-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.driver-option { cursor: pointer; }

.driver-option input[type="radio"] { display: none; }

.driver-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 1.1rem .75rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  text-align: center;
  background: rgba(255,255,255,0.5);
  transition: all .2s;
  cursor: pointer;
}

.driver-option__card i {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: color .2s;
}

.driver-option__card strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.driver-option__card small {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.driver-option input[type="radio"]:checked + .driver-option__card {
  border-color: var(--primary-neon-blue);
  background: rgba(0, 212, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.driver-option input[type="radio"]:checked + .driver-option__card i {
  color: var(--primary-neon-blue);
}

/* Location Input */
.location-input-wrap {
  position: relative;
}

.location-input-wrap i {
  position: absolute;
  left: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-neon-blue);
  font-size: .9rem;
  pointer-events: none;
}

.location-input-wrap input {
  padding-left: 2.5rem !important;
}

/* Form Note */
.booking-form__note {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  padding: .875rem 1rem;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
}

.booking-form__note i {
  color: var(--primary-neon-blue);
  font-size: .9rem;
  flex-shrink: 0;
}

.booking-form__note span {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .driver-toggle { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════
   UI/UX IMPROVEMENTS — spacing, inline validation,
   card layout, form centering, responsiveness
   ═══════════════════════════════════════════════ */

/* ── Container breathing room ── */
.container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Section spacing consistency ── */
.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

/* ── Page banner improvements ── */
.page-banner {
  padding: 5.5rem 0 4rem;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a6b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,212,255,.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(55,184,255,.12), transparent 50%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin: .6rem 0 1.1rem;
  line-height: 1.1;
}

.page-banner > .container > p {
  color: rgba(255,255,255,.72);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: 1rem;
}

.page-banner__breadcrumb a {
  color: var(--primary-neon-blue);
  text-decoration: none;
}

/* ── Section headings — more breathing room ── */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-heading h2 {
  margin-bottom: 1.1rem;
}

/* ── Service cards — proper grid gap ── */
.services-grid {
  gap: 0;                       /* border-based grid — gap is 1px border */
  margin-bottom: 1.5rem;
}

.service-card {
  padding: 2.25rem 2rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Services full (services page) */
.services-grid--large {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.service-card--full {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}

/* ── Fleet cards — consistent gap and sizing ── */
.fleet-grid {
  gap: 1.75rem;
}

.fleet-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.fleet-card img {
  height: 210px;
}

.fleet-card__body {
  padding: 1.5rem 1.75rem;
  gap: .65rem;
}

.fleet-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}

.fleet-card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0 0 .2rem;
}

/* ── Feature / Why Us cards ── */
.features-grid {
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .875rem;
  line-height: 1.7;
}

/* ── Gallery cards ── */
.gallery-grid {
  gap: 1.5rem;
}

.gallery-card {
  height: 280px;
  border-radius: var(--radius-md);
}

/* ── Booking section layout ── */
.booking__grid {
  gap: 3.5rem;
  align-items: start;
}

.booking__content {
  padding-right: 1rem;
}

.booking__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.booking__content > p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.booking-list {
  margin-top: 1.75rem;
  gap: 1rem;
}

.booking-list li {
  font-size: .9rem;
  padding-left: 1.6rem;
}

/* ── Booking form card ── */
.booking-form {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
}

/* ── Form fields — consistent sizing ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field label {
  font-size: .73rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  background: rgba(255,255,255,.85);
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-neon-blue);
  box-shadow: 0 0 0 4px rgba(0,212,255,.1);
  background: #fff;
}

/* Error state */
.form-field input.field--error,
.form-field select.field--error,
.form-field textarea.field--error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

/* ── Inline field error message ── */
.field-error {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: #c53030;
  margin-top: .25rem;
  animation: errorFadeIn .2s ease;
}

.field-error::before {
  content: "⚠";
  font-size: .7rem;
  flex-shrink: 0;
}

@keyframes errorFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Success state */
.form-field input.field--success,
.form-field select.field--success {
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56,161,105,.08);
}

/* ── Form-level success/error message ── */
.form-message {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .875rem 1rem;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 500;
  margin-top: 1rem;
  line-height: 1.5;
  animation: errorFadeIn .25s ease;
}

.form-message--success {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #9ae6b4;
}

.form-message--error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #feb2b2;
}

.form-message i { margin-top: 2px; flex-shrink: 0; }

/* ── Contact form improvements ── */
.contact-form {
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  background: rgba(255,255,255,.85);
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  margin: 0;                    /* remove old margin-bottom */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-neon-blue);
  box-shadow: 0 0 0 4px rgba(0,212,255,.1);
  background: #fff;
}

.contact-form input.field--error,
.contact-form textarea.field--error {
  border-color: #e53e3e;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Contact info cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.contact-card:hover {
  box-shadow: 0 14px 40px var(--shadow-light);
  transform: translateY(-4px);
}

.contact-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0,212,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-neon-blue);
  margin: 0 auto 1rem;
}

.contact-card h4 {
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 .4rem;
  color: var(--text-dark);
}

.contact-card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-card a {
  color: var(--primary-neon-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover { text-decoration: underline; }

/* ── Contact grid ── */
.contact__grid {
  gap: 2.5rem;
}

.contact__info h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ── Quotation layout ── */
.quotation-section {
  padding-top: 4rem;
}

.quotation-grid {
  gap: 2rem;
}

.quotation-info__card {
  padding: 2rem;
}

.quotation-form {
  padding: 2.25rem 2rem;
}

.quotation-form__grid {
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* ── Driver toggle visual polish ── */
.driver-toggle {
  gap: 1rem;
}

.driver-option__card {
  padding: 1.25rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border-soft);
  transition: all .2s;
}

.driver-option__card:hover {
  border-color: rgba(0,212,255,.4);
  background: rgba(0,212,255,.04);
}

/* ── Location input ── */
.location-input-wrap input {
  padding-left: 2.6rem !important;
}

/* ── Stat cards ── */
.stat-card {
  padding: 2.75rem 1.5rem;
}

/* ── Footer ── */
.footer {
  gap: 2.5rem;
  row-gap: 2.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__brand .brand__badge {
  width: 48px;
  height: 48px;
}

.footer__brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ── Nav active link ── */
.nav-menu a.nav-active {
  background: rgba(0,212,255,.12);
  color: var(--primary-neon-blue);
}

/* ── Fleet CTA strip ── */
.fleet-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.fleet-cta__text h3 {
  margin: 0 0 .35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.fleet-cta__text p {
  margin: 0;
  font-size: .9rem;
  color: var(--text-muted);
}

/* ── Booking contact strip ── */
.booking__contact-strip {
  display: flex;
  gap: 1.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.booking__contact-item {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.booking__contact-item > i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,212,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon-blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.booking__contact-item span {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.booking__contact-item strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
  margin-top: .1rem;
  font-weight: 700;
}

/* ── Service list (services page) ── */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-muted);
}

.service-list li i {
  color: var(--primary-neon-blue);
  font-size: .75rem;
  flex-shrink: 0;
}

/* ── Mini cards on hero ── */
.mini-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1rem;
}

/* ── Testimonial track min-height ── */
.testimonial-track {
  min-height: 320px;
}

/* ════════════════════════════════════
   RESPONSIVE OVERRIDES
   ════════════════════════════════════ */

@media (max-width: 1200px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid--large { grid-template-columns: 1fr !important; }
}

@media (max-width: 1024px) {
  .booking__grid  { grid-template-columns: 1fr; }
  .booking__content { padding-right: 0; }
  .booking-form   { transform: none; opacity: 1; }
  .quotation-grid { grid-template-columns: 1fr; }
  .quotation-form-wrap { position: static; }
  .fleet-cta      { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 2rem, 1280px); padding: 0; }
  .contact-cards  { grid-template-columns: 1fr 1fr; }
  .contact__grid  { grid-template-columns: 1fr; }
  .fleet-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-us-bottom  { grid-template-columns: 1fr; }
  .why-us-cta     { flex-direction: column; align-items: flex-start; }
  .services-bottom { grid-template-columns: 1fr; }
  .booking__contact-strip { flex-direction: column; gap: 1rem; }
  .driver-toggle  { grid-template-columns: 1fr; }
  .booking-form   { padding: 1.75rem 1.25rem; }
  .quotation-form { padding: 1.75rem 1.25rem; }
  .form-grid      { grid-template-columns: 1fr; }
  .quotation-form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .contact-cards  { grid-template-columns: 1fr; }
  .fleet-grid     { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .page-banner    { padding: 4rem 0 3rem; }
  .booking-form   { padding: 1.5rem 1rem; }
}
/* ── Service grid variants for 2-3 layout ── */
.services-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.services-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

/* Stack to single column on mobile */
@media (max-width: 768px) {
  .services-grid--2 {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom: none;
  }
  .services-grid--3 {
    grid-template-columns: 1fr;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

@media (max-width: 1024px) {
  .services-grid--3 { grid-template-columns: repeat(2, 1fr); }
}