:root {
  --navy: #07182f;
  --navy-2: #0c2548;
  --blue: #0d5bd7;
  --blue-2: #0b77e8;
  --orange: #ff7a18;
  --orange-2: #ff9b31;
  --gold: #ffc46b;
  --ink: #101522;
  --muted: #687385;
  --line: #e7edf5;
  --light: #f4f7fb;
  --white: #ffffff;
  --black: #05070d;
  --shadow: 0 30px 80px rgba(7, 24, 47, 0.2);
  --soft-shadow: 0 18px 42px rgba(7, 24, 47, 0.12);
  --lux-shadow: 0 34px 90px rgba(3, 14, 31, 0.34);
  --radius: 8px;
  --header-height: 98px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.55), transparent 520px),
    var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.section-head h2,
.split-content h2,
.page-hero h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: 0;
}

.section-head h2,
.split-content h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 18px;
}

.section-head p,
.split-content p,
.page-hero p {
  color: var(--muted);
  font-size: 1.02rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
  transition: all 0.25s ease;
}

.site-header.scrolled {
  height: 88px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(7, 24, 47, 0.12);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--navy);
  min-width: 0;
}

.brand-logo {
  width: clamp(210px, 24vw, 310px);
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(7, 24, 47, 0.12));
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--navy);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(255, 122, 24, 0.24);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(22deg);
  animation: shine 4.2s ease-in-out infinite;
}

.brand-text {
  display: grid;
  line-height: 1.15;
  min-width: 0;
}

.brand-text strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
  max-width: 430px;
  white-space: normal;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.nav-menu a {
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  transition: 0.24s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue);
  background: rgba(13, 91, 215, 0.08);
  box-shadow: inset 0 -2px 0 var(--orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(255, 122, 24, 0.25);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(13, 91, 215, 0.1);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
}

.hero {
  min-height: 104vh;
  display: grid;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  color: var(--white);
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 31, 0.95) 0%, rgba(7, 24, 47, 0.84) 44%, rgba(7, 24, 47, 0.24) 100%),
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 14, 31, 0.96) 0%, rgba(7, 24, 47, 0.82) 44%, rgba(7, 24, 47, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.05), rgba(5, 12, 24, 0.72)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, var(--white), transparent);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: 38px;
  padding: 24px 0 166px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  animation: fadeUp 0.9s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
  color: var(--orange-2);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.7rem, 4.7vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.32);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.84);
  max-width: 690px;
  margin-bottom: 26px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  padding-left: 72px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 21px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 42px rgba(255, 122, 24, 0.28);
  animation: glowPulse 2.4s infinite;
}

.btn-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

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

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(7, 24, 47, 0.24);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  animation: fadeInRight 1s 0.18s ease both;
}

.hero-photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--lux-shadow);
  background: rgba(255, 255, 255, 0.08);
}

.hero-photo-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
}

.hero-photo-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(5, 12, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-photo-main {
  top: 20px;
  right: 0;
  width: min(400px, 100%);
  height: 330px;
  animation: floatSoft 5.8s ease-in-out infinite;
}

.hero-photo-small {
  left: 0;
  bottom: 42px;
  width: min(270px, 70%);
  height: 215px;
  animation: floatSoft 6.2s 0.45s ease-in-out infinite;
}

.route-card {
  position: absolute;
  right: 28px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  color: var(--white);
  background: rgba(255, 122, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(255, 122, 24, 0.28);
  animation: floatSoft 5.4s 0.8s ease-in-out infinite;
}

.route-card span {
  width: 76px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  position: relative;
}

.route-card span::after {
  content: "\f072";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: var(--navy);
  background: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 90px rgba(7, 24, 47, 0.24);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  padding: 27px 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.image-strip {
  padding: 52px 0 104px;
  background:
    linear-gradient(180deg, var(--white), #f8fbff);
}

.strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.strip-head span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.strip-head strong {
  max-width: 650px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.16;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.strip-card,
.service-card,
.gallery-item,
.why-card,
.contact-card,
.team-card,
.process-card,
.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.strip-card:hover,
.service-card:hover,
.why-card:hover,
.contact-card:hover,
.team-card:hover,
.process-card:hover,
.fleet-card:hover {
  transform: translateY(-11px);
  box-shadow: var(--shadow);
}

.tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}

.strip-card {
  height: 240px;
  position: relative;
}

.strip-card:nth-child(2),
.strip-card:nth-child(4) {
  transform: translateY(22px);
}

.strip-card:nth-child(2):hover,
.strip-card:nth-child(4):hover {
  transform: translateY(9px);
}

.strip-card img,
.service-card img,
.gallery-item img,
.why-card img,
.team-card img,
.fleet-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.strip-card:hover img,
.service-card:hover img,
.gallery-item:hover img,
.why-card:hover img,
.team-card:hover img,
.fleet-card:hover img {
  transform: scale(1.11);
  filter: saturate(1.18) contrast(1.05);
}

.strip-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.strip-card:hover span {
  transform: translateY(-6px);
}

.strip-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 13, 0.78), transparent 64%);
}

.premium-lane {
  background:
    linear-gradient(90deg, rgba(7, 24, 47, 0.94), rgba(10, 43, 88, 0.88)),
    url("https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=1800&q=82") center / cover fixed;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.premium-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.lane-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.lane-content h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lane-content p {
  color: rgba(255, 255, 255, 0.78);
}

.lane-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lane-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.lane-points i {
  color: var(--orange-2);
}

.lane-gallery {
  position: relative;
  min-height: 500px;
}

.lane-gallery img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--lux-shadow);
}

.lane-img-a {
  width: 74%;
  height: 330px;
  right: 0;
  top: 0;
}

.lane-img-b {
  width: 44%;
  height: 230px;
  left: 0;
  bottom: 52px;
}

.lane-img-c {
  width: 46%;
  height: 250px;
  right: 10%;
  bottom: 0;
}

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

.split-media {
  position: relative;
}

.split-media img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(1.08) contrast(1.03);
}

.badge-card {
  position: absolute;
  right: -22px;
  bottom: 36px;
  width: min(250px, 70%);
  padding: 22px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 91, 215, 0.08);
}

.badge-card strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.badge-card span {
  color: var(--muted);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #334155;
  font-weight: 600;
}

.check-list i {
  color: var(--orange);
  margin-top: 5px;
}

.dark-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(13, 91, 215, 0.38), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255, 122, 24, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), #07101f 55%, #020610);
  color: var(--white);
}

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

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

.service-card {
  background: var(--white);
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 2;
}

.service-card .card-image {
  height: 275px;
  overflow: hidden;
  position: relative;
}

.service-card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(5, 12, 24, 0.35));
}

.service-card .card-body {
  padding: 30px;
}

.service-card h3,
.why-card h3,
.contact-card h3,
.process-card h3,
.fleet-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--navy);
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.service-card p,
.why-card p,
.contact-card p,
.process-card p,
.fleet-card p {
  color: var(--muted);
}

.icon-pill {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 8px;
  margin-bottom: 17px;
  box-shadow: 0 15px 34px rgba(13, 91, 215, 0.24);
  transform: translateY(0);
  transition: 0.3s ease;
}

.service-card:hover .icon-pill,
.contact-card:hover i,
.service-tile:hover i {
  transform: translateY(-4px) scale(1.05);
}

.service-showcase {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-showcase img {
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.service-showcase h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.service-showcase p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 22px;
}

.gallery-item {
  position: relative;
  margin: 0 0 22px;
  break-inside: avoid;
  height: auto;
}

.gallery-item img {
  min-height: 260px;
  object-fit: cover;
}

.gallery-item.tall img {
  min-height: 390px;
}

.gallery-caption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  color: var(--white);
  transform: translateY(14px);
  opacity: 0;
  transition: 0.25s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-caption strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
}

.testimonials {
  background:
    linear-gradient(180deg, #f5f8fc, #ffffff);
}

.testimonial-shell {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 42px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 91, 215, 0.08);
  text-align: center;
}

.stars {
  color: #ffb000;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial p {
  color: #344255;
  font-size: 1.08rem;
  margin-bottom: 20px;
}

.testimonial strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #b8c4d5;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-dot.active {
  width: 30px;
  background: var(--orange);
}

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

.why-card .why-image,
.fleet-card .fleet-image {
  height: 245px;
  overflow: hidden;
}

.why-card .why-body,
.fleet-card .fleet-body {
  padding: 24px;
}

.contact-band {
  background:
    linear-gradient(180deg, #f5f8fc, #edf3fb);
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(13, 91, 215, 0.08);
}

.contact-card i {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: 18px;
  transition: 0.28s ease;
}

.cta {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.96), rgba(13, 91, 215, 0.82)),
    url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: sweep 6s ease-in-out infinite;
}

.cta-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.cta h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

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

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-family: inherit;
  outline: none;
}

.enquiry-form textarea {
  min-height: 112px;
  resize: vertical;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.enquiry-form select option {
  color: var(--ink);
}

.site-footer {
  color: #39465a;
  background:
    linear-gradient(180deg, #ffffff, #eef5fc);
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.95fr;
  gap: 42px;
  padding: 72px 0 44px;
}

.footer-grid h3 {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 18px;
}

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

.footer-logo img {
  width: min(340px, 100%);
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 24, 47, 0.12));
}

.footer-links {
  display: grid;
  gap: 10px;
}

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

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(7, 24, 47, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #5b6678;
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
}

.process-card {
  padding: 28px;
  border: 1px solid var(--line);
}

.process-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: 0.22s ease;
}

.service-tile:hover {
  border-color: rgba(13, 91, 215, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow);
}

.service-tile i {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-tile h3 {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

.map-frame {
  min-height: 420px;
  border: 0;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.floating-actions {
  position: fixed;
  z-index: 1200;
  inset: auto 0 20px 0;
  pointer-events: none;
}

.float-btn {
  position: fixed;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  pointer-events: auto;
  animation: floatBounce 2.4s infinite;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-call {
  left: 20px;
  background: var(--blue);
}

.float-whatsapp {
  right: 20px;
  background: #20b957;
  animation-delay: 0.3s;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal:nth-child(4) {
  transition-delay: 0.22s;
}

.reveal:nth-child(5) {
  transition-delay: 0.29s;
}

.reveal-left {
  transform: translateX(-38px);
}

.reveal-right {
  transform: translateX(38px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

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

@keyframes shine {
  0%, 42% {
    transform: translateX(0) rotate(22deg);
  }
  58%, 100% {
    transform: translateX(330%) rotate(22deg);
  }
}

@keyframes sweep {
  0%, 42% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(255, 122, 24, 0.28);
  }
  50% {
    box-shadow: 0 18px 54px rgba(255, 122, 24, 0.52);
  }
}

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

@media (max-width: 1040px) {
  .nav-cta {
    display: none;
  }

  .strip-grid,
  .services-grid,
  .why-grid,
  .contact-grid,
  .process-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-layout,
  .lane-grid,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-bottom: 250px;
  }

  .hero-visual {
    min-height: 430px;
    max-width: 620px;
  }

  .lane-gallery {
    min-height: 430px;
  }

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

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    bottom: 16px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hamburger {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    display: grid;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 24, 47, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .brand-logo {
    width: clamp(190px, 58vw, 260px);
    max-height: 76px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    display: block;
    padding: 70px 0 280px;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    padding-left: 0;
  }

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

  .stat {
    padding: 18px 14px;
  }

  .split,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .strip-head {
    display: grid;
  }

  .strip-card:nth-child(2),
  .strip-card:nth-child(4) {
    transform: none;
  }

  .premium-lane {
    background-attachment: scroll;
  }

  .lane-gallery {
    min-height: 360px;
  }

  .lane-img-a {
    width: 82%;
    height: 240px;
  }

  .lane-img-b {
    width: 52%;
    height: 180px;
  }

  .lane-img-c {
    width: 52%;
    height: 190px;
    right: 2%;
  }

  .service-showcase img {
    height: 240px;
  }

  .badge-card {
    right: 12px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

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

  .floating-actions .float-btn {
    opacity: 0;
    pointer-events: none;
  }

  .floating-actions.is-visible .float-btn {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 78px 0;
  }

  .strip-grid,
  .services-grid,
  .why-grid,
  .contact-grid,
  .process-grid,
  .fleet-grid,
  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .strip-card {
    height: 250px;
  }

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

  .hero-stats {
    width: calc(100% - 28px);
  }

  .testimonial {
    padding: 30px 20px;
  }

  .lane-gallery {
    min-height: 560px;
  }

  .lane-gallery img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 210px;
    margin-bottom: 14px;
  }

  .service-showcase {
    padding: 12px;
  }

  .service-card .card-image,
  .why-card .why-image,
  .fleet-card .fleet-image {
    height: 230px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }
}
