:root {
    --primary: #ffc107;
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --text: #333;
    --footer-bg: #111;
}

/* --- GLOBAL RESET & TEXT SAFETY --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }

/* Critical Fix: Ensure text wraps and doesn't overflow */
p, h1, h2, h3, h4, h5, h6, li, span, div, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

body { width: 100%; overflow-x: hidden; color: var(--text); padding-bottom: 70px; background-color: #f9f9f9; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* HEADER */
.indore-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
.indore-top-bar { background: var(--dark); color: #fff; padding: 8px 5%; display: flex; justify-content: space-between; font-size: 12px; }
.indore-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: #fff; }
.logo { font-size: 24px; font-weight: 800; color: var(--dark); }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links li a { font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-links li a:hover { color: var(--primary); }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; border-top: 3px solid var(--primary); }
.dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; font-size: 13px; border-bottom: 1px solid #eee; }
.dropdown-content a:hover { background-color: #f1f1f1; color: var(--primary); }
.dropdown:hover .dropdown-content { display: block; }
.scrollable-dropdown { max-height: 300px; overflow-y: auto; }

.lang-select-wrapper { margin-left: 10px; }
.lang-select { padding: 5px 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px; outline: none; background: #fff; cursor: pointer; }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: var(--dark); margin: 5px auto; transition: 0.3s; }

/* HERO */
.indore-hero, .service-hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero-bg.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding-top: 60px; }
.service-hero { height: 50vh; } 
.hero-text h1, .service-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-text p, .service-hero p { font-size: 18px; margin-bottom: 30px; letter-spacing: 1px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }

/* Quick Inquiry Form */
.indore-quick-inquiry { background: rgba(255, 255, 255, 0.95); padding: 25px; border-radius: 10px; width: 90%; max-width: 400px; margin: auto; box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: #333; }
.indore-quick-inquiry h3 { margin-bottom: 15px; color: var(--dark); font-size: 18px; }
.form-group input, .form-group button { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; outline: none; }
.btn-submit { background: var(--dark); color: #fff; font-weight: 700; border: none; cursor: pointer; transition: 0.3s; text-transform: uppercase; width: 100%; display: block; text-align: center; padding: 12px; }
.btn-submit:hover { background: var(--primary); color: var(--dark); }

.search-container { position: relative; width: 100%; }
.search-results { display: none; position: absolute; top: 100%; left: 0; width: 100%; max-height: 200px; overflow-y: auto; background: white; border: 1px solid #ddd; border-top: none; z-index: 10; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-radius: 0 0 5px 5px; text-align: left; }
.search-results div { padding: 10px; cursor: pointer; border-bottom: 1px solid #eee; font-size: 13px; color: #333; }
.search-results div:hover { background: #f9f9f9; }

/* SECTIONS */
.indore-section { padding: 50px 5%; text-align: center; }
.grey-bg { background: var(--light); }
.section-head h2 { font-size: 28px; margin-bottom: 10px; color: var(--dark); text-transform: uppercase; }
.line { width: 50px; height: 3px; background: var(--primary); margin: 0 auto 30px; }

/* TEXT CONTENT STYLING */
.long-content-box { max-width: 1000px; margin: 0 auto 40px; }
.text-justify { text-align: justify; line-height: 1.8; font-size: 15px; color: #555; }

/* ROUTES & SERVICES GRID */
.services-grid, .routes-grid-detailed, .fleet-grid, .blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
}

/* CARDS STYLING */
.service-card, .car-card, .route-card-box, .blog-card { 
    background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: 0.3s; display: block; text-decoration: none; color: inherit; position: relative;
}
.service-card { padding: 25px; }
.service-card:hover, .car-card:hover, .route-card-box:hover, .blog-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

.route-img, .blog-card img, .car-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.route-card-box:hover .route-img, .blog-card:hover img, .car-card:hover .car-img { transform: scale(1.05); }
.car-img-box { position: relative; overflow: hidden; height: 200px; }

.route-info-box, .car-details, .blog-content { padding: 15px; background: #fff; text-align: left; }
.route-info-box h3, .car-title, .blog-content h4 { font-size: 18px; margin-bottom: 8px; color: var(--dark); font-weight: 700; }
.route-btn-link { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; display: inline-block; padding: 5px 10px; border: 1px solid var(--primary); border-radius: 4px; transition: 0.3s; }
.route-card-box:hover .route-btn-link { background: var(--primary); color: #fff; }

/* --- TABLE FIX FOR MOBILE (Rate List) --- */
.price-table-box { 
    margin-top: 30px; 
    overflow-x: auto; /* IMPORTANT: Enables horizontal scroll */
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    padding: 10px; 
    width: 100%;
}
.tariff-table { 
    width: 100%; 
    min-width: 500px; /* Force table width so it doesn't squish text */
    border-collapse: collapse; 
}
.tariff-table th, .tariff-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; white-space: nowrap; font-size: 14px; }
.tariff-table th { background: #f8f8f8; color: #333; font-weight: 600; }

/* Fleet Category */
.fleet-category { margin: 40px 0 10px; font-size: 22px; font-weight: 700; color: var(--dark); border-left: 5px solid var(--primary); padding-left: 15px; }
.car-features { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.car-features span { background: #f4f4f4; padding: 3px 8px; border-radius: 4px; font-size: 12px; }
.car-price { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; display: block; }
.btn-book-now { display: block; width: 100%; padding: 10px; background: var(--dark); color: #fff; text-align: center; border-radius: 5px; font-weight: 600; }

/* TESTIMONIAL SLIDER */
.testimonial-slider { display: flex; gap: 20px; overflow-x: auto; padding: 20px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 300px; background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); scroll-snap-align: start; text-align: left; border-left: 4px solid var(--primary); }
.stars i { color: #ffc107; font-size: 12px; }
.testimonial-card p { font-style: normal; margin: 15px 0; font-size: 14px; line-height: 1.6; }
.testimonial-card h4 { font-size: 14px; font-weight: 700; text-align: right; }

/* FEATURES */
.features-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; }
.feature-item { text-align: center; max-width: 200px; }
.feature-item i { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.feature-item h4 { font-size: 14px; font-weight: 700; }

/* PRE-FOOTER (Address Section) */
.pre-footer-section { padding: 50px 5%; text-align: center; background: #fff; border-bottom: 1px solid #eee; }
.pre-footer-content { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 30px; }
.pf-item { text-align: center; flex: 1; min-width: 250px; }
.pf-item i { font-size: 30px; color: var(--primary); margin-bottom: 15px; display: block; }
.pf-item h4 { font-size: 16px; margin-bottom: 10px; font-weight: 700; color: var(--dark); }
.pf-item p { font-size: 14px; color: #555; line-height: 1.6; }
.pf-item a { color: inherit; text-decoration: none; font-weight: 600; }

/* MAIN FOOTER */
.main-footer { background: var(--footer-bg); color: #fff; padding: 50px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 16px; margin-bottom: 15px; color: var(--primary); letter-spacing: 1px; }
.line-left { width: 40px; height: 2px; background: #fff; margin-bottom: 20px; }
.line-center { width: 40px; height: 2px; background: #fff; margin: 0 auto 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 14px; color: #ccc; transition: 0.3s; }
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-info p { margin-bottom: 15px; font-size: 14px; display: flex; gap: 10px; align-items: start; color: #ccc; }
.footer-contact-info i { color: var(--primary); margin-top: 3px; }
.qr-img { width: 150px; height: 150px; background: #fff; padding: 5px; border-radius: 5px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 12px; color: #777; }

/* MOBILE & FAB */
.mobile-call-footer { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; display: flex; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 998; height: 60px; }
.mobile-call-footer a { flex: 1; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; gap: 8px; }
.call-now { background: var(--dark); }
.wa-now { background: #25d366; }

.fab-wrapper { position: fixed; bottom: 80px; right: 20px; z-index: 999; display: flex; flex-direction: column-reverse; align-items: center; gap: 15px; }
.fab-main { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: 0.3s; animation: pulse 2s infinite; }
.fab-main i { font-size: 28px; color: var(--dark); }
.fab-options { display: none; flex-direction: column; gap: 12px; align-items: center; }
.fab-opt { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 3px 10px rgba(0,0,0,0.2); transition: 0.3s; opacity: 0; transform: translateY(20px); }
.fab-wrapper.active .fab-options { display: flex; }
.fab-wrapper.active .fab-opt { opacity: 1; transform: translateY(0); }
.fab-opt.call-opt { background: #007bff; transition-delay: 0.1s; }
.fab-opt.wa-opt { background: #25d366; transition-delay: 0.2s; }
.fab-opt.app-opt { background: var(--dark); transition-delay: 0.3s; }
.tooltip { position: absolute; right: 60px; background: #333; color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 12px; white-space: nowrap; opacity: 0; transition: 0.3s; pointer-events: none; }
.fab-opt:hover .tooltip { opacity: 1; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); } }

/* DYNAMIC REVIEW STYLES */
.reviews-grid-dynamic { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.review-card-dynamic { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); border-top: 4px solid var(--primary); text-align: left; transition: 0.3s; }
.review-card-dynamic:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; font-size: 16px; color: var(--dark); }
.review-date { font-size: 12px; color: #888; }
.review-rating { color: #ffc107; margin-bottom: 10px; font-size: 14px; }
.review-text { font-size: 14px; line-height: 1.6; color: #555; font-style: italic; margin-bottom: 15px; }
.like-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; font-size: 14px; color: #666; }
.like-btn i { font-size: 18px; transition: 0.2s; }
.like-btn:hover i { transform: scale(1.2); }

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 992px) {
    /* Prevent Text Cut Off */
    .text-justify {
        text-align: left !important;
        font-size: 15px !important;
        padding: 0 10px;
    }
    .indore-section {
        padding: 40px 15px; /* More space on sides */
    }
    
    .indore-top-bar { display: none; }
    .menu-toggle { display: block; }
    .nav-links { position: fixed; top: 60px; left: -100%; width: 100%; background: #fff; flex-direction: column; align-items: flex-start; padding-top: 10px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); transition: 0.4s; height: calc(100vh - 60px); justify-content: flex-start; overflow-y: auto; gap: 0; }
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links li a, .dropbtn { display: block; padding: 15px 20px; width: 100%; text-align: left; font-size: 16px; color: var(--dark); }
    
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 14px; }
    .lang-select-wrapper { margin: 20px; width: calc(100% - 40px); }
    .lang-select { width: 100%; padding: 12px; font-size: 16px; }
    .fab-wrapper { right: 15px; bottom: 75px; }
    
    .pre-footer-content { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .line-left { margin: 0 auto 20px; }
    .footer-contact-info p { justify-content: center; }
    
    .route-img, .blog-card img, .car-img { height: 250px; }
    .route-card-box, .blog-card, .car-card { margin-bottom: 20px; }
    
    /* Ensure grids are single column on mobile */
    .services-grid, .routes-grid-detailed, .fleet-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}



:root {
    --primary: #ffc107;
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --text: #333;
    --footer-bg: #111;
}

/* --- GLOBAL RESET & TEXT SAFETY --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }

/* Critical Fix: Ensure text wraps and doesn't overflow */
p, h1, h2, h3, h4, h5, h6, li, span, div, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

body { width: 100%; overflow-x: hidden; color: var(--text); padding-bottom: 70px; background-color: #f9f9f9; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* HEADER */
.indore-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
.indore-top-bar { background: var(--dark); color: #fff; padding: 8px 5%; display: flex; justify-content: space-between; font-size: 12px; }
.indore-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: #fff; }
.logo { font-size: 24px; font-weight: 800; color: var(--dark); }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links li a { font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-links li a:hover { color: var(--primary); }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; border-top: 3px solid var(--primary); }
.dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; font-size: 13px; border-bottom: 1px solid #eee; }
.dropdown-content a:hover { background-color: #f1f1f1; color: var(--primary); }
.dropdown:hover .dropdown-content { display: block; }
.scrollable-dropdown { max-height: 300px; overflow-y: auto; }

.lang-select-wrapper { margin-left: 10px; }
.lang-select { padding: 5px 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px; outline: none; background: #fff; cursor: pointer; }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: var(--dark); margin: 5px auto; transition: 0.3s; }

/* HERO */
.indore-hero, .service-hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero-bg.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding-top: 60px; }
.service-hero { height: 50vh; } 
.hero-text h1, .service-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-text p, .service-hero p { font-size: 18px; margin-bottom: 30px; letter-spacing: 1px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }

/* Quick Inquiry Form */
.indore-quick-inquiry { background: rgba(255, 255, 255, 0.95); padding: 25px; border-radius: 10px; width: 90%; max-width: 400px; margin: auto; box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: #333; }
.indore-quick-inquiry h3 { margin-bottom: 15px; color: var(--dark); font-size: 18px; }
.form-group input, .form-group button { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; outline: none; }
.btn-submit { background: var(--dark); color: #fff; font-weight: 700; border: none; cursor: pointer; transition: 0.3s; text-transform: uppercase; width: 100%; display: block; text-align: center; padding: 12px; }
.btn-submit:hover { background: var(--primary); color: var(--dark); }

.search-container { position: relative; width: 100%; }
.search-results { display: none; position: absolute; top: 100%; left: 0; width: 100%; max-height: 200px; overflow-y: auto; background: white; border: 1px solid #ddd; border-top: none; z-index: 10; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-radius: 0 0 5px 5px; text-align: left; }
.search-results div { padding: 10px; cursor: pointer; border-bottom: 1px solid #eee; font-size: 13px; color: #333; }
.search-results div:hover { background: #f9f9f9; }

/* SECTIONS */
.indore-section { padding: 50px 5%; text-align: center; }
.grey-bg { background: var(--light); }
.section-head h2 { font-size: 28px; margin-bottom: 10px; color: var(--dark); text-transform: uppercase; }
.line { width: 50px; height: 3px; background: var(--primary); margin: 0 auto 30px; }

/* TEXT CONTENT STYLING */
.long-content-box { max-width: 1000px; margin: 0 auto 40px; }
.text-justify { text-align: justify; line-height: 1.8; font-size: 15px; color: #555; }

/* ROUTES & SERVICES GRID */
.services-grid, .routes-grid-detailed, .fleet-grid, .blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
}

/* CARDS STYLING */
.service-card, .car-card, .route-card-box, .blog-card { 
    background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: 0.3s; display: block; text-decoration: none; color: inherit; position: relative;
}
.service-card { padding: 25px; }
.service-card:hover, .car-card:hover, .route-card-box:hover, .blog-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

.route-img, .blog-card img, .car-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.route-card-box:hover .route-img, .blog-card:hover img, .car-card:hover .car-img { transform: scale(1.05); }
.car-img-box { position: relative; overflow: hidden; height: 200px; }

.route-info-box, .car-details, .blog-content { padding: 15px; background: #fff; text-align: left; }
.route-info-box h3, .car-title, .blog-content h4 { font-size: 18px; margin-bottom: 8px; color: var(--dark); font-weight: 700; }
.route-btn-link { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; display: inline-block; padding: 5px 10px; border: 1px solid var(--primary); border-radius: 4px; transition: 0.3s; }
.route-card-box:hover .route-btn-link { background: var(--primary); color: #fff; }

/* --- TABLE FIX FOR MOBILE (Rate List) --- */
.price-table-box { 
    margin-top: 30px; 
    overflow-x: auto; /* IMPORTANT: Enables horizontal scroll */
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    padding: 10px; 
    width: 100%;
}
.tariff-table { 
    width: 100%; 
    min-width: 500px; /* Force table width so it doesn't squish text */
    border-collapse: collapse; 
}
.tariff-table th, .tariff-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; white-space: nowrap; font-size: 14px; }
.tariff-table th { background: #f8f8f8; color: #333; font-weight: 600; }

/* Fleet Category */
.fleet-category { margin: 40px 0 10px; font-size: 22px; font-weight: 700; color: var(--dark); border-left: 5px solid var(--primary); padding-left: 15px; }
.car-features { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.car-features span { background: #f4f4f4; padding: 3px 8px; border-radius: 4px; font-size: 12px; }
.car-price { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; display: block; }
.btn-book-now { display: block; width: 100%; padding: 10px; background: var(--dark); color: #fff; text-align: center; border-radius: 5px; font-weight: 600; }

/* TESTIMONIAL SLIDER */
.testimonial-slider { display: flex; gap: 20px; overflow-x: auto; padding: 20px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 300px; background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); scroll-snap-align: start; text-align: left; border-left: 4px solid var(--primary); }
.stars i { color: #ffc107; font-size: 12px; }
.testimonial-card p { font-style: normal; margin: 15px 0; font-size: 14px; line-height: 1.6; }
.testimonial-card h4 { font-size: 14px; font-weight: 700; text-align: right; }

/* FEATURES */
.features-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; }
.feature-item { text-align: center; max-width: 200px; }
.feature-item i { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.feature-item h4 { font-size: 14px; font-weight: 700; }

/* PRE-FOOTER (Address Section) */
.pre-footer-section { padding: 50px 5%; text-align: center; background: #fff; border-bottom: 1px solid #eee; }
.pre-footer-content { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 30px; }
.pf-item { text-align: center; flex: 1; min-width: 250px; }
.pf-item i { font-size: 30px; color: var(--primary); margin-bottom: 15px; display: block; }
.pf-item h4 { font-size: 16px; margin-bottom: 10px; font-weight: 700; color: var(--dark); }
.pf-item p { font-size: 14px; color: #555; line-height: 1.6; }
.pf-item a { color: inherit; text-decoration: none; font-weight: 600; }

/* MAIN FOOTER */
.main-footer { background: var(--footer-bg); color: #fff; padding: 50px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 16px; margin-bottom: 15px; color: var(--primary); letter-spacing: 1px; }
.line-left { width: 40px; height: 2px; background: #fff; margin-bottom: 20px; }
.line-center { width: 40px; height: 2px; background: #fff; margin: 0 auto 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 14px; color: #ccc; transition: 0.3s; }
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-info p { margin-bottom: 15px; font-size: 14px; display: flex; gap: 10px; align-items: start; color: #ccc; }
.footer-contact-info i { color: var(--primary); margin-top: 3px; }
.qr-img { width: 150px; height: 150px; background: #fff; padding: 5px; border-radius: 5px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 12px; color: #777; }

/* MOBILE & FAB */
.mobile-call-footer { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; display: flex; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 998; height: 60px; }
.mobile-call-footer a { flex: 1; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; gap: 8px; }
.call-now { background: var(--dark); }
.wa-now { background: #25d366; }

.fab-wrapper { position: fixed; bottom: 80px; right: 20px; z-index: 999; display: flex; flex-direction: column-reverse; align-items: center; gap: 15px; }
.fab-main { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: 0.3s; animation: pulse 2s infinite; }
.fab-main i { font-size: 28px; color: var(--dark); }
.fab-options { display: none; flex-direction: column; gap: 12px; align-items: center; }
.fab-opt { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 3px 10px rgba(0,0,0,0.2); transition: 0.3s; opacity: 0; transform: translateY(20px); }
.fab-wrapper.active .fab-options { display: flex; }
.fab-wrapper.active .fab-opt { opacity: 1; transform: translateY(0); }
.fab-opt.call-opt { background: #007bff; transition-delay: 0.1s; }
.fab-opt.wa-opt { background: #25d366; transition-delay: 0.2s; }
.fab-opt.app-opt { background: var(--dark); transition-delay: 0.3s; }
.tooltip { position: absolute; right: 60px; background: #333; color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 12px; white-space: nowrap; opacity: 0; transition: 0.3s; pointer-events: none; }
.fab-opt:hover .tooltip { opacity: 1; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); } }

/* DYNAMIC REVIEW STYLES */
.reviews-grid-dynamic { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.review-card-dynamic { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); border-top: 4px solid var(--primary); text-align: left; transition: 0.3s; }
.review-card-dynamic:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; font-size: 16px; color: var(--dark); }
.review-date { font-size: 12px; color: #888; }
.review-rating { color: #ffc107; margin-bottom: 10px; font-size: 14px; }
.review-text { font-size: 14px; line-height: 1.6; color: #555; font-style: italic; margin-bottom: 15px; }
.like-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; font-size: 14px; color: #666; }
.like-btn i { font-size: 18px; transition: 0.2s; }
.like-btn:hover i { transform: scale(1.2); }

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 992px) {
    /* Prevent Text Cut Off */
    .text-justify {
        text-align: left !important;
        font-size: 15px !important;
        padding: 0 10px;
    }
    .indore-section {
        padding: 40px 15px; /* More space on sides */
    }
    
    .indore-top-bar { display: none; }
    .menu-toggle { display: block; }
    .nav-links { position: fixed; top: 60px; left: -100%; width: 100%; background: #fff; flex-direction: column; align-items: flex-start; padding-top: 10px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); transition: 0.4s; height: calc(100vh - 60px); justify-content: flex-start; overflow-y: auto; gap: 0; }
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links li a, .dropbtn { display: block; padding: 15px 20px; width: 100%; text-align: left; font-size: 16px; color: var(--dark); }
    
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 14px; }
    .lang-select-wrapper { margin: 20px; width: calc(100% - 40px); }
    .lang-select { width: 100%; padding: 12px; font-size: 16px; }
    .fab-wrapper { right: 15px; bottom: 75px; }
    
    .pre-footer-content { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .line-left { margin: 0 auto 20px; }
    .footer-contact-info p { justify-content: center; }
    
    .route-img, .blog-card img, .car-img { height: 250px; }
    .route-card-box, .blog-card, .car-card { margin-bottom: 20px; }
    
    /* Ensure grids are single column on mobile */
    .services-grid, .routes-grid-detailed, .fleet-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}