/* ==========================================================================
   ARORA TRAVEL CABS - Modern Luxury Google Ads & SEO Landing Page
   ========================================================================== */

:root {
  --primary-navy: #0F172A;
  --primary-dark: #0B1120;
  --primary-blue: #1E40AF;
  --accent-blue: #2563EB;
  --accent-blue-light: #38BDF8;
  --accent-gold: #F59E0B;
  --accent-gold-hover: #D97706;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #1EBE5D;
  --danger-red: #EF4444;
  --success-emerald: #10B981;
  
  --bg-slate: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-light: #E2E8F0;
  --border-focus: #3B82F6;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
  --shadow-glow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
  --shadow-glow-wa: 0 10px 25px -5px rgba(37, 211, 102, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

section[id],
div[id="booking-form"] {
  scroll-margin-top: 84px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-slate);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement-bar {
  background: #0B1120;
  color: #F8FAFC;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.live-pill .dot {
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-phone, .top-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E2E8F0;
  font-size: 0.84rem;
}

.top-phone:hover {
  color: var(--accent-gold);
}

.top-whatsapp:hover {
  color: var(--whatsapp-green);
}

.top-contacts .divider {
  color: #475569;
}

.top-contacts .icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Main Header
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.brand-emblem svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.desktop-nav a:hover {
  color: var(--accent-blue);
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-call-header .pulse-ring {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: pulse-ring-glow 1.8s infinite;
}

.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-wa-header:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.header-action-group .icon {
  width: 17px;
  height: 17px;
}

/* Mobile & Tablet Menu Toggle Button (Hamburger) */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s ease;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: #E2E8F0;
}

.hamburger-bar {
  width: 20px;
  height: 2.2px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.mobile-menu-btn.open .hamburger-bar:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.mobile-menu-btn.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* Navigation Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Off-Canvas Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background: #FFFFFF;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.2);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .mobile-nav-drawer {
    display: flex;
  }
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: #F8FAFC;
}

.drawer-logo .brand-title {
  font-size: 1.05rem;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: #F1F5F9;
  color: var(--danger-red);
}

.drawer-close-btn svg {
  width: 20px;
  height: 20px;
}

.drawer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.drawer-badge {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 700;
  color: #B45309;
  text-align: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  background: #FFFFFF;
  transition: all 0.15s ease;
}

.drawer-nav-link .link-icon {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

.drawer-nav-link .arrow {
  margin-left: auto;
  font-size: 0.85rem;
  color: #94A3B8;
  transition: transform 0.15s ease;
}

.drawer-nav-link:hover,
.drawer-nav-link:active {
  background: #EFF6FF;
  color: var(--accent-blue);
  padding-left: 18px;
}

.drawer-nav-link:hover .arrow {
  transform: translateX(3px);
  color: var(--accent-blue);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.drawer-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.drawer-call-btn .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.drawer-call-btn .btn-text-block {
  display: flex;
  flex-direction: column;
}

.drawer-call-btn .action-sub {
  font-size: 0.7rem;
  color: #BFDBFE;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.drawer-call-btn .action-main {
  font-size: 1.05rem;
  font-weight: 800;
}

.drawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.drawer-wa-btn .icon {
  width: 20px;
  height: 20px;
}

.drawer-contact-mini {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 6px;
}

.drawer-contact-mini a {
  color: var(--accent-blue);
  font-weight: 700;
}

/* ==========================================================================
   Hero Section & Google Ads Booking Form
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #090E17 0%, #0F172A 60%, #1E293B 100%);
  color: #FFFFFF;
  padding: 56px 0 80px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding-right: 15px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-badge-pill .star-icon {
  color: #F59E0B;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #38BDF8 0%, #60A5FA 50%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.trust-item .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-info strong {
  font-size: 0.92rem;
  color: #F8FAFC;
}

.trust-info span {
  font-size: 0.78rem;
  color: #94A3B8;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F172A;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-gold);
  transition: transform 0.2s ease;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-wa);
  transition: transform 0.2s ease;
}

.btn-whatsapp-hero:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.hero-cta-group .icon {
  width: 20px;
  height: 20px;
}

.social-proof-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.google-rating-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.google-g {
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  color: #4285F4;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.google-rating-box .stars {
  color: #FBBF24;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.fleet-count-tag {
  font-size: 0.88rem;
  color: #94A3B8;
  font-weight: 600;
}

/* ==========================================================================
   Hero Booking Engine Card
   ========================================================================== */
.hero-booking-card {
  background: #FFFFFF;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card-top-header {
  margin-bottom: 16px;
  text-align: center;
}

.badge-flash {
  display: inline-block;
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
}

.card-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Trip Tabs */
.trip-tabs {
  display: flex;
  background: #F1F5F9;
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  gap: 4px;
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: #FFFFFF;
  color: var(--accent-blue);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

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

.input-field-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.input-field-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .field-icon {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 17px;
  color: #94A3B8;
  pointer-events: none;
}

.input-with-icon .field-icon.green {
  color: #10B981;
}

.input-with-icon .field-icon.red {
  color: #EF4444;
}

.field-country-code {
  position: absolute;
  left: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.input-with-icon select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 28px;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  border-color: var(--border-focus);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.quick-suggest-tags {
  display: flex;
  gap: 5px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.quick-suggest-tags span {
  font-size: 0.7rem;
  background: #F1F5F9;
  color: #475569;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quick-suggest-tags span:hover {
  background: #E0E7FF;
  color: #1D4ED8;
}

/* Dynamic Fare Banner */
.dynamic-fare-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EFF6FF;
  border: 1px dashed #93C5FD;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.fare-banner-left {
  display: flex;
  flex-direction: column;
}

.fare-label {
  font-size: 0.72rem;
  color: #1E40AF;
  font-weight: 700;
  text-transform: uppercase;
}

.fare-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1E3A8A;
}

.fare-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.fare-tag {
  font-size: 0.72rem;
  color: #047857;
  font-weight: 600;
}

/* Submit Actions */
.form-action-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-submit-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-submit-booking:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-direct-call-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #1E293B;
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 11px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.btn-direct-call-form:hover {
  background: #0F172A;
}

.btn-submit-booking .icon,
.btn-direct-call-form .icon {
  width: 18px;
  height: 18px;
}

.form-trust-footer {
  text-align: center;
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 10px;
}

/* ==========================================================================
   Stat Counter Bar
   ========================================================================== */
.stat-counter-bar {
  background: #0B1120;
  color: #FFFFFF;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #FBBF24;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
}

/* ==========================================================================
   Section Headers (Shared)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-pill {
  display: inline-block;
  background: #EFF6FF;
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  letter-spacing: 0.8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Popular Routes Section
   ========================================================================== */
.routes-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.route-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93C5FD;
}

.route-card.popular-highlight {
  border: 2px solid var(--accent-blue);
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 30%);
}

.route-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #EFF6FF;
  color: var(--accent-blue);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.route-badge.hill {
  background: #ECFDF5;
  color: #059669;
}

.route-badge.religious {
  background: #FEF3C7;
  color: #D97706;
}

.route-cities {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  margin-top: 10px;
}

.city-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pin-dot.green { background: #10B981; }
.pin-dot.red { background: #EF4444; }

.route-arrow {
  color: #94A3B8;
  font-weight: 700;
}

.route-specs {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: #64748B;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 16px;
}

.route-pricing {
  margin-bottom: 18px;
}

.price-prefix {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  margin: 2px 0;
}

.price-note {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 600;
}

.btn-route-book {
  width: 100%;
  border: none;
  background: #1E293B;
  color: #FFFFFF;
  padding: 11px 0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.2s ease;
}

.btn-route-book:hover {
  background: var(--accent-blue);
}

.route-card.popular-highlight .btn-route-book {
  background: var(--accent-blue);
}

.route-card.popular-highlight .btn-route-book:hover {
  background: #1D4ED8;
}

/* Custom Route Callout */
.custom-route-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  gap: 16px;
}

.callout-text {
  display: flex;
  flex-direction: column;
}

.callout-text strong {
  font-size: 1.1rem;
}

.callout-text span {
  font-size: 0.9rem;
  color: #94A3B8;
}

.btn-custom-quote {
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-glow-wa);
}

.btn-custom-quote:hover {
  background: var(--whatsapp-dark);
}

/* ==========================================================================
   Fleet Showcase Section
   ========================================================================== */
.fleet-section {
  padding: 80px 0;
  background: #F8FAFC;
}

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

.fleet-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-card.popular-fleet {
  border: 2px solid #F59E0B;
}

.fleet-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.fleet-card-badge.best-family {
  background: #D97706;
}

.fleet-card-badge.luxury {
  background: #1E40AF;
}

.fleet-card-badge.group {
  background: #047857;
}

.fleet-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #E2E8F0;
}

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

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

.fleet-details {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.fleet-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.fleet-specs-list {
  list-style: none;
  font-size: 0.82rem;
  color: #334155;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fleet-specs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-dot {
  color: #10B981;
  font-weight: 800;
}

.fleet-pricing-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fare-rate {
  display: flex;
  flex-direction: column;
}

.rate-prefix {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.rate-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.btn-book-fleet {
  border: none;
  background: #1E293B;
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-book-fleet:hover {
  background: var(--accent-blue);
}

.btn-book-fleet.btn-accent {
  background: #D97706;
}

.btn-book-fleet.btn-accent:hover {
  background: #B45309;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.feature-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #93C5FD;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  background: #EFF6FF;
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Tour Packages Section
   ========================================================================== */
.packages-section {
  padding: 80px 0;
  background: #F1F5F9;
}

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

.package-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

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

.package-header {
  margin-bottom: 16px;
}

.package-duration {
  display: inline-block;
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.package-route {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.4;
}

.package-perks {
  list-style: none;
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-price {
  font-size: 0.88rem;
  color: #475569;
}

.pkg-price strong {
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.btn-pkg-inquire {
  width: 100%;
  border: none;
  background: #25D366;
  color: #FFFFFF;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-pkg-inquire:hover {
  background: var(--whatsapp-dark);
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.review-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.95rem;
  color: #334155;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1E40AF 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-details strong {
  font-size: 0.92rem;
  color: var(--primary-navy);
}

.reviewer-details span {
  font-size: 0.78rem;
  color: #64748B;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.faq-container {
  max-width: 840px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: #93C5FD;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.toggle-icon {
  font-size: 1.3rem;
  color: var(--accent-blue);
  font-weight: 700;
}

.faq-item[open] .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-top: 12px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* ==========================================================================
   SEO Content Block
   ========================================================================== */
.seo-content-block {
  padding: 40px 0 60px;
  background: #FFFFFF;
}

.seo-card {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  font-size: 0.88rem;
  color: #475569;
}

.seo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.seo-card p {
  margin-bottom: 10px;
  line-height: 1.65;
}

.seo-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #090E17;
  color: #94A3B8;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo .brand-title {
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-direct-call {
  display: flex;
  flex-direction: column;
}

.footer-direct-call span {
  font-size: 0.78rem;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-phone-big {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FBBF24;
}

.footer-phone-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E2E8F0;
}

.footer-heading {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94A3B8;
}

.footer-links a:hover {
  color: #38BDF8;
  padding-left: 4px;
}

.footer-contact-item {
  margin-bottom: 14px;
  font-size: 0.86rem;
}

.icon-label {
  display: block;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 2px;
}

.footer-contact-item a {
  color: #38BDF8;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  color: #34D399;
  font-weight: 600;
}

/* ==========================================================================
   Mobile Sticky Bar (High Google Ads Conversion)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  gap: 8px;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.sticky-call {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}

.sticky-wa {
  background: #25D366;
}

.sticky-btn .icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Floating Desktop WhatsApp Widget
   ========================================================================== */
.floating-desktop-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: float-pulse 2s infinite ease-in-out;
  cursor: pointer;
}

.wa-icon-circle svg {
  width: 32px;
  height: 32px;
}

.online-status-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #10B981;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.wa-tooltip {
  background: #0F172A;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
}

/* Keyframe Animations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes pulse-ring-glow {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

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

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Tablet & Mobile Perfection)
   ========================================================================== */

/* Tablet (Landscape & Portrait, 769px to 1024px) */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none; /* Replaced by elegant mobile & tablet drawer */
  }

  .mobile-menu-btn {
    display: flex; /* Display hamburger on tablet */
  }

  .top-bar-inner {
    font-size: 0.8rem;
    gap: 6px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .hero-section {
    padding: 44px 0 64px;
  }

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

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 4.2vw, 2.75rem);
  }

  .hero-subtext {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }

  .hero-cta-group,
  .social-proof-strip {
    justify-content: center;
  }

  .hero-booking-card {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .stat-counter-bar {
    padding: 26px 0;
  }

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

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

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

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

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

  .packages-grid .package-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

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

  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .custom-route-callout {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }

  .footer-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-announcement-bar {
    display: none; /* Keep mobile viewport clean & clutter-free */
  }

  .nav-wrapper {
    height: 64px;
  }

  .brand-emblem {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-emblem svg {
    width: 22px;
    height: 22px;
  }

  .brand-title {
    font-size: 1.05rem;
    letter-spacing: -0.3px;
  }

  .brand-sub {
    font-size: 0.68rem;
  }

  .header-action-group {
    gap: 8px;
  }

  .btn-call-header {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .btn-call-header .call-txt {
    display: inline-block;
  }

  .btn-call-header .pulse-ring {
    left: 8px;
  }

  .btn-wa-header {
    padding: 8px 10px;
  }

  .btn-wa-header .wa-txt {
    display: none; /* Save space for hamburger button */
  }

  .mobile-menu-btn {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  /* Mobile Sticky Bottom CTA Bar */
  .mobile-sticky-bar {
    display: flex;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .sticky-btn {
    padding: 12px 10px;
    font-size: 0.95rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .floating-desktop-wa {
    display: none; /* Provided via sticky bar */
  }

  /* Hero Section */
  .hero-section {
    padding: 30px 0 44px;
  }

  .hero-badge-pill {
    font-size: 0.76rem;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .trust-item {
    padding: 8px 10px;
    gap: 8px;
    border-radius: var(--radius-sm);
  }

  .trust-item .check-icon {
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
    margin-top: 2px;
  }

  .trust-info strong {
    font-size: 0.78rem;
  }

  .trust-info span {
    font-size: 0.7rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .btn-primary-hero,
  .btn-whatsapp-hero {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .social-proof-strip {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding-top: 12px;
  }

  .fleet-count-tag {
    font-size: 0.8rem;
  }

  /* Booking Form Engine */
  .hero-booking-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .badge-flash {
    font-size: 0.7rem;
    padding: 2px 8px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-subtitle {
    font-size: 0.76rem;
  }

  .trip-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
    margin-bottom: 14px;
  }

  .tab-btn {
    padding: 9px 4px;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  /* CRITICAL: iOS Safari 16px minimum to avoid viewport auto-zoom glitch */
  .input-with-icon input,
  .input-with-icon select {
    font-size: 16px;
    padding: 11px 12px 11px 38px;
    min-height: 44px;
  }

  .quick-suggest-tags {
    gap: 6px;
    margin-top: 6px;
  }

  .quick-suggest-tags span {
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .dynamic-fare-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }

  .fare-banner-left {
    width: 100%;
  }

  .fare-value {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .fare-banner-right {
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn-submit-booking {
    padding: 14px;
    font-size: 0.98rem;
  }

  .btn-direct-call-form {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Stat Counter Bar */
  .stat-counter-bar {
    padding: 24px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
  }

  .stat-num {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.76rem;
  }

  /* Sections Shared */
  .routes-section,
  .fleet-section,
  .why-us-section,
  .packages-section,
  .reviews-section,
  .faq-section {
    padding: 50px 0;
  }

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

  .section-title {
    font-size: 1.65rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  /* Route Cards */
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

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

  .route-cities {
    flex-wrap: wrap;
    gap: 6px;
  }

  .city-step {
    font-size: 0.88rem;
  }

  .btn-route-book {
    padding: 12px 0;
  }

  /* Fleet Cards */
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-img-wrap {
    height: 190px;
  }

  .fleet-details {
    padding: 18px 16px;
  }

  .btn-book-fleet {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  /* Features / Why Us */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .packages-grid .package-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .package-card {
    padding: 22px 18px;
  }

  .btn-pkg-inquire {
    padding: 12px 0;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-grid .review-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .review-card {
    padding: 22px 18px;
  }

  /* FAQ Accordion */
  .faq-item {
    padding: 14px 16px;
  }

  .faq-question {
    font-size: 0.96rem;
  }

  .faq-answer {
    font-size: 0.88rem;
  }

  /* SEO Card */
  .seo-content-block {
    padding: 30px 0 40px;
  }

  .seo-card {
    padding: 20px 16px;
  }

  /* Footer */
  .site-footer {
    padding: 44px 0 16px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Extra Small Phones (max-width: 380px, e.g. iPhone SE) */
@media (max-width: 380px) {
  .brand-title {
    font-size: 0.92rem;
  }

  .brand-sub {
    display: none;
  }

  .btn-call-header .call-txt {
    display: none; /* Show phone icon only on extra small phones */
  }

  .btn-call-header {
    padding: 8px 10px;
  }

  .hero-headline {
    font-size: 1.55rem;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .trip-tabs {
    gap: 4px;
    padding: 4px;
  }

  .tab-btn {
    font-size: 0.74rem;
    padding: 8px 2px;
  }
}
