/* === Global Reset & Basic Setup === */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    height: 100%;
    background-color: #f7f7f7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* === Navigation Bar === */

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: whitesmoke;
    background-color: wh;
    padding: 0.5rem 2rem;
    height: 80px;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    border-radius: 0; /* Removed border radius */
    margin: 0; /* Removed margin */
    max-width: 100%; /* Full width */
    box-shadow: none; /* Removed shadow */
}

/* Logo styling */
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .taxi {
    color: #006e5f;
}

.logo-text .fare {
    color: #000;
}

.phone-number {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #006e5f;
    font-size: 1.3rem;
    font-weight: 600;
}

.phone-number i {
    margin-right: 10px;
}

.phone-number .phone-text {
    display: inline-block;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    text-align: center;
    background: linear-gradient(to bottom,rgba(0, 110, 95, 0.07),rgba(255, 255, 255, 0.9));
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 700;
    color: #001f1e;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
}

.hero-tagline .highlight {
    color: #006e5f;
}

.booking-text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #001f1e;
    text-align: center;
}

.booking-text .taxi-highlight {
    background-color: #006e5f;
    font-weight: 700;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
}

.booking-text .bold {
    font-weight: 700;
}

/* Star Rating */
.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    margin-bottom: 0.5rem;
    display: flex;
    color: #FFD700;
    font-size: 1.5rem;
}

.customers {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001f1e;
}

.customers a {
    color: #004d44;
    text-decoration: underline;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    height: 3.5rem;
    box-sizing: border-box;
}

.call-btn {
    background-color: #74d6ce;
    color: #000;
    border: 2px solid #74d6ce;
}

.book-btn {
    background-color: #74d6ce;
    color: #000;
    border: 2px solid #74d6ce;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.call-btn i {
    margin-right: 0.5rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook {
    background-color: #4267B2;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom left,
        rgba(95, 211, 199, 0.15),
        rgba(255, 255, 255, 0.05) 60%
    );
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001f1e;
    margin-bottom: 20px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #00a89a;
    border-radius: 2px;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #004d44;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #001f1e;
    margin-bottom: 5px;
}

.phone-link, .email-link {
    font-size: 1.1rem;
    color: #00a89a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: #004d44;
    text-decoration: underline;
}

/* Form Styles */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
}

label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #001f1e;
}

input, textarea, select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #00a89a;
    box-shadow: 0 0 0 2px rgba(0, 168, 154, 0.2);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-hint {
    font-size: 0.8rem;
    color: #666;
}

.submit-btn {
    background-color: #00a89a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    text-align: center;
}

.submit-btn:hover {
    background-color: #004d44;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .phone-number .phone-text {
        display: none;
    }
    
    .phone-number i {
        margin-right: 0;
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 2.5rem;
    }
    
    .booking-text {
        font-size: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: auto;
        padding: 10px;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .hero-tagline {
        font-size: 2.5rem;
    }
    
    .booking-text {
        font-size: 1.2rem;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.title-wrapper {
    margin-bottom: 30px;
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #001f1e;
}

.title span {
    color: #00a89a;
}

.divider {
    height: 4px;
    width: 150px;
    background-color: #00a89a;
    margin: 20px auto;
}

.description {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    margin: 40px 0;
    list-style-position: inside;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    padding: 8px 0;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    display: flex;
    align-items: center;
}

.feature::before {
    content: "•";
    color: #00d6a4;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Icons Section Styles */
.icons-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #00a89a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
}

.icon-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001f1e;
    margin-bottom: 8px;
}

.icon-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Responsive Grid Layouts */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet - 2 columns, 3 rows */
    .icons-section {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Mobile - 1 column, stacked */
    .icons-section {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 1.8rem;
    }
    
    .icon-title {
        font-size: 1rem;
    }
    
    .icon-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .icons-section {
        gap: 15px;
        padding: 0 10px;
    }
    
    .icon-item {
        padding: 15px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle i {
        font-size: 1.5rem;
    }
}

/* Cars Section Styles */
.cars-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(116, 214, 206, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.cars-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cars-section .title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.cars-section .title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #001f1e;
}

.cars-section .title span {
    color: #00a89a;
}

.cars-section .divider {
    height: 4px;
    width: 150px;
    background-color: #00a89a;
    margin: 20px auto;
}

.cars-description {
    text-align: center;
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: #333;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.car-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.car-card {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.car-card.active {
    opacity: 1;
}

.car-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-info {
    padding: 10px;
    text-align: center;
    background: whitesmoke;
    color: #001f1e;
}

.car-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 31, 30, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(0, 31, 30, 1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 31, 30, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00a89a;
    transform: scale(1.2);
}

.dot:hover {
    background: #004d44;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cars-section {
        padding: 60px 0;
    }
    
    .slider-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .car-image {
        height: 250px;
    }
    
    .car-name {
        font-size: 1.8rem;
    }
    
    .car-info {
        padding: 20px;
    }
    
    /* Move buttons to bottom on mobile */
    .slider-btn {
        position: static;
        transform: none;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: auto;
    }
    
    .next-btn {
        right: auto;
    }
    
    /* Create button container at bottom */
    .slider-container::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 70px;
        left: 0;
        right: 0;
        height: 60px;
        pointer-events: none;
    }
    
    .slider-container {
        position: relative;
        padding-bottom: 20px;
    }
    
    /* Reposition buttons for mobile */
    .slider-btn {
        position: absolute;
        top: auto;
        bottom: 70px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .cars-section .container {
        padding: 0 10px;
    }
    
    .slider-container {
        margin: 0 5px;
    }
    
    .car-image {
        height: 200px;
    }
    
    .car-name {
        font-size: 1.5rem;
    }
    
    .car-info {
        padding: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}



/* === WhatsApp Icon Fixed Position === */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-icon i {
    font-size: 30px;
    color: white;
}

.whatsapp-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Customer Reviews Section */
        .customer-reviews-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(116, 214, 206, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .customer-reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at top right,
                rgba(0, 168, 154, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 70%
            );
            z-index: 1;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .reviews-title-wrapper {
            text-align: center;
            margin-bottom: 50px;
        }

        .reviews-title {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 900;
            margin-bottom: 10px;
            line-height: 1.2;
            color: #001f1e;
        }

        .reviews-title span {
            color: #00a89a;
        }

        .reviews-divider {
            height: 4px;
            width: 150px;
            background-color: #00a89a;
            margin: 20px auto;
        }

        .reviews-description {
            text-align: center;
            font-size: clamp(1rem, 4vw, 1.2rem);
            color: #333;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        /* Reviews Slider */
        .reviews-slider-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .reviews-slider-wrapper {
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
            position: relative;
        }

        .reviews-slider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .review-card {
            min-width: 100%;
            padding: 40px 30px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .review-card.active {
            opacity: 1;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00a89a 0%, #74d6ce 100%);
        }

        .quote-icon {
            font-size: 2.5rem;
            color: #00a89a;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 25px;
            font-style: italic;
            max-width: 500px;
        }

        .customer-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .customer-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #001f1e;
            margin-bottom: 5px;
        }

        .customer-location {
            font-size: 1rem;
            color: #00a89a;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .customer-location i {
            font-size: 0.9rem;
        }

        .rating-stars {
            display: flex;
            gap: 3px;
            margin-top: 10px;
        }

        .rating-stars i {
            font-size: 1.2rem;
            color: #FFD700;
        }

        /* Navigation Dots */
        .reviews-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .reviews-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 31, 30, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reviews-dot.active {
            background: #00a89a;
            transform: scale(1.3);
        }

        .reviews-dot:hover {
            background: #004d44;
            transform: scale(1.2);
        }

        /* Trust Badge */
        .trust-badge {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: rgba(0, 168, 154, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 168, 154, 0.1);
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00a89a;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .customer-reviews-section {
                padding: 60px 0;
            }

            .reviews-container {
                padding: 0 15px;
            }

            .reviews-slider-container {
                max-width: 100%;
                margin: 0 10px;
            }

            .review-card {
                padding: 30px 20px;
            }

            .review-text {
                font-size: 1rem;
            }

            .customer-name {
                font-size: 1.2rem;
            }

            .customer-location {
                font-size: 0.9rem;
            }

            .trust-stats {
                gap: 25px;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .reviews-slider-container {
                margin: 0 5px;
            }

            .review-card {
                padding: 25px 15px;
            }

            .quote-icon {
                font-size: 2rem;
            }

            .review-text {
                font-size: 0.95rem;
            }

            .trust-stats {
                gap: 20px;
            }
        }

        /* Animation for smooth transitions */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-card.active {
            animation: fadeInUp 0.6s ease-out;
        }


/* === Footer Section === */
.site-footer {
    background-color: #001f1e; /* Dark teal from title color */
    color: #fefefe;
    padding: 60px 0 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 0 20px;
}

.footer-widget {
    flex: 1 1 300px; /* Flex properties for responsiveness */
}

.widget-title {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #00a89a; /* Highlight color from theme */
}

.footer-link {
    color: #74d6ce; /* Lighter teal for links */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-footer i {
    color: #00a89a;
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Social Icons in Footer */
.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-footer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon-footer.facebook-f { background-color: #4267B2; }
.social-icon-footer.instagram-f { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon-footer.whatsapp-f { background-color: #25D366; }

.social-icon-footer:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer Routes Section */
.footer-routes {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 50px 20px 0;
    background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 168, 154, 0.15) 0%,
    rgba(255, 255, 255, 0.03) 60%
);
}

.routes-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px 25px;
}

.route-column h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff9900;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid white;
    text-transform: uppercase;
}

.route-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-column ul li a {
    color: antiquewhite;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.route-column ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Footer Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .routes-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info-footer p {
        justify-content: center;
    }
    .social-icons-footer {
        justify-content: center;
    }
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .routes-title {
        font-size: 1.8rem;
    }
    .route-column {
        text-align: left; /* Keep route links aligned left */
    }
}

@media (max-width: 666px) {
    .footer-widgets {
        padding: 0 10px;
    }
    .footer-routes {
        padding-left: 10px;
        padding-right: 10px;
    }
    .site-footer {
        padding-top: 40px;
    }
    .routes-grid {
        grid-template-columns: 1fr; /* Stack columns on smallest screens */
        gap: 30px;
    }

    /*******************************************/
    /* NEW: Convert route lists to paragraph style */
    /*******************************************/
    .route-column h5 {
        text-align: center; /* Center the category title */
    }
    .route-column ul {
        line-height: 1.8; /* Improve readability of the paragraph block */
        text-align: center; /* Center the text block */
    }
    .route-column li {
        display: inline; /* Display items next to each other */
    }

    .route-column li a {
        padding: 2px 0; /* Adjust padding for inline display */
        display: inline; /* Ensure link doesn't break line */
    }
    
    .route-column li a:hover {
        transform: none; /* Remove horizontal shift on hover */
        text-decoration: underline;
    }

    .route-column li::after {
        content: ' | ';
        margin: 0 5px;
        color: rgba(255, 255, 255, 0.4);
        /* Prevent selection of the separator */
        user-select: none;
    }

    .route-column li:last-child::after {
        content: ''; /* Remove separator from the last item */
        margin: 0;
    }
}