/* ===== NAGAR TOUR AND TRAVELS - PREMIUM CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --yellow: #FFD700;
  --yellow2: #FFC107;
  --yellow3: #F5A623;
  --yellow-light: #fff9e6;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #f5f5f5;
  --border: rgba(255, 215, 0, 0.2);
  --shadow-yellow: 0 0 30px rgba(255, 215, 0, 0.3);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
input, textarea, select { outline: none; border: none; font-family: var(--font-body); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--yellow);
  letter-spacing: 3px;
  animation: pulseGlow 1.5s infinite alternate;
}
.preloader-bar {
  width: 200px; height: 3px;
  background: var(--dark3);
  margin: 20px auto 0;
  border-radius: 3px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow3));
  border-radius: 3px;
  animation: loadBar 2s ease forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes pulseGlow {
  from { text-shadow: 0 0 20px rgba(255,215,0,0.5); }
  to { text-shadow: 0 0 50px rgba(255,215,0,1), 0 0 80px rgba(255,215,0,0.5); }
}

/* ===== CURSOR CUSTOM ===== */
.cursor {
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  position: fixed; z-index: 9997;
  pointer-events: none;
  transition: transform 0.5s ease, width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  height: 62px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-icon::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.2));
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-logo-text .brand-sub {
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
  white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 22px;
}
.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-call-nav {
  display: flex; align-items: center; gap: 6px;
  background: var(--yellow);
  color: var(--black);
  padding: 9px 16px;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
  white-space: nowrap;
}
.btn-call-nav:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,215,0,0.5);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 28px; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--yellow); }

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 30px; right: 25px;
  z-index: 998;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  animation: floatPulse 3s infinite;
}
.float-btn:hover { transform: scale(1.15); }
.float-whatsapp { background: #25D366; color: white; }
.float-call { background: var(--yellow); color: var(--black); animation-delay: 0.5s; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,215,0,0.4); }
  50% { box-shadow: 0 5px 20px rgba(0,0,0,0.4), 0 0 0 10px rgba(255,215,0,0); }
}
.float-label {
  position: absolute;
  right: 68px;
  background: var(--dark2);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--font-accent);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--border);
}
.float-btn:hover .float-label { opacity: 1; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-slider {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  padding-top: 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 20px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge span { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 45px;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  color: var(--black);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,215,0,0.6); }
.btn-primary:hover::after { opacity: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-3px);
}
.hero-stats {
  position: absolute;
  bottom: 60px; left: 60px; right: 60px;
  z-index: 2;
  display: flex; gap: 50px;
  animation: fadeInUp 0.8s 0.8s ease forwards;
  opacity: 0;
}
.stat-item {
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: -25px; top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,215,0,0.3);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  margin-top: 5px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  animation: fadeIn 1s 1.5s ease forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== BOOKING FORM SECTION ===== */
.booking-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}
.booking-strip::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.booking-form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.booking-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 25px;
  text-align: center;
}
.booking-form-title span { color: var(--white); }
.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  align-items: end;
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
}
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-family: var(--font-accent);
  font-weight: 600;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: rgba(255,215,0,0.05);
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.btn-book-now {
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  color: var(--black);
  padding: 14px 30px;
  border-radius: 10px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(255,215,0,0.3);
  white-space: nowrap;
  height: fit-content;
}
.btn-book-now:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,215,0,0.5); }

/* ===== SECTION COMMONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--dark2); }
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 15px;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 10px;
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,215,0,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-yellow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  color: var(--black);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}
.service-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.service-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  position: relative; z-index: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-family: var(--font-accent);
  font-weight: 600;
  margin-top: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative; z-index: 1;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 12px; }

/* ===== FLEET SECTION ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.fleet-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.fleet-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--dark3);
}
.fleet-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); }
.fleet-badge {
  position: absolute; top: 15px; right: 15px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  color: var(--black);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-accent);
  letter-spacing: 1px;
}
.fleet-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.fleet-info {
  padding: 25px;
}
.fleet-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.fleet-type {
  font-size: 0.75rem;
  color: var(--yellow);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.fleet-specs {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.spec-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.spec-item span:first-child { color: var(--yellow); font-size: 14px; }
.fleet-price {
  display: flex; align-items: center; justify-content: flex-end;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 15px;
}
.price-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.price-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--yellow);
  font-weight: 700;
}
.btn-book-fleet {
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 0.78rem;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-book-fleet:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ===== WHY CHOOSE US ===== */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-side {
  position: relative;
}
.why-img-main {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-dark);
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-badge-float {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 25px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-yellow);
}
.why-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--yellow);
  font-weight: 700;
  line-height: 1;
}
.why-badge-float .lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
}
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.why-item {
  display: flex; gap: 20px;
  padding: 22px;
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.08);
  border-radius: 15px;
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,215,0,0.07);
  border-color: var(--border);
  transform: translateX(8px);
}
.why-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,215,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--yellow);
}
.why-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.why-item-text p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== ROUTES SECTION ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.route-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 25px;
  display: flex; align-items: center;
  gap: 20px;
  transition: var(--transition);
  cursor: pointer;
}
.route-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.route-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.route-from { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-accent); }
.route-cities {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 3px 0;
}
.route-arrow { color: var(--yellow); font-size: 0.9rem; }
.route-dist { font-size: 0.75rem; color: var(--yellow); font-family: var(--font-accent); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { position: relative; }
.testimonials-track {
  display: flex; gap: 25px;
  overflow: hidden;
}
.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 35px;
  min-width: 380px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 15px; right: 25px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(255,215,0,0.1);
  line-height: 1;
}
.stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: 15px; }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
  flex-shrink: 0;
}
.author-name { font-family: var(--font-heading); font-size: 1rem; }
.author-loc { font-size: 0.75rem; color: var(--gray); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-size: 2rem; color: var(--yellow);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== MAP & CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-card {
  display: flex; gap: 20px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 25px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--border); transform: translateX(8px); }
.contact-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,215,0,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--yellow);
}
.contact-card-text h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 6px; }
.contact-card-text a,
.contact-card-text p { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.3s; display: block; }
.contact-card-text a:hover { color: var(--yellow); }
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-yellow);
}
.map-container iframe { display: block; width: 100%; height: 400px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-family: var(--font-accent);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
}
.social-btn:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.social-btn.fb:hover { border-color: #1877F2; color: #1877F2; }
.social-btn.ig:hover { border-color: #E1306C; color: #E1306C; }
.social-btn.yt:hover { border-color: #FF0000; color: #FF0000; }
.social-btn.wa:hover { border-color: #25D366; color: #25D366; }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand .brand-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--black);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--yellow);
  font-weight: 700;
}
.footer-brand-sub { font-size: 0.65rem; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; }
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s, padding-left 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--yellow); padding-left: 8px; }
.footer-links a::before { content: '›'; color: var(--yellow); font-size: 1rem; }
.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.footer-newsletter input:focus { border-color: var(--yellow); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter button {
  width: 100%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  color: var(--black);
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.footer-newsletter button:hover { opacity: 0.85; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-copy span { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark2);
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.05) 0%, transparent 70%);
}
.page-hero-tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 15px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 15px;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--yellow); transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== NUMBER COUNTER ===== */
.counter { display: inline-block; }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--yellow), var(--yellow3));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex; align-items: center; gap: 15px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.marquee-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; opacity: 0.4; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; left: 25px;
  width: 46px; height: 46px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 18px;
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .why-wrap { grid-template-columns: 1fr; gap: 50px; }
  .why-img-side { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 1100px) {
  .navbar { padding: 0 20px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.65rem; letter-spacing: 0.5px; }
  .btn-call-nav { padding: 8px 12px; font-size: 0.65rem; }
  .nav-logo-text .brand-name { font-size: 0.9rem; }
}
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 25px; padding-top: 80px; }
  .hero-stats { left: 25px; right: 25px; gap: 25px; flex-wrap: wrap; }
  .container { padding: 0 25px; }
  .section { padding: 70px 0; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .testimonials-track { flex-direction: column; }
  .testimonial-card { min-width: unset; }
  .cursor, .cursor-follower { display: none !important; }
  .why-badge-float { left: 10px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 20px; bottom: 80px; }
  .stat-num { font-size: 1.8rem; }
  .hero-scroll-indicator { display: none; }
  .hero-content { padding-bottom: 180px; }
  .booking-form { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .routes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 120px 0 60px; }
  .float-btn { width: 50px; height: 50px; font-size: 20px; }
  .section-header { margin-bottom: 45px; }
  .btn-primary, .btn-secondary { padding: 13px 24px; font-size: 0.8rem; }
  .hero-actions { gap: 12px; }
}
