/* ============================================================
   TRISHIKA CAR RENTAL — style.css  (Professional Overhaul)
   Design: Editorial dark-hero, clean light body, warm orange accent
   Fonts: Poppins (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --black: #0D1117;
  --black-soft: #1A2130;
  --orange: #E05500;
  --orange-lite: rgba(224, 85, 0, .10);
  --orange-mid: rgba(224, 85, 0, .22);
  --orange-glow: rgba(224, 85, 0, .40);
  --white: #FFFFFF;
  --grey: #6B7280;
  --grey-lt: #9CA3AF;
  --surface: #F8F9FC;
  --surface-alt: #EFF2F7;
  --surface-card: #FFFFFF;
  --border: rgba(0, 0, 0, .07);
  --border-hot: rgba(224, 85, 0, .25);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-xs: 0 1px 4px rgba(0, 0, 0, .05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, .09), 0 4px 10px rgba(0, 0, 0, .05);
  --shadow-xl: 0 28px 60px rgba(0, 0, 0, .12), 0 8px 20px rgba(0, 0, 0, .07);
  --shadow-orange: 0 8px 28px rgba(224, 85, 0, .28);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--surface);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, transform .5s ease;
}

.preloader-done {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-brand {
  display: inline-flex;
  gap: 2px;
}

.pl-letter {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: plLetterIn .5s ease forwards;
}

/* Stagger each letter */
.pl-letter:nth-child(1) {
  animation-delay: .1s;
}

.pl-letter:nth-child(2) {
  animation-delay: .17s;
}

.pl-letter:nth-child(3) {
  animation-delay: .24s;
}

.pl-letter:nth-child(4) {
  animation-delay: .31s;
}

.pl-letter:nth-child(5) {
  animation-delay: .38s;
  color: var(--orange);
}

.pl-letter:nth-child(6) {
  animation-delay: .45s;
  color: var(--orange);
}

.pl-letter:nth-child(7) {
  animation-delay: .52s;
  color: var(--orange);
}

.pl-letter:nth-child(8) {
  animation-delay: .59s;
  color: var(--orange);
}

@keyframes plLetterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #ff8c42);
  margin: 1rem auto 0;
  border-radius: 2px;
  animation: plLineGrow .8s ease forwards;
  animation-delay: .7s;
}

@keyframes plLineGrow {
  to {
    width: min(260px, 60vw);
  }
}

.preloader-sub {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: .9rem;
  opacity: 0;
  animation: plSubIn .4s ease forwards;
  animation-delay: 1.2s;
}

@keyframes plSubIn {
  to {
    opacity: 1;
  }
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--surface-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

/* ===== CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .2s var(--ease-spring), height .2s var(--ease-spring);
  opacity: .6;
}

/* ===== LAYOUT ===== */
.container {
  width: min(1240px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-pad {
  padding-block: clamp(4rem, 9vw, 7rem);
}

/* ===== TYPOGRAPHY ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .32rem 1rem;
  background: var(--orange-lite);
  border-radius: 99px;
}

.display-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--black);
}

.body-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--black);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .12);
  opacity: 0;
  transition: opacity .2s;
}

.btn:hover::after {
  opacity: 1;
}

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

.btn:active {
  transform: translateY(0);
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224, 85, 0, .30);
}

.btn-primary:hover {
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, .20);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange-mid);
}

.btn-ghost:hover {
  background: var(--orange-lite);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(13, 17, 26, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07), 0 4px 30px rgba(0, 0, 0, .4);
}

.header-inner {
  display: flex;
  align-items: stretch;
  height: 76px;
}

.header-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
  text-decoration: none;
  border-right: 1px solid var(--border);
  margin-right: auto;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
  transition: color .2s;
}

.logo-name span {
  color: var(--orange);
}

.logo-sub {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
  transition: color .2s;
}

/* Keep always white — header stays dark (transparent over dark hero, dark blur on scroll) */
.header-logo {
  border-right-color: rgba(255, 255, 255, .12);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.1rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s var(--ease-out-expo);
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.site-header.scrolled .nav-links a {
  color: var(--grey);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--black);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, .12);
  transition: border-color .3s;
}

.header-phone {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em;
}

.header-phone:hover {
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all .3s;
  border-radius: 2px;
}

.site-header.scrolled .hamburger span {
  background: var(--black);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 2px solid var(--orange);
  padding: 1.5rem;
  gap: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--grey);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--orange);
  padding-left: .6rem;
}

@media (max-width: 960px) {

  .nav-links,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-right: -8px;
  }

  .header-logo {
    border-right: none;
    padding: 0;
    min-width: auto;
  }

  .logo-name {
    font-size: 1.1rem;
  }
}

/* ===== HERO ===== */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/hero-bg.png') center center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(8, 10, 16, .93) 0%,
      rgba(13, 17, 26, .80) 50%,
      rgba(13, 17, 26, .72) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.hero-glow {
  display: none;
}

/* Mobile hero video background — hidden on desktop */
.hero-mobile-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-road {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.8rem;
}

.eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 2rem;
}

/* Each word on its own line on desktop */
.hero-h1 span {
  display: block;
}

/* On mobile: let them flow inline so no awkward single-word lines */
@media (max-width: 820px) {
  .hero-h1 span {
    display: inline;
  }

  .hero-h1 span::after {
    content: ' ';
  }
}

.hero-h1 .outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, .55);
  color: transparent;
}

.hero-h1 .hot {
  color: var(--orange);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.hero-desc strong {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Mini stats strip */
.hero-mini-stats {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.hero-mini-stat {
  flex: 1;
  padding: .9rem .5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-mini-stat:last-child {
  border-right: none;
}

.hero-mini-stat strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-mini-stat span {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

#hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
}

#hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .12);
}

/* Hero right — Booking card */
.hero-right {
  display: flex;
  flex-direction: column;
  align-self: center;
}

/* Glassmorphic booking card */
.hero-book-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4), 0 4px 20px rgba(0, 0, 0, .25);
}

.hero-book-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* Hero form 2-column grid */
.hf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: 1rem;
}

.hf {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.hf label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.hf input,
.hf select {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-family: var(--font-body);
  font-size: .83rem;
  padding: .65rem .85rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
}

.hf input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.hf input:focus,
.hf select:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 3px rgba(224, 85, 0, .2);
}

.hf select option {
  background: #1a2030;
  color: #fff;
}

/* Date input colour fix */
.hf input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.5);
}

.hf-submit {
  width: 100%;
  justify-content: center;
  padding: .9rem;
  font-size: .8rem;
  letter-spacing: .07em;
  margin-top: .25rem;
}

.hero-stat {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: -1px;
  transition: background .25s, box-shadow .25s;
}

.hero-stat:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.hero-stat:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.hero-stat:hover {
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 70px;
}

.hero-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.45;
}

.hero-stat-label span {
  display: block;
  color: rgba(255, 255, 255, .45);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: .68rem;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .7;
    transform: scaleY(1) translateY(0);
  }

  50% {
    opacity: .2;
    transform: scaleY(.5) translateY(6px);
  }
}

.scroll-label {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  writing-mode: vertical-rl;
}

@media (max-width: 820px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1rem;
  }

  /* Show booking card on mobile, stacked */
  .hero-right {
    display: flex;
  }

  .hero-book-card {
    padding: 1.25rem;
  }

  .hf-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .hero-mini-stats {
    display: none;
  }

  /* hidden on mobile to save space */

  .hero-h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
    margin-bottom: 1.2rem;
  }

  .hero-desc {
    margin-bottom: 1.4rem;
    font-size: .95rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  /* Hide static bg, show video on mobile */
  .hero-bg {
    background: none;
  }

  .hero-mobile-video {
    display: block;
  }
}

/* ===== TICKER ===== */
.ticker-strip {
  background: var(--orange);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  gap: 0;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: inline-block;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== BOOKING SECTION ===== */
#booking {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: 'BOOK';
  position: absolute;
  top: -2rem;
  right: -3rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 85, 0, .04);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-desc {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
  max-width: 380px;
}

.booking-desc strong {
  color: var(--black);
}

.contact-strip {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: var(--black);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.contact-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 3px 0 0 3px;
}

.contact-row:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hot);
  transform: translateX(4px);
}

.contact-row-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  border-radius: 10px;
}

.contact-row-label {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-lt);
  font-weight: 600;
}

.contact-row-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-top: 2px;
}

/* Form */
.form-wrap {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.form-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.fg label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
}

.fg input,
.fg select {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .88rem;
  padding: .82rem 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  border-radius: var(--radius-sm);
  appearance: none;
}

.fg input:focus,
.fg select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 85, 0, .12);
}

.fg input::placeholder {
  color: #B0B8C8;
}

.fg select option {
  background: #fff;
}

.form-submit {
  margin-top: 1.4rem;
  width: 100%;
  justify-content: center;
  padding: 1.05rem;
  font-size: .85rem;
  letter-spacing: .08em;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: .9rem 1.2rem;
  background: rgba(16, 185, 129, .07);
  border: 1px solid rgba(16, 185, 129, .25);
  color: #059669;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
}

@media (max-width: 860px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ===== PRICING ===== */
#pricing {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface);
  position: relative;
}

.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.fleet-note {
  font-size: .76rem;
  color: var(--grey);
  max-width: 280px;
  line-height: 1.65;
  text-align: right;
}

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

.fleet-card {
  background: var(--surface-card);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s ease, transform .3s var(--ease-spring), border-color .2s;
}

.fleet-card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff8c42);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--border-hot);
}

.fleet-card:hover::before {
  transform: scaleX(1);
}

.fleet-img {
  width: calc(100% + 3.5rem);
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -1.75rem -1.75rem 1.5rem -1.75rem;
  background: var(--surface-alt);
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s var(--ease-out-expo);
}

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

.fleet-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
  margin-bottom: .2rem;
}

.fleet-meta {
  font-size: .7rem;
  color: var(--grey-lt);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.fleet-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}

.fleet-price-row:last-of-type {
  border-bottom: none;
}

.fpr-label {
  color: var(--grey);
}

.fpr-val {
  color: var(--black);
  font-weight: 600;
}

.fpr-val.hot {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.fleet-min {
  font-size: .65rem;
  color: var(--grey-lt);
  letter-spacing: .06em;
  margin-top: .8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.fleet-cta-card {
  background: linear-gradient(145deg, var(--orange) 0%, #c94700 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-orange);
  border: none;
}

.fleet-cta-card .body-heading {
  color: #fff;
  font-size: 1.7rem;
}

.fleet-cta-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  line-height: 1.65;
}

.fleet-cta-card .btn-outline {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.fleet-cta-card .btn-outline:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
}

@media (max-width: 960px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ESTIMATOR ===== */
#estimator {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.est-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.est-panel {
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.est-panel-title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.est-panel-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ctl {
  margin-bottom: 1.4rem;
}

.ctl label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .6rem;
}

.seg {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.seg button {
  flex: 1;
  border: none;
  background: var(--surface);
  color: var(--grey);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .72rem 1rem;
  cursor: none;
  transition: all .2s;
}

.seg button[aria-pressed="true"] {
  background: var(--orange);
  color: #fff;
}

.est-select,
.est-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .88rem;
  padding: .78rem 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  border-radius: var(--radius-sm);
}

.est-select:focus,
.est-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 85, 0, .12);
}

.est-select option {
  background: #fff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .6rem;
}

.chip {
  border: 1px solid var(--border);
  background: var(--surface-card);
  color: var(--grey);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .32rem .8rem;
  cursor: none;
  transition: all .2s;
  border-radius: 99px;
}

.chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-lite);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.s-lbl {
  color: var(--grey);
}

.s-val {
  color: var(--black);
  font-weight: 600;
}

.summary-total {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 2px solid var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}

.total-amt {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.est-note {
  font-size: .7rem;
  color: var(--grey-lt);
  margin-top: .8rem;
  line-height: 1.6;
}

.est-actions {
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.est-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 130px;
}

@media (max-width: 760px) {
  .est-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES ===== */
#services {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.svc-card {
  background: var(--surface-card);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s ease, transform .3s var(--ease-spring), border-color .2s;
}

.svc-card::after {
  content: attr(data-num);
  position: absolute;
  top: .8rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 85, 0, .06);
  line-height: 1;
  pointer-events: none;
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-hot);
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}

.svc-card:hover .svc-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.svc-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
  margin-bottom: .55rem;
}

.svc-desc {
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.72;
}

.svc-number {
  display: none;
}

@media (max-width: 840px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ROUTES ===== */
#routes {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2.5rem 0;
}

.filter-btn {
  background: var(--surface-card);
  border: 1px solid var(--border);
  color: var(--grey);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  cursor: none;
  transition: all .2s;
  border-radius: 99px;
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(224, 85, 0, .25);
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.route-row {
  background: var(--surface-card);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s ease, transform .25s var(--ease-spring), border-color .2s;
}

.route-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--border-hot);
}

.route-row.hidden-route {
  display: none;
}

.route-num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  color: var(--orange);
  padding: 1.4rem 1.4rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  min-width: 58px;
  justify-content: center;
  background: var(--orange-lite);
}

.route-body {
  padding: 1.3rem 1.75rem;
}

.route-from {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .25rem;
}

.route-dest {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
  margin-bottom: .3rem;
}

.route-desc {
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.55;
}

.route-meta-col {
  padding: 1.3rem 1.7rem;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .55rem;
  min-width: 190px;
}

.r-chip {
  font-size: .68rem;
  color: var(--grey);
  background: var(--surface);
  padding: .3rem .7rem;
  display: inline-block;
  white-space: nowrap;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.route-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  margin-top: .25rem;
  transition: gap .2s;
}

.route-link:hover {
  gap: .6rem;
}

@media (max-width: 640px) {
  .route-row {
    grid-template-columns: 1fr;
  }

  .route-num {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-width: auto;
    justify-content: flex-start;
  }

  .route-meta-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

/* ===== WHY US ===== */
#why {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: 'WHY';
  position: absolute;
  bottom: -3rem;
  left: -2rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 85, 0, .03);
  pointer-events: none;
  line-height: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--surface-card);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s ease, transform .3s var(--ease-spring), border-color .2s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease-out-expo);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-hot);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-num {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.why-num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
  display: block;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
  margin-bottom: .55rem;
}

.why-desc {
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.72;
}

@media (max-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
#faq {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.faq-left {
  padding-top: 3rem;
}

.faq-left .display-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.faq-contact-note {
  margin-top: 2rem;
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.75;
}

.faq-contact-note a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

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

.faq-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, border-color .2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-hot);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-align: left;
  padding: 1.35rem 1.6rem;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s, background .2s;
}

.faq-q:hover {
  color: var(--orange);
  background: var(--orange-lite);
}

.faq-q .faq-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease-spring);
  color: var(--orange);
  border-radius: 50%;
}

.faq-item.open .faq-q .faq-arrow {
  transform: rotate(180deg);
  border-color: var(--orange);
  background: var(--orange-lite);
}

.faq-item.open .faq-q {
  color: var(--orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--grey);
  font-size: .86rem;
  line-height: 1.78;
  padding: 0 1.6rem;
  border-top: 0px solid var(--border);
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 1.2rem 1.6rem 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 760px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-left {
    padding-top: 0;
    margin-bottom: 3rem;
  }

  .faq-list {
    margin-top: 0;
  }
}

/* ===== MAP ===== */
#map {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.map-address {
  font-style: normal;
  margin-top: 1.5rem;
  font-size: .87rem;
  color: var(--grey);
  line-height: 2;
  border-left: 3px solid var(--orange);
  padding-left: 1.2rem;
}

.map-address a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.map-address a:hover {
  text-decoration: underline;
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

@media (max-width: 760px) {
  .map-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-top {
  padding-block: 4.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: .3rem;
}

.footer-logo-name span {
  color: var(--orange);
}

.footer-tagline {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 1.5rem;
}

.footer-address-block {
  font-style: normal;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  line-height: 2;
  margin-top: 1rem;
}

.footer-address-block a {
  color: var(--orange);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.75rem;
}

.social-ico {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: all .2s var(--ease-spring);
  border-radius: 10px;
}

.social-ico:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s, padding-left .2s;
  display: block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: .4rem;
}

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .06em;
  flex-wrap: wrap;
  gap: .5rem;
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== FLOATING CALL ===== */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  background: var(--orange);
  color: #fff;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
  box-shadow: 0 4px 18px rgba(224, 85, 0, .38);
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(224, 85, 0, .5);
}

.float-call-pulse {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 399;
  width: 58px;
  height: 58px;
  background: var(--orange);
  border-radius: 50%;
  animation: callPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 600px) {

  .float-call,
  .float-call-pulse {
    width: 50px;
    height: 50px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ===== GSAP REVEAL ===== */
/* Elements start visible. GSAP uses gsap.from() which temporarily
   sets origin state, so no CSS pre-hiding is needed. */
.reveal {
  transition: opacity .55s ease, transform .55s var(--ease-out-expo);
}

.reveal.js-hide {
  opacity: 0;
  transform: translateY(28px);
}

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

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

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

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

.reveal-delay-4 {
  transition-delay: .4s;
}


/* ===== UTILS ===== */
.hidden {
  display: none !important;
}

/* ===== FLEET GALLERY SECTION ===== */
.fleet-gallery-section {
  background: var(--surface-alt);
}

.fgs-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.fgs-sub {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.75;
  margin-top: .8rem;
  max-width: 380px;
}

.fgs-perks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.5rem;
}

.fgs-perk {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .84rem;
  color: var(--grey);
  font-weight: 500;
}

.fgs-perk-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Scrollable card strip */
.fgs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fgs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
  cursor: default;
}

.fgs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fgs-img {
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  overflow: hidden;
}

.fgs-img img {
  max-height: 110px;
  max-width: 90%;
  object-fit: contain;
  transition: transform .4s ease;
}

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

.fgs-info {
  padding: 1rem 1.1rem 1.2rem;
}

.fgs-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .25rem;
}

.fgs-meta {
  font-size: .7rem;
  color: var(--grey);
  line-height: 1.4;
  margin-bottom: .6rem;
}

.fgs-price {
  font-size: .78rem;
  color: var(--grey);
}

.fgs-price strong {
  color: var(--orange);
  font-size: .9rem;
  font-weight: 700;
}

/* Mobile: stack, show all 5 cards in 2 cols */
@media (max-width: 900px) {
  .fgs-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .fgs-sub {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .fgs-cards {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }

  .fgs-img {
    height: 100px;
  }
}

/* ================================================
   FLEET VERTICAL CAROUSEL
   ================================================ */

/* Section */
.fc-section {
  background: var(--black);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.fc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fc-head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

/* Tag pill on dark bg */
.fc-section .tag {
  background: rgba(224, 85, 0, .18);
  color: var(--orange);
  border: 1px solid rgba(224, 85, 0, .3);
}

/* Two vertical lanes side by side */
.fc-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 560px;
  width: 100%;
  max-width: 700px;
  position: relative;
}

/* Lane wrapper — clips + top/bottom fade mask */
.fc-lane-wrap {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Pause on hover */
.fc-lane-wrap:hover .fc-lane {
  animation-play-state: paused;
}

/* The moving column */
.fc-lane {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  will-change: transform;
}

.fc-up {
  animation: fc-scroll-up 24s linear infinite;
}

.fc-down {
  animation: fc-scroll-down 28s linear infinite;
}

/* Individual image card — image only, no text */
.fc-vcard {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  transition: transform .3s ease, box-shadow .3s ease;
}

.fc-vcard:hover {
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(224, 85, 0, .25);
}

.fc-vcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}

.fc-vcard:hover img {
  transform: scale(1.08);
}

/* Ghost white button variant for dark bg */
.btn-ghost-white {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn-ghost-white:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .06);
}

/* Keyframes */
@keyframes fc-scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes fc-scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Mobile: shorter height */
@media (max-width: 820px) {
  .fc-lanes {
    height: 450px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .fc-lanes {
    height: 360px;
    gap: .5rem;
  }

  .fc-vcard {
    border-radius: 7px;
  }
}