/* ============================================================
   CITY CAB INDORE - Main Stylesheet
   Color Palette:
   #F8F8F8  - Soft White (Main Background)
   #FFFFFF  - Pure White (Section Background)
   #111111  - Rich Black (Primary Text)
   #555555  - Dark Grey (Secondary Text)
   #E5E5E5  - Light Grey (Border)
   #ED1C24  - Taxi Red (Primary)
   #C8102E  - Deep Red (Hover)
   #F4B400  - Taxi Yellow (Accent)
   #D89B00  - Dark Gold (Hover)
   ============================================================ */

:root {
    --bg-main: #F8F8F8;
    --bg-white: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #555555;
    --border: #E5E5E5;
    --red: #ED1C24;
    --red-dark: #C8102E;
    --yellow: #F4B400;
    --yellow-dark: #D89B00;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-main); color: var(--text-primary); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ---- Topbar ---- */
.topbar {
    background: var(--text-primary);
    color: #aaa;
    font-size: 0.8rem;
    padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-left span, .topbar-right a { display: inline-flex; align-items: center; gap: 5px; margin-right: 15px; }
.topbar-right a { color: #ddd; }
.topbar-right a:hover { color: var(--yellow); }
.topbar i { color: var(--yellow); }

/* ---- Header ---- */
.main-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 60%, #111 100%);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 3px 20px rgba(0,0,0,0.35);
    transition: var(--transition);
    border-bottom: 2px solid rgba(237,28,36,0.4);
}
.main-header.scrolled { 
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
}
.main-header .container {
    display: flex; align-items: center; gap: 20px;
    padding: 0 20px;
}

/* Logo */
.logo a { display: flex; align-items: center; gap: 0; }
.logo-img-dark  { display: none !important; }
.logo-img-light { 
    display: block !important;
    height: 130px; width: auto;
    filter: drop-shadow(0 2px 8px rgba(237,28,36,0.3));
    transition: var(--transition);
}
.logo-img-light:hover { 
    filter: drop-shadow(0 4px 14px rgba(237,28,36,0.55));
    transform: scale(1.03);
}
/* Nav links - white on dark header */

/* Nav links - white on dark header */
/* Nav */
.main-nav { flex: 1; margin-left: 20px; }
.main-nav > ul { display: flex; gap: 5px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block; padding: 8px 14px;
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.88);
    border-radius: 6px;
    transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--yellow); background: rgba(244,180,0,0.08); }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--bg-white); min-width: 220px;
    box-shadow: var(--shadow-lg); border-radius: var(--radius);
    border-top: 3px solid var(--red);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; font-size: 0.9rem; color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--red); background: #fff5f5; padding-left: 22px; }
.dropdown li a i { color: var(--red); width: 16px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 18px; border: 2px solid var(--yellow);
    color: var(--yellow); font-weight: 600; font-size: 0.85rem;
    border-radius: 50px; font-family: var(--font-heading);
}
.btn-call:hover { background: var(--yellow); color: #111; }
.btn-book {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 22px; background: var(--red);
    color: #fff; font-weight: 700; font-size: 0.9rem;
    border-radius: 50px; font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.btn-book:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(237,28,36,0.4); }

.nav-toggle { 
    display: none; flex-direction: column; gap: 6px; 
    cursor: pointer; padding: 10px; 
    background: rgba(237,28,36,0.15); 
    border: 1.5px solid rgba(237,28,36,0.4);
    border-radius: 8px;
    margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; overflow: hidden; height: 70vh; min-height: 420px; max-height: 700px; }
/* Mobile hero - static single image, shown only on mobile */
.mobile-hero {
    display: none;
    position: relative;
    height: 52vw; min-height: 220px; max-height: 340px;
    background-size: cover; background-position: center;
}
.mobile-hero-content {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 20px;
    color: #fff;
}
.mobile-hero-content h1 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.8rem);
    letter-spacing: 2px; text-transform: uppercase; line-height: 1;
    margin: 10px 0 6px;
}
.mobile-hero-content h1 span { color: var(--yellow); }
.mobile-hero-content p {
    font-size: 0.8rem; color: rgba(255,255,255,0.85);
    margin-bottom: 16px; letter-spacing: 1px;
}
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.2) 100%);
}
.slide-content {
    position: relative; z-index: 2;
    display: flex; align-items: center;
    height: 100%; padding: 0;
}
.slide-content .container { display: flex; align-items: center; }
.slide-text { max-width: 680px; }
.slide-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--yellow); color: #111; padding: 6px 14px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
    animation: fadeInDown 0.5s ease;
}
.slide-title {
    font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff; line-height: 1;
    letter-spacing: 3px; text-transform: uppercase;
    animation: fadeInUp 0.6s ease;
}
.slide-title span { color: var(--yellow); }
.slide-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.85);
    margin: 14px 0 28px; max-width: 480px;
    animation: fadeInUp 0.7s ease;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; background: var(--red);
    color: #fff; font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    border-radius: 50px; border: none; cursor: pointer; letter-spacing: 1px;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(237,28,36,0.35); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; background: transparent;
    color: #fff; font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    border-radius: 50px; border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Hero Booking Bar (outside slider) */
.hero-booking-wrap {
    background: var(--text-primary);
    padding: 0 0 4px;
    position: relative; z-index: 10;
}
.hero-booking-panel {
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 0 24px 20px;
}
.hero-booking-panel .tab-btns {
    display: flex; gap: 0; margin-bottom: 0;
    border-bottom: 3px solid var(--border);
}
.hero-booking-panel .tab-btn {
    flex: 1; padding: 14px 10px;
    background: transparent; border: none; border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
    color: var(--text-secondary); cursor: pointer;
    transition: var(--transition); border-radius: 0;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.hero-booking-panel .tab-btn.active {
    color: var(--red); border-bottom-color: var(--red); background: transparent;
}
.hero-booking-panel .tab-btn i { font-size: 0.8rem; }
.hbf-form { padding-top: 18px; }
.hbf-fields {
    display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap;
}
.hbf-field {
    flex: 1; min-width: 160px;
}
.hbf-field-sm { flex: 0.6; min-width: 120px; }
.hbf-field label {
    display: block; font-size: 0.72rem; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hbf-field label i { color: var(--red); margin-right: 4px; }
.hbf-field input, .hbf-field select {
    width: 100%; padding: 11px 14px;
    border: 2px solid var(--border); border-radius: 8px;
    font-size: 0.88rem; font-family: var(--font-body);
    background: var(--bg-main); transition: var(--transition);
    color: var(--text-primary);
}
.hbf-field input:focus, .hbf-field select:focus {
    border-color: var(--red); outline: none; background: #fff;
}
.hbf-arrow {
    color: var(--red); font-size: 1.2rem;
    padding-bottom: 12px; flex: 0; min-width: 24px; text-align: center;
}
.hbf-btn {
    padding: 12px 28px; background: var(--red); color: #fff;
    border: none; border-radius: 8px; cursor: pointer;
    font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    letter-spacing: 1px; transition: var(--transition);
    white-space: nowrap; align-self: flex-end;
    display: flex; align-items: center; gap: 8px;
}
.hbf-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.tab-btns { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.tab-btn {
    flex: 1; min-width: 80px; padding: 7px 10px;
    background: var(--bg-main); border: 2px solid var(--border);
    border-radius: 8px; font-family: var(--font-heading); font-size: 0.85rem;
    font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--text-secondary);
    text-align: center;
}
.tab-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.form-group { margin-bottom: 12px; position: relative; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.form-group input, .form-group select {
    width: 100%; padding: 10px 14px 10px 36px;
    border: 2px solid var(--border); border-radius: 8px;
    font-size: 0.88rem; font-family: var(--font-body);
    background: var(--bg-main); transition: var(--transition);
    color: var(--text-primary);
}
.form-group input:focus, .form-group select:focus { border-color: var(--red); outline: none; background: #fff; }
.form-group .field-icon {
    position: absolute; left: 11px; bottom: 11px;
    color: var(--red); font-size: 0.85rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-search-cab {
    width: 100%; padding: 12px;
    background: var(--red); color: #fff;
    border: none; border-radius: 8px; cursor: pointer;
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    letter-spacing: 1px; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-search-cab:hover { background: var(--red-dark); }

/* Slider Controls */
.slider-nav {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
    border: none;
}
.slider-dot.active { background: var(--yellow); width: 28px; border-radius: 5px; }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); color: #fff;
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: 2px solid rgba(255,255,255,0.3);
    z-index: 10; font-size: 1.1rem; transition: var(--transition);
    backdrop-filter: blur(5px);
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ---- TRUST STRIP ---- */
.trust-strip {
    background: var(--text-primary);
    padding: 14px 0;
}
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.trust-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500;
}
.trust-item i { color: var(--yellow); font-size: 1.1rem; }

/* ---- SECTION STYLES ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-block;
    background: rgba(237,28,36,0.08);
    color: var(--red);
    padding: 5px 16px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 2px; line-height: 1.1;
    color: var(--text-primary); text-transform: uppercase;
}
.section-title span { color: var(--red); }
.section-desc { color: var(--text-secondary); max-width: 550px; margin: 10px auto 0; font-size: 0.95rem; }
.divider {
    width: 60px; height: 4px; background: var(--red);
    border-radius: 2px; margin: 14px auto 0;
}

/* ---- ABOUT SECTION ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--red); color: #fff;
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 2rem; line-height: 1;
    box-shadow: 0 8px 20px rgba(237,28,36,0.3);
}
.about-badge small { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; }
.about-text .section-header { text-align: left; }
.about-text .divider { margin: 14px 0 0; }
.about-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feature {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px; background: var(--bg-main); border-radius: var(--radius);
    border-left: 3px solid var(--red);
}
.about-feature i { color: var(--red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.about-feature strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.about-feature span { font-size: 0.78rem; color: var(--text-secondary); }
.about-stats { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.stat-box {
    flex: 1; min-width: 100px; text-align: center;
    padding: 16px; background: var(--text-primary); border-radius: var(--radius);
    color: #fff;
}
.stat-box strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--yellow); letter-spacing: 1px; }
.stat-box span { font-size: 0.75rem; opacity: 0.8; letter-spacing: 1px; }

/* ---- FLEET CARDS ---- */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.fleet-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.fleet-card-img {
    background: var(--bg-main); padding: 28px;
    display: flex; align-items: center; justify-content: center;
    height: 180px; position: relative; overflow: hidden;
}
.fleet-card-img img { max-height: 120px; object-fit: contain; transition: var(--transition); }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-type-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--red); color: #fff;
    padding: 4px 10px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
}
.fleet-card-body { padding: 20px; }
.fleet-card-body h3 {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    margin-bottom: 8px;
}
.fleet-features { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.fleet-feature-tag {
    background: var(--bg-main); color: var(--text-secondary);
    padding: 4px 10px; border-radius: 50px;
    font-size: 0.73rem; display: flex; align-items: center; gap: 4px;
}
.fleet-feature-tag i { color: var(--red); font-size: 0.7rem; }
.fleet-fare { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.fare-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--red); }
.fare-price small { font-size: 0.72rem; color: var(--text-secondary); font-weight: 400; }
.btn-book-fleet {
    background: var(--red); color: #fff;
    padding: 8px 18px; border-radius: 50px;
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-book-fleet:hover { background: var(--red-dark); transform: scale(1.03); }

/* ---- WHY CHOOSE US ---- */
.why-bg {
    background: linear-gradient(135deg, #111 0%, #2a0000 60%, #111 100%);
    color: #fff;
}
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.why-card {
    text-align: center; padding: 36px 24px;
    border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
}
.why-card:hover { background: rgba(237,28,36,0.1); border-color: var(--red); transform: translateY(-6px); }
.why-icon {
    width: 64px; height: 64px;
    background: rgba(237,28,36,0.15); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.5rem; color: var(--yellow);
    border: 1px solid rgba(244,180,0,0.2);
    transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--red); color: #fff; }
.why-card h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.why-bg .section-title { color: #fff; }

/* ---- ROUTES SECTION ---- */
.routes-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.route-filter-btn {
    padding: 8px 20px; border: 2px solid var(--border);
    border-radius: 50px; background: var(--bg-white);
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); color: var(--text-secondary);
}
.route-filter-btn.active, .route-filter-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.route-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 18px; border: 1px solid var(--border);
    transition: var(--transition); position: relative; overflow: hidden;
}
.route-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%; background: var(--red);
    transform: scaleY(0); transition: var(--transition);
}
.route-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.route-card:hover::before { transform: scaleY(1); }
.route-cities { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.route-from { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.route-arrow { color: var(--red); font-size: 0.8rem; }
.route-to { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.route-details { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 10px; }
.route-fare { color: var(--red); font-weight: 700; font-family: var(--font-heading); font-size: 1rem; }
.route-book { 
    display: block; text-align: center;
    background: var(--bg-main); color: var(--text-secondary);
    padding: 7px; border-radius: 6px;
    font-size: 0.8rem; font-weight: 600; font-family: var(--font-heading);
    transition: var(--transition);
}
.route-book:hover { background: var(--red); color: #fff; }

/* ---- TESTIMONIALS ---- */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 28px; min-width: 320px; flex: 0 0 320px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.t-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; }
.t-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
}
.t-author-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.t-author-info span { font-size: 0.78rem; color: var(--text-secondary); }
.testimonials-controls { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.t-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--border); background: var(--bg-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.t-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white); border-radius: var(--radius);
    margin-bottom: 12px; border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    width: 100%; padding: 18px 22px;
    display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    color: var(--text-primary); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question i { color: var(--red); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { padding: 0 22px 18px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- BOOKING PAGE ---- */
.booking-wrapper {
    max-width: 900px; margin: 40px auto;
    background: var(--bg-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.booking-header {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff; padding: 28px 36px;
}
.booking-header h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 2px; }
.booking-header p { opacity: 0.85; margin-top: 4px; }
.booking-form { padding: 36px; }
.booking-section-title {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    color: var(--text-primary); margin-bottom: 18px;
    padding-bottom: 10px; border-bottom: 2px solid var(--border);
    display: flex; align-items: center; gap: 8px;
}
.booking-section-title i { color: var(--red); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fare-summary-box {
    background: var(--bg-main); border-radius: var(--radius);
    padding: 24px; margin: 24px 0;
    border: 2px solid var(--border);
}
.fare-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.fare-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05rem; color: var(--red); }
.fare-row span:first-child { color: var(--text-secondary); }
.cab-selection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 14px; }
.cab-option {
    border: 2px solid var(--border); border-radius: var(--radius);
    padding: 16px; text-align: center; cursor: pointer;
    transition: var(--transition); position: relative;
}
.cab-option:hover, .cab-option.selected { border-color: var(--red); background: rgba(237,28,36,0.04); }
.cab-option.selected::after {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 8px; right: 8px;
    background: var(--red); color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
}
.cab-option img { max-height: 60px; margin: 0 auto 8px; object-fit: contain; }
.cab-option h5 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; }
.cab-option .cab-fare { color: var(--red); font-weight: 700; font-size: 0.95rem; margin-top: 4px; }

/* ---- RAZORPAY PAYMENT ---- */
.payment-section {
    background: var(--bg-main); border-radius: var(--radius);
    padding: 24px; border: 2px solid var(--border);
}
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.pay-method {
    flex: 1; min-width: 100px; padding: 10px 14px;
    border: 2px solid var(--border); border-radius: 8px;
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; transition: var(--transition);
    font-size: 0.85rem; font-weight: 600;
}
.pay-method.active { border-color: var(--red); background: rgba(237,28,36,0.04); }
.pay-method i { color: var(--red); font-size: 1.1rem; }
#razorpay-btn {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff; border: none; border-radius: 10px;
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
    cursor: pointer; letter-spacing: 1px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: var(--transition);
}
#razorpay-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(237,28,36,0.3); }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-form-card {
    background: var(--bg-white); padding: 40px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px; background: var(--bg-white);
    border-radius: var(--radius); border-left: 4px solid var(--red);
}
.contact-info-item .icon {
    width: 44px; height: 44px; background: rgba(237,28,36,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--red); flex-shrink: 0;
}
.contact-info-item h5 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-secondary); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }

/* ---- FORM INPUTS ---- */
.form-control {
    width: 100%; padding: 11px 16px;
    border: 2px solid var(--border); border-radius: 8px;
    font-size: 0.9rem; font-family: var(--font-body);
    background: var(--bg-main); transition: var(--transition);
    color: var(--text-primary);
}
.form-control:focus { border-color: var(--red); outline: none; background: #fff; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 5px; letter-spacing: 0.3px; }
.btn-submit {
    padding: 13px 32px; background: var(--red); color: #fff;
    border: none; border-radius: 50px; cursor: pointer;
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    letter-spacing: 1px; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }
.success-msg { background: #e8f5e9; color: #2e7d32; padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; margin-top: 12px; display: none; }
.error-msg { background: #ffebee; color: #c62828; padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; margin-top: 12px; display: none; }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 20px; z-index: 999;
    background: #25D366; color: #fff;
    padding: 10px 16px 10px 12px; border-radius: 50px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.whatsapp-float i { font-size: 1.3rem; }
.whatsapp-float:hover { transform: scale(1.05); }
.call-float {
    position: fixed; bottom: 30px; right: 20px; z-index: 999;
    background: var(--red); color: #fff;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(237,28,36,0.4);
    animation: pulse 2s infinite;
}
.scroll-top {
    position: fixed; bottom: 90px; left: 20px; z-index: 999;
    background: var(--text-primary); color: #fff;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; font-size: 1rem;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--red); }

/* ---- FOOTER ---- */
.main-footer { background: var(--text-primary); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo i { font-size: 1.8rem; color: var(--yellow); }
.footer-logo span { font-family: var(--font-heading); font-size: 1.2rem; color: rgba(255,255,255,0.9); }
.footer-logo strong { color: var(--yellow); }
.footer-about p { font-size: 0.85rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); font-size: 0.9rem;
}
.footer-socials a:hover { background: var(--red); color: #fff; }
.footer-col h4 {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    color: #fff; margin-bottom: 16px; padding-bottom: 8px;
    border-bottom: 2px solid rgba(244,180,0,0.3);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-col ul li a i { color: var(--red); font-size: 0.7rem; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; }
.contact-item i { color: var(--yellow); font-size: 0.9rem; margin-top: 2px; }
.contact-item a { color: rgba(255,255,255,0.7); }
.contact-item a:hover { color: var(--yellow); }
.footer-map { margin-top: 16px; border-radius: var(--radius); overflow: hidden; opacity: 0.7; }
.footer-bottom { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(237,28,36,0.4); } 50% { box-shadow: 0 0 0 12px rgba(237,28,36,0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* ---- PAGE HERO (for inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, #111 0%, #2a0000 100%);
    padding: 60px 0;
    text-align: center; color: #fff;
}
.page-hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px; text-transform: uppercase; color: #fff;
}
.page-hero h1 span { color: var(--yellow); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* ---- ADMIN ---- */
.admin-sidebar { width: 250px; background: #111; min-height: 100vh; position: fixed; left: 0; top: 0; }
.admin-content { margin-left: 250px; padding: 30px; }
.admin-card { background: var(--bg-white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.stat-card {
    padding: 24px; border-radius: var(--radius); color: #fff;
    display: flex; align-items: center; gap: 16px;
}
.stat-card.red { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.stat-card.yellow { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); color: #111; }
.stat-card.dark { background: linear-gradient(135deg, #333, #111); }
.stat-card.green { background: linear-gradient(135deg, #2e7d32, #1b5e20); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; }
    .main-nav.open { display: flex; }
    .main-nav > ul { flex-direction: column; gap: 8px; width: 100%; max-width: 300px; }
    .main-nav > ul > li > a { font-size: 1.3rem; text-align: center; color: #fff; }
    .nav-toggle { display: flex; z-index: 10000; }
    .header-cta .btn-call { display: none; }
    .logo-img-light { height: 90px !important; }

    /* Slider mobile */
    .hero-slider { height: 60vw; min-height: 260px; max-height: 380px; }
    .slide-badge { font-size: 0.7rem; padding: 4px 10px; margin-bottom: 8px; }
    .slide-title { font-size: clamp(1.6rem, 7vw, 2.4rem); letter-spacing: 1px; }
    .slide-subtitle { font-size: 0.8rem; margin: 6px 0 12px; max-width: 100%; }
    .slide-btns { gap: 8px; }
    .slide-btns .btn-primary, .slide-btns .btn-secondary { padding: 9px 18px; font-size: 0.82rem; }
    .slider-arrow { width: 34px; height: 34px; font-size: 0.85rem; }
    .slider-nav { bottom: 10px; }

    /* Slider - hide on mobile, show static mobile hero instead */
    .hero-slider { display: none !important; }
    .mobile-hero { display: block; }

    /* Booking bar tabs - single row, no wrap */
    .hero-booking-panel .tab-btns { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .hero-booking-panel .tab-btns::-webkit-scrollbar { display: none; }
    .hero-booking-panel .tab-btn { white-space: nowrap; flex: 0 0 auto; padding: 12px 14px; font-size: 0.82rem; }
    .hero-booking-panel .tab-btn i { display: none; }

    /* Booking form fields mobile - vertical stack */
    .hbf-fields { flex-direction: column; gap: 10px; }
    .hbf-field, .hbf-field-sm { flex: auto; min-width: 100%; width: 100%; }
    .hbf-arrow { display: none; }
    .hbf-btn { width: 100%; justify-content: center; padding: 13px; margin-top: 4px; }
    .hero-booking-panel { padding: 0 16px 18px; }

    /* Layout */
    .about-grid { grid-template-columns: 1fr; }
    .about-badge { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .trust-strip .container { justify-content: center; }
    .topbar .topbar-left span:last-child { display: none; }
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; }
}

@media (max-width: 480px) {
    .section { padding: 50px 0; }
    .hero-slider { height: 56vw; min-height: 240px; }
    .slide-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .slide-subtitle { display: none; }
    .slide-btns .btn-secondary { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .about-stats { gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .whatsapp-float span { display: none; }
    .trust-item:nth-child(n+4) { display: none; }
}

/* ===== ROUTE PAGE ===== */
.route-hero { background: linear-gradient(135deg, #111 0%, #222 100%); color: #fff; padding: 60px 0 50px; }
.route-breadcrumb { font-size: 13px; color: #aaa; margin-bottom: 12px; }
.route-breadcrumb a { color: #F4B400; text-decoration: none; }
.route-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.route-desc { color: #ccc; font-size: 1rem; margin-bottom: 25px; }
.route-meta-strip { display: flex; flex-wrap: wrap; gap: 20px; background: rgba(255,255,255,0.08); border-radius: 12px; padding: 18px 24px; margin-bottom: 25px; }
.rm-item { display: flex; align-items: center; gap: 8px; }
.rm-icon { font-size: 20px; }
.rm-label { font-size: 12px; color: #aaa; display: block; }
.rm-item strong { color: #F4B400; font-size: 1rem; }
.route-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.fare-table-wrap { overflow-x: auto; }
.fare-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.fare-table thead { background: #ED1C24; color: #fff; }
.fare-table th, .fare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #f0f0f0; }
.fare-table tbody tr:hover { background: #fff8f8; }
.fare-price { color: #ED1C24; font-weight: 700; font-size: 1.05rem; }
.btn-sm-red { background: #ED1C24; color: #fff; padding: 7px 16px; border-radius: 6px; text-decoration: none; font-size: 13px; white-space: nowrap; }
.btn-sm-red:hover { background: #C8102E; }
.fare-note { font-size: 12px; color: #888; margin-top: 10px; }
.route-info-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.route-info-main h2 { font-size: 1.5rem; margin-bottom: 12px; }
.route-info-main h3 { font-size: 1.1rem; margin: 20px 0 8px; color: #ED1C24; }
.route-info-main p { color: #555; line-height: 1.7; margin-bottom: 12px; }
.route-usp { list-style: none; padding: 0; }
.route-usp li { padding: 6px 0; color: #333; font-size: 0.95rem; }
.quick-book-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 20px; }
.quick-book-card h3 { color: #ED1C24; margin-bottom: 12px; }
.quick-book-card p { margin-bottom: 8px; }
.quick-book-card a { color: #ED1C24; font-weight: 600; text-decoration: none; }
.route-faq { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.route-faq h3 { margin-bottom: 15px; font-size: 1rem; }
.faq-item { margin-bottom: 14px; }
.faq-item strong { font-size: 13px; color: #333; display: block; margin-bottom: 4px; }
.faq-item p { font-size: 13px; color: #666; margin: 0; }
.route-card-link { text-decoration: none; color: inherit; }
@media(max-width:768px) { .route-info-grid { grid-template-columns: 1fr; } }