/* ================================================================
   MM CABS – Main Stylesheet
   Colors: Navy Blue #1e3a8a | Orange #f97316 | Dark #0f172a
   ================================================================ */

/* ──────────── CSS VARIABLES ──────────── */
:root {
  --blue:        #1e3a8a;
  --blue-dark:   #152d72;
  --blue-mid:    #2451a8;
  --blue-light:  #3b72d4;
  --orange:      #f97316;
  --orange-dark: #dc6309;
  --orange-light:#fb923c;
  --dark:        #0f172a;
  --dark-2:      #1e293b;
  --dark-3:      #334155;
  --light:       #f8fafc;
  --light-2:     #e2e8f0;
  --white:       #ffffff;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --font-heading:'Poppins', sans-serif;
  --font-body:   'Poppins', sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.18);
  --shadow-blue: 0 8px 32px rgba(30,58,138,0.25);
  --shadow-orange:0 8px 32px rgba(249,115,22,0.30);
  --radius:      12px;
  --radius-lg:   20px;
}

/* ──────────── RESET & BASE ──────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* REQUIRED on iOS Safari — body alone is not enough */
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: var(--orange); color: #fff; }

/* ──────────── SCROLLBAR (desktop only) ──────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

/* ──────────── CUSTOM SCROLL PROGRESS BAR (mobile only) ──────────── */
/* On desktop the browser's own styled scrollbar is enough.
   On mobile browsers the native scrollbar auto-hides, so we show our own. */
#scrollProgressTrack {
  display: none;               /* hidden on desktop by default */
  position: fixed;
  top: 0;
  right: 0;
  width: 4px;
  height: 100vh;
  background: transparent;
  z-index: 99997;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#scrollProgressTrack.visible {
  opacity: 1;
  visibility: visible;
}
#scrollProgressThumb {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--orange));
  border-radius: 2px;
  transition: height 0.1s linear;
}
/* Show progress bar only on mobile */
@media (max-width: 991.98px) {
  #scrollProgressTrack { display: block; }
}

/* ────────────────────────────────────────────
   CUSTOM CURSOR
──────────────────────────────────────────── */
.cursor-dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, background 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.25s, height 0.25s, opacity 0.25s, border-color 0.25s;
  opacity: 0.6;
}
.cursor-ring.hovered {
  width: 60px; height: 60px;
  opacity: 0.4;
  border-color: var(--blue);
  background: rgba(30,58,138,0.08);
}
.cursor-dot.hovered {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.5);
}

/* ────────────────────────────────────────────
   PRELOADER
──────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 100000;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-box { text-align: center; }
.preloader-logo-img {
  width: 180px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(249,115,22,0.5));
}
.preloader-text {
  color: var(--light-2);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 24px;
  animation: preloaderFade 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 12px auto 0;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 2px;
  animation: preloaderBar 2.2s ease forwards;
}
@keyframes preloaderBar { from{width:0} to{width:100%} }
@keyframes preloaderPulse {
  0%,100%{ transform: scale(1); filter: drop-shadow(0 0 20px rgba(249,115,22,0.5)); }
  50%    { transform: scale(1.04); filter: drop-shadow(0 0 40px rgba(249,115,22,0.8)); }
}
@keyframes preloaderFade {
  0%,100%{ opacity:1; } 50%{ opacity:0.4; }
}

/* ────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
#mainNav {
  /*position: fixed;*/
  /*top: 0;*/
  width: 100%;
  padding: 10px 0;
  z-index: 1050;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(15,23,42,0.97);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249,115,22,0.2);
}
.navbar-brand img { height: 54px; transition: height var(--transition); }
#mainNav.scrolled .navbar-brand img { height: 44px; }

.nav-link {
  color: #000 !important;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 16px;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 32px); }

.nav-btn-book {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 26px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}
.nav-btn-book::after { display: none !important; }
.nav-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,115,22,0.5);
  background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
  color: #fff !important;
}
.navbar-toggler {
  border: 1.5px solid var(--orange) !important;
  padding: 5px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f97316' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ────────────────────────────────────────────
   NAVBAR DROPDOWN
──────────────────────────────────────────── */

/* Kill Bootstrap's built-in caret — we use our own icon */
.nav-link.dropdown-toggle::after { display: none !important; }

/* Chevron icon */
.nav-dd-chevron {
  font-size: 0.68rem;
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── DESKTOP: hover-open dropdown ── */
@media (min-width: 992px) {

  /* Keep the menu in DOM but hidden; animate in on hover */
  .navbar .nav-item.dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    /* NO pointer-events override — visibility:hidden already blocks clicks when hidden.
       Keeping pointer-events auto means the menu itself receives hover events, so
       moving the mouse from trigger → menu re-establishes :hover on the parent <li>
       and the dropdown stays open. */

    /* Styling */
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--orange);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    padding: 6px 0;
    min-width: 250px;
    margin-top: 0;
  }

  /* Open on hover */
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Rotate chevron on hover */
  .navbar .nav-item.dropdown:hover > .nav-link .nav-dd-chevron,
  .navbar .nav-item.dropdown > .nav-link[aria-expanded="true"] .nav-dd-chevron {
    transform: rotate(180deg);
  }

  /* Dropdown items */
  .navbar .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 20px 10px 24px;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.22s, background 0.22s, padding-left 0.22s;
    background: transparent;
  }
  .navbar .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 60%;
    background: var(--orange);
    transition: width 0.22s;
    border-radius: 0 2px 2px 0;
  }
  .navbar .dropdown-menu .dropdown-item:hover,
  .navbar .dropdown-menu .dropdown-item:focus {
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    padding-left: 32px;
  }
  .navbar .dropdown-menu .dropdown-item:hover::before,
  .navbar .dropdown-menu .dropdown-item:focus::before {
    width: 3px;
  }
  /* Subtle separator between items */
  .navbar .dropdown-menu .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }
}

/* ── MOBILE: dropdown accordion inside the side drawer ── */
@media (max-width: 991.98px) {

  /* Hidden by default — no Bootstrap, no Popper, just display:none/block */
  #navbarNav .nav-item.dropdown > .dropdown-menu {
    display: none;
    position: static;
    float: none;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 2px solid var(--orange);
    margin: 0 0 4px 24px;
    padding: 4px 0;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    width: auto;
  }

  /* Our JS adds .mm-open on the parent <li> to reveal the menu */
  #navbarNav .nav-item.dropdown.mm-open > .dropdown-menu {
    display: block;
  }

  /* Sub-items */
  #navbarNav .nav-item.dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    letter-spacing: 0.3px;
    transition: color 0.2s, padding-left 0.2s, background 0.2s;
    background: transparent;
  }
  #navbarNav .nav-item.dropdown .dropdown-item:hover,
  #navbarNav .nav-item.dropdown .dropdown-item:focus {
    color: var(--orange);
    background: rgba(249, 115, 22, 0.06);
    padding-left: 24px;
  }

  /* Chevron rotates when .mm-open is active */
  #navbarNav .nav-item.dropdown.mm-open > .nav-link .nav-dd-chevron {
    transform: rotate(180deg);
  }

  /* Trigger row: flex so chevron pins to the right edge */
  #navbarNav .nav-item.dropdown > .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  #navbarNav .nav-item.dropdown > .nav-link .nav-dd-chevron {
    margin-left: auto;
    margin-right: 4px;
    font-size: 0.75rem;
    opacity: 0.7;
  }
}

/* ────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────── */
.btn-primary-mm {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  border: none;
  padding: 14px 38px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
  cursor: none;
}
.btn-primary-mm::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary-mm:hover::before { left: 100%; }
.btn-primary-mm:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30,58,138,0.4);
  color: #fff;
}

.btn-orange-mm {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #fff;
  border: none;
  padding: 14px 38px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-orange);
  cursor: none;
}
.btn-orange-mm::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-orange-mm:hover::before { left: 100%; }
.btn-orange-mm:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249,115,22,0.45);
  color: #fff;
}

.btn-outline-mm {
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 12px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: all var(--transition);
  background: transparent;
  cursor: none;
}
.btn-outline-mm:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 12px 36px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: all var(--transition);
  background: transparent;
  cursor: none;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ────────────────────────────────────────────
   SECTION HEADINGS
──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 26px; height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-title.light { color: #fff; }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-desc.light { color: rgba(255,255,255,0.7); }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ────────────────────────────────────────────
   PAGE HERO BANNER (Inner pages)
──────────────────────────────────────────── */
.page-hero {
  min-height: 380px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 60%, var(--dark-2) 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 90px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-3d-bg {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translateY(-50%) scale(0.9); opacity: 0.5; }
  to   { transform: translateY(-50%) scale(1.1); opacity: 1; }
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--orange); }
.breadcrumb {
  background: none;
  padding: 0; margin: 0;
}
.breadcrumb-item { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb-item a { color: var(--orange); }
.breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }
.page-hero-icon {
  position: absolute; right: 15%; top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(255,255,255,0.04);
  font-weight: 900;
  white-space: nowrap;
  animation: fadeSlideRight 1s ease 0.3s both;
}

/* ────────────────────────────────────────────
   HOME HERO
──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,58,138,0.75) 50%, rgba(15,23,42,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.3s both;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 3.7rem);
  font-weight: 700;
  color: #fff;
  /*line-height: 1.08;*/
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  animation: slideWidth 1s ease 1s both;
  transform-origin: left;
}
@keyframes slideWidth { from{width:0} to{width:100%} }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.7s both;
}
.hero-cta { animation: fadeInUp 0.8s ease 0.9s both; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease 1.1s both;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--orange); line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Floating hero image */
.hero-image-wrap {
  position: relative; z-index: 2;
  animation: fadeInRight 0.9s ease 0.6s both;
}
.hero-car-float {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 24px 48px rgba(249,115,22,0.3));
  animation: floatCar 4s ease-in-out infinite alternate;
}
@keyframes floatCar {
  from { transform: translateY(0) rotateY(0deg); }
  to   { transform: translateY(-16px) rotateY(2deg); }
}
.hero-glow-ring {
  position: absolute; inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100%{ opacity:0.6; transform: scale(0.95); }
  50%    { opacity:1;   transform: scale(1.05); }
}
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  animation: fadeInUp 0.8s ease 1.5s both;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  position: relative;
  display: flex; justify-content: center;
}
.scroll-mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%  { transform: translateY(0); opacity:1; }
  100%{ transform: translateY(12px); opacity:0; }
}
.scroll-text {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ────────────────────────────────────────────
   STATS SECTION
──────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  background: url('../img/bg-img.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  /*background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");*/
  background: rgb(0 0 0 / 60%);
}
.stat-card {
  text-align: center;
  position: relative;
  padding: 20px;
}
.stat-card::after {
  content: '';
  position: absolute; right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-card:last-child::after { display: none; }
.stat-icon {
  font-size: 2.2rem;
  color: var(--orange-light);
  margin-bottom: 10px;
  display: block;
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-num span { color: var(--orange-light); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ────────────────────────────────────────────
   ABOUT TEASER (Home)
──────────────────────────────────────────── */
#about-teaser {
  padding: 100px 0;
  background: var(--white);
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition);
}
.about-img-wrap:hover .about-img-main { transform: scale(1.02); }
.about-img-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--orange);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-orange);
  text-align: center;
}
.about-img-badge .badge-num {
  font-size: 2.5rem; font-weight: 800;
  line-height: 1; display: block;
}
.about-img-badge .badge-text {
  font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; display: block;
  margin-top: 2px; opacity: 0.9;
}
.about-img-accent {
  position: absolute; top: -16px; right: -16px;
  width: 120px; height: 120px;
  border-radius: var(--radius);
  background: var(--blue);
  z-index: -1;
}
.about-check-list { list-style: none; margin: 24px 0; }
.about-check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-check-list li i {
  color: var(--orange);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   FLEET CARDS (3D Tilt)
──────────────────────────────────────────── */
#fleet {
  padding: 100px 0;
  background: var(--light);
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.fleet-card:hover {
  box-shadow: 0 24px 60px rgba(30,58,138,0.18);
  transform: translateY(-8px);
}
.fleet-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.fleet-card:hover .fleet-card-img { transform: scale(1.06); }
.fleet-card-img-wrap { overflow: hidden; position: relative; }
.fleet-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.fleet-card-body { padding: 24px; }
.fleet-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.fleet-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.fleet-card-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.fleet-feature-tag {
  display: flex; align-items: center; gap: 5px;
  background: var(--light);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
}
.fleet-feature-tag i { color: var(--blue); }
.fleet-card-footer {
  border-top: 1px solid var(--light-2);
  padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.fleet-card-price {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.fleet-card-price strong {
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 800;
}

/* 3D Scene for fleet hero */
.fleet-3d-scene {
  perspective: 1000px;
  display: flex; justify-content: center;
}
.fleet-3d-card {
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.fleet-3d-card:hover {
  transform: rotateY(8deg) rotateX(4deg);
}

/* ────────────────────────────────────────────
   SERVICES SECTION
──────────────────────────────────────────── */
#services-home {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#services-home::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
#services-home::after {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.service-card-3d {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-card-3d::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card-3d:hover {
  border-color: var(--orange);
  transform: translateY(-8px) rotateX(3deg);
  box-shadow: 0 20px 50px rgba(249,115,22,0.2);
}
.service-card-3d:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.4s;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-blue);
}
.service-card-3d:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: var(--shadow-orange);
  transform: scale(1.1) rotateY(15deg);
}
.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.service-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  position: relative; z-index: 1;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.3s;
  position: relative; z-index: 1;
}
.service-card-link:hover { gap: 12px; color: var(--orange-light); }

/* ────────────────────────────────────────────
   TOUR PACKAGES
──────────────────────────────────────────── */
#tour-packages {
  padding: 100px 0;
  background: var(--dark);
}
.tour-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tour-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 24px 56px rgba(249,115,22,0.22);
}

.tour-card-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.tour-card-img {
  position: relative;
  /*height: 170px;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*font-size: 3.6rem;*/
  /*color: rgba(255,255,255,0.85);*/
  /*overflow: hidden;*/
  /*flex-shrink: 0;*/ 
}
/*.tour-card-img::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0,0,0,0.18);*/
/*}*/
/*.tour-card-img i {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));*/
/*  transition: transform 0.4s ease;*/
/*}*/
/*.tour-card:hover .tour-card-img i {*/
/*  transform: scale(1.15) rotateY(15deg);*/
/*}*/
.tour-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tour-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.tour-card-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: gap 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.3px;
}
.btn-tour:hover {
  color: #fff;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}

/* ────────────────────────────────────────────
   WHY CHOOSE US
──────────────────────────────────────────── */
#why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  transition: all 0.4s;
  border: 1px solid transparent;
}
.why-feature:hover {
  background: var(--light);
  border-color: var(--light-2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
  transition: all 0.4s;
}
.why-feature:hover .why-icon {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: var(--shadow-orange);
  transform: rotate(-5deg) scale(1.08);
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.why-card {
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  padding: 24px 20px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 32px rgba(249,115,22,0.12);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }
.why-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: var(--shadow-blue);
  transition: all 0.35s ease;
}
.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: var(--shadow-orange);
  transform: rotate(-5deg) scale(1.1);
}
.why-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-big-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.why-big-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  transition: transform 0.6s;
}
.why-big-image:hover img { transform: scale(1.04); }
.why-big-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 60%);
}
.why-big-info {
text-align: center;
}
.why-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.why-stars { color: var(--orange); font-size: 1rem; }
.why-rating-num {
  font-size: 1.6rem; font-weight: 800;
  color: #fff;
}
.why-rating-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* ────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  transition: all 0.4s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.testi-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 20px; right: 24px;
}
.testi-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}
.testi-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.92rem;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────── */
#cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  filter: blur(40px);
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(30px);
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-title span { color: var(--orange); }
.cta-phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.cta-phone:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--shadow-orange);
}
.cta-phone i { font-size: 1.6rem; }


a.floating-btn {
  position: fixed;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  text-decoration: none;
  animation: whatsappBounce 3s ease-in-out infinite;
}

.phone-float {
  bottom: 115px;
  background: #ed6f19;
  color: #fff;
}


.whatsapp-float {
  bottom: 28px;
  background: #25D366;
  color: #fff;
}


.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37,211,102,0.6);
  color: #fff;
}
@keyframes whatsappBounce {
  0%,60%,100%{ transform: translateY(0); }
  30%        { transform: translateY(-8px); }
}

/* ────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────── */
.story-section { padding: 100px 0; }
.story-timeline {
  position: relative;
  padding-left: 40px;
}
.story-timeline::before {
  content: '';
  position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--orange));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 24px; height: 24px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.4s;
  border-bottom: 4px solid transparent;
}
.value-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-blue);
  transition: all 0.4s;
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: var(--shadow-orange);
  transform: rotateY(360deg);
  transition: transform 0.8s ease;
}
.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.team-section { padding: 100px 0; background: var(--light); }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card-img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ────────────────────────────────────────────
   SERVICES PAGE (Fleet Detail)
──────────────────────────────────────────── */
.vehicle-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  transition: all 0.4s;
}
.vehicle-detail-card:hover { box-shadow: var(--shadow-lg); }
.vehicle-img-3d-wrap {
  perspective: 800px;
  overflow: hidden;
}
.vehicle-img-3d {
  width: 100%; height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
  transform-origin: center bottom;
}
.vehicle-detail-card:hover .vehicle-img-3d {
  transform: scale(1.05) rotateX(-3deg);
}
.vehicle-info { padding: 32px; }
.vehicle-name {
  font-size: 1.6rem; font-weight: 800; color: var(--dark);
  margin-bottom: 6px;
}
.vehicle-category {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 16px;
}
.vehicle-desc {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 24px;
}
.vehicle-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.spec-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--light);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.84rem;
}
.spec-item i { color: var(--blue); font-size: 1rem; flex-shrink: 0; }
.spec-label { color: var(--text-muted); font-size: 0.76rem; display: block; }
.spec-value { font-weight: 700; color: var(--dark); font-size: 0.88rem; }
.vehicle-amenities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.amenity-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(30,58,138,0.08);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.amenity-tag i { font-size: 0.85rem; }
.route-cards-section { padding: 80px 0; background: var(--light); }
.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.4s;
  border-left: 4px solid var(--blue);
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--orange);
}
.route-from-to {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.route-city {
  font-weight: 700; color: var(--dark); font-size: 0.92rem;
}
.route-arrow { color: var(--orange); font-size: 1.2rem; }
.route-distance {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contact-section { padding: 100px 0; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
  transition: all 0.4s;
  border-top: 4px solid transparent;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--orange);
}
.contact-info-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
  transition: all 0.4s;
}
.contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.form-group-mm { margin-bottom: 22px; }
.form-label-mm {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-control-mm {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--light-2);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  font-family: var(--font-body);
  background: var(--light);
  transition: all 0.3s;
  outline: none;
}
.form-control-mm:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,58,138,0.1);
}
.form-control-mm::placeholder { color: var(--text-muted); }
textarea.form-control-mm { resize: vertical; min-height: 130px; }
select.form-control-mm { cursor: pointer; }
.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
}
.map-section { padding: 0 0 80px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
}
.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}
.footer-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--orange);
}
.footer-links { list-style: none; padding-left: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 7px;
}
.footer-links a i { color: var(--orange); font-size: 0.7rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 13px;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(249,115,22,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-text strong {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  margin-top: 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy a { color: var(--orange); text-decoration: none; }
.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ────────────────────────────────────────────
   BOOKING WIDGET (Home)
──────────────────────────────────────────── */
#booking-widget {
  background: var(--white);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.12), var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
#booking-widget .form-control-mm { background: var(--light); }

/* ────────────────────────────────────────────
   KEYFRAME ANIMATIONS
──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideWidth { from{width:0} to{width:100%} }
@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float3d {
  0%,100%{ transform: translateY(0) rotateX(0) rotateY(0); }
  33%    { transform: translateY(-10px) rotateX(3deg) rotateY(3deg); }
  66%    { transform: translateY(-5px) rotateX(-2deg) rotateY(-2deg); }
}

/* ────────────────────────────────────────────
   UTILITY CLASSES
──────────────────────────────────────────── */
.section-pad { padding: 100px 0; }
.bg-dark-mm { background: var(--dark); }
.bg-light-mm { background: var(--light); }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.fw-800 { font-weight: 800; }
.pill { border-radius: 50px; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }

/* ────────────────────────────────────────────
   AOS overrides
──────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ────────────────────────────────────────────
   GLOBAL OVERFLOW LOCK
──────────────────────────────────────────── */
/* .container, .container-fluid {
  max-width: 100%;
} */

/* ────────────────────────────────────────────
   NAVBAR DRAWER (mobile ≤991px)
──────────────────────────────────────────── */

/* Overlay backdrop — mobile only */
#navDrawerOverlay {
  display: none;                /* hidden on desktop, shown via media query */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1055;
  opacity: 0;
  visibility: hidden;           /* visibility+opacity combo lets CSS transition work */
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media (max-width: 991.98px) {
  #navDrawerOverlay { display: block; }
}
#navDrawerOverlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

@media (max-width: 991.98px) {
  /* Convert Bootstrap collapse → side drawer */
  #navbarNav {
    display: block !important;       /* always in DOM, overrides Bootstrap hide */
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--dark);
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    box-shadow: 6px 0 40px rgba(0,0,0,0.5);
  }
  #navbarNav.drawer-open {
    transform: translateX(0);
  }

  /* Drawer top bar — logo + X button */
  .drawer-header {
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .drawer-header img { height: 38px; }
  .drawer-close-btn {
    width: 36px; height: 36px;
    background: #f26f13;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    flex-shrink: 0;
  }
  .drawer-close-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
  }

  /* Nav links inside drawer */
  #navbarNav .navbar-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 10px 0;
    gap: 0 !important;
    width: 100%;
  }
  #navbarNav .nav-link {
    color: rgba(255,255,255,0.78) !important;
    padding: 14px 24px !important;
    font-size: 0.88rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s, color 0.25s, padding-left 0.25s;
  }
  #navbarNav .nav-link::after { display: none !important; }
  #navbarNav .nav-link:hover,
  #navbarNav .nav-link.active {
    color: var(--orange) !important;
    background: rgba(249,115,22,0.08);
    padding-left: 32px !important;
  }
  /* Book Now button inside drawer */
  .ms-lg-3 { margin: 0 !important; }
  #navbarNav .nav-btn-book {
    margin: 20px 20px 8px !important;
    width: calc(100% - 40px) !important;
    border-radius: var(--radius) !important;
    justify-content: center;
    padding: 13px 20px !important;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange)) !important;
  }
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .about-img-badge { left: 12px; }
  .hero-stats { gap: 20px; }
  .vehicle-specs { grid-template-columns: 1fr; }

  /* background-attachment: fixed not supported on iOS Safari */
  #stats { background-attachment: scroll; }

  /* ── Hero image responsive ── */
  /* Override the 520px inline styles with !important */
  .hero-img-col {
    padding-bottom: 30px;
    align-items: center;
  }
  .hero-car-float {
    width: 100% !important;
    height: 240px !important;
    border-radius: 16px !important;
    max-width: 480px;
  }
  .hero-car-float img {
    width: 100% !important;
    height: 240px !important;
    border-radius: 16px !important;
  }
  /* Hide floating badges — they overflow at narrow widths */
  .hero-image-wrap > div[style*="position:absolute"] {
    display: none !important;
  }
  .hero-glow-ring { display: none; }
}

@media (max-width: 767.98px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }

  /* Hero text sizes */
  .hero-title    { font-size: 2rem; }
  .hero-sub      { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-badge    { font-size: 0.7rem; letter-spacing: 1px; padding: 6px 14px; margin-bottom: 16px; }

  /* Hero left column — give it full width on mobile */
  #hero .col-lg-6.col-xl-5 {
      /*padding-top: 100px !important; */
  padding-bottom: 40px !important; }

  /* Remove the large left padding Bootstrap adds at pt-5 on small screens */
  #hero .row { padding-top: 0 !important; padding-bottom: 0 !important; }

  .hero-car-float { display: none; }
  #booking-widget { margin-top: 0; border-radius: 0; }

  /* About section */
  #about-teaser  { padding: 60px 0; }
  /*.about-img-badge { position: static; margin-top: 16px; display: inline-block; }*/

  /* Stats */
  .stat-num      { font-size: 2rem; }
  .stat-icon     { font-size: 1.6rem; }
  .stat-card::after { display: none; }

  /* Section headings */
  .section-title { font-size: 1.8rem; }

  /* Fleet / Services / etc padding */
  #fleet, #services-home, #tour-packages, #why-us, #testimonials, #cta,
  .contact-section, .story-section { padding: 70px 0; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .page-hero-icon { display: none; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  /* Scroll hint — JS will fade this out, but also cap it on mobile */
  .hero-scroll-hint { bottom: 16px; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 50px 0; }
  #fleet, #services-home, #tour-packages, #why-us, #testimonials, #cta,
  .contact-section, .story-section, #about-teaser { padding: 50px 0; }

  /* Hero */
  .hero-title  { font-size: 1.7rem; line-height: 1.25; }
  .hero-sub    { font-size: 0.85rem; }
  .hero-badge  { font-size: 0.65rem; }
  .hero-cta    { gap: 10px !important; }

  /* Stats */
  .stat-num    { font-size: 1.7rem; }
  .stat-label  { font-size: 0.72rem; letter-spacing: 1px; }

  /* Section headings */
  .section-title { font-size: 1.5rem; }
  .section-desc  { font-size: 0.9rem; }

  /* Buttons — slightly smaller on tiny screens */
  .btn-primary-mm, .btn-orange-mm, .btn-outline-mm,
  .btn-outline-white { padding: 11px 22px; font-size: 0.82rem; }

  /* Tour card */
  /*.tour-card-img { height: 140px; font-size: 2.8rem; }*/

  /* About image height */
  .about-img-main { height: 260px; }

  /* Hero image smaller on phones */
  .hero-car-float {
    height: 190px !important;
    max-width: 100%;
  }
  .hero-car-float img {
    height: 190px !important;
  }
  .hero-img-col { padding-bottom: 60px; }
}
