/* ===== BHAGYARAJ TRAVELS - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --primary: #18528F;
  --accent: #00BFFF;
  --bg: #FFFFFF;
  --border: #DEE2E6;
  --dark: #0d2f52;
  --light-bg: #f0f7ff;
  --text: #2c3e50;
  --text-muted: #6c757d;
  --shadow: 0 4px 24px rgba(24,82,143,0.12);
  --shadow-hover: 0 8px 40px rgba(24,82,143,0.22);
  --radius: 10px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Rajdhani', sans-serif; font-weight: 700; }

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

img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
  font-family: 'Nunito', sans-serif;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left span { opacity: 0.85; }
.topbar-right { display: flex; gap: 20px; }
.topbar-right a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}
.topbar-right a:hover { color: #fff; }
.topbar i { margin-right: 6px; }

/* ===== HEADER ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(24,82,143,0.10);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 4px 30px rgba(24,82,143,0.18); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 54px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.brand-sub { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-dropdown > a {
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.main-nav > a:hover, .nav-dropdown > a:hover,
.main-nav > a.active, .nav-dropdown > a.active {
  color: var(--primary);
  background: var(--light-bg);
}
.main-nav > a.active { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--light-bg); color: var(--primary); padding-left: 24px; }
.dropdown-menu a i { color: var(--accent); width: 16px; }

.btn-call-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,191,255,0.3);
}
.btn-call-header:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,191,255,0.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,47,82,0.85) 45%, rgba(13,47,82,0.4) 100%);
}

.slide-1 { background-image: url('../images/hero1.jpg'); }
.slide-2 { background-image: url('../images/hero2.jpg'); }
.slide-3 { background-image: url('../images/hero3.jpg'); }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}
.slider-dot.active { background: var(--accent); border-color: var(--accent); transform: scale(1.3); }

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text { flex: 1; color: #fff; max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,191,255,0.2);
  border: 1px solid rgba(0,191,255,0.5);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
}
.hero-text h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  font-size: 16px;
  opacity: 0.88;
  margin-bottom: 28px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-badges-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-feature-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.hero-feature-badge i { color: var(--accent); }

/* BOOKING FORM */
.hero-form-wrap {
  flex: 0 0 400px;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: fadeInRight 0.8s ease 0.3s both;
}

.form-tabs {
  display: flex;
  background: var(--light-bg);
  border-bottom: 2px solid var(--border);
}
.form-tab {
  flex: 1;
  padding: 12px 6px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.form-tab i { font-size: 16px; }
.form-tab.active { color: var(--primary); border-bottom-color: var(--accent); background: #fff; }
.form-tab:hover:not(.active) { background: rgba(0,191,255,0.06); }

.form-body { padding: 22px; }
.form-panel { display: none; }
.form-panel.active { display: block; }

.form-panel h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-panel h3 i { color: var(--accent); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,191,255,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-book-now {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.btn-book-now:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,255,0.4); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: rgba(0,191,255,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,191,255,0.3);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--accent); }
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 600;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.service-icon {
  width: 70px; height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.1);
}
.service-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--primary); }

/* ===== FLEET CARDS ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.fleet-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.fleet-card:hover .fleet-img { transform: scale(1.05); }
.fleet-card-body { padding: 20px; }
.fleet-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 8px; }
.fleet-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.fleet-spec i { color: var(--accent); }
.fleet-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.btn-fleet-book {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.btn-fleet-book:hover { background: var(--accent); color: #fff; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.why-img-wrap img { width: 100%; border-radius: 16px; }
.why-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
}
.why-badge-float .num { font-size: 36px; font-weight: 700; color: var(--accent); }
.why-badge-float .label { font-size: 14px; opacity: 0.85; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: rotate(5deg);
}
.why-item-text h4 { font-size: 18px; color: var(--primary); margin-bottom: 4px; }
.why-item-text p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== POPULAR ROUTES ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.route-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
  cursor: pointer;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.route-from-to {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.route-from-to .arrow { color: var(--accent); font-size: 14px; }
.route-dist {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.route-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.route-price span { font-size: 12px; color: var(--text-muted); font-family: 'Nunito', sans-serif; font-weight: 400; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}
.stars { color: #f4c430; margin-bottom: 12px; font-size: 15px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--primary); }
.author-city { font-size: 12px; color: var(--text-muted); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 { font-size: 36px; margin-bottom: 12px; }
.cta-strip p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,191,255,0.4); }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 10px; }
.page-hero p { font-size: 16px; opacity: 0.85; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.75;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb-sep { opacity: 0.5; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { border-radius: 16px; width: 100%; object-fit: cover; }
.about-text .section-tag { margin-bottom: 12px; }
.about-text h2 { font-size: 36px; color: var(--primary); margin-bottom: 16px; }
.about-text h2 span { color: var(--accent); }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.about-highlight i { color: var(--accent); font-size: 16px; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== GALLERY ===== */
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.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(24,82,143,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  border-radius: 16px;
  padding: 36px;
}
.contact-info-card h3 { font-size: 26px; margin-bottom: 8px; }
.contact-info-card p { opacity: 0.8; font-size: 14px; line-height: 1.6; margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-text .label { font-size: 12px; opacity: 0.7; margin-bottom: 4px; }
.contact-info-text .value { font-weight: 700; font-size: 15px; }
.contact-info-text a { color: #fff; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-card h3 { font-size: 26px; color: var(--primary); margin-bottom: 6px; }
.contact-form-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,255,0.35); }

.map-wrap { margin-top: 50px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ===== BOOKING PAGE ===== */
.booking-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-card-header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 28px 32px;
}
.booking-card-header h2 { font-size: 28px; margin-bottom: 4px; }
.booking-card-header p { opacity: 0.8; font-size: 14px; }
.booking-card-body { padding: 32px; }
.booking-success {
  text-align: center;
  padding: 40px 20px;
}
.booking-success .icon { font-size: 64px; color: #28a745; margin-bottom: 16px; }
.booking-success h2 { font-size: 30px; color: var(--primary); margin-bottom: 10px; }
.booking-success p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== FOOTER ===== */
.main-footer { background: var(--dark); color: #fff; }
.footer-top { padding: 60px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { height: 48px; width: auto; }
.footer-brand { display: block; font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand-sub { display: block; font-size: 11px; color: var(--accent); letter-spacing: 0.5px; }
.footer-about { font-size: 14px; opacity: 0.7; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--accent); font-size: 10px; }
.footer-links a:hover { opacity: 1; color: var(--accent); padding-left: 4px; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  opacity: 0.8;
}
.footer-contact-list li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: #fff; }
.btn-footer-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 18px;
  transition: var(--transition);
}
.btn-footer-call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,191,255,0.35); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 54px; height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.15); }

.call-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px; height: 54px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,191,255,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s 1s infinite;
}
.call-float:hover { transform: scale(1.15); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,191,255,0.4); }
  50% { box-shadow: 0 4px 30px rgba(0,191,255,0.7), 0 0 0 8px rgba(0,191,255,0.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .fleet-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-form-wrap { flex: 0 0 360px; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 100;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 10px 16px; border-radius: 8px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light-bg); border-radius: 8px; margin: 4px 0; }
  .btn-call-header { display: none; }

  .hero-content { flex-direction: column; padding: 20px; }
  .hero-form-wrap { flex: none; width: 100%; max-width: 100%; }
  .hero-text h1 { font-size: 32px; }

  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .fleet-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .routes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-tabs { font-size: 11px; }
  .form-tab { padding: 10px 4px; }
}

/* ===== MOBILE HEADER FIXES ===== */

/* Hide logo text on mobile — show only logo image + hamburger */
@media (max-width: 768px) {
  .topbar { display: none; }

  .header-inner {
    padding: 10px 16px;
    position: relative;
  }

  /* Show only logo image on mobile, hide text */
  .logo-text-desktop { display: none; }

  .logo-img { height: 44px; }

  /* Hide desktop nav and book-now button on mobile */
  .main-nav { display: none !important; }
  .btn-call-desktop { display: none !important; }

  /* Show hamburger */
  .hamburger { display: flex; }

  /* ---- MOBILE NAV DRAWER ---- */
  .mobile-nav-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: #fff;
    border-top: 1px solid var(--border);
  }
  .mobile-nav-drawer.open {
    max-height: 500px;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0 12px;
  }
  .mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
  }
  .mobile-nav-links a i { color: var(--accent); width: 18px; text-align: center; }
  .mobile-nav-links a:hover,
  .mobile-nav-links a.active { background: var(--light-bg); color: var(--primary); }
  .mobile-nav-links a.mobile-call-link {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    margin: 10px 16px 4px;
    border-radius: 8px;
    border: none;
    justify-content: center;
  }
  .mobile-nav-links a.mobile-call-link i { color: #fff; }

  /* ---- HERO SECTION - fix slider going behind header ---- */
  .hero-section {
    /* Use min-height instead of 100vh so it starts below header */
    height: auto;
    min-height: calc(100svh - 64px);
    padding-top: 0;
    /* Flex column on mobile: text on top, form below */
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-content {
    flex-direction: column;
    padding: 28px 16px 32px;
    gap: 24px;
    align-items: center;
    /* Ensure content sits above slider overlay */
    position: relative;
    z-index: 5;
  }

  .hero-text { text-align: center; }
  .hero-text h1 { font-size: 28px; }
  .hero-badges-row { justify-content: center; }

  .hero-form-wrap {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  /* Slider fills hero background fully */
  .hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
  }
}

/* Desktop: hide mobile drawer completely */
@media (min-width: 769px) {
  .mobile-nav-drawer { display: none; }
  .logo-text-desktop { display: flex; }
}

/* ===== GOOGLE PLACES AUTOCOMPLETE DROPDOWN STYLE ===== */
.pac-container {
  font-family: 'Nunito', sans-serif !important;
  font-size: 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(24,82,143,0.12) !important;
  margin-top: 4px !important;
  z-index: 99999 !important;
}
.pac-item {
  padding: 8px 14px !important;
  cursor: pointer !important;
  border-top: 1px solid #f0f0f0 !important;
  color: var(--text) !important;
}
.pac-item:hover { background: var(--light-bg) !important; }
.pac-item-query { color: var(--primary) !important; font-weight: 700 !important; }
.pac-matched { color: var(--accent) !important; }
.pac-icon { display: none !important; }
