@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --brand: #028090;             /* Emerald Ocean Teal */
  --brand-rgb: 2, 128, 144;
  --brand-dark: #056676;        /* Deep Submarine Teal */
  --brand-light: #e8f1f5;       /* Soft Sky Blue */
  --accent: #f77f00;            /* Tropical Sunset Orange */
  --accent-rgb: 247, 127, 0;
  --accent-dark: #e65f00;       /* Rich Deep Amber */
  --ink: #0a192f;               /* Midnight Blue/Dark Navy */
  --muted: #64748b;             /* Cool Slate Gray */
  --line: #e2e8f0;              /* Soft Border Color */
  --paper: #ffffff;             /* Crisp White */
  --soft-bg: #f8fafc;           /* Light Sky/Gray Background */
  
  /* Glassmorphism System */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(2, 128, 144, 0.08);
  
  /* Shadows & Layout */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(2, 128, 144, 0.08), 0 4px 6px -4px rgba(2, 128, 144, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(2, 128, 144, 0.12), 0 8px 10px -6px rgba(2, 128, 144, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(2, 128, 144, 0.18);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout constraints */
  --container-width: 1200px;
}

/* Base resets & setups */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--soft-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(2, 128, 144, 0.3);
  border-radius: var(--radius-full);
  border: 2px solid var(--soft-bg);
  transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* Utility Layouts */
.container {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 100px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-block: 60px;
  }
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

/* High-Contrast Non-Scrolled Navigation Styles */
.site-header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-header:not(.scrolled) .nav-link:hover {
  color: var(--accent);
}

.site-header:not(.scrolled) .brand span {
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header:not(.scrolled) .menu-toggle .hamburger-line {
  background-color: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

.site-header.scrolled .nav {
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--paper);
  border-radius: 12px;
  font-size: 1.3rem;
  box-shadow: 0 8px 16px rgba(2, 128, 144, 0.25);
  transition: var(--transition);
}

.brand:hover .brand-icon {
  transform: rotate(-10deg) scale(1.05);
}

.brand span {
  background: linear-gradient(135deg, var(--ink), var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-block: 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background-color: var(--brand);
  color: var(--paper) !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(2, 128, 144, 0.2);
  transition: var(--transition);
}

.nav-cta:hover {
  background-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 128, 144, 0.3);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--ink);
  transition: var(--transition);
}

/* Responsive Nav Bar */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
    z-index: 1050;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  color: var(--paper);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-slide.active .hero-image {
  animation: KenBurnsZoom 16s ease infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.5) 0%, rgba(10, 25, 47, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(247, 127, 0, 0.12);
  border-radius: var(--radius-full);
  border: 1px solid rgba(247, 127, 0, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--paper);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-title .highlight {
  display: block;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  margin-top: 8px;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  max-width: 650px;
  margin-inline: auto;
  font-weight: 500;
}

/* Elegant Pulsing Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  animation: scrollFloat 2.5s ease-in-out infinite;
  user-select: none;
}

.scroll-indicator span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mouse-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
  animation: mouseScroll 1.6s ease infinite;
}

@keyframes mouseScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

@keyframes scrollFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Interactive Search Panel */
.search-panel {
  position: relative;
  z-index: 2;
  margin-top: -80px; /* Pull it slightly higher over the hero for better overlapping visual connection */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto;
  gap: 24px;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .search-form {
    grid-template-columns: 1.15fr 1.15fr 1.15fr 1fr auto;
  }
}

@media (max-width: 768px) {
  .search-panel {
    margin-top: -30px;
    padding: 20px;
  }
  .search-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  width: 100%;
}

@media (min-width: 769px) {
  .input-group:not(:nth-child(4)) {
    border-right: 1px solid rgba(2, 128, 144, 0.12);
    padding-right: 20px;
  }
}

.input-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-dark);
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background-color: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.input-field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(2, 128, 144, 0.15);
}

.search-submit {
  width: 100%;
  padding: 14px 28px;
  background-color: var(--accent);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(247, 127, 0, 0.25);
  transition: var(--transition);
}

.search-submit:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 127, 0, 0.35);
}

/* Stats Section */
.stats-band {
  background-color: var(--soft-bg);
  padding-block: 60px;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 24px;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* About & Interactive Route Section */
.about-section {
  background-color: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-content {
  max-width: 540px;
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-desc {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--brand-light);
  color: var(--brand);
  font-size: 0.9rem;
}

.feature-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Dynamic Road SVG / Travel Route Path Styling */
.route-visual-wrapper {
  position: relative;
  background-color: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.route-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.route-badge {
  padding: 6px 14px;
  background-color: var(--brand);
  color: var(--paper);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.route-svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.route-svg {
  width: 100%;
  height: 100%;
}

.route-road-back {
  fill: none;
  stroke: rgba(2, 128, 144, 0.08);
  stroke-width: 16px;
  stroke-linecap: round;
}

.route-road-dash {
  fill: none;
  stroke: var(--brand);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 8, 12;
}

#movingVehicleBody {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.15s ease-out;
}

/* Bouncy suspension jump animation for the highway SVG car */
@keyframes svgCarJump {
  0%, 100% {
    transform: translateY(0) scaleY(1) scaleX(1);
  }
  35% {
    transform: translateY(-8px) scaleY(0.85) scaleX(1.06);
  }
  70% {
    transform: translateY(1.5px) scaleY(1.05) scaleX(0.95);
  }
}

.car-jumping {
  animation: svgCarJump var(--jump-duration, 0.3s) ease-in-out infinite;
}

.route-destination-info {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  max-width: 240px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  align-self: flex-end;
}

.route-destination-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.route-destination-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* Destinations Showcase */
.destinations-section {
  background-color: var(--soft-bg);
}

.section-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .section-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.dest-card:hover {
  transform: translateY(-12px); /* Premium elevated lift */
  box-shadow: 0 30px 60px rgba(2, 128, 144, 0.14); /* Luxury deep shadow */
  border-color: rgba(2, 128, 144, 0.25);
}

.dest-img-container {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Glass glare sweeping shine effect across travel image on card hover */
.dest-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: 0.75s ease;
  pointer-events: none;
  z-index: 2;
}

.dest-card:hover .dest-img-container::after {
  left: 125%;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Zoom and slight tilt on image hover */
.dest-card:hover .dest-img {
  transform: scale(1.1) rotate(1deg);
}

.dest-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  z-index: 3;
  transition: var(--transition);
}

/* Morph badge to sunset accent on hover */
.dest-card:hover .dest-badge {
  background-color: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 6px 15px rgba(247, 127, 0, 0.35);
  transform: translateY(-2px) scale(1.05);
}

.dest-content {
  padding: 26px;
}

.dest-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.dest-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.dest-price-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.dest-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  transition: var(--transition-fast);
}

/* Price pop micro-interaction on hover */
.dest-card:hover .dest-price {
  color: var(--accent);
  transform: scale(1.06);
}

.dest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand-light);
  color: var(--brand);
  font-size: 1rem;
  transition: var(--transition);
}

/* Arrow turns to sunset accent, glows, and points forward dynamically */
.dest-card:hover .dest-btn {
  background-color: var(--accent);
  color: var(--paper);
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(247, 127, 0, 0.3);
}

/* Fleet Selection Tabs Section */
.fleet-section {
  background-color: var(--paper);
}

.fleet-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.fleet-tab-btn {
  padding: 12px 24px;
  background-color: var(--soft-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.fleet-tab-btn:hover {
  background-color: var(--brand-light);
  border-color: rgba(2, 128, 144, 0.2);
}

.fleet-tab-btn.active {
  background-color: var(--brand);
  color: var(--paper);
  border-color: var(--brand);
  box-shadow: 0 6px 16px rgba(2, 128, 144, 0.2);
}

.fleet-panels {
  position: relative;
  min-height: 400px;
}

.fleet-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.fleet-panel.active {
  display: grid;
  position: relative;
  opacity: 1;
}

@media (max-width: 991px) {
  .fleet-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.fleet-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.fleet-img-wrap:hover .fleet-img {
  transform: scale(1.05) translateY(-2px);
}

.fleet-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: var(--transition);
}

.fleet-info h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.fleet-tagline {
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.fleet-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.fleet-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: var(--transition-fast);
  cursor: default;
}

.fleet-feat:hover {
  transform: translateX(6px);
  color: var(--brand);
}

.fleet-feat:hover i {
  transform: scale(1.2);
  color: var(--accent);
}

.fleet-feat i {
  transition: var(--transition-fast);
  color: var(--brand);
}

.fleet-booking-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fleet-price span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.fleet-price h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0;
}

.btn-book-fleet {
  padding: 12px 28px;
  background-color: var(--brand);
  color: var(--paper);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(2, 128, 144, 0.2);
  transition: var(--transition);
}

.btn-book-fleet:hover {
  background-color: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(2, 128, 144, 0.3);
  transform: translateY(-2px);
}

/* Testimonials Carousel Section */
.testimonials-section {
  background-color: var(--soft-bg);
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.testi-track-wrap {
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.testi-card {
  width: 100%;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: none;
  opacity: 0;
  text-align: center;
}

.testi-card.active {
  display: block;
  opacity: 1;
}

.testi-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.testi-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}

.testi-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testi-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.testi-role {
  font-size: 0.85rem;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background-color: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-btn:hover {
  background-color: var(--brand-light);
  border-color: rgba(2, 128, 144, 0.2);
  color: var(--brand);
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--paper);
}

.faq-container {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background-color: var(--soft-bg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(2, 128, 144, 0.2);
  background-color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
}

.faq-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--paper);
  color: var(--brand);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  background-color: var(--brand);
  color: var(--paper);
  border-color: var(--brand);
}

.faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Booking & Contact Form Section */
.booking-section {
  background-color: var(--soft-bg);
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.booking-info-wrap {
  position: sticky;
  top: 100px;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--brand-light);
  color: var(--brand);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 576px) {
  .form-card {
    padding: 24px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 576px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.btn-form-submit {
  width: 100%;
  padding: 14px 28px;
  background-color: var(--brand);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(2, 128, 144, 0.2);
  transition: var(--transition);
}

.btn-form-submit:hover {
  background-color: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(2, 128, 144, 0.3);
  transform: translateY(-2px);
}

.form-response-msg {
  display: none;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-response-msg.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Footer Section */
.site-footer {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

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

.footer-brand .brand {
  color: var(--paper);
  margin-bottom: 20px;
}

.footer-brand .brand span {
  background: linear-gradient(135deg, var(--paper), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--brand);
  color: var(--paper);
  transform: translateY(-2px);
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--paper);
  margin-bottom: 24px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--brand-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Floating Elements (WhatsApp Widget) */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--paper);
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-widget:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-ping {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: pulsePing 2s infinite;
  pointer-events: none;
}

/* Intersection Scroll Reveal classes (GSAP handles these smoothly) */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
}

/* Ken Burns Zoom Keyframes */
@keyframes KenBurnsZoom {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-1%, -1%);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
  }
}

/* Pulse Ping Animation for WhatsApp */
@keyframes pulsePing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   12. 3D Parallax Perspective & Custom Chauffeur Car Cursor
   ========================================================================== */

/* Enable 3D perspective on travel grids */
.destinations-grid {
  perspective: 1500px;
}

.dest-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: none; /* Hide native cursor ONLY over travel cards to elevate car cursor! */
}

/* Custom Trailing Car Cursor Widget */
.custom-car-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
  font-size: 1.35rem;
  pointer-events: none; /* Let standard clicks pass through cleanly! */
  z-index: 10000;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, scale 0.2s ease, color 0.2s ease;
  filter: drop-shadow(0 2px 6px rgba(247, 127, 0, 0.45));
}

/* Dynamic rumble exhaust vibration while custom cursor is in truck scroll mode! */
.custom-car-cursor.scroll-truck i {
  animation: truckRumble 0.12s linear infinite alternate;
  color: var(--brand); /* Turns heavy emerald during transit */
  filter: drop-shadow(0 2px 8px rgba(2, 128, 144, 0.45));
}

@keyframes truckRumble {
  0% {
    transform: translateY(-0.8px) rotate(0.4deg);
  }
  100% {
    transform: translateY(0.8px) rotate(-0.4deg);
  }
}

