 
    /* ------------------------------------------------------------------- */
    /* 1. Base Styles & Reset */
    /* ------------------------------------------------------------------- */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        padding-top: 70px; 
        background-color: #f0f2f5; 
    }

    .container {
        /* General container for centering content, reused across sections */
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* General Section Title Styles (Reused by Destination, Testimonials) */
    .section-title {
        font-size: 2em;
        color: #0c0880;
        margin-bottom: 30px;
        font-weight: 700;
        text-align: center;
    }

    /* ------------------------------------------------------------------- */
    /* 2. Navbar Core Styles */
    /* ------------------------------------------------------------------- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #c6c5c5; 
        box-shadow: 0 2px 4px rgba(228, 221, 221, 0.1); 
        z-index: 1000; 
    }
    /* Updated Navbar Logo Styles */
    .navbar-logo {
        display: flex;
        align-items: center;
        padding: 5px 0; /* Adds a little breathing room */
    }

    .logo-img {
        /* height: 50px ensures it fits within your 70px min-height navbar */
        height: 80px; 
        width: auto; /* Maintains aspect ratio */
        object-fit: contain;
        transition: transform 0.3s ease;
        border-radius: 50px;
    }

    .logo-img:hover {
        transform: scale(1.05); /* Subtle effect when hovering over the logo */
    }

    /* Ensure navbar-container handles the logo correctly */
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 25px; /* Reduced vertical padding slightly for the logo */
        min-height: 70px;
    }
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 25px;
        min-height: 70px;
    }

    .navbar-logo {
        font-size: 1.5em;
        font-weight: 800;
        color: #fffdfd; 
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .navbar-logo i {
        margin-right: 8px;
        color: #fbbc05; 
    }

    .navbar-links a {
        color: #f05b0a;
        text-decoration: none;
        padding: 0 10px;
        font-size: 1.0em;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .navbar-links a:hover {
        color: #1a73e8; 
    }

    .navbar-actions {
        display: flex;
        gap: 10px; 
    }

    .action-btn {
        text-decoration: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: 600;
        display: flex;
        align-items: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap; 
    }

    .action-btn i {
        margin-right: 5px;
    }

    .call-btn {
        background-color: #fbbc05; 
        color: #333;
    }
    .call-btn:hover {
        background-color: #f8c946;
        transform: translateY(-1px);
    }

    .whatsapp-btn {
        background-color: #25d366; 
        color: white;
    }
    .whatsapp-btn:hover {
        background-color: #1dae52;
        transform: translateY(-1px);
    }

    .menu-toggle {
        background: none;
        border: none;
        color: #f80404; /* Assuming you want this bright color */
        font-size: 1.5em;
        cursor: pointer;
        display: none; 
    }

    /* ------------------------------------------------------------------- */
    /* 3. Hero Intro Section */
    /* ------------------------------------------------------------------- */
    .hero-intro {
        text-align: left;
        padding: 50px 40px; 
        width: 80%; 
        margin: 30px auto; 
        background-color: #ffffff; 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
        border-radius: 12px; 
        border-left: 5px solid #f05b0a; 
    }

    .hero-intro h1 {
        font-size: 2.0em; 
        color: #282d89;
        margin-bottom: 5px;
        font-weight: 800; 
        line-height: 1.0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05); 
    }
    
    .hero-intro h1::after {
        content: '';
        display: block;
        width: 80px; 
        height: 4px;
        background-color: #0511fb; 
        margin-top: 10px;
        border-radius: 2px;
    }

    .hero-intro h2 {
        font-size: 1.4em;
        color: #080808; 
        margin-top: 20px; 
        margin-bottom: 25px;
        font-weight: 600;
        line-height: 1.4;
    }

    .intro-paragraph {
        font-size: 1.05em;
        color: #050505; 
        line-height: 1.9; 
        margin-bottom: 20px; 
    }
    
    .intro-paragraph strong {
        color: #0c0880; 
        font-weight: 700;
        border-bottom: 2px dotted #fbbc05; 
    }

/* ------------------------------------------------------------------- */
/* 4. Destination Grid Section - FIXED VERSION */
/* ------------------------------------------------------------------- */
.destination-section {
    padding: 40px 20px; /* Changed for better mobile */
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem; /* Slightly smaller for mobile */
    color: #050505;
    line-height: 1.3;
}

.destination-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 40px;
}

.destination-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    border-radius: 15px; /* Slightly smaller radius for mobile */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    min-height: 300px; /* Ensures minimum height */
}

/* CRITICAL FIX: Make card-title always visible */
.service-title {
    display: block !important;
    padding: 18px 15px !important;
    background-color: #f05b0a !important;
    color: #ffffff !important;
    font-size: 1.1em !important;
    font-weight: 700 !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 0.3s ease !important;
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 1; /* Ensures it stays at top */
    
}

/* Image styling */
.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    order: 2; /* Ensures image is below title */
}

/* Hover Effects */
.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.destination-card:hover .card-title {
    background-color: #d44900 !important; /* Darker orange on hover */
    
}

.destination-card:hover img {
    transform: scale(1.03);
}

/* ========== MOBILE FIXES ========== */
@media (max-width: 992px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .destination-card {
        min-height: 280px;
    }
    
    .destination-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .destination-section {
        padding: 30px 15px;
    }
    
    .destination-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 450px;
        gap: 20px;
        padding-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    /* CRITICAL: Ensure card structure is correct */
    .destination-card {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .card-title {
        font-size: 1.1em !important;
        padding: 15px 10px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        
    }
    
    .destination-card img {
        height: 200px;
        width: 100%;
    }
}

/* Emergency debug styles - add these temporarily */
@media (max-width: 768px) {
    .destination-card {
        border: 3px solid #525252 !important; /* Red border to see card bounds */
        background-color: rgba(255, 0, 0, 0.1) !important;
    }
    
    .service-title {
        background-color: #f05b0a !important;
        color: white !important;
        font-size: 15px !important;
        padding: 15px !important;
        border: 2px solid #f5f1f1 !important; /* Black border to see title bounds */
        
    }
}

    /* ------------------------------------------------------------------- */
    /* 5. Service Details & Airport Details Sections (Merged common styles) */
    /* ------------------------------------------------------------------- */
    .service-details {
        padding: 30px 0 50px 0;
        background-color: #f0f2f5; 
    }
    
    .airport-details {
        background-color: #ffffff; 
        padding: 50px 0;
    }

    .service-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .airport-intro { /* Class specific to the airport section intro paragraph */
        font-size: 1.1em;
        color: #0a0a0a;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto 30px auto;
    }

    .main-service-title {
        color: #f05b0a;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 3px solid #0c0880; 
        display: inline-block; 
        padding-bottom: 5px;
    }

    .service-content-grid, .airport-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px; 
        margin-top: 30px;
    }

    .service-card, .airport-card {
        background-color: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
        transition: all 0.3s ease;
    }

    .airport-card:hover {
        box-shadow: 0 8px 20px rgba(12, 8, 128, 0.15); 
        transform: translateY(-2px);
    }
    
    .service-card h3, .airport-card h3 {
        font-size: 1.25em;
        color: #0c0880; 
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

    .service-card h3 i {
        margin-right: 10px;
        color: #1cfc03; 
        font-size: 1.1em;
    }

    .airport-card h3 i { /* Overrides service card icon color */
        color: #f05b0a; 
    }

    .service-card p, .airport-card p {
        font-size: 1.0em;
        color: #333;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .service-card p strong, .airport-card p strong {
        color: #f05b0a; 
        font-weight: 600;
    }

    .primary-card {
        border-left: 5px solid #0c0880;
    }

    .secondary-card {
        border-left: 5px solid #f05b0a;
    }

    .full-width-card {
        grid-column: 1 / -1; /* Makes the card span all columns */
    }

    /* ------------------------------------------------------------------- */
    /* 6. Local Sightseeing Intro (Reuses Hero Intro Style) */
    /* ------------------------------------------------------------------- */
    .local-sightseeing-intro {
        margin: 50px auto; 
        border-left: 5px solid #25d366; 
    }

    .local-sightseeing-intro h2 { /* Targeting the inner H2 of this section */
        font-size: 1.8em; 
        color: #0c0880;
        margin-bottom: 10px;
    }

    .local-sightseeing-intro h2 i {
        color: #fbbc05; 
        margin-right: 10px;
    }

    .local-sightseeing-intro h2::after { /* Targeting the H1's '::after' divider */
        background-color: #25d366; 
    }

    .sightseeing-h2 {
        color: #f05b0a !important; 
        font-size: 1.3em !important;
        margin-top: 15px !important;
    }
    
    /* ------------------------------------------------------------------- */
    /* 7. Testimonials Section */
    /* ------------------------------------------------------------------- */
    .testimonials-section {
        background-color: #f7f9fc; 
        padding: 70px 0;
        position: relative;
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
        margin-top: -5%; 
    }

    .testimonials-container-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .testimonials-title {
        color: #0c0880; 
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .testimonials-title i {
        color: #f05b0a; 
        margin-right: 10px;
    }

    .testimonials-subtitle {
        font-size: 1.1em;
        color: #0759dd;
    }

    .testimonials-slider {
        display: flex;
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        gap: 20px;
        padding-bottom: 20px; 
        -webkit-overflow-scrolling: touch; 
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    /* Hide scrollbar on Chrome, Safari and Opera (Combined from duplicates) */
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 320px; 
        max-width: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
        background: #fff;
        border-radius: 15px; 
        padding: 30px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border-top: 5px solid #0c0880; 
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .testimonial-rating {
        color: #fbbc05; 
        margin-bottom: 15px;
        font-size: 1.1em;
    }

    .testimonial-service {
        margin: 15px 0;
        padding: 5px 0;
        border-top: 1px dashed #eee;
        border-bottom: 1px dashed #eee;
    }

    .testimonial-service p {
        font-size: 0.9em;
        color: #f05b0a; 
        font-weight: 600;
        margin: 0;
    }

    .testimonial-content p {
        font-size: 1em;
        line-height: 1.6;
        color: #333;
        font-style: italic; 
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: bold;
        font-size: 1.2em;
        margin-right: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .author-info h4 {
        margin: 0;
        font-size: 1.1em;
        color: #0c0880;
        font-weight: 700;
    }

    .author-info p {
        margin: 0;
        font-size: 0.9em;
        color: #777;
    }

    /* ------------------------------------------------------------------- */
    /* 8. FAQ Section (CRITICAL FIX: Merged Duplicates for 1-column layout) */
    /* ------------------------------------------------------------------- */
    .faq-section {
        background-color: #ffffff;
        padding: 70px 0;
    }

    .faq-container-wrapper {
        max-width: 1200px; /* Inherits from .container or custom max-width */
        margin: 0 auto;
        padding: 0 15px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .faq-title {
        color: #0c0880; 
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .faq-title i {
        color: #f05b0a; 
        margin-right: 10px;
    }

    .faq-subtitle {
        font-size: 1.3em;
        color: #090909;
    }
    
    /* MERGED/FIXED GRID STYLE */
    .faq-content-grid {
        display: grid;
        grid-template-columns: 1fr; /* Ensures full width single column */
        gap: 15px; /* Spacing between FAQ items */
        max-width: 1200px;
        margin: 0 auto; 
        padding: 0 15px; 
    }

    .faq-item {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 5px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden; 
}

.faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #0c0880; 
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    /* NEW: Setup for the icon */
    display: flex; /* Allows question and icon to sit side-by-side */
    justify-content: space-between; /* Pushes icon to the right */
    align-items: center;
    border-bottom: 1px solid #eee; /* Add a subtle separator */
}

/* NEW: Icon styling */
.faq-question::after {
    content: '+'; /* Default icon for closed state */
    font-size: 1.2em;
    font-weight: 700;
    color: #f05b0a; /* Orange color for the icon */
    margin-left: 15px;
    transition: transform 0.3s ease-in-out;
}

/* NEW: Styles when the FAQ item is active (expanded) */
.faq-item.active .faq-question {
    background-color: #f05b0a; /* Orange background on active question */
    color: #ffffff; /* White text on active question */
    border-bottom-left-radius: 0; /* Align with the expanded content */
    border-bottom-right-radius: 0;
    border-bottom: none; /* Remove separator when expanded */
}

/* NEW: Rotate the icon when active */
.faq-item.active .faq-question::after {
    content: '-'; /* Change icon to minus when active */
    color: #ffffff; /* White icon on orange background */
    transform: rotate(0deg); /* Optional: If you use a chevron, use rotate(180deg) */
}

/* 1. Hiding the Answer by Default (Ensure these max-height values are robust) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; /* Increase transition time for smoother animation */
    padding: 0 20px; 
    font-size: 1.2em;
    color: #040404;
}

/* 3. The Active/Expanded State */
.faq-item.active .faq-answer {
    max-height: 1000px; /* INCREASED: Ensure max-height is very large (e.g., 1000px) */
    padding: 0 20px 20px 20px; /* Slightly increased bottom padding for better spacing */
    border-top: 2px solid #f05b0a; /* Optional: Add an orange line above the answer */
}

/* 2. Fix the Line Height for Readability */
.faq-answer p {
    margin: 0; /* Removed bottom margin since padding is on .faq-answer */
    line-height: 1.6; /* CRITICAL FIX: Ensures multi-line text is readable */
}

/* Improve overall item look */
.faq-item {
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
    
    /* ------------------------------------------------------------------- */
    /* 9. Service Links Section */
    /* ------------------------------------------------------------------- */

    .service-links-section {
        background-color: #f7f9fc; 
        padding: 60px 0;
        border-top: 1px solid #eee;
    }

    .links-container-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .links-title {
        text-align: center;
        color: #0c0880; 
        font-size: 2em;
        margin-bottom: 5px;
    }

    .links-title i {
        color: #f05b0a; 
        margin-right: 10px;
    }

    .links-subtitle {
        text-align: center;
        font-size: 1.1em;
        color: #555;
        margin-bottom: 40px;
    }

    .links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 20px;
    }

    .link-card {
        display: flex;
        align-items: center;
        text-decoration: none;
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
        border-left: 5px solid #0c0880; 
    }

    .link-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-left: 5px solid #f05b0a; 
    }

    .link-icon {
        font-size: 1.5em;
        color: #f05b0a; 
        margin-right: 15px;
        width: 35px; 
        text-align: center;
    }

    .link-info h4 {
        margin: 0;
        font-size: 1.1em;
        color: #0c0880; 
        font-weight: 700;
    }

    .link-info p {
        margin: 3px 0 0 0;
        font-size: 0.9em;
        color: #666; 
    }

    /* ------------------------------------------------------------------- */
    /* 10. Footer Section */
    /* ------------------------------------------------------------------- */

    footer {
        /* CHANGED: Background color from #020202 to the brand blue #0c0880 */
        background-color: #0c0880; 
        color: #f7f9fc; 
        padding-top: 50px;
        font-size: 0.9em;
    }

    .footer-grid-wrapper {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 30px 15px; 
    }

    .footer-col h3 {
        font-size: 1.2em;
        font-weight: 700;
        margin-bottom: 20px;
        color: #f7f5f5; 
    }

    .footer-col h3 i {
        margin-right: 8px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col li {
        margin-bottom: 8px;
    }

    .footer-col a {
        color: #f7f9fc;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-col a:hover {
        color: #f05b0a; 
    }

    .google-map-embed {
        margin-bottom: 15px;
        border-radius: 5px;
        overflow: hidden;
    }
    .google-map-embed iframe {
        border-radius: 5px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .social-links a {
        font-size: 1.5em;
        color: #f7f9fc;
        transition: color 0.3s;
    }

    .social-links a:hover {
        color: #faf9f9;
    }

    .footer-contact .contact-item {
        margin-bottom: 12px;
    }
    .footer-contact .contact-item p {
        margin: 0;
        font-weight: 600;
        color: #ffffff;
    }
    .footer-contact .contact-item a {
        display: block;
        font-size: 1.1em;
        font-weight: 700;
        color: #f7f9fc; 
    }

    .footer-bar {
        background-color: #235b38; 
        padding: 15px 0;
        text-align: center;
        border-top: 1px solid #1a157e;
    }

    .footer-bar p {
        margin: 0;
        font-size: 1.2em;
        font-weight: bold;
        color: #f8f6f6;
    }
    .footer-bar .current-location {
        font-weight: bold;
        color: #060606;
    }

    /* ------------------------------------------------------------------- */
    /* 11. Mobile Responsiveness (Merged and Simplified) */
    /* ------------------------------------------------------------------- */

    @media (max-width: 992px) {
        
        /* Navbar */
        body { padding-top: 60px; }
        .navbar-container { padding: 10px 20px; min-height: 60px; }
        .menu-toggle { display: block; }
        .navbar-links { 
            display: none; 
            flex-direction: column; 
            width: 100%; 
            position: absolute; 
            top: 60px; 
            left: 0; 
            background-color: #ffffff; 
            box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1); 
            padding: 10px 0; 
            border-top: 1px solid #eee; 
        }
        .navbar-links.active { display: flex; }
        .navbar-links a { padding: 12px 20px; text-align: left; width: 100%; border-bottom: 1px solid #f0f0f0; color: #333;}
        .navbar-actions { order: 2; }
        .action-btn .btn-text { display: none; }
        .action-btn { padding: 8px 10px; }
        .action-btn i { margin-right: 0; }
        
        /* Hero/Intro */
        .hero-intro {
            width: 95%; 
            padding: 30px 20px;
            border-radius: 8px;
        }
        .hero-intro h1 { font-size: 1.9em; }
        .hero-intro h2 { font-size: 1.1em; }
        .local-sightseeing-intro h2 { font-size: 1.6em; }
        .hero-intro h1::after { width: 60px; height: 3px; }
        .intro-paragraph { font-size: 1em; }

        /* Service & Airport Details */
        .service-content-grid, .airport-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .service-container { width: 95%; }
        .main-service-title { font-size: 1.8em; margin-bottom: 20px; }
        .full-width-card { grid-column: auto; } /* Reset full width for mobile */
        
        /* FAQ */
        .faq-content-grid {
            grid-template-columns: 1fr; /* Ensures single column on all mobile/tablet */
            gap: 15px; 
        }
        .faq-item { margin-bottom: 10px; }

        /* Testimonials */
        .testimonials-section {
            padding: 40px 0;
            clip-path: polygon(0 0, 100% 2%, 100% 100%, 0% 100%);
            margin-top: -3%;
        }
        .testimonial-card {
            min-width: 90vw; 
            max-width: 90vw;
            margin-right: 15px; 
            padding: 20px;
            border-radius: 10px;
        }
        .testimonials-title { font-size: 2em; }
    }

    @media (max-width: 768px) {
        /* Destination Grid */
        .destination-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            width: 95%;
        }
        .destination-card { height: 150px; }
        .card-title { font-size: 1.0em; bottom: 10px; left: 10px; padding: 4px 8px; }

        /* Links Grid */
        .links-grid { grid-template-columns: 1fr; }
        .link-card { padding: 15px; border-left-width: 3px; }

        /* Footer */
        .footer-grid-wrapper { grid-template-columns: 1fr; }
        .footer-col { margin-bottom: 25px; }
        .footer-map { order: 1; }
        .footer-contact { order: 2; }
        .footer-quick-links { order: 3; }
        .footer-pages { order: 4; }
        .social-links { justify-content: center; }
    }

    @media (min-width: 769px) and (max-width: 992px) {
        /* Navbar - re-enables text on smaller tablets */
        .action-btn .btn-text { display: inline; }
        .action-btn i { margin-right: 5px; }

        /* Links Grid - tablet view */
        .links-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 768px) {
        /* Redundant/Useless Media Query Removed: 
           The explicit `grid-template-columns: 1fr;` for FAQ is now in the main block 
           and handled by the max-width media queries above. */
    }
    /* ------------------------------------------------------------------- */
/* 9. Floating WhatsApp Button */
/* ------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed; /* CRITICAL: Makes the element stick to the viewport */
    bottom: 50%; /* Distance from the bottom of the screen */
    right: 40px; /* Distance from the right side of the screen */
    z-index: 1000; /* Ensures it is always on top of other content */
    display: block;
    width: 60px; /* Size of the container */
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Strong shadow to stand out */
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Slight animation on hover */
}

/* Style the image/GIF inside the container */
.whatsapp-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image/GIF fits perfectly */
    border-radius: 50%; /* If your source image is square, this makes it round */
}

/* Optional: To make it slightly more visible on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        bottom: 50%; 
    }
}

.call-float {
    position: fixed;
    bottom: 60%; /* Positioned above the WhatsApp button */
    right: 40px;
    z-index: 1000;
    display: block;
    width: 60px;
    height: 60px;
    background-color: #f7f8f9; /* Professional blue color for calling */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-float:hover {
    transform: scale(1.1);
    background-color: #ffffff; /* Darker blue on hover */
}

.call-icon-img {
    width: 60%; /* Slightly smaller icon look inside the circle */
    height: 60%;
    object-fit: contain;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .call-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 58%; /* Keeps it stacked on mobile */
    }
}

 /*Single Page*/

/* ------------------ BODY GLOBAL ------------------ */
body {
    font-family: 'Segoe UI', sans-serif;
    background:#f4f6f9;
    line-height:1.7;
}

/* ------------------ HERO ------------------ */
.hero {
    background: linear-gradient(120deg,#0c0880,#f05b0a);
    color:#fff;
    padding:70px 15px;
    text-align:center;
}
.hero h1 {
    font-size:2.3rem;
    margin-bottom:10px;
}
.hero p {
    font-size:1.1rem;
    max-width:900px;
    margin:auto;
}
.hero .cta {
    margin-top:25px;
}
.hero .cta a {
    display:inline-block;
    background:#25d366;
    color:#fff;
    padding:14px 30px;
    font-size:1.1rem;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
}
.hero .cta a:hover {
    background:#1ebc59;
}

/* ------------------------------------------------------------------- */
/* Trust Bar Section with Phone-style Icons */
/* ------------------------------------------------------------------- */
.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #0c0880 0%, #1a5f7a 100%);
    padding: 25px 20px;
    border-radius: 15px;
    margin: 30px auto 40px;
    max-width: 1200px;
    box-shadow: 0 8px 25px rgba(12, 8, 128, 0.15);
}

.trust-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    flex: 1;
}

/* Phone-style Circular Icons - FIXED */
.trust-box i {
    font-size: 1.8rem;
    color: #ffffff;
    background: #f05b0a; /* Orange color from your brand */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex !important; /* Force display */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(240, 91, 10, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 12px; /* Space between icon and heading */
}

.trust-box:hover i {
    background: #ff7e30; /* Lighter orange on hover */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 12px rgba(240, 91, 10, 0.4);
}

.trust-box h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0; /* Remove all margins */
    padding: 0; /* Remove padding */
}

/* Mobile Horizontal Scroll Layout */
@media (max-width: 768px) {
    .trust-bar {
        flex-direction: row;
        overflow-x: auto;
        padding: 20px 15px;
        justify-content: flex-start;
        border-radius: 12px;
        margin: 20px 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .trust-bar::-webkit-scrollbar {
        display: none;
    }
    
    .trust-box {
        flex: 0 0 auto;
        min-width: 120px; /* Reduced width since no paragraphs */
        padding: 0 10px;
        margin: 0 5px;
    }
    
    /* Smaller Circular Icons for Mobile */
    .trust-box i {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 8px; /* Less space on mobile */
    }
    
    .trust-box h4 {
        font-size: 1rem;
        white-space: nowrap;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .trust-bar {
        padding: 18px 12px;
        margin: 15px 10px;
    }
    
    .trust-box {
        min-width: 100px;
        padding: 0 8px;
    }
    
    .trust-box i {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .trust-box h4 {
        font-size: 0.9rem;
    }
}
/* ------------------ TABLE ------------------ */
/* Fare Table – Modern & SEO Friendly */
.fare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Table Head */
.fare-table th {
    background: linear-gradient(135deg, #0c0880, #1a1fb3);
    color: #ffffff;
    padding: 16px 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    border: none;
    font-size: 15px;
}

/* Rounded corners for header */
.fare-table th:first-child {
    border-top-left-radius: 14px;
}
.fare-table th:last-child {
    border-top-right-radius: 14px;
}

/* Table Body Cells */
.fare-table td {
    padding: 15px 14px;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
    color: #070707;
    font-weight: 700;
    background: #ffffff;
}

/* Zebra rows for readability */
.fare-table tbody tr:nth-child(even) td {
    background: #f7f8fc;
}

/* Hover effect (UX boost) */
.fare-table tbody tr:hover td {
    background: #eef1ff;
    transition: background 0.3s ease;
}

/* Emphasize fare column */
.fare-table td:last-child {
    font-weight: 700;
    color: #0c0880;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .fare-table {
        font-size: 14px;
    }
    .fare-table th,
    .fare-table td {
        padding: 12px 10px;
    }
}


/* ------------------ VEHICLES SECTION (BIGGER IMAGES) ------------------ */
.vehicle-grid {
    display: grid;
    /* Increased min-width from 250px to 320px to accommodate larger images */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

.vehicle-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

/* ENLARGED IMAGE CONTAINER */
.vehicle-img-container {
    width: 100%;
    height: 200px; /* Increased from 140px to 200px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden; /* Keeps zoom effect clean */
}

.vehicle-img-container img {
    width: 100%;
    max-width: 280px; /* Increased from 220px to 280px */
    height: auto;
    object-fit: contain; 
    transition: transform 0.4s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: #f05b0a;
}

.vehicle-card:hover .vehicle-img-container img {
    transform: scale(1.15); /* More noticeable zoom for larger images */
}

.vehicle-card h3 {
    margin: 10px 0;
    color: #0c0880;
    font-size: 1.8rem; /* Slightly larger text to match larger image */
    font-weight: 700;
}

.vehicle-card p {
    color: #020202;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-card-book {
    display: inline-block;
    background-color: #f05b0a;
    color: #fff;
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* ------------------ WHY US ------------------ */
.why-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.why-box {
    background:#fff;
    padding:25px;
    border-left:5px solid #f05b0a;
    border-radius:10px;
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

/* ------------------ STEPS ------------------ */
.steps {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}
.step {
    text-align:center;
}
.step span {
    display:inline-block;
    background:#f05b0a;
    color:#fff;
    width:45px;
    height:45px;
    line-height:45px;
    border-radius:50%;
    font-weight:700;
}

/* ------------------ FAQ ------------------ */
.faq-item {
    background:#fff;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}
.faq-question {
    padding:18px;
    font-weight:600;
    cursor:pointer;
    background:#f9f9f9;
}
.faq-answer {
    display:none;
    padding:18px;
}

/* ------------------ CTA ------------------ */
.cta-section {
    background:linear-gradient(120deg,#f05b0a,#0c0880);
    color:#fff;
    text-align:center;
    padding:60px 15px;
}
.cta-section a {
    display:inline-block;
    margin-top:20px;
    background:#25d366;
    padding:14px 30px;
    color:#fff;
    font-weight:700;
    border-radius:30px;
    text-decoration:none;
}

/* ------------------ MOBILE ------------------ */
@media(max-width:768px){
    .hero h1 {font-size:1.8rem;}
}
/* WHY US SECTION - STYLISH DESIGN */
.why-us-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #2a9d8f, #e9c46a, #e76f51);
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  position: relative;
  padding-bottom: 20px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #2a9d8f;
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.why-card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #2a9d8f, #264653);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(42, 157, 143, 0.15);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #2a9d8f, #1d7873);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #e9c46a, #f4a261);
}

.why-card h3 {
  color: #264653;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.why-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Extra Benefit Styling */
.extra-benefit {
  background: linear-gradient(135deg, #264653, #2a9d8f);
  border-radius: 15px;
  padding: 25px 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.extra-benefit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
}

.benefit-badge {
  display: inline-block;
  background: #e9c46a;
  color: #264653;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(233, 196, 106, 0.4);
}

.extra-benefit p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}

.extra-benefit strong {
  color: #e9c46a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .why-card {
    padding: 25px 20px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .extra-benefit {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-card h3 {
    font-size: 1.2rem;
  }
}