:root {
  --gold: #FBB801;
  --gold-dark: #d49b00;
  --gold-light: #ffd055;
  --navy: #0f1b2d;
  --navy-mid: #1a2e4a;
  --navy-light: #243c5f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --success: #28a745;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; font-size: 16px; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ═══ TOPBAR ═══ */
.topbar { background: var(--navy); color: rgba(255,255,255,.8); font-size: 13px; padding: 8px 0; }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--gold); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-contacts { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-contacts a { display: flex; align-items: center; gap: 6px; }
.topbar-contacts i { color: var(--gold); }
.topbar-promo { font-weight: 600; color: var(--gold); }

/* ═══ NAVBAR ═══ */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,.08); transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.navbar-brand img { height: 52px; width: auto; display: block; }
.navbar-brand span { font-size: 20px; font-weight: 800; color: var(--navy); }
.navbar-brand strong { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 14px; color: var(--text-dark); }
.nav-links a:hover, .nav-links a.active { background: var(--off-white); color: var(--gold-dark); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; border-radius: 8px; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }
.navbar-toggle { display: none; background: none; border: 1px solid #ddd; padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 18px; color: var(--navy); }

/* ═══ HERO ═══ */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0d1f35 100%); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 60px 0; }
.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='%23FBB801' 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-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(251,184,1,.12) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(251,184,1,.15); border: 1px solid rgba(251,184,1,.3); color: var(--gold); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 13px; }
.trust-item i { color: var(--gold); }

/* ═══ BOOKING FORM ═══ */
.booking-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 32px; position: relative; z-index: 2; }
.booking-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.booking-card h3 i { color: var(--gold); }
.trip-toggle { display: flex; background: var(--off-white); border-radius: 10px; padding: 4px; margin-bottom: 16px; gap: 4px; }
.trip-btn { flex: 1; border: none; background: none; padding: 8px 12px; border-radius: 8px; font-weight: 600; font-size: 13px; cursor: pointer; color: var(--text-muted); transition: var(--transition); }
.trip-btn.active { background: var(--navy); color: var(--white); }
.trip-type-toggle { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.trip-type-btn { border: 2px solid #e9ecef; background: none; padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: var(--transition); }
.trip-type-btn.active { border-color: var(--gold); background: rgba(251,184,1,.08); color: var(--gold-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.form-control { border: 1.5px solid #e9ecef; border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--text-dark); background: var(--off-white); transition: var(--transition); width: 100%; }
.form-control:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(251,184,1,.12); }
.form-control::placeholder { color: #adb5bd; }
.btn-book { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border: none; padding: 14px; border-radius: 10px; font-size: 16px; font-weight: 800; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; }
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,184,1,.4); }
.btn-book:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--transition); border: none; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,184,1,.4); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ═══ CONTAINER ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .label { display: inline-block; background: rgba(251,184,1,.12); color: var(--gold-dark); padding: 5px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-title h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-title h2 span { color: var(--gold); }
.section-title p { color: var(--text-muted); font-size: 17px; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ═══ STATS ═══ */
.stats-section { background: var(--navy); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-card:last-child { border-right: none; }
.stat-card .num { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-card .plus { font-size: 2rem; color: var(--gold); }
.stat-card p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 6px; }

/* ═══ SERVICE CARDS ═══ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); border: 1.5px solid #e9ecef; padding: 32px 24px; transition: var(--transition); text-align: center; }
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(251,184,1,.12), rgba(251,184,1,.2)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; color: var(--gold-dark); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ═══ FLEET CARDS ═══ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1.5px solid #e9ecef; }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.fleet-img { height: 200px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 60px; color: var(--gold); position: relative; overflow: hidden; }
.fleet-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(251,184,1,.08), transparent); pointer-events: none; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform 0.4s ease; display: block; }
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-price { display: flex; align-items: center; justify-content: flex-end; padding-top: 14px; border-top: 1px solid #f0f0f0; }
.fleet-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.fleet-body { padding: 20px; }
.fleet-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.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); }
.fleet-spec i { color: var(--gold); }
.fleet-price { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid #f0f0f0; }
.fleet-price .price { font-size: 20px; font-weight: 800; color: var(--navy); }
.fleet-price .price small { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ═══ ROUTES ═══ */
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route-card { background: var(--white); border-radius: var(--radius); border: 1.5px solid #e9ecef; padding: 20px; transition: var(--transition); cursor: pointer; }
.route-card:hover { border-color: var(--gold); background: rgba(251,184,1,.03); transform: translateY(-3px); box-shadow: var(--shadow); }
.route-from-to { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.route-from-to span { font-weight: 700; color: var(--navy); font-size: 14px; }
.route-from-to i { color: var(--gold); font-size: 12px; flex-shrink: 0; }
.route-distance { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.route-price { font-size: 18px; font-weight: 800; color: var(--gold-dark); }
.route-price small { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.route-time { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 4px; }

/* ═══ WHY US ═══ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--off-white); border-radius: var(--radius); transition: var(--transition); }
.why-item:hover { background: rgba(251,184,1,.06); }
.why-icon { width: 48px; height: 48px; background: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--navy); flex-shrink: 0; }
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══ CHARDHAM SECTION ═══ */
.chardham-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); }
.chardham-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dham-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px 16px; text-align: center; transition: var(--transition); }
.dham-card:hover { background: rgba(251,184,1,.12); border-color: rgba(251,184,1,.3); }
.dham-card i { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.dham-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.dham-card p { font-size: 12px; color: rgba(255,255,255,.6); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: var(--transition); border-top: 3px solid var(--gold); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 16px; overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-info strong { display: block; font-size: 14px; color: var(--navy); }
.author-info small { color: var(--text-muted); font-size: 12px; }

/* ═══ FAQ ═══ */
.faq-item { border: 1.5px solid #e9ecef; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 15px; transition: var(--transition); }
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: rgba(251,184,1,.06); color: var(--gold-dark); }
.faq-question .faq-icon { width: 28px; height: 28px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.8; border-top: 1px solid #f0f0f0; margin-top: -1px; padding-top: 16px; }
.faq-answer.open { display: block; }

/* ═══ CTA SECTION ═══ */
.cta-section { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-text h2 { font-size: 2rem; font-weight: 800; color: var(--navy); }
.cta-text p { color: rgba(15,27,45,.7); margin-top: 6px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-white { background: var(--white); color: var(--navy); border: none; padding: 14px 28px; border-radius: 10px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; transition: var(--transition); }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: var(--navy); }
.btn-cta-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 14px 28px; border-radius: 10px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; transition: var(--transition); }
.btn-cta-outline:hover { background: var(--navy); color: var(--white); }

/* ═══ FOOTER ═══ */
footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); font-size: 14px; }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.6); margin: 0 8px; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══ FLOATING BUTTONS ═══ */
.float-actions { position: fixed; right: 20px; bottom: 30px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white); text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: var(--transition); }
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-wa { background: #25D366; }
.float-call { background: var(--gold); color: var(--navy); }
.float-call:hover { color: var(--navy); }

/* ═══ INNER PAGE HERO ═══ */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 80px 0 60px; color: var(--white); text-align: center; }
.page-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ═══ CONTENT SECTION ═══ */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.content-body h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.content-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.content-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.content-body ul { margin: 0 0 16px 20px; }
.content-body ul li { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.sticky-form { position: sticky; top: 90px; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.contact-info-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.contact-info-card h3 span { color: var(--gold); }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .icon { width: 44px; height: 44px; background: rgba(251,184,1,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 13px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-detail a, .contact-detail p { color: var(--white); font-size: 15px; }
.contact-detail a:hover { color: var(--gold); }
.map-embed { width: 100%; height: 280px; border-radius: var(--radius); border: none; margin-top: 20px; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1.5px solid #e9ecef; }
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }

/* ═══ ALERTS ═══ */
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

/* ═══ ADMIN ═══ */
.admin-body { background: #f0f2f5; min-height: 100vh; }
.admin-sidebar { width: 260px; background: var(--navy); min-height: 100vh; position: fixed; top: 0; left: 0; z-index: 100; }
.admin-sidebar-brand { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-sidebar-brand h4 { color: var(--white); font-size: 16px; font-weight: 800; }
.admin-sidebar-brand h4 span { color: var(--gold); }
.admin-sidebar-brand small { color: rgba(255,255,255,.5); font-size: 11px; }
.admin-nav { padding: 16px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.08); color: var(--white); }
.admin-nav a.active { border-left: 3px solid var(--gold); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-nav .nav-section { padding: 10px 20px 4px; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.35); font-weight: 700; }
.admin-main { margin-left: 260px; padding: 24px; }
.admin-topbar { background: var(--white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h1 { font-size: 20px; font-weight: 800; color: var(--navy); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.kpi-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; }
.kpi-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.kpi-icon.gold { background: rgba(251,184,1,.12); color: var(--gold-dark); }
.kpi-icon.blue { background: rgba(37,99,235,.1); color: #2563eb; }
.kpi-icon.green { background: rgba(22,163,74,.1); color: #16a34a; }
.kpi-icon.purple { background: rgba(124,58,237,.1); color: #7c3aed; }
.kpi-card .kpi-val { font-size: 28px; font-weight: 800; color: var(--navy); }
.kpi-card .kpi-label { font-size: 13px; color: var(--text-muted); }
.admin-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.admin-card-header { padding: 18px 24px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f8f9fa; padding: 12px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); text-align: left; }
.admin-table td { padding: 14px 16px; font-size: 14px; color: var(--text-dark); border-top: 1px solid #f5f5f5; }
.admin-table tr:hover td { background: #fafafa; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-booked { background: #d1fae5; color: #065f46; }
.badge-lost { background: #fee2e2; color: #991b1b; }
.erp-banner { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: var(--radius-lg); padding: 28px; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.erp-banner h3 { font-size: 18px; font-weight: 800; }
.erp-banner h3 span { color: var(--gold); }
.erp-banner p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 4px; }
.seo-page-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.seo-page-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1.5px solid #e9ecef; }
.seo-page-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.seo-page-card .seo-path { font-size: 12px; color: var(--gold-dark); font-family: monospace; margin-bottom: 12px; }
.seo-field { margin-bottom: 10px; }
.seo-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 4px; }
.seo-field input, .seo-field textarea { width: 100%; border: 1.5px solid #e9ecef; border-radius: 8px; padding: 8px 12px; font-size: 13px; color: var(--text-dark); resize: vertical; }
.seo-field input:focus, .seo-field textarea:focus { outline: none; border-color: var(--gold); }
.ai-generate-btn { background: linear-gradient(135deg, #7c3aed, #5b21b6); color: var(--white); border: none; padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.ai-generate-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(124,58,237,.3); }
.ai-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(124,58,237,.1); color: #7c3aed; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; }

/* ═══ HOW IT WORKS ═══ */
.how-section { background: var(--off-white); }
.how-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 16px; }
.how-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); border: 1.5px solid #e9ecef; position: relative; transition: var(--transition); }
.how-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(251,184,1,.4); }
.how-icon { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(251,184,1,.12), rgba(251,184,1,.22)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 8px auto 20px; font-size: 30px; color: var(--gold-dark); }
.how-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.how-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.how-connector { font-size: 28px; color: var(--gold); opacity: .5; }

/* ═══ FARE ESTIMATOR ═══ */
.fare-section { background: var(--white); }
.fare-card { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; }
.fare-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.fare-group { display: flex; flex-direction: column; gap: 6px; }
.fare-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.6); }
.fare-control { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); color: var(--white); border-radius: 10px; padding: 12px 14px; font-size: 14px; width: 100%; transition: var(--transition); }
.fare-control:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.15); }
.fare-control option { background: var(--navy); color: var(--white); }
.fare-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border: none; padding: 15px 40px; border-radius: 10px; font-size: 16px; font-weight: 800; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 10px; }
.fare-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,184,1,.4); }
.fare-result { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; }
.fare-result-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.fare-breakdown { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 24px; }
.fare-line { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); font-size: 14px; }
.fare-line strong { color: var(--white); font-size: 15px; }
.fare-line-note { border-bottom: none; padding-bottom: 4px; }
.fare-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; margin-top: 4px; }
.fare-total span { font-size: 16px; font-weight: 700; color: var(--white); }
.fare-total strong { font-size: 28px; font-weight: 800; color: var(--gold); }
.fare-cta { text-align: center; }
.fare-note { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.btn-outline-dark { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.btn-outline-dark:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-wa { background: #25D366; color: var(--white); display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.btn-wa:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }

/* ═══ PRICING TABLE ═══ */
.pricing-section { background: var(--off-white); }
.pricing-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); }
.pricing-table thead tr { background: var(--navy); }
.pricing-table th { padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); white-space: nowrap; }
.pricing-table td { padding: 16px 20px; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: var(--text-dark); vertical-align: middle; }
.pricing-table td strong { display: block; font-weight: 700; color: var(--navy); }
.pricing-table td small { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.pricing-table tbody tr:hover td { background: rgba(251,184,1,.04); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-featured td { background: rgba(251,184,1,.05); }
.pricing-featured td:first-child { border-left: 3px solid var(--gold); }
.price-cell { font-weight: 800; color: var(--gold-dark) !important; font-size: 15px !important; }
.pricing-notes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.pnote { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); background: var(--white); padding: 8px 16px; border-radius: 20px; }
.pnote i { color: var(--success); }

/* ═══ BACK TO TOP ═══ */
.back-to-top { position: fixed; right: 84px; bottom: 30px; width: 44px; height: 44px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 998; box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: var(--transition); opacity: 0; pointer-events: none; transform: translateY(10px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ═══ MOBILE STICKY BAR ═══ */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050; background: var(--navy); border-top: 2px solid var(--gold); }
.mobile-sticky-bar .sticky-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-sticky-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; font-size: 15px; font-weight: 700; text-decoration: none; }
.mobile-sticky-bar .sticky-call { background: var(--gold); color: var(--navy); }
.mobile-sticky-bar .sticky-wa { background: #25D366; color: var(--white); }

/* ═══ AI CHATBOT WIDGET ═══ */
#cwChatWidget { position: fixed; left: 20px; bottom: 30px; z-index: 1200; }
@media (max-width: 768px) { #cwChatWidget { bottom: 74px; left: 12px; } }

/* Toggle button */
.cw-chat-toggle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.28); transition: var(--transition); position: relative; }
.cw-chat-toggle:hover, .cw-chat-toggle.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border-color: var(--navy); transform: scale(1.08); }
.cw-badge { position: absolute; top: -4px; right: -4px; background: #ef4444; color: var(--white); width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid var(--white); animation: pulse-dot 1.6s infinite; }

/* Panel */
.cw-chat-panel { position: absolute; bottom: 68px; left: 0; width: 348px; max-height: 520px; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 12px 48px rgba(0,0,0,.22); display: none; flex-direction: column; overflow: hidden; border: 1.5px solid #e9ecef; transform-origin: bottom left; }
.cw-panel-open { animation: cwPanelIn 0.25s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes cwPanelIn { from { opacity: 0; transform: scale(0.92) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@media (max-width: 480px) { .cw-chat-panel { width: calc(100vw - 24px); } }

/* Header */
.cw-panel-header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.cw-header-info { display: flex; align-items: center; gap: 10px; }
.cw-bot-avatar { width: 38px; height: 38px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cw-bot-name { font-size: 15px; font-weight: 700; color: var(--white); }
.cw-bot-status { font-size: 11px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.cw-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; animation: pulse-dot 2s infinite; }
.cw-header-actions { display: flex; align-items: center; gap: 6px; }
.cw-close-btn, .cw-clear-btn { background: rgba(255,255,255,.12); border: none; color: rgba(255,255,255,.8); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; transition: var(--transition); }
.cw-close-btn:hover, .cw-clear-btn:hover { background: rgba(255,255,255,.25); color: var(--white); }

/* Messages */
.cw-messages { flex: 1; overflow-y: auto; padding: 16px 14px 8px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; }
.cw-messages::-webkit-scrollbar { width: 4px; }
.cw-messages::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }
.cw-msg-wrap { display: flex; align-items: flex-end; gap: 7px; }
.cw-msg-user { flex-direction: row-reverse; }
.cw-msg-in { animation: cwMsgIn 0.2s ease forwards; }
@keyframes cwMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cw-msg-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; align-self: flex-end; }
.cw-bubble { padding: 10px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.6; max-width: 240px; word-break: break-word; }
.cw-bubble-bot { background: var(--off-white); color: var(--text-dark); border-bottom-left-radius: 4px; border: 1px solid #eee; }
.cw-bubble-bot strong { color: var(--navy); }
.cw-bubble-bot code { background: #f0f0f0; padding: 1px 5px; border-radius: 4px; font-size: 12px; }
.cw-bubble-user { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); border-bottom-right-radius: 4px; }

/* Typing indicator */
.cw-typing { display: flex; align-items: center; gap: 4px; padding: 12px 16px; }
.cw-typing span { width: 7px; height: 7px; background: var(--text-muted); border-radius: 50%; animation: cwDot 1.2s infinite; }
.cw-typing span:nth-child(2) { animation-delay: .2s; }
.cw-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cwDot { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

/* Quick replies */
.cw-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 14px 8px; flex-shrink: 0; }
.cw-qr-btn { background: rgba(251,184,1,.1); border: 1px solid rgba(251,184,1,.4); color: var(--gold-dark); padding: 5px 11px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.cw-qr-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Input */
.cw-input-area { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid #f0f0f0; flex-shrink: 0; background: var(--white); }
.cw-input { flex: 1; border: 1.5px solid #e9ecef; border-radius: 22px; padding: 9px 14px; font-size: 13.5px; color: var(--text-dark); outline: none; transition: var(--transition); }
.cw-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(251,184,1,.1); }
.cw-send-btn { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border: none; color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; flex-shrink: 0; transition: var(--transition); }
.cw-send-btn:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(251,184,1,.4); }
.cw-send-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Footer */
.cw-panel-footer { text-align: center; padding: 7px; font-size: 11px; color: var(--text-muted); border-top: 1px solid #f5f5f5; flex-shrink: 0; }
.cw-panel-footer a { color: var(--gold-dark); font-weight: 600; }

/* Lead capture form inside chat */
.cw-lead-bubble { padding: 14px 16px !important; }
.cw-lead-field { margin-bottom: 10px; }
.cw-lead-label { display: block; font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.cw-lead-input { width: 100%; padding: 9px 12px; border: 1.5px solid #dde3ea; border-radius: 8px; font-size: 13px; color: var(--text-dark); background: var(--white); outline: none; transition: var(--transition); box-sizing: border-box; }
.cw-lead-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(251,184,1,.12); }
.cw-lead-submit { width: 100%; padding: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); font-weight: 700; font-size: 13.5px; border: none; border-radius: 8px; cursor: pointer; margin-top: 4px; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 7px; }
.cw-lead-submit:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(251,184,1,.4); }
.cw-lead-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: .6; } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
.fade-in-up { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.fade-in-up-1 { animation-delay: .1s; }
.fade-in-up-2 { animation-delay: .2s; }
.fade-in-up-3 { animation-delay: .3s; }
.fade-in-up-4 { animation-delay: .4s; }

/* ═══ UTILITIES ═══ */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 800; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .fleet-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chardham-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-main { margin-left: 0; }
  .admin-sidebar { display: none; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); flex-direction: column; padding: 16px; gap: 0; }
  .nav-links.open { display: flex; }
  .navbar-toggle { display: flex; }
  .navbar-inner { flex-wrap: wrap; }
  .hero { min-height: auto; padding: 50px 0 40px; }
  .hero h1 { font-size: 1.8rem; }
  .services-grid, .fleet-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .seo-page-list { grid-template-columns: 1fr; }
  .chardham-grid { grid-template-columns: repeat(2, 1fr); }
  /* New sections */
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-connector { display: none; }
  .fare-result-inner { grid-template-columns: 1fr; }
  .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: 13px; }
  /* Mobile sticky bar */
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 58px; }
  .float-actions { bottom: 74px; }
  .back-to-top { bottom: 74px; }
}
@media (max-width: 480px) {
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
