/* =============================================
   GurukrupaCab — Premium CSS Stylesheet
   ============================================= */

/* ---- Custom Properties ---- */
:root {
  --navy: #0B1F33;
  --navy-light: #132c47;
  --ivory: #F7F4EE;
  --amber: #E99A32;
  --amber-dark: #c97f1a;
  --white: #FFFFFF;
  --grey: #EEF1F4;
  --grey-mid: #d5dae0;
  --dark: #17202A;
  --dark-secondary: #2d3748;
  --text-muted: #6b7a8d;
  --text-body: #3a4a5c;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 12px rgba(11,31,51,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,51,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,51,0.18);
  --shadow-amber: 0 8px 32px rgba(233,154,50,0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 80px;
  --section-pad: 100px;
  --container-max: 1280px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: var(--font);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-amber { color: var(--amber); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(233,154,50,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

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

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ==============================
   HEADER
   ============================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: all var(--transition);
}

#header.scrolled {
  background: rgba(11,31,51,0.97);
  backdrop-filter: blur(16px);
  height: 64px;
  box-shadow: 0 4px 24px rgba(11,31,51,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.header-call:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header-call svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-book {
  background: var(--amber);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all var(--transition);
  display: inline-block;
}

.header-book:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
#mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

#mobile-nav.open { right: 0; }

#mobile-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

#mobile-nav a:hover { color: var(--amber); }

.mobile-nav-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta a {
  text-align: center;
  padding: 14px !important;
  border-radius: 100px !important;
  border: none !important;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
}

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}

#nav-overlay.show { display: block; }

/* ==============================
   HERO SECTION
   ============================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}



.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,31,51,0.92) 0%,
    rgba(11,31,51,0.82) 45%,
    rgba(11,31,51,0.45) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(233,154,50,0.15);
  border: 1px solid rgba(233,154,50,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow svg { width: 12px; height: 12px; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.hero-content h1 span { color: var(--amber); }

.hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero booking panel */
.hero-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 32px;
  right: 32px;
  height: 6px;
  background: var(--amber);
  border-radius: 6px 6px 0 0;
}

.hero-panel h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(233,154,50,0.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hero-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 15px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

.panel-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}

.panel-whatsapp:hover {
  background: #dcfce7;
  transform: translateY(-1px);
}

.panel-whatsapp svg { width: 16px; height: 16px; }

/* ==============================
   TRUST STRIP
   ============================== */
#trust-strip {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(233,154,50,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 20px; height: 20px; color: var(--amber); }

.trust-text h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-text p {
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ==============================
   QUICK BOOKING STRIP
   ============================== */
#quick-booking {
  background: var(--ivory);
  padding: 56px 0;
}

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

.quick-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.quick-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233,154,50,0.2);
}

.quick-card:hover::after { transform: scaleX(1); }

.quick-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(233,154,50,0.1), rgba(233,154,50,0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.quick-card:hover .quick-icon {
  background: var(--amber);
}

.quick-icon svg {
  width: 30px;
  height: 30px;
  color: var(--amber);
  transition: color var(--transition);
}

.quick-card:hover .quick-icon svg { color: var(--white); }

.quick-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.quick-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==============================
   SERVICES
   ============================== */
#services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered { text-align: center; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.75;
}

.section-header.left p { margin-left: 0; }

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

.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--grey);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.service-body {
  padding: 28px 28px 32px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(233,154,50,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { width: 22px; height: 22px; color: var(--amber); }

.service-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap var(--transition);
}

.service-cta svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-cta { gap: 10px; }
.service-card:hover .service-cta svg { transform: translateX(4px); }

/* ==============================
   POPULAR ROUTES
   ============================== */
#routes {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

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

.route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

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

.route-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-card:hover .route-img img { transform: scale(1.08); }

.route-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,51,0.75) 0%, transparent 60%);
}

.route-destination {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.route-body {
  padding: 16px 16px 20px;
}

.route-from {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.route-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.route-arrow svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

.route-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.route-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--grey);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--dark-secondary);
}

.route-tag svg { width: 10px; height: 10px; }

.ac-badge {
  background: rgba(233,154,50,0.12);
  color: var(--amber-dark);
}

.route-book {
  display: block;
  text-align: center;
  padding: 9px;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.route-book:hover {
  background: var(--navy);
}

.routes-footer {
  text-align: center;
  margin-top: 48px;
}

/* ==============================
   FLEET
   ============================== */
#fleet {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.fleet-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.fleet-card:hover { box-shadow: var(--shadow-md); }

.fleet-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-image img { transform: scale(1.04); }

.fleet-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.fleet-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.fleet-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.fleet-content h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.fleet-model {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.spec-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-secondary);
  box-shadow: var(--shadow-sm);
}

.spec-chip svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

/* ==============================
   WHY US
   ============================== */
#why-us {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

#why-us .section-header h2,
#why-us .section-header .eyebrow { color: var(--white); }
#why-us .section-header p { color: rgba(255,255,255,0.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-item {
  padding: 48px 40px;
  background: rgba(255,255,255,0.02);
  transition: background var(--transition);
  position: relative;
}

.why-item:hover { background: rgba(233,154,50,0.05); }

.why-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(233,154,50,0.25);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  transition: color var(--transition);
}

.why-item:hover .why-number { color: rgba(233,154,50,0.45); }

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(233,154,50,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon svg { width: 22px; height: 22px; color: var(--amber); }

.why-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ==============================
   ABOUT
   ============================== */
#about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--amber);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge .badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge .badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
}

.about-content .eyebrow { margin-bottom: 1rem; }

.about-content h2 { margin-bottom: 1.25rem; }

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.stat-box {
  background: var(--ivory);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--amber);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==============================
   HOW IT WORKS
   ============================== */
#how-it-works {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber));
  background-image: repeating-linear-gradient(90deg, var(--amber-dark) 0, var(--amber-dark) 6px, transparent 6px, transparent 14px);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 36px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 28px;
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 4px var(--navy);
}

.step-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ==============================
   TESTIMONIALS
   ============================== */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  border: 1.5px solid transparent;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(233,154,50,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.quote-icon svg { width: 18px; height: 18px; color: var(--white); }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--dark-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  fill: var(--amber);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-mid);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.author-trip {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==============================
   FAQ
   ============================== */
#faq {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar h2 { margin-bottom: 1rem; }

.faq-sidebar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(233,154,50,0.25);
}

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

.faq-question span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  background: var(--amber);
}

.faq-item.open .faq-toggle svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ==============================
   FINAL CTA
   ============================== */
#final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,51,0.65) 0%,
    rgba(11,31,51,0.85) 100%
  );
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content .eyebrow { color: var(--amber); }

.final-cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-whatsapp svg, .btn-call svg { width: 18px; height: 18px; }

.btn-call {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-call:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

/* ==============================
   CONTACT
   ============================== */
#contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(233,154,50,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; color: var(--amber); }

.contact-item-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item-text a:hover { color: var(--amber); }

/* Contact Form */
.contact-form {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form .form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-secondary);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(233,154,50,0.12);
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border-radius: var(--radius-sm);
  padding: 15px;
}

/* ==============================
   FOOTER
   ============================== */
#footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #FFFFFF;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #FFFFFF;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--amber); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  color: #FFFFFF;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #FFFFFF;
  font-size: 0.8rem;
  transition: color var(--transition);
}

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

/* ==============================
   MOBILE STICKY BAR
   ============================== */
#sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.sticky-call {
  background: var(--white);
  color: var(--navy);
}

.sticky-whatsapp {
  background: #25D366;
  color: var(--white);
}

.sticky-book {
  background: var(--amber);
  color: var(--white);
}

.sticky-btn svg { width: 16px; height: 16px; }

/* ==============================
   RESPONSIVE
   ============================== */

/* Large screens */
@media (max-width: 1200px) {
  :root { --section-pad: 80px; }

  .routes-grid { grid-template-columns: repeat(4, 1fr); }
  .routes-grid .route-card:last-child:nth-child(odd) { display: none; }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-panel { max-width: 540px; }

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

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

  .fleet-content { padding: 36px 40px; }

  .about-grid { gap: 48px; }

  .faq-grid { grid-template-columns: 1fr; gap: 40px; }

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

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --header-h: 68px;
  }

  /* Header */
  .nav-links,
  .header-call,
  .header-book { display: none; }

  .nav-toggle { display: flex; }

  .header-mobile-cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header-mobile-wa {
    background: var(--amber);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .header-mobile-call {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
  }

  .header-mobile-call svg { width: 18px; height: 18px; }

  /* Hero */
  .hero-inner {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 48px;
  }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }

  /* Trust strip */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 20px;
    margin-bottom: 4px;
  }

  /* Quick */
  .quick-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Routes */
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes-grid .route-card:nth-child(n+9) { display: none; }

  /* Fleet */
  .fleet-list { grid-template-columns: 1fr; }
  .fleet-image { height: 240px; }
  .fleet-content { padding: 32px; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 360px; }
  .about-badge { right: 20px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  /* Testimonials */
  .testimonials-track { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card:nth-child(n+4) { display: none; }

  /* CTA buttons */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn,
  .cta-buttons .btn-whatsapp,
  .cta-buttons .btn-call { width: 100%; max-width: 320px; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

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

  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile sticky bar */
  #sticky-bar { display: flex; }

  body { padding-bottom: 76px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }

  .routes-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .hero-panel { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-bottom-links { display: none; }
}

/* ---- Number counter ---- */
.counter-num { display: inline-block; }

/* ---- Smooth scrollbar styling ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--grey-mid); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }


/* ============================================
   CAROUSEL OVERRIDES
   ============================================ */
.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.routes-grid,
.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 20px;
  padding: 25px 15px;
    margin: -25px -15px;
    width: calc(100% + 30px);
}

.routes-grid .route-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
}
.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
}
.carousel-btn {
    display: none !important;
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

@media (max-width: 1024px) {
  .routes-grid .route-card { flex: 0 0 calc(33.333% - 14px); }
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .routes-grid .route-card { flex: 0 0 calc(50% - 10px); }
  .testimonials-track .testimonial-card { flex: 0 0 calc(100% - 20px); }
  .carousel-btn { display: none; }
}
@media (max-width: 480px) {
  .routes-grid .route-card { flex: 0 0 100%; }
}



/* Override old grid hiding rules */
.routes-grid .route-card,
.testimonials-track .testimonial-card {
  display: block !important;
}
.routes-grid,
.testimonials-track {
  display: flex !important;
}



/* ============================================
   MOBILE FIXES
   ============================================ */
html, body {
  overflow-x: hidden !important;
  max-width: 100%;
}
body.nav-open .header-mobile-cta {
  display: none !important;
}
body.nav-open header {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
}



/* ============================================
   CENTERED HERO
   ============================================ */
.hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.hero-content {
  max-width: 800px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  justify-content: center;
}


/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.sticky-lang-switcher {
  position: fixed;
  right: 20px;
  bottom: 100px; /* Above the mobile sticky bar */
  z-index: 9999;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: hidden;
}


.hero-content h1 { text-align: center !important; }


.routes-grid-full {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .routes-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .routes-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .routes-grid-full {
    grid-template-columns: 1fr;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
  background-color: var(--navy);
  
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,31,51,0.95) 0%, rgba(11,31,51,0.5) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
}





  5% { opacity: 1; }
  33% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.05); }
}

.slide-1 {
  opacity: 1;
  background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1920&q=80');
  animation: slide1 18s infinite;
}
.slide-2 {
  background-image: url('../images/hero1.jpg');
  animation: slide2 18s infinite;
}
.slide-3 {
  background-image: url('../images/hero2.jpg');
  animation: slide3 18s infinite;
}

@keyframes slide1 {
  0% { opacity: 1; transform: scale(1); }
  28% { opacity: 1; }
  33% { opacity: 0; }
  95% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes slide2 {
  0% { opacity: 0; transform: scale(1); }
  28% { opacity: 0; transform: scale(1); }
  33% { opacity: 1; }
  61% { opacity: 1; }
  66% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.05); }
}
@keyframes slide3 {
  0% { opacity: 0; transform: scale(1); }
  61% { opacity: 0; transform: scale(1); }
  66% { opacity: 1; }
  95% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.05); }
}

#footer, #footer p, #footer a, #footer h4, .footer-col ul li a, .footer-bottom p {
  color: #FFFFFF !important;
}
#footer a:hover {
  color: var(--amber) !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0;
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--amber);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-to-top svg { width: 20px; height: 20px; }
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}
@media (min-width: 769px) {
  .scroll-to-top { bottom: 30px; right: 30px; }
}

/* Modern Scrollbar for Carousel */
.routes-grid::-webkit-scrollbar, .testimonials-track::-webkit-scrollbar {
  height: 4px;
}
.routes-grid::-webkit-scrollbar-track, .testimonials-track::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin: 0 15px; 
}
.routes-grid::-webkit-scrollbar-thumb, .testimonials-track::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 10px;
}
.routes-grid::-webkit-scrollbar-thumb:hover, .testimonials-track::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}
