/* 
  Shubh Yatra Cab Booking Website
  Modern, dynamic, and clean UI
*/

:root {
    --primary-color: #fbbc05; /* Taxi Yellow/Gold */
    --primary-dark: #e0a800;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Space for the sticky bottom bar on mobile handled via media query */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-call-large {
    background-color: var(--text-dark);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-call-large:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 8px 0 0 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 5px 0 0 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.header.scrolled .header-container {
    padding-bottom: 5px;
}

/* Ticker Banner */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary-color);
    border-top: 1.5px solid var(--text-dark);
    border-bottom: 1.5px solid var(--text-dark);
    padding: 6px 0;
    box-sizing: border-box;
}
.ticker {
    display: flex;
    width: fit-content;
    animation: ticker-animation 25s linear infinite;
}
.ticker__item {
    white-space: nowrap;
    padding: 0 45px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.92rem;
    font-family: inherit;
}
@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.header.scrolled .logo {
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.header.scrolled .nav a {
    color: var(--text-dark);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 115px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 20px 40px;
    width: 100%;
}

.hero-title-group {
    grid-column: 1;
    grid-row: 1;
    color: var(--white);
}

.hero-title-group h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-title-group h1 span {
    color: var(--primary-color);
}

.hero-details-group {
    grid-column: 1;
    grid-row: 2;
    color: var(--white);
}

.hero-details-group p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.hero-features i {
    color: var(--primary-color);
}

/* Booking Widget (Glassmorphism) */
.booking-widget {
    grid-column: 2;
    grid-row: 1 / span 2;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.widget-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--text-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 188, 5, 0.2);
}

.row {
    display: flex;
    gap: 15px;
}

.half {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* Payment Banner */
.payment-banner {
    background-color: #f1f3f5;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.payment-banner p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Steps Section (How it works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-3px) translateX(2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-dark);
}


/* SEO Content Section */
.text-content-section {
    padding: 60px 0;
}

.seo-article-block {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.seo-article-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.seo-article-block p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-list {
    list-style: none;
}

.seo-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 800;
}

/* Pricing Table */
.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background-color: var(--text-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table tr:hover {
    background-color: var(--bg-light);
}

.pricing-table td {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Massive Contact CTA */
.massive-contact-box {
    background: var(--bg-light);
    border: 2px dashed var(--primary-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.massive-contact-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.massive-contact-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Fleet (Updated Aesthetic) */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.fleet-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(226, 36, 44, 0.08);
    border: 1px solid #e2242c;
    transition: var(--transition);
    position: relative;
}

.fleet-card.featured {
    border-color: #e2242c;
    box-shadow: 0 4px 15px rgba(226, 36, 44, 0.08);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 36, 44, 0.12);
    border-color: #e2242c;
}

.fleet-card .img-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #edf1f5 100%);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fleet-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.card-content {
    padding: 20px;
}

.fleet-badge {
    display: inline-block;
    background: #fff4e5;
    color: #e2242c;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-content h3 {
    font-size: 1.25rem;
    color: #0b1a30; /* Dark navy matching screenshot */
    margin-bottom: 8px;
    font-weight: 700;
}

.fleet-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e2242c;
    margin-top: 4px;
    margin-bottom: 12px;
}

.fleet-specs {
    display: flex;
    gap: 15px;
    font-size: 0.88rem;
    color: #555;
    margin-top: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs i {
    font-size: 18px;
    color: #e2242c; /* Brand red spec icons */
}

.fleet-card-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.btn-purple {
    display: block;
    width: 100%;
    background-color: #fbbc05;
    color: #111;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-purple:hover {
    background-color: #e5a900;
    color: #111;
}


/* Routes Section */
/* Dynamic Routes Tabs */
.route-tabs-container {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.route-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.route-tab-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.route-tab-btn.active, .route-tab-btn:hover {
    background-color: #e2242c;
    color: #fff;
    border-color: #e2242c;
}

.route-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.route-tab-content.active {
    display: block;
}

.route-table-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(226, 36, 44, 0.08);
    border: 1px solid #e0e0e0;
}

.route-table-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #e2242c;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.route-header-col {
    padding: 15px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.route-header-col:last-child {
    border-right: none;
}

.route-table-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.route-col {
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.route-col:last-child {
    border-right: none;
}

.route-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    text-decoration: none;
}

.route-row:hover {
    background-color: #fff8e1;
}

.route-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
}

.route-name::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e2242c;
}

.route-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.route-dist {
    color: #999;
    font-size: 0.9rem;
}

.route-price {
    color: #e2242c;
    font-weight: 800;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .route-table-header {
        display: none;
    }
    .route-table-body {
        grid-template-columns: 1fr;
    }
    .route-col {
        border-right: none;
    }
}


/* Footer */
.footer {
    background-color: #111111;
    color: #ffffff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col p {
    color: #999999;
    margin-top: 15px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999999;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #000000;
    text-align: center;
    padding: 20px 0;
    color: #666666;
}
/* Floating Bottom Actions (Mobile Pill & Desktop Stack) */
.floating-actions {
    position: fixed;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

/* Mobile Pill */
@media (max-width: 991px) {
    .floating-actions {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 8px 12px;
        border-radius: 40px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border: 1px solid rgba(255,255,255,0.4);
        width: max-content;
    }
    
    .float-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        color: white;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.5px;
        transition: transform 0.2s;
    }

    .float-btn:active {
        transform: scale(0.95);
    }
    
    .float-whatsapp {
        background-color: #25D366;
    }
    
    .float-call {
        background-color: #e63946; /* Red for Call */
    }

    .float-btn svg {
        height: 18px;
        width: auto;
        fill: currentColor;
    }

    .float-btn i {
        font-size: 18px;
    }
}





/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 1;
    transform: none;
}

.animate-up.visible {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0s; }
.delay-2 { transition-delay: 0s; }
.delay-3 { transition-delay: 0s; }


/* Responsive */
@media (max-width: 992px) {
    .footer-bottom {
        padding-bottom: 70px; /* Space for the sticky bottom bar on mobile (20px orig + 50px) */
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-top: 60px;
    }
    
    /* Mobile: Form on TOP (order:1), then Title (order:2), then Features (order:3) */
    .booking-widget {
        order: 1;
        margin-top: 0;
    }

    .hero-title-group {
        order: 2;
        text-align: center;
    }
    
    .hero-details-group {
        order: 3;
        text-align: center;
        margin-bottom: 25px;
    }

    .hero-features {
        align-items: center;
        justify-content: center;
    }

    .footer-grid, .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calc-text {
        text-align: center;
    }
    
    .check-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 999;
        border-top: 1px solid var(--border-color);
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 8px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .hero-title-group h1 {
        font-size: 2.3rem;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }

    /* Fleet action buttons responsiveness */
    .btn-fleet-call,
    .btn-fleet-chat {
        font-size: 0.8rem;
        padding: 8px 4px;
        height: 38px;
    }

    /* SEO Article Block padding on mobile */
    .seo-article-block {
        padding: 20px;
        border-radius: 12px;
    }

    .seo-article-block h2 {
        font-size: 1.6rem;
    }

    .text-content-section {
        padding: 40px 0;
    }

    /* Informational modal responsive rules */
    #infoModal h3 {
        font-size: 1.25rem !important;
    }
    #infoModal ul {
        font-size: 0.92rem !important;
    }
    #infoModal ul li {
        margin-bottom: 6px !important;
    }
}

/* Desktop Floating Actions Stack */
@media (min-width: 992px) {
    .floating-actions {
        bottom: 30px;
        right: 30px;
        flex-direction: column;
        gap: 15px;
    }
    
    .float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }

    .float-btn span {
        position: absolute;
        right: 75px;
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        pointer-events: none;
    }

    .float-btn:hover span {
        opacity: 1;
        visibility: visible;
        right: 75px;
    }

    .float-btn:hover {
        transform: scale(1.1);
    }

    .float-whatsapp {
        background-color: #25D366;
    }

    .float-whatsapp:hover {
        box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    }

    .float-call {
        background-color: #e63946;
    }

    .float-call:hover {
        box-shadow: 0 4px 20px rgba(230,57,70,0.5);
    }

    .float-btn svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
    }

    .float-btn i {
        font-size: 32px;
    }
    
    body {
        padding-bottom: 0 !important;
    }

    .booking-widget {
        align-self: start !important;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #e6e6e6; /* Off-white grey background matching image */
    padding: 35px 25px 25px 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 440px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
    font-weight: bold;
    padding: 5px;
    transition: color 0.2s;
    z-index: 2010;
}

.modal-close:hover {
    color: #333;
}

/* Modal Trip Type Selector */
.trip-type-selector {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trip-type-btn {
    flex: 1;
    padding: 8px 15px;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    background: transparent;
    color: #555;
    transition: all 0.3s ease;
    font-family: inherit;
}

.trip-type-btn.active {
    background: #4b57a6;
    color: white;
    box-shadow: 0 2px 5px rgba(75, 87, 166, 0.2);
}

/* Fleet Card Actions Styling */
.fleet-actions {
    display: flex;
    gap: 6px;
    margin-top: 15px;
}

.btn-fleet-call {
    flex: 1;
    background-color: #fbbc05; /* Brand gold */
    color: #000000 !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(251, 188, 5, 0.18);
}

.btn-fleet-call:hover {
    background-color: #e0a800; /* Hover color */
    color: #000000 !important;
    transform: translateY(-1px);
}

.btn-fleet-chat {
    flex: 1;
    background-color: #e2242c; /* Brand red */
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(226, 36, 44, 0.18);
}

.btn-fleet-chat:hover {
    background-color: #c62828; /* Hover color */
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-fleet-call i {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
}

.btn-fleet-chat svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    fill: currentColor;
    color: white !important;
}
/* ===== CUSTOM CITY DROPDOWN ===== */
.sy-field { position: relative; margin-bottom: 15px; }

.sy-city-input {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sy-city-input:hover { border-color: #bbb !important; }

.sy-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(75,87,166,0.13), 0 2px 8px rgba(0,0,0,0.08);
  z-index: 9999; max-height: 260px; overflow-y: auto;
  display: none; padding: 8px 0 8px;
}
.sy-dropdown.active { display: block; animation: syFadeIn 0.18s cubic-bezier(0.22,1,0.36,1); }
@keyframes syFadeIn { from { opacity:0; transform:translateY(-8px) scale(0.98); } to { opacity:1; transform:translateY(0) scale(1); } }

.sy-search-wrap {
  padding: 8px 10px 6px;
  position: sticky; top: 0;
  background: #fff;
  z-index: 1;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 4px;
}
.sy-search {
  width: 100%; padding: 9px 12px 9px 36px;
  border: 1.5px solid #e8e8e8; border-radius: 8px;
  font-size: 0.9rem; font-family: inherit; outline: none;
  background: #f8f9ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23aaa' stroke-width='2.2' fill='none'/%3E%3Cline x1='16.5' y1='16.5' x2='21.5' y2='21.5' stroke='%23aaa' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat 11px center;
  color: #333; transition: border-color 0.2s;
}
.sy-search:focus { border-color: #4b57a6; background: #fff; box-shadow: 0 0 0 3px rgba(75,87,166,0.08); }

.sy-group-label {
  padding: 8px 14px 3px;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: #bbb;
}

.sy-option {
  padding: 10px 16px; cursor: pointer;
  font-size: 0.93rem; display: flex; align-items: center; gap: 10px;
  color: #2a2a2a; transition: background 0.1s, color 0.1s;
  border-radius: 0;
}
.sy-option:hover, .sy-option.highlighted {
  background: linear-gradient(90deg, #f2f4ff 0%, #f8f9ff 100%);
  color: #4b57a6;
}
.sy-option.selected {
  background: #eef0ff; font-weight: 600; color: #4b57a6;
}
.sy-option.selected .sy-option-dot { background: #4b57a6; }

.sy-option-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e2242c; flex-shrink: 0;
  transition: background 0.15s;
}

.sy-option .sy-state {
  font-size: 0.74rem; color: #ccc;
  margin-left: auto; font-weight: 500;
}

.sy-no-results { padding: 18px; text-align: center; color: #bbb; font-size: 0.88rem; }

.sy-dropdown::-webkit-scrollbar { width: 4px; }
.sy-dropdown::-webkit-scrollbar-track { background: transparent; }
.sy-dropdown::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 10px; }
.sy-dropdown::-webkit-scrollbar-thumb:hover { background: #ccc; }

/* ===== LIGHT GLASSMORPHIC BOOKING WIDGET STYLE OVERRIDES ===== */
.booking-widget {
    background: #ffffff !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
    padding: 24px 20px !important;
    color: #000000 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.booking-widget h3 {
    color: #000000 !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

/* Tabs inside Widget */
.widget-tabs {
    display: flex !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding-bottom: 0 !important;
}

.booking-widget .tab-btn {
    flex: 1 !important;
    background: none !important;
    border: none !important;
    padding: 10px 5px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border-bottom: 3px solid transparent !important;
}

.booking-widget .tab-btn i {
    font-size: 20px !important;
    color: #000000 !important;
}

.booking-widget .tab-btn.active {
    color: #e2242c !important;
    border-bottom: 3px solid #e2242c !important;
    background: rgba(226, 36, 44, 0.06) !important;
}

.booking-widget .tab-btn.active i {
    color: #e2242c !important;
}

/* Form Fields & Labels */
.booking-widget label {
    display: block !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 5px !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.booking-widget .input-group, 
.booking-widget .sy-field {
    position: relative !important;
    margin-bottom: 15px !important;
    width: 100% !important;
}

.booking-widget .input-group input,
.booking-widget .input-group select,
.booking-widget .sy-city-input {
    width: 100% !important;
    padding: 12px 12px 12px 42px !important;
    background: #f8f9fa !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 12px !important;
    color: #000000 !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

/* Set options backgrounds for selects */
.booking-widget .input-group select option {
    background: #ffffff !important;
    color: #000000 !important;
}

.booking-widget .input-group input::placeholder,
.booking-widget .sy-city-input::placeholder {
    color: #000000 !important;
}

.booking-widget .input-group input:focus,
.booking-widget .input-group select:focus,
.booking-widget .sy-city-input:focus {
    border-color: #e2242c !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(226, 36, 44, 0.15) !important;
}

.booking-widget .input-group i,
.booking-widget .sy-field i {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #e2242c !important; /* Red icons */
    font-size: 18px !important;
    z-index: 5 !important;
    pointer-events: none !important;
}

/* Adjust top position of absolute icons inside sy-field when a label is present */
.booking-widget .sy-field i {
    top: calc(50% + 10px) !important;
}
.booking-widget .input-group i {
    top: calc(50% + 10px) !important;
}

/* 50% Grid for Desktop */
.form-row {
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
}

.form-col-50 {
    flex: 1 !important;
    width: 50% !important;
}

/* Orange Submit Button */
.btn-search-cabs {
    width: 100% !important;
    background-color: #e2242c !important;
    color: #ffffff !important;
    padding: 14px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 5px !important;
    box-shadow: 0 4px 15px rgba(226, 36, 44, 0.3) !important;
}

.btn-search-cabs:hover {
    background-color: #e58e10 !important;
    transform: translateY(-2px) scale(1.02) !important;
}

.btn-search-cabs i {
    font-size: 20px !important;
    color: white !important;
    position: static !important;
    transform: none !important;
}

/* Light Custom Dropdown Options overrides */
.sy-dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
.sy-option {
    color: rgba(0, 0, 0, 0.8) !important;
}
.sy-option:hover, .sy-option.highlighted {
    background: rgba(0, 0, 0, 0.04) !important;
    color: #e2242c !important;
}
.sy-option.selected {
    background: rgba(226, 36, 44, 0.08) !important;
    color: #e2242c !important;
}
.sy-option.selected .sy-option-dot {
    background: #e2242c !important;
}
.sy-option-dot {
    background: #e2242c !important;
}

/* Mobile Responsiveness adjustments for Spacing and Form fields */
@media (max-width: 768px) {
    .header {
        padding: 8px 0 0 0 !important;
    }
    .header.scrolled {
        padding: 5px 0 0 0 !important;
    }
    .header-container {
        padding: 0 10px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .logo img {
        height: 36px !important;
    }
    .mobile-menu-btn {
        font-size: 20px !important;
    }
    .hero {
        padding-top: 90px !important;
        min-height: auto !important;
    }
    .hero-content {
        padding-top: 10px !important;
        gap: 10px !important;
    }
    .hero-title-group {
        order: 1 !important;
    }
    .hero-title-group h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
    }
    .hero-title-group h2 {
        font-size: 1.2rem !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }
    .hero-details-group {
        display: block !important;
        order: 3 !important;
        margin-top: 30px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        width: 100% !important;
    }
    .hero-details-group p {
        display: none !important;
    }
    .hero-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
    }
    .hero-features span {
        display: flex !important;
        align-items: center !important;
        border-radius: 30px !important;
        color: white !important;
        backdrop-filter: blur(8px) !important;
    }
    .hero-features span:first-child {
        grid-column: 1 / span 2 !important;
        justify-content: center !important;
        font-size: 0.82rem !important;
        padding: 8px 14px !important;
        font-weight: 700 !important;
        background: rgba(0, 0, 0, 0.65) !important;
        border: 1.5px solid rgba(251, 188, 5, 0.6) !important; /* Gold border */
        box-shadow: 0 4px 12px rgba(251, 188, 5, 0.18) !important;
    }
    .hero-features span:not(:first-child) {
        justify-content: center !important;
        font-size: 0.76rem !important;
        padding: 6px 10px !important;
        white-space: nowrap !important;
        text-align: center !important;
        font-weight: 600 !important;
        background: rgba(0, 0, 0, 0.6) !important;
        border: 1.5px solid rgba(226, 36, 44, 0.5) !important; /* Brand red border */
        box-shadow: 0 4px 12px rgba(226, 36, 44, 0.12) !important;
    }
    .booking-widget {
        order: 2 !important;
        padding: 15px 12px !important;
        border-radius: 12px !important;
    }
    .booking-widget label {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
    }
    .widget-tabs {
        margin-bottom: 12px !important;
    }
    .booking-widget .tab-btn {
        padding: 6px 2px !important;
        font-size: 0.72rem !important;
        gap: 2px !important;
    }
    .booking-widget .tab-btn i {
        font-size: 16px !important;
    }
    .booking-widget .input-group input,
    .booking-widget .input-group select,
    .booking-widget .sy-city-input {
        padding: 9px 10px 9px 36px !important;
        font-size: 0.88rem !important;
    }
    .booking-widget .input-group i,
    .booking-widget .sy-field i {
        left: 10px !important;
        font-size: 16px !important;
    }
    /* Hide Time Column on Mobile */
    .time-col {
        display: none !important;
    }
    .date-col {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .form-col-50 {
        width: 100% !important;
    }
    .btn-search-cabs {
        padding: 12px !important;
        font-size: 0.95rem !important;
    }
}

/* Styling for side-by-side WhatsApp and Call buttons */
.btn-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 15px !important;
}

.btn-whatsapp-submit {
    flex: 1 !important;
    width: 50% !important;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    color: #ffffff !important;
    padding: 12px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp-submit:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

.btn-call-submit {
    flex: 1 !important;
    width: 50% !important;
    background: linear-gradient(135deg, #4b57a6 0%, #343c75 100%) !important; box-shadow: 0 4px 15px rgba(75, 87, 166, 0.3) !important;
    color: #ffffff !important;
    padding: 12px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(75, 87, 166, 0.3) !important;
}

.btn-call-submit:hover {
    box-shadow: 0 6px 20px rgba(75, 87, 166, 0.4) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

.btn-whatsapp-submit svg,
.btn-call-submit i {
    width: 18px !important;
    height: 18px !important;
    font-size: 18px !important;
    color: white !important;
    position: static !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .btn-row {
        gap: 8px !important;
        margin-top: 10px !important;
    }
    .btn-whatsapp-submit,
    .btn-call-submit {
        padding: 10px 5px !important;
        font-size: 0.85rem !important;
        gap: 5px !important;
    }
    .btn-whatsapp-submit svg,
    .btn-call-submit i {
        width: 16px !important;
        height: 16px !important;
        font-size: 16px !important;
    }
}

/* Hide native webkit date/time picker indicators to prevent duplicate icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0 !important;
    cursor: pointer !important;
    position: absolute !important;
    right: 12px !important;
    width: 24px !important;
    height: 24px !important;
    z-index: 10 !important;
}

/* Vertically center icons in input groups that have no label (like Date and Time columns) */
.booking-widget .form-col-50 .input-group i {
    top: 50% !important;
}

/* Services Grid & Cards styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 44px;
    color: #e2242c;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Layout for Services Section */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important; /* Forces cards to take full container width (no horizontal overflow, fits perfectly) */
        gap: 24px !important;
    }
    .service-card {
        padding: 40px 30px !important; /* Generous padding to make the cards feel large, roomy, and premium */
        align-items: center !important; /* Centered content is highly readable and aesthetic on mobile */
        text-align: center !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.07) !important;
    }
    .service-card i {
        font-size: 52px !important; /* Magnify the icons for high visibility on phones */
        margin-bottom: 20px !important;
    }
    .service-card h3 {
        font-size: 1.55rem !important; /* Clear, large headers on phone */
        margin-bottom: 15px !important;
    }
    .service-card p {
        font-size: 1.08rem !important; /* High readability body text on phone */
        line-height: 1.6 !important;
    }
    .section {
        padding: 40px 0 !important; /* Reduce padding between sections on mobile */
    }
    .section-header {
        margin-bottom: 25px !important; /* Reduce gap below section title on mobile */
    }
}

/* Redesigned Premium Services Section CSS */
.premium-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.service-card-premium {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 1;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 188, 5, 0.05), rgba(226, 36, 44, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(226, 36, 44, 0.1);
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-card-premium .service-icon-wrap {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #fbbc05, #e2242c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(226, 36, 44, 0.15);
    transition: transform 0.4s ease;
}

.service-card-premium:hover .service-icon-wrap {
    transform: scale(1.05) rotate(5deg);
}

.service-card-premium .service-icon-wrap i {
    font-size: 26px;
    color: #ffffff;
}

.service-card-premium .content h3 {
    margin: 0 0 6px 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.service-card-premium:hover .content h3 {
    color: #e2242c;
}

.service-card-premium .content p {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e2242c;
    transition: width 0.3s ease;
}

.service-card-premium:hover .service-link {
    color: #e2242c;
}

.service-card-premium:hover .service-link::after {
    width: 100%;
}

.service-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-link i {
    transform: translateX(4px);
}

/* Responsive styles for premium services */
@media (max-width: 992px) {
    .premium-services {
        gap: 20px;
        margin-top: 40px;
    }
    .service-card-premium {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .premium-services {
        grid-template-columns: 1fr;
    }
    .service-card-premium {
        align-items: center;
        text-align: center;
    }
    .service-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .service-card-premium:hover .service-link::after {
        width: 80%; /* Don't span full width on center-aligned text */
    }
}
/* Responsive styles for Why Us section */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .why-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 16px !important;
        padding: 16px 20px !important;
        border-radius: 12px !important;
    }
    .why-card i {
        margin-bottom: 0 !important;
        font-size: 32px !important;
        flex-shrink: 0;
    }
    .why-card h4 {
        font-size: 1.05rem !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }
}

/* Responsive styles for Major Cities & Fleet sections */
@media (max-width: 768px) {
    h2,
    #routes .section-header h2,
    #fleet .section-header h2,
    #services .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    #city-tabs-container {
        gap: 8px !important;
        margin-bottom: 20px !important;
    }
    #city-tabs-container .city-tab {
        padding: 8px 16px !important;
        font-size: 0.88rem !important;
    }
}

/* New Route Cards Styles */
.routes-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.route-card-outer {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card-outer:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.route-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: 0.5px;
    width: 100%;
}

.route-card-inner {
    background: #fde8e8; /* Soft light red background */
    border-radius: 12px;
    width: 100%;
    padding: 24px 20px;
    color: #1a1a1a; /* Black text */
    position: relative;
    border: 1px solid rgba(226, 36, 44, 0.1);
}

.route-details-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.route-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border for light red bg */
    padding-bottom: 8px;
    color: #1a1a1a;
}

.route-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.route-detail-item .detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.route-detail-item .detail-label i {
    color: #e2242c; /* Brand red checkmark */
    font-size: 16px;
}

.route-detail-item .detail-value {
    font-weight: 700;
    color: #1a1a1a;
}

.route-buttons-row {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
}

.route-book-btn {
    background: #e2242c; /* Brand red button */
    color: #ffffff; /* White text */
    border-radius: 50px;
    flex: 1;
    width: 50%;
    padding: 11px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(226, 36, 44, 0.2);
    white-space: nowrap;
}

.route-book-btn:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(226, 36, 44, 0.3);
}

.route-book-btn i {
    font-size: 14px;
}

.route-call-btn-new {
    background: #fbbc05; /* Taxi yellow/gold background */
    color: #1a1a1a; /* Dark text */
    border-radius: 50px;
    flex: 1;
    width: 50%;
    padding: 11px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(251, 188, 5, 0.15);
    white-space: nowrap;
}

.route-call-btn-new:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(251, 188, 5, 0.25);
}

.route-call-btn-new i {
    font-size: 14px;
}

.view-more-routes-btn {
    display: none !important;
}

@media (max-width: 992px) {
    .routes-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .routes-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .route-card-outer {
        padding: 20px;
    }
    .route-card-outer.mobile-hidden-route {
        display: none !important;
    }
    .routes-grid-new.expanded .route-card-outer.mobile-hidden-route {
        display: flex !important;
    }
    .view-more-routes-btn.has-more-routes {
        display: inline-flex !important;
        margin: 20px auto 0 auto;
        background-color: #ffffff;
        color: #e2242c;
        border: 2px solid #e2242c;
        padding: 7px 18px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .view-more-routes-btn.has-more-routes i {
        font-size: 16px !important;
    }
    .view-more-routes-btn.has-more-routes:hover {
        background-color: #e2242c;
        color: #ffffff;
    }
}

/* Hero Direct Call Button */
.hero-direct-call-btn {
    background-color: #e2242c;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(226, 36, 44, 0.3);
    border: 2px solid #e2242c;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-direct-call-btn:hover {
    background-color: #c62828;
    border-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 36, 44, 0.45);
}

.hero-direct-call-btn i {
    font-size: 22px;
}

@media (max-width: 992px) {
    .hero-direct-call-btn {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-direct-call-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
    .hero-direct-call-btn i {
        font-size: 18px;
    }
}

/* Review Button hover effect */
.review-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22) !important;
    background-color: #ffffff !important;
    opacity: 0.95;
}

/* Dynamic City SEO Section */
.city-info-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2242c;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.city-info-left {
    flex: 1.3;
    min-width: 300px;
}

.city-info-left h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #000000 !important;
    margin-bottom: 20px;
    line-height: 1.25;
}

.city-info-left p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.city-info-checklist {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.city-checklist-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.city-checklist-item span {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.city-check-badge {
    background: #fde8e8;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(226, 36, 44, 0.1);
    flex-shrink: 0;
}

.city-check-badge i {
    color: #e2242c;
    font-size: 16px;
    font-weight: 800;
}

.city-info-right {
    flex: 0.7;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.city-info-right-cta {
    background: #f8f9fa;
    border: 1px solid #e2242c;
    border-radius: 12px;
    padding: 24px 20px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-city-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-city-cta.red-cta {
    background: #e2242c;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(226, 36, 44, 0.15);
}

.btn-city-cta.red-cta:hover {
    background: #c62828;
    transform: translateY(-1px);
}

.btn-city-cta.gold-cta {
    background: #fbbc05;
    color: #000000 !important;
    box-shadow: 0 4px 12px rgba(251, 188, 5, 0.15);
}

.btn-city-cta.gold-cta:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

/* City Tabs Layout */
#city-tabs-container {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
}

.city-tab {
    background-color: white;
    color: #444;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid #ddd;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.city-tab.active-tab {
    background-color: #e2242c !important;
    color: white !important;
    border-color: #e2242c !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(226, 36, 44, 0.15);
}

/* City Cards Slider Styling */
.city-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.city-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    scrollbar-width: none; /* Hide default scrollbar */
    padding: 10px 0;
}

.city-slider-track::-webkit-scrollbar {
    display: none;
}

.card-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
}

/* Arrows */
.city-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e2242c;
    color: #e2242c;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
}

.city-slider-arrow:hover {
    background: #e2242c;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(226, 36, 44, 0.2);
}

.city-slider-arrow.left {
    left: -22px;
}

.city-slider-arrow.right {
    right: -22px;
}

.city-slider-arrow i {
    font-size: 24px;
}

/* Dots */
.city-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #e2242c;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    #city-info-section {
        padding-bottom: 60px !important; /* Leave room at the bottom of the section */
        position: relative !important;
    }
    .city-slider-wrapper {
        position: static !important; /* Disable relative positioning so arrows relate to #city-info-section */
    }
    .city-slider-arrow {
        display: flex !important;
        top: auto !important;
        bottom: 15px !important;
        transform: none !important;
        width: 38px !important;
        height: 38px !important;
        background: white !important;
        border: 1px solid #eef2f5 !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        z-index: 10;
    }
    .city-slider-arrow.left {
        left: calc(50% - 95px) !important; /* Position left of the dots */
    }
    .city-slider-arrow.right {
        right: calc(50% - 95px) !important; /* Position right of the dots */
    }
    .city-slider-arrow i {
        font-size: 20px !important;
    }
    .city-slider-dots {
        margin-top: 0 !important;
        position: absolute !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 5;
    }
}

@media (max-width: 768px) {
    /* Full-bleed city description section on mobile */
    #city-info-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .city-info-container {
        padding: 30px 15px !important;
        gap: 25px;
        flex-direction: column;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 0px !important;
        border-left: none !important;
        border-right: none !important;
        margin: 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    }
    .city-info-left {
        width: 100%;
    }
    .city-info-left h2 {
        font-size: 1.32rem !important;
        line-height: 1.25 !important;
    }
    .city-info-left p {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    .city-info-right {
        width: 100% !important;
        display: flex !important;
    }
    .city-info-right-cta {
        max-width: 100% !important;
        padding: 20px 15px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .city-info-right-cta h3 {
        grid-column: 1 / span 2 !important;
        margin-bottom: 5px !important;
    }
    .city-info-right-cta .btn-city-cta {
        width: 100% !important;
        padding: 10px 4px !important;
        font-size: 0.76rem !important;
        white-space: nowrap !important;
    }
    .city-checklist-item span {
        font-size: 0.9rem;
    }

    /* Horizontal City Tabs Slider on Mobile */
    #city-tabs-container {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 12px !important;
        margin-bottom: 20px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }
    #city-tabs-container::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    .city-tab {
        padding: 8px 18px !important;
        font-size: 0.85rem !important;
        flex-shrink: 0; /* Keep tab buttons from squeezing */
    }
}


/* ===== MAJOR PLACES SECTION ===== */
.major-places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .major-places-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .major-places-grid { grid-template-columns: 1fr; gap: 16px; }
}

.place-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.place-img-wrap {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.place-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.place-card:hover .place-img-wrap img {
    transform: scale(1.05);
}

.place-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
}

.place-badge {
    background: rgba(0,0,0,0.65);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.place-badge .material-icons {
    font-size: 13px;
    color: #fbbc05;
}

.place-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.place-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.place-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.place-tags span {
    background: #f0f7ff;
    color: #1a3c6e;
    border: 1px solid #c5d9f2;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.place-desc {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.place-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.place-btn-route {
    flex: 1;
    background: #e2242c;
    color: white;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 120px;
}

.place-btn-route .material-icons { font-size: 14px; }

.place-btn-route:hover {
    background: #c62828;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(226,36,44,0.3);
}

.place-btn-call {
    flex: 1;
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1.5px solid #e0e0e0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.place-btn-call .material-icons { font-size: 14px; color: #e2242c; }

.place-btn-call:hover {
    background: #e2242c;
    color: white;
    border-color: #e2242c;
}
.place-btn-call:hover .material-icons { color: white; }

/* ===== ROUTE CARD VIEW ROUTE LINK ===== */
.route-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    color: #1a3c6e;
    border: 1.5px solid #c5d9f2;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f0f7ff;
}

.route-view-btn .material-icons { font-size: 14px; }

.route-view-btn:hover {
    background: #1a3c6e;
    color: white;
    border-color: #1a3c6e;
}

/* Ensure booking widget top radius is always clean */
.booking-widget {
    border-radius: 16px;
    overflow: hidden;
}

/* On mobile, ensure no overflow issues */
@media (max-width: 768px) {
    .booking-widget {
        margin-top: 0;
        border-radius: 12px;
    }
    .place-img-wrap {
        height: 160px;
    }
}





/* OVERRIDES FOR FLOATING BUTTONS */
.floating-actions {
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 991px) {
    .floating-actions {
        padding: 10px 14px;
        border-radius: 20px; /* Make it less round to fit two rows nicely */
        width: 85vw; /* Allow it to span wider on mobile */
        max-width: 380px; /* Don't get too wide on tablets */
        gap: 8px; /* Slightly smaller gap to save space */
    }
    
    .float-book {
        width: 100%;
        background-color: #4b57a6; /* Theme blue color for book */
    }
    
    .float-call, .float-whatsapp {
        flex: 1; /* Split remaining space */
    }
    
    .float-btn {
        padding: 10px 18px; /* Make buttons a little bigger */
        font-size: 15px; /* Increase font size */
    }

    .float-btn svg {
        height: 20px;
    }

    .float-btn i {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .float-book {
        background-color: #4b57a6;
    }
    
    .float-book:hover {
        box-shadow: 0 4px 20px rgba(75,87,166,0.5);
    }
}


/* OVERRIDES FOR FIXED BOTTOM BAR */
@media (max-width: 991px) {
    .floating-actions.fixed-bottom-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: 100% !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        padding: 0 !important;
        border-radius: 0 !important;
        gap: 0 !important;
        border: none !important;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        backdrop-filter: none !important;
        background: transparent !important;
    }
    
    .floating-actions.fixed-bottom-bar .float-btn {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0 !important;
        padding: 12px 5px !important;
        gap: 10px !important;
    }
    
    .floating-actions.fixed-bottom-bar .float-call {
        background-color: #e63946 !important; /* Keep original red */
    }
    
    .floating-actions.fixed-bottom-bar .float-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important; /* Keep original green */
    }
    
    .floating-actions.fixed-bottom-bar .icon-circle {
        background: rgba(255,255,255,0.2) !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .floating-actions.fixed-bottom-bar .icon-circle i,
    .floating-actions.fixed-bottom-bar .icon-circle svg {
        font-size: 20px !important;
        height: 20px !important;
        width: 20px !important;
    }
    
    .floating-actions.fixed-bottom-bar .btn-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }
    
    .floating-actions.fixed-bottom-bar .text-small {
        font-size: 10px !important;
        font-weight: 600 !important;
        opacity: 0.9 !important;
        line-height: 1.2 !important;
    }
    
    .floating-actions.fixed-bottom-bar .text-large {
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }
    
    
}


/* MOBILE HEADER CTA OVERRIDES */
@media (max-width: 991px) {
    .header-cta {
        display: block !important;
        margin-left: auto !important;
        margin-right: 15px !important;
    }
    .header-cta .btn-primary {
        padding: 5px 10px !important;
        font-size: 13px !important;
        border-radius: 4px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        white-space: nowrap !important;
    }
    .header-cta .btn-primary i {
        font-size: 15px !important;
    }
}


/* MOBILE LOGO SIZE OVERRIDE */
@media (max-width: 991px) {
    .logo img {
        height: 48px !important;
        max-width: 40vw !important;
        object-fit: contain;
    }
}


/* HERO DISCOUNT TEXT SIZE */
.hero-discount-text {
    font-size: 1.8rem;
}
@media (max-width: 991px) {
    .hero-discount-text {
        font-size: clamp(0.9rem, 4.5vw, 1.2rem) !important;
        white-space: nowrap !important;
    }
}









/* Popular Routes Section */
.routes-link-grid a, .routes-hidden-group a {
    color: #999999;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}
.routes-link-grid a:hover, .routes-hidden-group a:hover {
    color: #e2242c;
    transform: translateX(4px);
}


/* View More Routes */
.routes-view-more-btn {
    display: inline-block;
    margin-top: 30px;
    background: transparent;
    color: #e2242c;
    border: 1px solid #e2242c;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.routes-view-more-btn:hover {
    background: #e2242c;
    color: #ffffff;
}
.routes-hidden-group {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.routes-hidden-group.show {
    display: grid;
}

@media (min-width: 769px) {
    .routes-view-more-btn {
        display: none !important;
    }
    .routes-hidden-group {
        display: grid !important;
    }
}


/* Trust Badges - Premium Glassmorphism */
.hero-trust-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--white);
    width: 100%;
}
.trust-badge-main {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(251, 188, 5, 0.7);
    box-shadow: 0 0 15px rgba(251, 188, 5, 0.3);
    animation: pulseGlow 2.5s infinite alternate;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(251, 188, 5, 0.2); }
    100% { box-shadow: 0 0 25px rgba(251, 188, 5, 0.6); }
}
.trust-badge-main .trust-text {
    font-size: 0.95rem;
    font-weight: 500;
}
.feature-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.feature-pills .pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(226, 36, 44, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.feature-pills .pill:hover {
    background: rgba(226, 36, 44, 0.15);
    border-color: rgba(226, 36, 44, 0.8);
    transform: translateY(-2px);
}
.feature-pills .pill i {
    color: #e2242c;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .hero-trust-badges { align-items: center; }
    .trust-badge-main {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 12px 20px;
    }
    .feature-pills {
        width: 100%;
        max-width: 440px;
        gap: 8px;
    }
    .feature-pills .pill {
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.76rem;
    }
}


/* Social Proof Avatars */
.trust-badge-main {
    flex-direction: row !important;
    gap: 0 !important;
    padding: 8px 20px !important;
    flex-wrap: wrap;
    justify-content: center;
}
.avatar-stack {
    display: flex;
    margin-right: 12px;
}
.avatar-stack .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.avatar-stack .avatar:first-child {
    margin-left: 0;
}
.avatar-stack .avatar i {
    font-size: 18px;
    color: white;
}
@media (max-width: 768px) {
    .trust-badge-main {
        flex-direction: column !important;
        gap: 6px !important;
        padding: 12px 20px !important;
    }
    .trust-divider {
        display: none;
    }
    .trust-stars {
        margin-left: 0 !important;
    }
}

@media (min-width: 769px) {
    .hero-details-group p {
        margin-bottom: 15px !important;
    }
    .hero-trust-badges {
        margin-top: -5px !important;
        gap: 12px !important;
    }
}

/* Coupon Modal */
.coupon-modal {
    padding: 0 !important;
    border: none !important;
    background-color: var(--white) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    max-width: 400px;
    margin: 0 auto;
}
.coupon-close {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    top: 15px !important;
    right: 20px !important;
}
.coupon-header {
    background: linear-gradient(135deg, #e2242c 0%, #b31b22 100%);
    color: white;
    padding: 30px 20px 40px 20px;
    text-align: center;
    position: relative;
}
.coupon-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--white);
    clip-path: polygon(0 50%, 5% 0, 10% 50%, 15% 0, 20% 50%, 25% 0, 30% 50%, 35% 0, 40% 50%, 45% 0, 50% 50%, 55% 0, 60% 50%, 65% 0, 70% 50%, 75% 0, 80% 50%, 85% 0, 90% 50%, 95% 0, 100% 50%, 100% 100%, 0 100%);
}
.coupon-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.coupon-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}
.coupon-body {
    padding: 20px 30px 30px 30px;
    text-align: center;
}
.coupon-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}
.cf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-size: 1.05rem;
    color: #333;
}
.cf-item i {
    color: #e2242c;
    font-size: 1.6rem;
    background: #fff4f4;
    padding: 8px;
    border-radius: 50%;
}
.coupon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #fbbc05;
    color: #111;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 15px rgba(251, 188, 5, 0.3);
}
.coupon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 188, 5, 0.4);
    color: #111;
}
.coupon-footer {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #888;
}

.coupon-close {
    top: 8px !important;
    right: 12px !important;
    z-index: 100 !important;
    background: rgba(0,0,0,0.2) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.coupon-header {
    padding: 25px 35px 35px 20px !important;
}

.footer-contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: white;
}
@media (max-width: 768px) {
    .footer-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .footer-contact-grid a {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 993px) {
    .hero-content {
        align-content: center !important;
        align-items: center !important;
    }
    .hero-title-group {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 993px) {
    .hero-content {
        align-content: start !important;
        gap: 0 40px !important;
    }
}

.coupon-header h3 {
    white-space: nowrap !important;
    font-size: clamp(1.1rem, 5vw, 1.6rem) !important;
}

.trust-badge-main .trust-text {
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .trust-badge-main > div:first-child {
        gap: 4px !important;
    }
    .trust-badge-main .trust-text {
        font-size: 0.85rem !important;
    }
}

.material-icons {
    overflow: hidden !important;
    max-width: 1em !important;
    white-space: nowrap !important;
    display: inline-block;
    vertical-align: middle;
}
