/* 
  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 !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: #e8fdf2; /* 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: #e8fdf2;
    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 !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, #0ba360 0%, #3cba92 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%;
    max-width: unset !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.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;
}

/* Blue Theme for Booking Form */
.booking-widget .tab-btn.active { color: #1e3c72 !important; border-bottom-color: #1e3c72 !important; background: rgba(30, 60, 114, 0.06) !important; }
.booking-widget .tab-btn.active i { color: #1e3c72 !important; }
.booking-widget .input-group input:focus, .booking-widget .input-group select:focus, .booking-widget .sy-city-input:focus { border-color: #1e3c72 !important; box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.15) !important; }
.booking-widget .input-group i, .booking-widget .sy-field i { color: #1e3c72 !important; }
.form-trust-badge i { color: #1e3c72 !important; }


/* All Red Buttons to Green Override */
.btn-primary, 
.btn-fleet-chat, 
.btn-search-cabs, 
.btn-city-cta.red-cta, 
.float-call {
    background-color: #0ba360 !important;
    background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%) !important;
    border-color: #0ba360 !important;
    color: #ffffff !important;
}
.btn-primary:hover, 
.btn-fleet-chat:hover, 
.btn-search-cabs:hover, 
.btn-city-cta.red-cta:hover, 
.float-call:hover {
    background-color: #09824d !important;
    background: linear-gradient(135deg, #09824d 0%, #2a9673 100%) !important;
    border-color: #09824d !important;
}
.routes-view-more-btn {
    color: #0ba360 !important;
    border-color: #0ba360 !important;
    background: transparent !important;
}
.routes-view-more-btn:hover {
    background-color: #0ba360 !important;
    background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%) !important;
    color: #ffffff !important;
}


/* Route Cards Blue-Yellow-Dark Theme Overrides */
.route-card-outer {
    background: #111827 !important;
    border: 1px solid rgba(251, 188, 5, 0.2) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}
.route-card-outer .route-card-title {
    color: #ffffff !important;
}
.route-card-outer .route-card-title span {
    color: #fbbc05 !important;
}
.route-card-outer div[style*="color: #888"] {
    color: #9ca3af !important;
}
.route-card-outer .route-card-inner {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
}
.route-card-outer .detail-label, 
.route-card-outer .detail-value {
    color: #1f2937 !important;
}
.route-card-outer .detail-label i {
    color: #1e3c72 !important;
}
.route-card-outer .route-book-btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: #ffffff !important;
    border: none !important;
}
.route-card-outer .route-book-btn i {
    color: #ffffff !important;
}
.route-card-outer .route-call-btn-new {
    background: #fbbc05 !important;
    color: #111827 !important;
    border: none !important;
}
.route-card-outer .route-call-btn-new i {
    color: #111827 !important;
}


/* Route Cards Lighter Blue-Yellow Theme Overrides */
.route-card-outer {
    background: #ffffff !important;
    border: 1px solid rgba(30, 60, 114, 0.1) !important;
    box-shadow: 0 8px 24px rgba(30, 60, 114, 0.08) !important;
}
.route-card-outer .route-card-title {
    color: #1e3c72 !important;
}
.route-card-outer .route-card-title span {
    color: #fbbc05 !important;
}
.route-card-outer div[style*="color: #888"],
.route-card-outer div[style*="color: #9ca3af"] {
    color: #64748b !important;
}
.route-card-outer .route-card-inner {
    background: #f4f7fb !important;
    border: 1px solid #e2e8f0 !important;
}
.route-card-outer .detail-label, 
.route-card-outer .detail-value {
    color: #0f172a !important;
}
.route-card-outer .detail-label i {
    color: #1e3c72 !important;
}
.route-card-outer .route-book-btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: #ffffff !important;
    border: none !important;
}
.route-card-outer .route-book-btn i {
    color: #ffffff !important;
}
.route-card-outer .route-call-btn-new {
    background: #fbbc05 !important;
    color: #0f172a !important;
    border: none !important;
}
.route-card-outer .route-call-btn-new i {
    color: #0f172a !important;
}


/* City Tabs Active Blue Theme Override */
.city-tab.active-tab {
    background-color: #1e3c72 !important;
    border-color: #1e3c72 !important;
}


/* Fleet Card Blue Theme Override */
.fleet-card {
    border-color: rgba(30, 60, 114, 0.2) !important;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.08) !important;
}
.fleet-card:hover {
    border-color: #1e3c72 !important;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.15) !important;
}
.fleet-price {
    color: #1e3c72 !important;
}
.fleet-specs i {
    color: #1e3c72 !important;
}


/* WhatsApp Fleet Button Blue Theme Override */
.btn-fleet-chat {
    background-color: #1e3c72 !important;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    border-color: #1e3c72 !important;
    color: #ffffff !important;
}
.btn-fleet-chat:hover {
    background-color: #1a3c6e !important;
    background: linear-gradient(135deg, #1a3c6e 0%, #22437c 100%) !important;
    border-color: #1a3c6e !important;
}


/* Revert Mobile Sticky Call Button to Red */
.float-call {
    background: #e63946 !important;
    background-color: #e63946 !important;
    border-color: #e63946 !important;
}
.float-call:hover {
    background: #c62828 !important;
    background-color: #c62828 !important;
    border-color: #c62828 !important;
}


/* Remove Write a Review Button */
.review-btn-new {
    display: none !important;
}


/* Clean Hero Theme (Image Removed) */
.clean-hero {
    background: linear-gradient(135deg, #f4f7fb 0%, #e2e8f0 100%) !important;
}
.clean-hero .hero-bg {
    display: none !important;
}
.clean-hero .hero-title-group h1 {
    color: #1e3c72 !important;
    text-shadow: none !important;
}
.clean-hero .hero-title-group p {
    color: #333 !important;
    text-shadow: none !important;
}
.clean-hero .hero-title-group .hero-discount-text {
    color: #0ba360 !important;
    text-shadow: none !important;
}
.clean-hero .hero-details-group .detail-card {
    background: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
.clean-hero .hero-details-group .detail-card span {
    color: #111 !important;
}
.clean-hero .hero-details-group .detail-card i {
    color: #0ba360 !important;
}
.clean-hero .hero-details-group,
.clean-hero .hero-details-group p,
.clean-hero .hero-features span,
.clean-hero .hero-features div {
    color: #333 !important;
    text-shadow: none !important;
}

/* Clean Hero Trust Badges Override */
.clean-hero .trust-badge-main {
    background: #ffffff !important;
    border: 1.5px solid rgba(11, 163, 96, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
.clean-hero .trust-badge-main .trust-text {
    color: #1e3c72 !important;
}
.clean-hero .trust-badge-main .trust-text strong {
    color: #0ba360 !important;
}
.clean-hero .trust-badge-main .trust-divider {
    color: #ddd !important;
}

.clean-hero .feature-pills .pill {
    background: #ffffff !important;
    border: 1px solid rgba(30, 60, 114, 0.15) !important;
    color: #333 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
}
.clean-hero .feature-pills .pill i {
    color: #0ba360 !important;
}
.clean-hero .feature-pills .pill:hover {
    background: rgba(11, 163, 96, 0.05) !important;
    border-color: rgba(11, 163, 96, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Bolder Trust Signals Override */
.clean-hero .trust-badge-main .trust-text {
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #111 !important;
}
.clean-hero .trust-badge-main .trust-text strong {
    font-weight: 900 !important;
    color: #0ba360 !important;
}
.clean-hero .feature-pills .pill {
    font-weight: 700 !important;
    color: #111 !important;
}

/* Darker Hero H1 Override */
.clean-hero .hero-title-group h1 {
    color: #0a192f !important; /* Very dark navy, almost black */
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
}

/* === PREMIUM COUPON MODAL REDESIGN === */

/* 1. Remove Zigzag Border */
.coupon-header::after {
    display: none !important;
}

/* 2. Premium Header Styling */
.coupon-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    padding: 30px 20px 25px 20px !important;
    border-bottom: 4px solid #0ba360 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}
.coupon-header h3 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

/* 3. Modal Body Shadow & Border */
.coupon-modal {
    border: 2px solid rgba(255,255,255,0.8) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4) !important;
    max-width: 380px !important; margin: 0 auto !important; /* Slightly wider to fit 2 columns */
}

/* 4. Convert Sleek List to 2-Column Grid ("2 me eik" layout) */
.coupon-features.sleek-list {
    grid-template-columns: 1fr !important;
    gap: 15px 10px !important;
    padding: 10px !important;
    margin-bottom: 25px !important;
}

/* 5. Tweak list items for 2-column layout */
.coupon-features.sleek-list > div {
    font-size: 0.85rem !important; /* Slightly smaller text to fit side-by-side */
    gap: 8px !important;
    color: #222 !important;
    align-items: flex-start !important;
}
.coupon-features.sleek-list i {
    font-size: 22px !important;
    color: #0ba360 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

/* Mobile Tweaks */
@media (max-width: 400px) {
    .coupon-features.sleek-list {
        grid-template-columns: 1fr !important; /* Revert to 1 column on extremely small phones */
    }
}


/* Perfect Spacing for Modal Single-Column List */
.coupon-features.sleek-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 10px 30px !important;
    margin-bottom: 15px !important;
}
.coupon-features.sleek-list > div {
    font-size: 0.95rem !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
}
.coupon-features.sleek-list i {
    font-size: 22px !important;
    width: 24px !important; /* Fixed width for perfect vertical alignment of text */
    text-align: center !important;
}
.coupon-body {
    padding: 15px 15px 25px 15px !important;
}


/* Premium Coupon Button Redesign */
.coupon-btn {
    background: linear-gradient(135deg, #ff9900 0%, #ff4500 100%) !important;
    color: #ffffff !important;
    border-radius: 50px !important; /* Pill shape */
    padding: 16px 20px !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}
.coupon-btn i {
    color: #ffffff !important;
    font-size: 1.4rem !important;
}
.coupon-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.5) !important;
    color: #ffffff !important;
}

/* Add a subtle shine sweep animation */
.coupon-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineSweep 3s infinite;
}
@keyframes shineSweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Make Hero Description Paragraph Bold */
.clean-hero .hero-details-group p.animate-up {
    font-weight: 600 !important;
    color: #333 !important;
    letter-spacing: 0.2px !important;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}:root{--red:#e2242c;--dark:#1a1a1a;--navy:#1a3c6e;--green:#25d366;--radius:14px;--shadow:0 4px 24px rgba(0,0,0,0.1);}body{font-family:'Outfit',system-ui,sans-serif;color:var(--dark);background:#f5f5f5;padding-bottom:0;display:flex;flex-direction:column;min-height:100vh;}a{color:inherit;text-decoration:none;}ul{padding-left:0;list-style:none;}.sticky-bottom-bar{position:fixed;bottom:0;left:0;right:0;z-index:999;display:none;height:58px;box-shadow:0 -2px 16px rgba(0,0,0,0.18);}.bar-whatsapp{flex:1;background:#25d366;display:flex;align-items:center;justify-content:center;gap:8px;color:white;font-weight:800;font-size:0.95rem;letter-spacing:0.5px;transition:background 0.2s;}.bar-whatsapp:hover{background:#1ebe5d;}.bar-call{flex:1;background:var(--red);display:flex;align-items:center;justify-content:center;gap:8px;color:white;font-weight:800;font-size:0.95rem;letter-spacing:0.5px;transition:background 0.2s;}.bar-call:hover{background:#c62828;}.bar-call .material-icons,.bar-whatsapp .material-icons{font-size:18px;}.bar-whatsapp span,.bar-call span{font-size:0.95rem;}.page-header{background:white;border-bottom:2px solid #f0f0f0;position:sticky;top:0;z-index:900;box-shadow:0 2px 12px rgba(0,0,0,0.06);}.page-header-inner{max-width:1200px;margin:0 auto;padding:0 20px;height:62px;display:flex;align-items:center;gap:24px;}.logo{flex-shrink:0;}.page-nav{display:flex;gap:24px;flex:1;justify-content:center;}.page-nav a{color:#444;font-weight:600;font-size:0.9rem;padding:4px 0;border-bottom:2px solid transparent;transition:all 0.2s;}.page-nav a:hover{color:var(--red);border-color:var(--red);}.header-call-btn{display:flex;align-items:center;gap:6px;background:var(--red);color:white;padding:8px 18px;border-radius:8px;font-weight:700;font-size:0.9rem;transition:background 0.2s;flex-shrink:0;white-space:nowrap;}.header-call-btn .material-icons{font-size:16px;}.header-call-btn:hover{background:#c62828;}.breadcrumb-bar{background:#fff;border-bottom:1px solid #eee;padding:8px 0;margin-top:65px;}@media (max-width:768px){.breadcrumb-bar{margin-top:46px;}}.bc-inner{max-width:1200px;margin:0 auto;padding:0 20px;display:flex;align-items:center;gap:4px;font-size:0.82rem;color:#777;}.bc-inner a{color:var(--navy);font-weight:600;}.bc-inner a:hover{text-decoration:underline;}.bc-inner .material-icons{font-size:14px;color:#aaa;}.bc-inner span{color:#555;}.route-hero-block{background:linear-gradient(135deg,#1a3c6e 0%,#0d2140 100%);color:white;padding:44px 20px 36px;}.rhb-inner{max-width:900px;margin:0 auto;}.route-badge-pill{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,0.15);color:white;padding:5px 14px;border-radius:50px;font-size:0.78rem;font-weight:700;letter-spacing:0.5px;text-transform:uppercase;margin-bottom:16px;border:1px solid rgba(255,255,255,0.2);}.route-hero-block h1{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:800;line-height:1.3;margin-bottom:20px;}.route-hero-block h1 span{color:#fbbc05;}.city-hero-block{padding:60px 20px 44px;color:white;text-align:center;}.chb-inner{max-width:800px;margin:0 auto;}.city-hero-block h1{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:800;margin:12px 0;}.city-hero-block h1 span{color:#fbbc05;}.city-tagline{font-size:1.05rem;opacity:0.9;margin-bottom:24px;}.service-hero-block{background:linear-gradient(135deg,#1a3c6e 0%,#0d2140 100%);color:white;padding:50px 20px 40px;text-align:center;}.shb-inner{max-width:800px;margin:0 auto;}.service-hero-block h1{font-size:clamp(1.5rem,4vw,2.2rem);font-weight:800;margin:12px 0 16px;}.service-hero-block p{font-size:1rem;opacity:0.9;max-width:680px;margin:0 auto 24px;line-height:1.6;}.hero-chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:24px;}.hchip{display:inline-flex;align-items:center;gap:5px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);color:white;padding:6px 14px;border-radius:50px;font-size:0.85rem;font-weight:600;}.hchip .material-icons{font-size:14px;color:#fbbc05;}.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;}.cta-red{display:inline-flex;align-items:center;gap:8px;background:var(--red);color:white;padding:13px 24px;border-radius:10px;font-weight:800;font-size:0.95rem;letter-spacing:0.3px;transition:all 0.2s;box-shadow:0 4px 16px rgba(226,36,44,0.35);}.cta-red:hover{background:#c62828;transform:translateY(-1px);}.cta-red .material-icons{font-size:18px;}.cta-green{display:inline-flex;align-items:center;gap:8px;background:#25d366;color:white;padding:13px 24px;border-radius:10px;font-weight:800;font-size:0.95rem;transition:all 0.2s;box-shadow:0 4px 16px rgba(37,211,102,0.3);}.cta-green:hover{background:#1ebe5d;transform:translateY(-1px);}.trust-strip{background:#fff;border-bottom:1px solid #eee;padding:12px 20px;overflow-x:auto;}.ts-inner{max-width:1200px;margin:0 auto;display:flex;gap:28px;align-items:center;white-space:nowrap;justify-content:center;}.ts-inner span{display:inline-flex;align-items:center;gap:5px;font-size:0.82rem;font-weight:700;color:#333;}.ts-inner .material-icons{font-size:15px;color:var(--red);}.page-wrap{max-width:900px;margin:28px auto;padding:0 20px;display:grid;grid-template-columns:1fr;gap:24px;align-items:start;}@media (max-width:900px){.page-wrap{grid-template-columns:1fr;}}.scard{background:white;border-radius:var(--radius);box-shadow:var(--shadow);margin-bottom:24px;overflow:hidden;}.scard-head{display:flex;align-items:center;gap:10px;padding:18px 24px;border-bottom:2px solid #f0f0f0;background:#fafafa;}.scard-head .material-icons{color:var(--red);font-size:22px;}.scard-head h2{font-size:1.1rem;font-weight:800;color:var(--navy);}.price-tbl{width:100%;border-collapse:collapse;}.price-tbl thead tr{background:var(--navy);color:white;}.price-tbl thead th{padding:11px 16px;font-size:0.8rem;font-weight:700;text-align:left;letter-spacing:0.5px;text-transform:uppercase;}.price-tbl tbody tr{border-bottom:1px solid #f0f0f0;transition:background 0.15s;}.price-tbl tbody tr:hover{background:#f8faff;}.price-tbl td{padding:14px 16px;vertical-align:middle;}.vc{display:flex;align-items:center;gap:12px;}.vi{width:42px;height:42px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}.vi .material-icons{font-size:22px;color:white;}.sedan{background:linear-gradient(135deg,#667eea,#764ba2);}.suv{background:linear-gradient(135deg,#11998e,#38ef7d);}.ertiga{background:linear-gradient(135deg,#f7971e,#ffd200);}.innova{background:linear-gradient(135deg,#c94b4b,#4b134f);}.crysta{background:linear-gradient(135deg,#1a1a2e,#16213e);}.tempo{background:linear-gradient(135deg,#373b44,#4286f4);}.urbania{background:linear-gradient(135deg,#ff9966,#ff5e62);}.vn{font-weight:700;font-size:0.9rem;color:#1a1a1a;}.vs{font-size:0.75rem;color:#777;margin-top:2px;}.price-td{text-align:left;}.pa{font-size:1.1rem;font-weight:800;color:var(--red);}.pk{font-size:0.72rem;color:#777;}.book-td{text-align:right;padding-right:20px;}.book-btn{display:inline-flex;align-items:center;gap:4px;background:var(--red);color:white;padding:8px 16px;border-radius:7px;font-weight:700;font-size:0.8rem;transition:all 0.2s;white-space:nowrap;}.book-btn .material-icons{font-size:14px;}.book-btn:hover{background:#c62828;transform:translateY(-1px);box-shadow:0 4px 12px rgba(226,36,44,0.3);}.seo-body{padding:16px 24px 22px;}.seo-body h3{font-size:1rem;font-weight:800;color:var(--navy);margin:20px 0 8px;}.seo-body h3:first-child{margin-top:0;}.seo-body p{font-size:0.9rem;color:#555;line-height:1.7;margin-bottom:10px;}.seo-body ul{display:flex;flex-direction:column;gap:8px;}.seo-body li{font-size:0.88rem;color:#444;line-height:1.5;padding:8px 12px;background:#f8faff;border-radius:8px;border-left:3px solid var(--red);}.info-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px;}.ichip{display:inline-flex;align-items:center;gap:5px;background:#f0f7ff;border:1px solid #c5d9f2;color:var(--navy);padding:5px 12px;border-radius:50px;font-size:0.78rem;font-weight:700;}.ichip .material-icons{font-size:14px;color:var(--red);}.fac-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:14px 0 22px;}.fac-card{display:flex;align-items:center;gap:12px;background:#f4f7ff;border:1px solid #dce8ff;border-radius:12px;padding:12px 14px;}.fac-card .fac-icon{width:38px;height:38px;border-radius:10px;background:var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0;}.fac-card .fac-icon .material-icons{font-size:20px;color:#fff;}.fac-card .fac-label{font-size:0.82rem;font-weight:700;color:var(--navy);line-height:1.2;}.booking-card-wrap{background:white;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;position:sticky;top:66px;}@media (max-width:768px){.booking-card-wrap{position:static;}}.booking-card-hd{background:linear-gradient(135deg,var(--navy),#0d2140);color:white;padding:18px 22px;display:flex;align-items:center;gap:14px;}.booking-card-hd .material-icons{font-size:28px;color:#fbbc05;}.booking-card-hd h3{font-size:1rem;font-weight:800;}.booking-card-hd p{font-size:0.78rem;opacity:0.8;margin-top:2px;}.booking-card-bd{padding:20px;}.fg{margin-bottom:12px;}.fg label{display:block;font-size:0.75rem;font-weight:700;color:#555;margin-bottom:5px;text-transform:uppercase;letter-spacing:0.5px;}.fg input,.fg select{width:100%;padding:10px 14px;border:1.5px solid #e0e0e0;border-radius:8px;font-family:inherit;font-size:0.9rem;color:var(--dark);background:#fafafa;transition:border-color 0.2s;outline:none;}.fg input:focus,.fg select:focus{border-color:var(--navy);background:white;}.submit-btn{width:100%;background:var(--red);color:white;border:none;padding:13px;border-radius:10px;font-weight:800;font-size:0.95rem;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:all 0.2s;font-family:inherit;margin-bottom:12px;}.submit-btn:hover{background:#c62828;transform:translateY(-1px);}.submit-btn .material-icons{font-size:18px;}.call-alt{display:flex;align-items:center;justify-content:center;gap:6px;border:1.5px solid var(--navy);color:var(--navy);padding:10px;border-radius:8px;font-weight:700;font-size:0.85rem;transition:all 0.2s;}.call-alt:hover{background:var(--navy);color:white;}.call-alt .material-icons{font-size:15px;}.trust-badges{margin-top:16px;padding-top:14px;border-top:1px solid #eee;display:flex;flex-direction:column;gap:7px;}.tb-item{display:flex;align-items:center;gap:7px;font-size:0.78rem;color:#444;font-weight:600;}.tb-item .material-icons{font-size:15px;color:#27ae60;}.city-routes-grid{padding:18px;display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:12px;}.city-route-card{background:#f8faff;border:1.5px solid #c5d9f2;border-radius:10px;padding:14px 14px 10px;transition:box-shadow 0.2s,transform 0.2s;}.city-route-card:hover{box-shadow:0 6px 20px rgba(0,0,0,0.1);transform:translateY(-2px);}.crc-title{font-weight:700;font-size:0.88rem;color:var(--navy);margin-bottom:10px;line-height:1.4;}.crc-title span{color:var(--red);}.crc-actions{display:flex;gap:8px;}.crc-book{flex:1;background:var(--red);color:white;text-align:center;padding:6px 10px;border-radius:6px;font-weight:700;font-size:0.78rem;transition:background 0.2s;}.crc-book:hover{background:#c62828;}.crc-call{width:32px;height:32px;background:var(--navy);color:white;display:flex;align-items:center;justify-content:center;border-radius:6px;transition:background 0.2s;}.crc-call:hover{background:#0d2140;}.crc-call .material-icons{font-size:16px;}.page-footer{background:#1a1a1a;color:#aaa;text-align:center;padding:22px 20px;font-size:0.82rem;margin-top:auto;}.page-footer a{color:#fbbc05;font-weight:600;}@media (max-width:768px){.page-nav{display:flex;overflow-x:auto;white-space:nowrap;padding-bottom:5px;justify-content:flex-start;margin-top:10px;width:100%;gap:15px;border-top:1px solid #eee;padding-top:10px;order:3;}.page-nav::-webkit-scrollbar{display:none;}.page-header-inner{justify-content:space-between;flex-wrap:wrap;height:auto;padding-top:10px;padding-bottom:5px;}.header-call-btn span{display:none;}.header-call-btn{padding:8px 12px;}.route-hero-block,.city-hero-block{padding:32px 16px 28px;}.hero-ctas{flex-direction:row;flex-wrap:nowrap;gap:8px;}.hero-ctas a{flex:1;padding:12px 4px;justify-content:center;font-size:0.85rem;}.hero-ctas a .material-icons,.hero-ctas a svg{width:16px;height:16px;font-size:16px;}.price-tbl thead{display:none;}.price-tbl td{display:block;padding:0;}.price-tbl tbody tr{padding:12px 16px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:8px;border-radius:10px;margin:8px 12px;box-shadow:0 2px 8px rgba(0,0,0,0.08);}.price-tbl tbody tr td:first-child{width:100%;padding-bottom:10px;border-bottom:1px solid #f0f0f0;}.price-tbl td.price-td{width:auto;padding-top:6px;}.price-tbl td.book-td{width:auto;padding-top:6px;text-align:right;}.book-btn{width:auto;padding:8px 18px;font-size:0.85rem;justify-content:center;}.page-wrap{padding:0 12px;margin-top:16px;}.ts-inner{gap:18px;padding:0 4px;justify-content:flex-start;}.city-routes-grid{grid-template-columns:repeat(2,1fr);gap:8px;padding:12px;}.scard-head{padding:14px 16px;}.seo-body{padding:16px;}.booking-card-wrap{position:static;}.bc-inner{font-size:0.76rem;}}@media (max-width:768px){.page-footer{padding-bottom:94px;}.sticky-bottom-bar{display:flex !important;}}@media (max-width:400px){.hero-chips{gap:6px;}.hchip{font-size:0.78rem;padding:5px 10px;}.city-routes-grid{grid-template-columns:1fr;}}.hero-short-form{margin-top:24px;display:flex;gap:12px;background:rgba(255,255,255,0.15);padding:12px 16px;border-radius:12px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);flex-wrap:wrap;justify-content:center;align-items:flex-end;border:1px solid rgba(255,255,255,0.2);}.hsf-field{display:flex;flex-direction:column;flex:1;min-width:150px;}.hsf-field label{font-size:0.8rem;color:rgba(255,255,255,0.9);font-weight:600;margin-bottom:4px;letter-spacing:0.5px;text-transform:uppercase;}.hero-short-form input{padding:12px 16px;border:none;border-radius:8px;font-size:0.95rem;font-family:inherit;font-weight:500;width:100%;color:#1a1a1a;outline:none;box-shadow:0 2px 8px rgba(0,0,0,0.1);}.hero-short-form button{padding:12px 24px;height:44px;border:none;border-radius:8px;background:#e2242c;color:white;font-weight:800;font-size:0.95rem;cursor:pointer;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:6px;transition:background 0.2s;box-shadow:0 2px 8px rgba(226,36,44,0.3);}.hero-short-form button:hover{background:#c62828;}.hero-short-form button .material-icons{font-size:18px;}@media (max-width:768px){.hero-short-form{flex-direction:column;padding:16px;border-radius:16px;gap:12px;}.hsf-field{width:100%;}.hero-short-form button{width:100%;margin-top:8px;}}
/* Popular Routes in Gujarat */
.popular-routes-gujarat {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    font-family: 'Outfit', sans-serif;
}
.popular-routes-gujarat h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}
.popular-routes-gujarat .prg-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}
.popular-routes-gujarat .prg-grid a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: block;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
}
.popular-routes-gujarat .prg-grid a:hover {
    color: #fff;
    background: #e2242c;
    border-color: #e2242c;
    transform: translateY(-2px);
}
@media (max-width: 991px) {
    .popular-routes-gujarat .prg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .popular-routes-gujarat .prg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .popular-routes-gujarat h2 {
        font-size: 24px;
    }
    .popular-routes-gujarat .prg-grid a {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .popular-routes-gujarat .prg-grid {
        grid-template-columns: 1fr;
    }
}


/* === Book Taxi Box Fix === */
.city-info-right-cta {
    background: #ffffff !important;
    border: 1px solid #eaeff5 !important;
    border-radius: 16px !important;
    padding: 24px 20px !important;
    width: 100% !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}
.city-info-right-cta h3 {
    grid-column: 1 / span 2 !important;
    margin-bottom: 6px !important;
}
.city-info-right-cta .btn-city-cta {
    width: 100% !important;
    padding: 12px 10px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

@media (max-width: 400px) {
    .city-info-right-cta {
        grid-template-columns: 1fr !important; /* Stack on very small screens */
    }
    .city-info-right-cta h3 {
        grid-column: 1 / span 1 !important;
    }
}

/* Pop-up Height and Width Adjustments */
.coupon-modal {
    max-width: 410px !important; /* Slightly wider to fit text on one line */
}
.coupon-header {
    padding: 12px 15px !important; /* Reduce height */
}
.coupon-body {
    padding: 12px 15px 20px 15px !important; /* Reduce padding to make it less tall */
}
.coupon-features.sleek-list {
    gap: 8px !important; /* Less gap between items */
    padding: 10px 20px !important;
    margin-bottom: 12px !important;
}
.coupon-features.sleek-list > div {
    font-size: 0.95rem !important;
    white-space: nowrap !important; /* Force text to stay on a single line */
}
/* =====================================================
   city-page.css — Interactive City Page Styles
   Shubh Yatra Cabs
   ===================================================== */

/* ===== TAB TOGGLE ===== */
.city-tab-wrap {
    background: white;
    border-bottom: 2px solid #f0f0f0;
    padding: 0 20px;
    position: sticky;
    top: 56px; /* Matches scrolled desktop header */
    z-index: 800;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
    .city-tab-wrap {
        top: 46px; /* Matches mobile header */
    }
}
.city-tab-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 4px;
}
.city-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    text-align: left;
}
.city-tab-btn .material-icons {
    font-size: 24px;
    color: #aaa;
    transition: color 0.2s;
}
.tab-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #888;
    transition: color 0.2s;
}
.tab-sub {
    display: block;
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 1px;
}
.city-tab-btn:hover { border-bottom-color: #ddd; }
.city-tab-btn:hover .tab-label { color: #555; }
.city-tab-btn.active {
    border-bottom-color: #e2242c;
}
.city-tab-btn.active .material-icons { color: #e2242c; }
.city-tab-btn.active .tab-label { color: #1a1a1a; }
.city-tab-btn.active .tab-sub { color: #777; }

/* ===== ORIGIN SECTION ===== */
.origin-section {
    background: #f5f7fb;
    padding: 32px 20px 40px;
}
.os-inner {
    max-width: 900px;
    margin: 0 auto;
}
.os-header {
    text-align: center;
    margin-bottom: 28px;
}
.os-header h2 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 800;
    color: #1a3c6e;
    text-align: center;
    line-height: 1.4;
}
.os-header h2 .material-icons { color: #e2242c; font-size: 26px; }
.os-header h2 span { color: #e2242c; }
.os-header p {
    font-size: 0.88rem;
    color: #777;
    margin-top: 8px;
}

/* ===== ORIGIN CARD GRID ===== */
.origin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.origin-card {
    background: white;
    border-radius: 12px;
    border: 2px solid #e8eef7;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.origin-card:hover {
    border-color: #1a3c6e;
    box-shadow: 0 6px 20px rgba(26,60,110,0.12);
    transform: translateY(-2px);
}
.origin-card.selected {
    border-color: #e2242c;
    background: linear-gradient(135deg, #fff5f5, #fff);
    box-shadow: 0 6px 24px rgba(226,36,44,0.18);
    transform: translateY(-2px);
}

.oc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a3c6e, #2d5fa6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.oc-icon .material-icons { font-size: 18px; color: white; }
.origin-card.selected .oc-icon { background: linear-gradient(135deg, #e2242c, #c62828); }

.dest-icon {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}
.origin-card.selected .dest-icon { background: linear-gradient(135deg, #e2242c, #c62828) !important; }

.oc-info { flex: 1; }
.oc-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #1a1a1a;
}
.oc-price {
    font-size: 0.75rem;
    color: #e2242c;
    font-weight: 700;
    margin-top: 2px;
}

.oc-arrow .material-icons {
    font-size: 16px;
    color: #ccc;
    transition: color 0.2s, transform 0.2s;
}
.origin-card:hover .oc-arrow .material-icons,
.origin-card.selected .oc-arrow .material-icons {
    color: #e2242c;
    transform: translateX(3px);
}

/* ===== PRICE RESULT PANEL ===== */
.price-result-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    border: 2px solid #e2242c;
    animation: slideIn 0.3s ease;
    margin-top: 4px;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.prp-header {
    background: linear-gradient(135deg, #1a3c6e, #0d2140);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.prp-route-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
}
.prp-route-label .material-icons { color: #fbbc05; font-size: 20px; }
.prp-meta {
    display: flex;
    gap: 16px;
}
.prp-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    opacity: 0.85;
    font-weight: 600;
}
.prp-meta .material-icons { font-size: 15px; color: #fbbc05; }

/* Vehicle row */
.prp-vehicles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 700px) {
    .prp-vehicles { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 400px) {
    .prp-vehicles { grid-template-columns: 1fr !important; }
}

.prp-vehicle {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
}
.prp-vehicle:last-child { border-right: none; }
.prp-vehicle:hover { background: #fafcff; }

.prv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.prv-icon .material-icons { font-size: 22px; color: white; }

.prv-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.prv-name small { font-weight: 400; color: #888; font-size: 0.72rem; }

.prv-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: #e2242c;
    letter-spacing: -0.5px;
}

.prv-book {
    display: inline-block;
    background: #e2242c;
    color: white;
    padding: 7px 16px;
    border-radius: 7px;
    font-weight: 800;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.prv-book:hover {
    background: #c62828;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(226,36,44,0.3);
}

/* CTA row */
.prp-ctas {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: #f8faff;
    flex-wrap: wrap;
}
.prp-call, .prp-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 160px;
}
.prp-call {
    background: #e2242c;
    color: white;
}
.prp-call:hover { background: #c62828; transform: translateY(-1px); }
.prp-call .material-icons { font-size: 18px; }
.prp-wa {
    background: #25d366;
    color: white;
}
.prp-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

/* Trust row */
.prp-trust {
    display: flex;
    gap: 16px;
    padding: 12px 20px;
    background: white;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}
.prp-trust span {
    font-size: 0.78rem;
    color: #444;
    font-weight: 600;
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 0 20px 40px;
    background: #f5f7fb;
}
.info-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .city-tab-btn {
        padding: 12px 12px;
        gap: 8px;
    }
    .city-tab-btn .material-icons { font-size: 20px; }
    .tab-label { font-size: 0.82rem; }
    .tab-sub { display: none; }

    .origin-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .origin-card { padding: 10px 12px; }
    .oc-name { font-size: 0.85rem; }

    .prp-header { padding: 14px 16px; }
    .prp-route-label { font-size: 0.95rem; }
    .prp-ctas { flex-direction: column; }
    .prp-call, .prp-wa { min-width: 100%; }
}

@media (max-width: 420px) {
    .origin-grid { grid-template-columns: 1fr; }
}
/* ===== HERO SHORT FORM ===== */
.hero-short-form {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-short-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    min-width: 150px;
    flex: 1;
    color: #1a1a1a;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero-short-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #e2242c;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(226,36,44,0.3);
}
.hero-short-form button:hover { background: #c62828; }
.hero-short-form button .material-icons { font-size: 18px; }

@media (max-width: 768px) {
    .hero-short-form { flex-direction: column; padding: 12px; border-radius: 16px; }
    .hero-short-form input, .hero-short-form button { width: 100%; text-align: center; justify-content: center; }
}

@media (min-width: 768px) {
    .city-tab-inner {
        justify-content: center;
        gap: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .city-tab-btn {
        flex: 0 0 auto !important;
        width: 280px;
        border: 1px solid #ddd;
        border-radius: 8px;
        border-bottom: 3px solid #ddd; /* Match the active border bottom size */
    }
    .city-tab-btn.active {
        border-color: #e2242c;
        border-bottom-color: #e2242c;
    }
}

