/* ===========================
   MUMBAI GUJARAT CAB - STYLES
   Color: Red #D32F2F | Blue #1565C0 | White #FFFFFF
   =========================== */
:root {
  --red:        #D32F2F;
  --red-dark:   #B71C1C;
  --red-light:  #EF5350;
  --blue:       #1565C0;
  --blue-dark:  #0D47A1;
  --blue-light: #1E88E5;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --gray-light: #EEF1F6;
  --gray:       #9E9E9E;
  --gray-dark:  #424242;
  --text:       #212121;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.3s ease;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar span, .top-bar a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar a:hover { color: #FFCC00; }
.top-bar-right { display: flex; gap: 18px; }

/* ---- HEADER ---- */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--blue-dark); letter-spacing: 0.5px; }
.logo-sub { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; color: var(--red); letter-spacing: 2px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--red);
  background: rgba(211,47,47,0.08);
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 200;
  border-top: 3px solid var(--red);
  padding: 8px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.86rem;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown li a:hover { color: var(--red); background: var(--off-white); padding-left: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 3px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--red) 100%);
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-content { flex: 1; color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-badge i { color: #FFCC00; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 span { color: #FFCC00; }
.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #FFCC00;
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.78rem; opacity: 0.85; margin-top: 3px; }

/* Booking Form */
.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  width: 420px;
  flex-shrink: 0;
}
.booking-card h3 {
  font-family: var(--font-head);
  color: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.booking-card h3 i { color: var(--red); }
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-book {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}
.btn-book:hover { background: linear-gradient(135deg, var(--red-dark), #8B0000); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(211,47,47,0.4); }

/* ---- SECTION COMMONS ---- */
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .eyebrow {
  display: inline-block;
  background: rgba(211,47,47,0.1);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.title-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.title-line span {
  height: 3px;
  width: 50px;
  background: var(--gray-light);
  border-radius: 3px;
}
.title-line .dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}

/* ---- WHY CHOOSE US ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-5px); border-bottom-color: var(--red); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.fi-red   { background: rgba(211,47,47,0.1);  color: var(--red); }
.fi-blue  { background: rgba(21,101,192,0.1); color: var(--blue); }
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.88rem; color: var(--gray); }

/* ---- ROUTES GRID ---- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.route-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  border-left: 4px solid var(--red);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.route-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(21,101,192,0.04) 50%);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.route-cities {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.route-cities span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark);
}
.route-arrow {
  color: var(--red);
  font-size: 0.85rem;
}
.route-meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.route-meta span { display: flex; align-items: center; gap: 4px; }
.route-meta i { color: var(--blue-light); }
.route-fare {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
}
.route-fare small { font-size: 0.75rem; color: var(--gray); font-weight: 400; }
.route-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 10px;
}
.route-link:hover { color: var(--red); }

/* ---- FLEET ---- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.fleet-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fleet-img {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  position: relative;
}
.fleet-img .car-emoji { font-size: 3.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.fleet-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.fleet-info { padding: 20px; }
.fleet-info h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.fleet-features span {
  background: var(--off-white);
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 50px;
  color: var(--gray-dark);
}
.fleet-rate {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
}
.fleet-rate small { color: var(--gray); font-weight: 400; font-size: 0.8rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #F59E0B; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--blue-dark); }
.reviewer-info small { font-size: 0.78rem; color: var(--gray); }

/* ---- CITIES SECTION ---- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.city-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.city-card:hover { border-top-color: var(--red); transform: translateY(-3px); }
.city-card i { color: var(--blue); font-size: 1.4rem; margin-bottom: 8px; display: block; }
.city-card span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  display: block;
}
.city-card small { font-size: 0.72rem; color: var(--gray); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--blue));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--red);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---- PROCESS SECTION ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 24px 20px;
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(211,47,47,0.35);
}
.process-step h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.87rem; color: var(--gray); }

/* ---- ROUTE PAGE ---- */
.route-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 60px 0;
  color: #fff;
}
.route-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.route-hero .route-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.route-pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.route-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.fare-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.fare-table th {
  background: var(--blue-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
}
.fare-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; }
.fare-table tr:hover td { background: var(--off-white); }
.fare-table .price { font-weight: 700; color: var(--red); font-family: var(--font-head); }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img-wrapper {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.about-text p { color: var(--gray-dark); margin-bottom: 14px; }
.about-list { margin: 20px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.about-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-red { background: rgba(211,47,47,0.1); color: var(--red); }
.ci-blue { background: rgba(21,101,192,0.1); color: var(--blue); }
.contact-item h5 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.btn-submit {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { background: linear-gradient(135deg, var(--blue-dark), #0D47A1); transform: translateY(-1px); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--red) 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 10px;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: #FFCC00; }
.breadcrumb i { font-size: 0.7rem; }

/* ---- FOOTER ---- */
.main-footer { background: #0A1628; color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo i { font-size: 2rem; color: var(--red); }
.footer-logo .logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff; }
.footer-logo .logo-sub { font-family: var(--font-head); font-size: 0.6rem; font-weight: 700; color: var(--red-light); letter-spacing: 2px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--red); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.footer-col ul li a i { font-size: 0.65rem; color: var(--red-light); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; margin-bottom: 10px; }
.contact-list li i { color: var(--red-light); margin-top: 3px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,0.7); }
.contact-list li a:hover { color: #fff; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  padding: 10px 14px;
  border-radius: 9px;
  margin-top: 14px;
  font-size: 0.8rem;
}
.footer-badge i { color: var(--red-light); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 18px 0;
  font-size: 0.8rem;
}
.footer-bottom p { margin-bottom: 4px; }
.footer-bottom a { color: var(--red-light); }
.footer-bottom a:hover { color: var(--red); }
.footer-tagline { opacity: 0.5; font-size: 0.75rem; }

/* ---- FLOATING BUTTONS ---- */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 22px;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  z-index: 500;
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.phone-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--red);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(211,47,47,0.5);
  z-index: 500;
  transition: all var(--transition);
}
.phone-float:hover { transform: scale(1.1); }

/* ---- ALERTS ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #E8F5E9; color: #2E7D32; border-left: 4px solid #4CAF50; }
.alert-error   { background: #FFEBEE; color: #C62828; border-left: 4px solid var(--red); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .route-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    gap: 2px;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { border-radius: 8px; }
  .dropdown { position: static; box-shadow: none; border-top: none; background: var(--off-white); margin-top: 4px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .navbar { position: relative; }
  .hero-inner { flex-direction: column; }
  .booking-card { width: 100%; }
  .hero { min-height: auto; padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .section { padding: 50px 0; }
}
@media (max-width: 480px) {
  .top-bar-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
