/* Custom CSS for OneNess Taxi */

:root {
    --primary-dark: #0F1D38;
    --primary-blue: #1E3F66;
    --accent-yellow: #FFD700;
    --accent-yellow-bootstrap: #FFC107;
    --light-gray: #F8F8F8;
    --whatsapp-green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Top Header */
.top-header {
    background-color: var(--primary-dark);
    padding: 12px 0;
    color: white;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.taxi-icon {
    font-size: 40px;
    color: #ff6b00;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.logo-tagline {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.top-header-actions a {
    font-size: 14px;
    font-weight: 500;
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
    border: none;
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    border-radius: 5px;
}

.phone-btn {
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    padding: 8px 15px;
    font-weight: 600;
    border-radius: 5px;
}

/* Main Navigation */
.main-navbar {
    background-color: var(--primary-blue);
    padding: 15px 0;
}

.main-navbar .navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s;
    position: relative;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    color: var(--accent-yellow);
}

.main-navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.taxi-isometric {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 200px;
    height: 200px;
    background: var(--accent-yellow);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.3;
    transform: rotate(-15deg);
}

.booking-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.booking-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.trip-type-selection {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trip-type-selection .form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.trip-type-selection .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.trip-type-selection .form-check-label {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin-left: 5px;
}

.booking-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.booking-form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 5px;
}

.booking-form .input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #666;
}

.search-btn {
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    padding: 15px 50px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
    border-radius: 37px;
}

.search-btn:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Checkered Pattern */
.checkered-pattern {
    width: 100%;
    height: 30px;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%),
        linear-gradient(-45deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    margin-top: 40px;
}

.checkered-pattern-bottom {
    width: 100%;
    height: 30px;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%),
        linear-gradient(-45deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    margin-top: 60px;
    position: relative;
}

.taxi-isometric-right {
    position: absolute;
    right: 50px;
    top: -15px;
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(15deg);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
}

.section-title-left {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
}

/* Trending Services */
.trending-services {
    background: white;
}

.trending-btn {
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.trending-btn:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Cabs Section */
.cabs-section {
    background: white;
}

.filter-buttons {
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: var(--accent-yellow);
    color: #333;
}

.filter-btn:not(.active) {
    background-color: #6c757d;
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: #5a6268;
}

.car-card {
    transition: transform 0.3s;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.car-card .card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.car-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.price-per-km {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.car-features {
    margin: 20px 0;
}

.car-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.car-features i {
    color: var(--primary-blue);
    margin-right: 10px;
    width: 20px;
}

.car-card .btn-warning {
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 12px;
    border-radius: 5px;
}

/* Destinations Section */
.destinations-section {
    background: white;
}

.destination-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: linear-gradient(
    rgba(15, 29, 56, 0.9),
    rgba(15, 29, 56, 0.9)
    );
    margin: 12px 12px;

}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.destination-card h5 {
    padding: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.destination-card .btn {
    margin-bottom: 20px;
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
}

.carousel-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    opacity: 1;
    position: relative;
    top: auto;
    bottom: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    width: 20px;
    height: 20px;
}

.carousel-control-prev-icon::before {
    content: '';
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.carousel-control-next-icon::before {
    content: '';
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--light-gray);
}

.advantage-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.advantage-card h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about-section {
    background: white;
}

.about-section img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ceo-info {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.ceo-info h4 {
    font-weight: 700;
    color: #333;
}

.taxi-icon-small {
    font-size: 30px;
    color: #ff6b00;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.review-card {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 80px;
    color: var(--accent-yellow);
    font-weight: bold;
    line-height: 1;
    position: absolute;
}

.quote-open {
    top: 20px;
    left: 20px;
}

.quote-close {
    bottom: 20px;
    right: 20px;
}

.review-quote {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 30px 0;
    padding: 0 60px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
}

.review-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(15, 29, 56, 0.9), rgba(15, 29, 56, 0.9)),
                url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=600&fit=crop') center/cover;
    color: white;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
}

.cta-subtitle {
    font-size: 24px;
    color: white;
}

.cta-contact {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-warning {
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-yellow);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--accent-yellow);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header-actions {
        flex-wrap: wrap;
        justify-content: center !important;
        margin-top: 10px;
    }

    .logo-section {
        justify-content: center;
        margin-bottom: 10px;
    }

    .hero-section {
        padding: 40px 0 20px;
    }

    .booking-card {
        padding: 25px;
    }

    .booking-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 20px;
    }

    .review-quote {
        font-size: 20px;
        padding: 0 20px;
    }

    .quote-mark {
        font-size: 60px;
    }

    .taxi-isometric {
        width: 100px;
        height: 100px;
        left: 20px;
    }

    .taxi-isometric-right {
        width: 40px;
        height: 40px;
        right: 20px;
    }

    .car-horizontal-strip {
    flex-direction: column;
    }


    .car-strip-image {
        width:100% !important;
    }

    .car-strip-pricing {
        width:100% !important;
    }

    .price-section {
        padding: 9px;
        border-radius: 9px;
        text-align: center;
        margin-bottom: -1px;
    }
}

@media (max-width: 576px) {
    .trip-type-selection {
        flex-direction: unset;
        align-items: flex-start;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

/* About Us Page Styles */
.page-header-banner {
    background: linear-gradient(rgba(15, 29, 56, 0.9), rgba(15, 29, 56, 0.9)),
                url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=400&fit=crop') center/cover;
    padding: 100px 0;
    color: white;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: 24px;
    color: var(--accent-yellow);
    font-weight: 500;
}

.about-company-section {
    background: white;
}

.about-company-section img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--light-gray);
}

.mission-vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.mission-vision-card .card-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.mission-vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.mission-vision-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    background: white;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 40px 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Why Choose About Section */
.why-choose-about {
    background-color: var(--light-gray);
}

.feature-box {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-box .feature-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CEO Section */
.ceo-section {
    background: white;
}

.ceo-section img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ceo-info-expanded {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.taxi-icon-large {
    font-size: 50px;
    color: #ff6b00;
    margin-top: 10px;
}

.ceo-info-expanded h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.ceo-info-expanded p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.ceo-quote {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 30px;
    border-radius: 10px;
    color: white;
    position: relative;
}

.quote-icon {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-yellow);
    margin: 0;
    text-align: right;
}

/* Values Section */
.values-section {
    background-color: var(--light-gray);
}

.value-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
    border-top: 4px solid var(--accent-yellow);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .ceo-info-expanded {
        flex-direction: column;
        text-align: center;
    }

    .taxi-icon-large {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .mission-vision-card,
    .feature-box,
    .value-card {
        margin-bottom: 20px;
    }
}

.cabs-list-section {
    background-color: #fff;
    padding: 8px 8px;
}

.cabs-cols {
    border: 2px solid;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: #1f4182;
}

.cabs-cols:hover {
    transform: translateY(-5px);
}
a.cab-link:hover {
    text-decoration:none;
    color:white;
}

.cab-link {
    text-decoration: none;
    color: white;
}

.route-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cabs-start {
    font-size: 17px;
    color: #fcaf21;
    font-weight: 700;
}

.cab-price {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 5px;
}
.section-heading.text-center.bg-white {
    height: 37px;
}
.route-title.flip-text {
    position: relative;
    height: 1.4em;
    overflow: hidden;
}

 @media only screen and (max-width: 480px) {
    .section-heading.text-center.bg-white {
        height: 27px;
    }
    .cabs-list-section .col-lg-4.col-md-6 {
        width: 33%;
        margin: unset;
        padding: 3px;
        margin-bottom: -4px !important;
        margin-top: 4px !important;
    }

    .cabs-list-section .route-title {
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .cabs-list-section .cabs-start {
        font-size: 7px;
        color: #fcaf21;
        font-weight: 700;
    }
    .cabs-list-section .cab-price {
        font-size: 9px;
        font-weight: bold;
        color: #fff;
        margin-top: 3px;
    }



    .cabs-list-section h3.route-heading {
        font-size: 19px;
    }
    
    .route-title.flip-text {
    position: relative;
    height: 3.6em;
    overflow: hidden;
    font-size: 8px;
    }
}


.route-title.flip-text span {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  transition: transform 0.6s ease;
}

.route-title.flip-text .from-to {
  animation: flipToFrom 6s infinite;
}

.route-title.flip-text .to-from {
  animation: flipFromTo 6s infinite;
}

@keyframes flipToFrom {
  0%, 45% { transform: translateY(0); opacity: 1; }
  50%, 100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes flipFromTo {
  0%, 45% { transform: translateY(100%); opacity: 0; }
  50%, 100% { transform: translateY(0); opacity: 1; }
}


.faq-section {
    background-color: var(--light-gray);
}

.faq-item {
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    border-left: 4px solid var(--accent-yellow);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question i {
    font-size: 20px;
}

.faq-answer {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


.fa-question-circle:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f061" !important; /* arrow-right */
}

/* Horizontal Strip Layout */
.car-horizontal-strip {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.car-horizontal-strip:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.car-strip-image {
    position: relative;
    width: 200px;
    min-width: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-direction: column;
}

.car-strip-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.car-type-badge {
    margin-top: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
}

.car-strip-details {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-strip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.car-strip-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.car-features-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 12px;
}

.feature-icon i {
    font-size: 14px;
}

.car-strip-policies {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.policy-item i {
    color: var(--primary-blue);
    font-size: 13px;
    margin-top: 2px;
    min-width: 16px;
}

.policy-item strong {
    color: #333;
    font-weight: 600;
}

.car-strip-pricing {
    width: 180px;
    min-width: 180px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-left: 2px solid #e0e0e0;
}

.price-section {
    width: 100%;
    text-align: center;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.tax-info {
    font-size: 11px;
    color: #666;
    margin-bottom: 12px;
}

.btn-select-cab {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-select-cab:hover {
    background-color: #ff8533;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
}

/* aboutus */
    /* About Us Page Styles */
.page-header-banner {
    background: linear-gradient(rgba(15, 29, 56, 0.9), rgba(15, 29, 56, 0.9)),
                url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=400&fit=crop') center/cover;
    padding: 100px 0;
    color: white;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: 24px;
    color: var(--accent-yellow);
    font-weight: 500;
}

.about-company-section {
    background: white;
}

.about-company-section img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--light-gray);
}

.mission-vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.mission-vision-card .card-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.mission-vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.mission-vision-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    background: white;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 40px 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Why Choose About Section */
.why-choose-about {
    background-color: var(--light-gray);
}

.feature-box {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-box .feature-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CEO Section */
.ceo-section {
    background: white;
}

.ceo-section img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ceo-info-expanded {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.taxi-icon-large {
    font-size: 50px;
    color: #ff6b00;
    margin-top: 10px;
}

.ceo-info-expanded h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.ceo-info-expanded p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.ceo-quote {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 30px;
    border-radius: 10px;
    color: white;
    position: relative;
}

.quote-icon {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-yellow);
    margin: 0;
    text-align: right;
}

/* Values Section */
.values-section {
    background-color: var(--light-gray);
}

.value-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
    border-top: 4px solid var(--accent-yellow);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Car Details Section */
.car-details-section {
    background: white;
}

.car-filter-buttons {
    margin-bottom: 30px;
}

.car-filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    background-color: #6c757d;
    color: white;
}

.car-filter-btn.active {
    background-color: var(--accent-yellow);
    color: #333;
}

.car-filter-btn:hover:not(.active) {
    background-color: #5a6268;
}

.car-detail-card {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.car-detail-card:hover {
    transform: translateY(-5px);
}

.car-detail-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-detail-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.car-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.car-detail-wrapper:hover .car-detail-image {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-yellow);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.car-detail-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.car-rate-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rate-label {
    font-size: 14px;
    opacity: 0.9;
}

.rate-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-yellow);
}

.car-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s;
}

.spec-item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.spec-item i {
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.spec-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    min-width: 70px;
}

.spec-value {
    font-weight: 700;
    color: #333;
    font-size: 15px;
    margin-left: auto;
}

.car-detail-wrapper .btn-warning {
    background-color: var(--accent-yellow);
    border: none;
    color: #333;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.car-detail-wrapper .btn-warning:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Horizontal Strip Layout - Compact Version */
.car-horizontal-strip {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.car-horizontal-strip:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.car-strip-image {
    position: relative;
    width: 200px;
    min-width: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-direction: column;
}

.car-strip-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.car-type-badge {
    margin-top: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
}

.car-strip-details {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-strip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.car-strip-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.car-features-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 12px;
}

.feature-icon i {
    font-size: 14px;
}

.car-strip-policies {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.policy-item i {
    color: var(--primary-blue);
    font-size: 13px;
    margin-top: 2px;
    min-width: 16px;
}

.policy-item strong {
    color: #333;
    font-weight: 600;
}

.car-strip-pricing {
    width: 180px;
    min-width: 180px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-left: 2px solid #e0e0e0;
}

.price-section {
    width: 100%;
    text-align: center;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.tax-info {
    font-size: 11px;
    color: #666;
    margin-bottom: 12px;
}

.btn-select-cab {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-select-cab:hover {
    background-color: #ff8533;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
}

/* contact us */

.cta-section {
background: linear-gradient(rgba(15, 29, 56, 0.9), rgba(15, 29, 56, 0.9)),
            url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=600&fit=crop') center/cover;
color: white;
}

.cta-title {
font-size: 42px;
font-weight: 700;
color: white;
}

.cta-subtitle {
font-size: 24px;
color: white;
}

.cta-contact {
font-size: 18px;
color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-warning {
background-color: var(--accent-yellow);
border: none;
color: #333;
padding: 15px 40px;
font-weight: 700;
font-size: 18px;
border-radius: 8px;
}
    .contact-section {
        background: white;
    }
    .contact-info-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: all 0.3s;
        border-top: 4px solid var(--accent-yellow);
    }
    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    .contact-icon {
        font-size: 40px;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }
    .contact-form-card {
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .form-control, .form-select {
        border: 1px solid #ddd;
        padding: 12px;
        border-radius: 5px;
    }
    .form-control:focus, .form-select:focus {
        border-color: var(--accent-yellow);
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    }
    .btn-submit {
        background-color: var(--accent-yellow);
        color: #333;
        border: none;
        padding: 12px 40px;
        font-weight: 700;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.3s;
    }
    .btn-submit:hover {
        background-color: #ffc107;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    }
    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
    }


    /* Our Cabs Page Specific Styles */

/* Filter Section */
.cabs-filter-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.filter-wrapper {
    text-align: center;
}

.filter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.filter-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--accent-yellow);
    color: #333;
    border-color: var(--accent-yellow);
}

.filter-btn i {
    font-size: 16px;
}

/* Cabs Grid Section */
.cabs-grid-section {
    background-color: var(--light-gray);
}

.cab-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.cab-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cab-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.cab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cab-card:hover .cab-image {
    transform: scale(1.1);
}

.cab-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-yellow);
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.cab-badge.popular {
    background-color: #28a745;
    color: white;
}

.cab-badge.comfort {
    background-color: #17a2b8;
    color: white;
}

.cab-badge.family {
    background-color: #ff6b00;
    color: white;
}

.cab-badge.premium {
    background-color: #6f42c1;
    color: white;
}

.cab-badge.luxury {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.cab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cab-card:hover .cab-overlay {
    opacity: 1;
}

.btn-view-details {
    background-color: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-details:hover {
    background-color: #ffc107;
    transform: scale(1.05);
}

.cab-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cab-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.cab-price {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.cab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.feature i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.cab-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-book-now {
    flex: 1;
    background-color: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-now:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-quote {
    flex: 1;
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-quote:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cab-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .filter-title {
        font-size: 20px;
    }

    .filter-buttons-wrapper {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .cab-image-wrapper {
        height: 180px;
    }

    .cab-name {
        font-size: 20px;
    }

    .price-value {
        font-size: 24px;
    }

    .cab-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature {
        font-size: 12px;
    }

    .cab-actions {
        flex-direction: column;
    }

    .btn-book-now,
    .btn-quote {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .filter-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .cab-image-wrapper {
        height: 160px;
    }

    .cab-content {
        padding: 15px;
    }

    .cab-name {
        font-size: 18px;
    }

    .price-value {
        font-size: 22px;
    }

    .cab-features {
        grid-template-columns: 1fr;
    }
}

/* Animation for filter */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cab-item {
    animation: fadeIn 0.3s ease;
}


/* Tour Packages Page Specific Styles */

/* Filter Section */
.tour-filter-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.filter-wrapper {
    text-align: center;
}

.filter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.filter-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tour-filter-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.tour-filter-btn.active {
    background-color: var(--accent-yellow);
    color: #333;
    border-color: var(--accent-yellow);
}

.tour-filter-btn i {
    font-size: 16px;
}

/* Tour Packages Grid Section */
.tour-packages-grid-section {
    background-color: var(--light-gray);
}

.tour-package-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b00;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.btn-view-itinerary {
    background-color: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-itinerary:hover {
    background-color: #ffc107;
    transform: scale(1.05);
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-header {
    margin-bottom: 15px;
}

.tour-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.tour-duration i {
    color: var(--primary-blue);
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.tour-location i {
    color: var(--primary-blue);
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-tag {
    background-color: #f0f7ff;
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.highlight-tag i {
    font-size: 12px;
}

.tour-price-section {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    text-align: center;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-per-person {
    font-size: 12px;
    color: #666;
}

.tour-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-book-tour {
    flex: 1;
    background-color: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-tour:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-enquiry {
    flex: 1;
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enquiry:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.tour-cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-cta {
    background-color: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tour-highlights {
        gap: 6px;
    }

    .highlight-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .filter-title {
        font-size: 20px;
    }

    .filter-buttons-wrapper {
        gap: 10px;
    }

    .tour-filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .tour-image-wrapper {
        height: 200px;
    }

    .tour-title {
        font-size: 20px;
    }

    .new-price {
        font-size: 24px;
    }

    .old-price {
        font-size: 16px;
    }

    .tour-actions {
        flex-direction: column;
    }

    .btn-book-tour,
    .btn-enquiry {
        width: 100%;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .filter-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .tour-filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .tour-image-wrapper {
        height: 180px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-title {
        font-size: 18px;
    }

    .new-price {
        font-size: 22px;
    }

    .price-info {
        flex-direction: column;
        gap: 5px;
    }

    .tour-highlights {
        flex-direction: column;
    }

    .highlight-tag {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 24px;
    }
}

/* Animation for filter */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-package-item {
    animation: fadeIn 0.3s ease;
}


/* Wedding Cars Page Specific Styles */

/* Hero Section */
.wedding-hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(15, 29, 56, 0.7), rgba(30, 63, 102, 0.7)),
                url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&h=800&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 29, 56, 0.3), rgba(30, 63, 102, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero-cta {
    display: inline-block;
    background: var(--accent-yellow);
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: #ffc107;
    color: #333;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-hearts i {
    position: absolute;
    color: rgba(255, 215, 0, 0.6);
    font-size: 30px;
    animation: float 6s infinite ease-in-out;
}

.floating-hearts i:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.floating-hearts i:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.floating-hearts i:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Filter Section */
.wedding-filter-wrapper {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.filter-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.wedding-filter-btn {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wedding-filter-btn:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.wedding-filter-btn.active {
    background: var(--accent-yellow);
    color: #333;
    border-color: var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.wedding-filter-btn i {
    font-size: 16px;
}

/* Wedding Cars Section */
.wedding-cars-section {
    background: var(--light-gray);
}

.wedding-car-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.wedding-car-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wedding-car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.wedding-car-card.featured {
    border: 3px solid var(--accent-yellow);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.car-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.wedding-car-card:hover .car-image {
    transform: scale(1.15);
}

.luxury-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.luxury-badge.premium {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    color: white;
}

.luxury-badge.classic {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 29, 56, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.wedding-car-card:hover .image-overlay {
    opacity: 1;
}

.btn-view-gallery {
    background: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-gallery:hover {
    transform: scale(1.1);
    background: #ffc107;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.car-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.spec i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.price-section {
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.price-duration {
    font-size: 14px;
    color: #666;
}

.car-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-book-wedding {
    flex: 1;
    background: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-wedding:hover {
    transform: translateY(-2px);
    background: #ffc107;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-enquire {
    flex: 1;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enquire:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.wedding-services-section {
    background: white;
}

.service-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(15, 29, 56, 0.3);
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.wedding-cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent-yellow);
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #ffc107;
    color: #333;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--accent-yellow);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--accent-yellow);
    color: #333;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .wedding-hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .filter-buttons-container {
        gap: 10px;
    }

    .wedding-filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .car-image-container {
        height: 220px;
    }

    .car-name {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .car-actions {
        flex-direction: column;
    }

    .btn-book-wedding,
    .btn-enquire {
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .wedding-hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn-hero-cta {
        padding: 12px 30px;
        font-size: 16px;
    }

    .filter-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .wedding-filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .car-image-container {
        height: 200px;
    }

    .car-details {
        padding: 20px;
    }

    .car-name {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 24px;
    }
}

/* Animation for filter */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wedding-car-item {
    animation: fadeIn 0.3s ease;
}

/* Tempo Traveller Page Specific Styles */

/* Filter Section */
.tempo-filter-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.filter-wrapper {
    text-align: center;
}

.filter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.filter-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tempo-filter-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tempo-filter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.tempo-filter-btn.active {
    background: var(--accent-yellow);
    color: #333;
    border-color: var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.tempo-filter-btn i {
    font-size: 16px;
}

/* Tempo Traveller Section */
.tempo-traveller-section {
    background: var(--light-gray);
}

.tempo-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.tempo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tempo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.tempo-card.featured {
    border: 3px solid var(--accent-yellow);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.tempo-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
}

.tempo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tempo-card:hover .tempo-image {
    transform: scale(1.15);
}

.seater-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.seater-badge.popular {
    background: var(--accent-yellow);
    color: #333;
}

.seater-badge.premium {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    color: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 29, 56, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.tempo-card:hover .image-overlay {
    opacity: 1;
}

.btn-view-details {
    background: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-details:hover {
    transform: scale(1.1);
    background: #ffc107;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.tempo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tempo-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.tempo-specs {
    margin-bottom: 20px;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
}

.spec-item i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.tempo-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.tempo-features h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    padding: 5px 0;
}

.features-list i {
    color: var(--accent-yellow);
    font-size: 14px;
}

.price-section {
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.price-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.price-label {
    font-size: 12px;
    color: #999;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-note {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

.tempo-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-book-tempo {
    flex: 1;
    background: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-tempo:hover {
    transform: translateY(-2px);
    background: #ffc107;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-enquire-tempo {
    flex: 1;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enquire-tempo:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.tempo-features-section {
    background: white;
}

.feature-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(15, 29, 56, 0.3);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    background: var(--light-gray);
}

.use-case-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--accent-yellow);
}

.use-case-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.use-case-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.tempo-cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent-yellow);
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #ffc107;
    color: #333;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--accent-yellow);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--accent-yellow);
    color: #333;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .spec-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-title {
        font-size: 20px;
    }

    .filter-buttons-container {
        gap: 10px;
    }

    .tempo-filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .tempo-image-wrapper {
        height: 220px;
    }

    .tempo-name {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .tempo-actions {
        flex-direction: column;
    }

    .btn-book-tempo,
    .btn-enquire-tempo {
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .filter-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .tempo-filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .tempo-image-wrapper {
        height: 200px;
    }

    .tempo-content {
        padding: 20px;
    }

    .tempo-name {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .price-info {
        flex-direction: column;
        gap: 5px;
    }

    .cta-title {
        font-size: 24px;
    }
}

/* Animation for filter */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tempo-item {
    animation: fadeIn 0.3s ease;
}

/* Vehicle Details Page Specific Styles */

.vehicle-detail-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.vehicle-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=600&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.vehicle-detail-hero .container {
    position: relative;
    z-index: 1;
}

.vehicle-name-large {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.vehicle-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.vehicle-price-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.vehicle-main-section {
    padding: 60px 0;
}

.vehicle-image-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail-item {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.vehicle-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-yellow);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s;
}

.spec-item-detail:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.spec-item-detail i {
    color: var(--primary-blue);
    font-size: 20px;
    width: 30px;
}

.spec-item-detail .spec-label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.spec-item-detail .spec-value {
    color: #666;
}

.features-list-detail {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list-detail li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s;
}

.features-list-detail li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.features-list-detail i {
    color: var(--accent-yellow);
    font-size: 18px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    color: white;
    border-bottom-color: var(--accent-yellow);
}

.price-breakdown {
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-row:last-child {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-yellow);
}

.price-label-detail {
    color: rgba(255, 255, 255, 0.9);
}

.price-value-detail {
    color: var(--accent-yellow);
    font-weight: 700;
}

.btn-book-vehicle {
    width: 100%;
    background: var(--accent-yellow);
    color: #333;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-book-vehicle:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-enquire-vehicle {
    width: 100%;
    background: transparent;
    color: white;
    border: 2px solid var(--accent-yellow);
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-enquire-vehicle:hover {
    background: var(--accent-yellow);
    color: #333;
    transform: translateY(-2px);
}

.why-choose-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.why-choose-item i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-choose-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.why-choose-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .vehicle-image-gallery {
        position: static;
        margin-bottom: 40px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vehicle-name-large {
        font-size: 36px;
    }

    .vehicle-subtitle {
        font-size: 18px;
    }

    .vehicle-price-badge {
        font-size: 20px;
        padding: 12px 25px;
    }

    .main-image-container {
        height: 300px;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .vehicle-name-large {
        font-size: 28px;
    }

    .main-image-container {
        height: 250px;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}


.city-dropdown {
    position: absolute;
    width: 46%;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0 10px;
    margin: 0;
}

.city-dropdown li {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 0.5px solid lightgray;
}


/* ================= PAGE HEADER ================= */

.page-header {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.page-description {
    font-size: 15px;
    color: #6b7280;
    max-width: 850px;
}

/* ================= CAB CARD ================= */

.cab-options-section {
    padding: 30px 0 60px;
}

.cab-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    transition: 0.3s ease;
    flex-direction: row;
}

.cab-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* LEFT SECTION */
.cab-left {
    display: flex;
    align-items: center;
    flex: 2;
    justify-content: space-around;
}

.cab-image {
    width: 130px;
}

.cab-image img {
    width: 100%;
    object-fit: contain;
}

.cab-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111827;
}

.cab-spec {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

/* Features */
.cab-features {
    display: flex;
    gap: 40px;
    font-size: 13px;
    color: #374151;
}

.cab-features div strong {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

/* RIGHT SECTION */
.cab-right {
    border-left: 1px solid #e5e7eb;
    padding-left: 30px;
    text-align: right;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.price-tax {
    font-size: 12px;
    color: #6b7280;
    margin-top: 3px;
}

.btn-book-now {
    background: #ff6b00;
    border: none;
    padding: 10px 26px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    margin-top: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-book-now:hover {
    background: #e65c00;
}

.trip-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: capitalize;
}

i.icons {
    /* margin: 12px 40px; */
    position: absolute;
    margin: 3px -16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 720px) {

    .cab-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cab-right {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
        text-align: left;
        width: 100%;
    }

    .cab-features {
        flex-direction: column;
        gap: 10px;
    }

    .city-dropdown {
    width: 88%;
    }
    
    .cab-left {
      display: unset;
    }
    .cab-image {
        width: 130px;
        justify-content: center;
        display: contents;
    }
}

.car-name-title h3 {
    font-size: 13px;
    margin-top: 7px;
}



.call-button {
    width: 70px;
    height: 70px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    animation: popIn 1s ease-out, blink 1.5s infinite;
}

/* Phone Icon */
.call-button i {
    color: #fff;
    font-size: 28px;
}

/* Pop In Animation */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* Blink Effect */
@keyframes blink {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
}




    /* ===== SERVICE SECTION ===== */

.service-taxi-col {
    margin-bottom: 30px;
}

/* Card Design */
.blogbox .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.blogbox .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image */
.card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blogbox .card:hover .card__image img {
    transform: scale(1.08);
}

/* Content */
.card__content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card__article h2 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blogbox .card:hover h2 {
    color: #ff6b00; /* Brand Orange */
}

/* Remove link underline */
.blogbox a {
    text-decoration: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 992px) {
    .card__image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .card__image {
        height: 180px;
    }

    .card__article h2 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .card__image {
        height: 160px;
    }

    .service-taxi-col {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ===== BREADCRUMB SECTION ===== */

.bred_crumb {
    position: relative;
    padding: 22px 15px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #090e3c 0%, #0b062f 50%, #1b266b 100%);
    overflow: hidden;
}

/* Optional Light Overlay Pattern Effect */
.bred_crumb::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.bred_crumb::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

/* Heading */
.bred_crumb h1 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Breadcrumb Text */
.bred_crumb h4 {
    font-size: 16px;
    font-weight: 500;
}

.bred_crumb h4 a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.bred_crumb h4 a:hover {
    opacity: 0.8;
}

.bred_crumb i {
    margin: 0 8px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .bred_crumb {
        padding: 80px 15px;
    }

    .bred_crumb h1 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .bred_crumb {
        padding: 60px 15px;
    }

    .bred_crumb h1 {
        font-size: 26px;
    }

    .bred_crumb h4 {
        font-size: 14px;
    }
}

/* ===============================
   SERVICE CONTENT STYLING
=================================*/

.service-content-section {
    padding: 60px 0;
    background: #ffffff;
}

.service-content {
    margin: auto;
    line-height: 1.8;
    color: #333;
    font-size: 17px;
}

/* Headings */
.service-content h1,
.service-content h2,
.service-content h3,
.service-content h4 {
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #111;
}

.service-content h2 {
    font-size: 26px;
}

.service-content h3 {
    font-size: 22px;
}

/* Paragraph */
.service-content p {
    margin-bottom: 15px;
}

/* List */
.service-content ul,
.service-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 8px;
}

/* Images inside content */
.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}

/* Links */
.service-content a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
}

.service-content a:hover {
    text-decoration: underline;
}

/* ===============================
   TABLE RESPONSIVE FIX
=================================*/

.service-content table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

/* ===============================
   MOBILE OPTIMIZATION
=================================*/

@media (max-width: 768px) {

    .service-content-section {
        padding: 40px 15px;
    }

    .service-content {
        font-size: 14px;  /* Smaller font on mobile */
        line-height: 1.6;
    }

    .service-content h2 {
        font-size: 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .service-content {
        font-size: 13px; /* Extra small phones */
    }

    .service-content h2 {
        font-size: 18px;
    }

    .service-content h3 {
        font-size: 16px;
    }
}
