:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --gold: #e8a020;
  --gold-light: #f5bc54;
  --orange: #e05c1a;
  --white: #ffffff;
  --offwhite: #f7f5f0;
  --gray: #8a8f9e;
  --light-gray: #e9eaf0;
  --red: #d63230;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: var(--gray);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 2.5rem;
  letter-spacing: 0.04em;
}
.topbar a {
  color: var(--gold);
  text-decoration: none;
}
.topbar span + span::before {
  content: "|";
  margin: 0 0.75rem;
  opacity: 0.4;
}

/* ── NAVBAR ── */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  position: relative;
}
.logo-mark svg {
  width: 44px;
  height: 44px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.logo-text .brand span {
  color: var(--gold);
}
.logo-text .tagline {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links li a,
.nav-links li .nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
}
.nav-links li a::after,
.nav-links li .nav-drop-toggle::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition:
    left 0.25s,
    right 0.25s;
}
.nav-links li a:hover,
.nav-links li .nav-drop-toggle:hover {
  color: var(--gold);
}
.nav-links li a:hover::after,
.nav-links li .nav-drop-toggle:hover::after {
  left: 1.1rem;
  right: 1.1rem;
}

.nav-drop-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s;
  opacity: 0.6;
}
.nav-links li.open .nav-drop-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
  border: 1px solid var(--light-gray);
  min-width: 200px;
  z-index: 2000;
  padding: 0.5rem 0;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-links li.open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem !important;
  font-size: 0.85rem !important;
  color: var(--navy) !important;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
  font-weight: 500 !important;
}
.nav-dropdown a::after {
  display: none !important;
}
.nav-dropdown a:hover {
  background: var(--offwhite);
  color: var(--orange) !important;
}
.nav-dropdown .drop-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
}
.nav-dropdown hr {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 0.4rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-outline {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-gold {
  padding: 0.5rem 1.3rem;
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.btn-gold:hover {
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-mid) 50%,
    #1a3a6b 100%
  );
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2.5rem 3rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(232, 160, 32, 0.03) 40px,
    rgba(232, 160, 32, 0.03) 80px
  );
}
.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 40px,
    transparent 40px,
    transparent 80px
  );
  opacity: 0.25;
}
.hero-deco {
  position: absolute;
  right: -20px;
  bottom: 60px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  color: var(--gold);
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-ctas .btn-hero-primary {
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.15s;
}
.hero-ctas .btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.hero-ctas .btn-hero-secondary {
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.hero-ctas .btn-hero-secondary:hover {
  border-color: var(--gold);
  background: rgba(232, 160, 32, 0.1);
}

.hero-stats {
  position: relative;
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item {
  color: var(--white);
}
.stat-item .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat-item .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── BOOKING WIDGET ── */
.booking-wrap {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.18);
  margin: -3rem 2.5rem 0;
  position: relative;
  z-index: 50;
  padding: 2rem 2.5rem 2rem;
}
.booking-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 1.8rem;
}
.booking-tab {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  user-select: none;
}
.booking-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.field-group select,
.field-group input {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--offwhite);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8f9e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.field-group input {
  background-image: none;
  cursor: text;
}
.field-group select:focus,
.field-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-book {
  padding: 0.75rem 2rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  height: 48px;
}
.btn-book:hover {
  background: #c04d12;
  transform: translateY(-1px);
}

/* ── SECTION COMMON ── */
section {
  padding: 5rem 2.5rem;
}
.section-label {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.65;
}
.section-header {
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services {
  background: var(--offwhite);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  border: 1.5px solid transparent;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--light-gray);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.ic-navy {
  background: var(--navy);
}
.ic-gold {
  background: var(--gold);
}
.ic-orange {
  background: var(--orange);
}

.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-link:hover {
  gap: 0.6rem;
}

/* ── WHY US ── */
.why {
  background: var(--navy);
}
.why .section-title {
  color: var(--white);
}
.why .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
}
.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.why-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: rgba(232, 160, 32, 0.2);
  line-height: 1;
  min-width: 52px;
}
.why-item h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.why-item p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ── FLEET ── */
.fleet {
  background: var(--white);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fleet-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--light-gray);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.fleet-card:hover {
  box-shadow: 0 14px 45px rgba(10, 22, 40, 0.13);
  transform: translateY(-3px);
}
.fleet-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.fleet-img.bg1 {
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
}
.fleet-img.bg2 {
  background: linear-gradient(135deg, #1a3a6b, #0f2044);
}
.fleet-img.bg3 {
  background: linear-gradient(135deg, #c04d12, #e8a020);
}
.fleet-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.fleet-body {
  padding: 1.4rem 1.5rem;
}
.fleet-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.fleet-body p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.55;
}
.fleet-specs {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}
.fleet-spec {
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 600;
}
.fleet-spec span {
  display: block;
  color: var(--gray);
  font-weight: 400;
  font-size: 0.7rem;
}
.fleet-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s,
    gap 0.2s;
}
.fleet-link:hover {
  background: var(--navy);
  color: var(--white);
  gap: 0.6rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--offwhite);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem;
  border-left: 4px solid var(--gold);
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}
.av1 {
  background: var(--navy);
}
.av2 {
  background: var(--orange);
}
.av3 {
  background: #2a7a4b;
}
.testi-author .name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.testi-author .role {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(100deg, var(--gold) 0%, var(--orange) 100%);
  padding: 4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.btn-white {
  padding: 0.9rem 2.2rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 2.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-text .brand {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-col h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--navy);
}
.modal h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.modal-form .field-group select,
.modal-form .field-group input {
  background: var(--offwhite);
}
.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn-submit {
  padding: 0.9rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gold-light);
}
.confirm-msg {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.confirm-msg .check {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}
.confirm-msg h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.confirm-msg p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Mobile */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }
  .booking-form .btn-book {
    grid-column: 1 / -1;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .topbar {
    display: none;
  }
  nav {
    padding: 0 1.5rem;
    position: relative;
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    align-items: center;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 3rem 1.5rem 5rem;
  }
  .booking-wrap {
    margin: -2rem 1rem 0;
    padding: 1.5rem;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  section {
    padding: 3rem 1.5rem;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Mobile nav open state */
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--light-gray);
    gap: 0;
  }
  nav.nav-open .nav-actions {
    display: flex;
    width: 100%;
    padding: 0 0 1rem;
    gap: 0.75rem;
    justify-content: center;
  }
  nav.nav-open .nav-links li {
    width: 100%;
  }
  nav.nav-open .nav-links li .nav-drop-toggle,
  nav.nav-open .nav-links li a {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
  }
  nav.nav-open .nav-links li .nav-drop-toggle::after,
  nav.nav-open .nav-links li a::after {
    display: none;
  }
  nav.nav-open .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--offwhite);
    padding: 0;
    animation: none;
    margin: 0;
  }
  nav.nav-open .nav-dropdown a {
    padding: 0.65rem 1.5rem !important;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.88rem !important;
  }

  /* Hamburger animated to X when open */
  .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .hamburger span {
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }
}

/* ── SUPPORT SECTION ── */
.support {
  background: var(--white);
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.support-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.channel-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  border: 1.5px solid var(--light-gray);
  text-decoration: none;
  color: var(--navy);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.channel-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.09);
  transform: translateX(4px);
}
.channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ch-green {
  background: #e8f5ee;
}
.ch-blue {
  background: #e8eef8;
}
.ch-gold {
  background: #fef4e1;
}
.ch-red {
  background: #fdeaea;
}
.channel-info .ch-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.channel-info .ch-desc {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  user-select: none;
  gap: 1rem;
}
.faq-question:hover {
  color: var(--orange);
}
.faq-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.complaint-form-wrap {
  background: var(--offwhite);
  border-radius: 14px;
  padding: 2.2rem 2rem;
  border: 1.5px solid var(--light-gray);
}
.complaint-form-wrap h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.complaint-form-wrap .form-sub {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 1.6rem;
  line-height: 1.55;
}
.complaint-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.complaint-form .field-group select,
.complaint-form .field-group input,
.complaint-form .field-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  resize: none;
}
.complaint-form .field-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8f9e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}
.complaint-form .field-group select:focus,
.complaint-form .field-group input:focus,
.complaint-form .field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.complaint-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.priority-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.priority-btn {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1.5px solid var(--light-gray);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--gray);
  transition: all 0.2s;
}
.priority-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.priority-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.priority-btn.p-high.selected {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.priority-btn.p-medium.selected {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.complaint-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: block;
}
.btn-complaint {
  padding: 0.88rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 0.3rem;
}
.btn-complaint:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.complaint-confirm {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.complaint-confirm .tick {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}
.complaint-confirm h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.complaint-confirm p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
}
.ticket-num {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--gold);
  color: var(--navy);
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.float-support {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.float-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(224, 92, 26, 0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(224, 92, 26, 0.55);
}
.float-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
  flex-shrink: 0;
}
.float-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.35);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.wa-bubble {
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  color: var(--navy);
  max-width: 200px;
  line-height: 1.45;
  position: relative;
  display: none;
  animation: fadeUp 0.25s ease;
}
.wa-bubble.visible {
  display: block;
}
.wa-bubble strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
  color: #128c7e;
}
.wa-bubble::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 20px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  border: none;
  position: relative;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}
.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.wa-ping {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: waPing 2s infinite;
}
@keyframes waPing {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

@media (max-width: 900px) {
  .support-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .complaint-form .field-row {
    grid-template-columns: 1fr;
  }
}
/* ── LOCATION INPUTS & MAP ── */
.location-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.location-input-wrap .loc-icon {
  position: absolute;
  left: 0.75rem;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}
.location-input-wrap input {
  padding-left: 2.2rem !important;
  padding-right: 2.4rem !important;
  width: 100%;
}
.use-location-btn {
  position: absolute;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gold);
  line-height: 1;
  padding: 0;
  transition:
    transform 0.2s,
    color 0.2s;
  title: "Use my location";
}
.use-location-btn:hover {
  color: var(--orange);
  transform: scale(1.2);
}

/* OSM Nominatim suggestion dropdown */
.osm-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 8px;
  border: 1.5px solid var(--light-gray);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.12);
  z-index: 9999;
  overflow: hidden;
  animation: dropIn 0.15s ease;
}
.osm-suggestion-item {
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--navy);
  cursor: pointer;
  border-bottom: 1px solid var(--light-gray);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.15s;
}
.osm-suggestion-item:last-child {
  border-bottom: none;
}
.osm-suggestion-item:hover {
  background: var(--offwhite);
  color: var(--orange);
}

/* Leaflet overrides to match site style */
.leaflet-control-attribution {
  font-size: 0.65rem !important;
}
.leaflet-routing-container {
  display: none !important;
}

/* Map preview panel */
.map-preview {
  grid-column: 1 / -1;
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--light-gray);
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-top-bar {
  background: var(--white);
  padding: 0.65rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-gray);
}
.map-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.map-close-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: "DM Sans", sans-serif;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.map-close-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f5;
}
.map-frame {
  width: 100%;
  height: 280px;
  background: var(--light-gray);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-info {
  background: var(--white);
  padding: 0.9rem 1.2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--light-gray);
  font-size: 0.84rem;
}
.map-info .route-stat {
  display: flex;
  flex-direction: column;
}
.map-info .route-stat .rs-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
}
.map-info .route-stat .rs-key {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.map-info .route-label {
  font-size: 0.82rem;
  color: var(--gray);
  flex: 1;
  min-width: 200px;
}
.map-info .route-label strong {
  color: var(--navy);
}
.map-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  background: var(--offwhite);
  color: var(--gray);
  font-size: 0.9rem;
  gap: 0.6rem;
}
.map-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
