/* --- CSS Reset & Base Styles --- */
:root {
    --accent-black: #000000;      /* Was #000000 - Now Accent Black */
    --primary-green: #2a4033;        /* Was #2a4033 - Now Primary Green */
    --light-grey: #f5f5f5;     /* Was #f5f5f5 - Now Light Grey */
    --dark-text: #333333;    /* Was #333333 - Now Dark Text */
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --body-bg: #f4f4f4;
    --white: #ffffff;
    --danger-red: #e53935;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--body-bg);
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
        }

       /* ================================================================ */
/* THE DEFINITIVE CSS FOR YOUR NEW HERO & HEADER LAYOUT (FINAL)     */
/* ================================================================ */

/* --- 1. The Main Hero Container --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: auto;
    padding: 2rem 1.5rem;
    background-image: linear-gradient(rgba(15, 32, 72, 0.5), rgba(0, 0, 0, 0.2)), url('https://profit.pakistantoday.com.pk/wp-content/uploads/2021/10/PIA4-scaled.jpg');
    background-size: cover;
    background-position: center;
}

/* 

/* --- 3. The Search Container (Corrected for Downward Growth) --- */
main.search-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding-top: 10vh; /* This creates a stable 'ceiling' for the form */
    width: 100%;
}

.search-form-wrapper {
    width: 100%;
    max-width: 980px;
}

/* --- 4. Service Tabs & Search Card --- */
.service-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
}
.service-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    border: none;
    background-color: rgba(230, 235, 245, 0.6);
    backdrop-filter: blur(8px);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #333);
    cursor: pointer;
    border-radius: var(--border-radius-md, 12px) var(--border-radius-md, 12px) 0 0;
}
.service-tab.active {
    background-color: var(--white, #ffffff);
}
.service-tab.active svg {
    fill: var(--accent-black, #000000);
}

.search-form-card {
    background: var(--white, #ffffff);
    border-radius: 0 var(--border-radius-lg, 24px) var(--border-radius-lg, 24px) var(--border-radius-lg, 24px);
    padding: 1rem;
    box-shadow: var(--card-shadow, 0 8px 30px rgba(0, 0, 0, 0.1));
}
        .trip-type-selector { display: flex; gap: 0.5rem; background-color: #f7f7f7; padding: 0.5rem; border-radius: 50px; width: fit-content; margin-bottom: 1.5rem; }
        .trip-type-btn { border: none; background-color: transparent; padding: 0.6rem 1rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; }
        .trip-type-btn.active { background-color: #2a4033; color: #fff; font-weight: 600; }

        /* --- Unified Flight Leg Grid (Desktop) --- */
        .flight-leg-grid { display: grid; gap: 1rem; align-items: start; grid-template-columns: 1fr 40px 1fr 1fr; }
        .flight-leg-grid.return-visible { grid-template-columns: 1fr 40px 1fr 0.8fr 0.8fr; }
        
        #flight-search-form { display: flex; flex-direction: column; gap: 1rem; }
        
        /* --- Dynamic Form Fields Styling --- */
        .form-field { position: relative; padding: 0.5rem 0.8rem; border: 1px solid var(--border-color); border-radius: var(--border-radius-md); cursor: pointer; }
        .form-field:hover, .form-field.active { border-color: var(--accent-black); box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.2); }
        .form-field label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .form-field .value-main { font-size: 1.1rem; font-weight: 600; }
        .form-field .value-sub { font-size: 0.8rem; color: var(--text-light); }
        .swap-icon-container { display: flex; align-items: center; justify-content: center; height: 100%; padding-top: 1.25rem; }
        .swap-icon { background: var(--white); border: 1px solid var(--border-color); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s, box-shadow 0.2s; }
        .swap-icon:hover { transform: rotate(180deg); box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        
        /* Dropdown Menus */
        .dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; width: 350px; background: var(--white); border-radius: var(--border-radius-md); box-shadow: var(--card-shadow); z-index: 10; overflow: hidden; }
        .dropdown-menu.dropdown-menu-right { left: auto; right: 0; }
        .form-field.active .dropdown-menu { display: block; }
        .location-dropdown .dropdown-header { padding: 1rem; }
        .location-dropdown input { width: 100%; padding: 0.7rem; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; }
        .location-dropdown ul { list-style: none; max-height: 250px; overflow-y: auto; }
        .location-dropdown li { padding: 0.8rem 1rem; cursor: pointer; }
        .location-dropdown li:hover { background-color: #f7f7f7; }
        .location-dropdown li .iata-code { float: right; color: var(--text-light); font-weight: bold; }
        .traveler-dropdown { padding: 1.5rem; width: 320px; }
        .passenger-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
        .passenger-counter { display: flex; align-items: center; gap: 1rem; }
        .counter-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-color); background: #f9f9f9; font-size: 1.2rem; cursor: pointer; }
        .btn-done { background-color: var(--accent-black); color: var(--white); border: none; padding: 0.6rem 1.5rem; border-radius: 8px; cursor: pointer; float: right; margin-top: 1rem; }
        
        /* Form Bottom Buttons */
        .options-row { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; margin-top: 1.5rem; }
        .search-btn { background-color: var(--accent-black); color: var(--white); border: none; padding: 0.5rem 1rem; font-size: 1.1rem; font-weight: 600; border-radius: var(--border-radius-md); cursor: pointer; }
        #addTripBtn { background-color: var(--accent-black); color: white; border: none; padding: 0.5rem 1rem; border-radius: var(--border-radius-md); cursor: pointer; font-weight: 500; }
        
        /* --- Multi-City Specific Styles & Delete Button --- */
        #multiCityContainer > .flight-leg-grid {
             position: relative;
             border-top: 1px dashed var(--border-color);
             padding-top: 1.5rem;
             margin-top: 1rem;
        }
        #main-trip-form-container .remove-trip-btn { display: none; }
        .remove-trip-btn {
            position: absolute;
            top: 1.5rem;
            right: -24px; 
            width: 32px;
            height: 32px;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            line-height: 1;
            color: var(--text-light);
            font-weight: 300;
            cursor: pointer;
            transition: color 0.2s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }
        .remove-trip-btn:hover { color: var(--danger-red); }

        /* --- RESPONSIVE OPTIMIZATIONS --- */
        @media (max-width: 992px) {
            .nav-links { display: none; }
            .swap-icon-container { display: none; } /* Hide swap icon on mobile */
            
            /* ADJUST GRID FOR MOBILE (REMOVE SWAP ICON COLUMN) */
            .flight-leg-grid {
                 grid-template-columns: 1fr 1fr;
            }
            .flight-leg-grid.return-visible {
                grid-template-columns: 1fr 1fr;
            }
            .from-field { grid-column: 1 / 2; }
            .to-field { grid-column: 2 / 3; }
            .journey-date-field { grid-column: 1 / 2; }
            .return-date-field { grid-column: 2 / 3; }




/* --- Full-Screen Takeover Styling --- */
    .location-dropdown {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
        z-index: 1000;
        flex-direction: column;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    /* --- Activation Rule --- */
    .form-field.active .location-dropdown {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* --- Styling for Content Inside --- */
    .location-dropdown .dropdown-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    /* --- ⭐️ THE DEFINITIVE FIX FOR THE CLOSE BUTTON ⭐️ --- */
    .form-field.active .close-dropdown-btn {
        display: block !important; /* This is a very strong rule that will force the button to be visible */
        background: none;
        border: none;
        font-size: 2rem;
        font-weight: 300;
        color: var(--text-light);
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
    }

    .location-dropdown ul {
        flex-grow: 1;
        overflow-y: auto;
    }
    
    /* --- Keep the Traveler Dropdown Attached --- */
    .traveler-dropdown {
        position: absolute;
        width: 320px;
        right: 0; 
        left: auto;
    }




            /* UNIFIED VERTICAL STACK LAYOUT FOR SMALLER MOBILE */
            @media (max-width: 600px) {
                 #flight-search-form,
                 #main-trip-form-container, 
                 #multiCityContainer {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                }
                .flight-leg-grid {
                    /* FIX: Replaced 'display: contents' with 'display: block'. */
                    /* 'display: contents' was removing this element from the layout tree, */
                    /* which broke the positioning context for the 'remove' button. */
                    /* 'display: block' keeps the container for positioning, and its */
                    /* block-level children stack vertically by default. */
                    display: block; 
                }
                .remove-trip-btn {
                    right: 20px;
                    top: calc(50% - 16px);
                }
               
            }
            
            .form-field .value-main { font-size: 1rem; }
            .form-field .value-sub { font-size: 0.75rem; }
        }

/* Hide the new close button on desktop */
.close-dropdown-btn {
    display: none;
}


       /* --- ⭐️ DEFINITIVE FIX: HIDE FLATPCIKR INPUT WITH VISIBILITY ⭐️ --- */
.form-field.date-field .flatpickr-input {
    /* As you requested, this makes the input invisible but it still occupies space */
    visibility: hidden;

    /* These properties ensure the invisible input takes up ZERO space, */
    /* preventing it from pushing your custom text down. */
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}












.search-form-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}


















/* ================================================================ */
/*     FINAL UNIFIED HEADER, SIDEBAR & DROPDOWN CSS (COMPLETE)      */
/* ================================================================ */

/* --- 1. Universal Sidebar & Overlay (Corrected for Functionality) --- */
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease;
}
.sidebar-overlay.active {
    opacity: 1; visibility: visible;
}

.mobile-sidebar {
    position: fixed; top: 0; left: -300px;
    width: 280px; height: 100%; background: var(--white);
    box-shadow: 0 0 20px rgba(0,0,0,0.1); z-index: 1001;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column;
}
.mobile-sidebar.active {
    left: 0;
}

/* ================================================================ */
/*     FINAL UNIFIED HEADER, DROPDOWNS & SIDEBAR CSS (COMPLETE)     */
/* ================================================================ */

/* --- 1. Desktop Header (Hero Version) --- */
.main-header {  display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: none; margin: 0 auto; padding: 0.8rem 1.5rem; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 100; color: #fff; }
.container-fluid {  display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0.8rem 1.5rem; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 100; color: #fff; }

/* This rule targets the header ONLY on this page */
        .main-header {
                       padding: 50px 0;

            /* 2. Add the solid background color from your logo */
            background-color: var(--primary-green, #2a4033);
        }


         @media (max-width: 992px) {

 .main-header {
                                   padding: 35px 0;

           
        }

         }


.logo .logo-img { height: 80px;}
.header-right { display: flex; align-items: center; gap: 1.5rem; }

/* --- Contact Info Styling --- */
.contact-info { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.contact-info i { font-size: 1.5rem; color: var(--accent-black); }
.contact-info div { display: flex; flex-direction: column; }
.contact-info span { font-size: 0.8rem; opacity: 0.8; }
.contact-info a { font-weight: 600; text-decoration: none; color: var(--white); }

/* --- Authentication Section (Login/Signup Buttons) --- */
.header-auth { display: flex; align-items: center; gap: 10px; }
.header-auth .btn-login, .header-auth .btn-signup { text-decoration: none; color: var(--white); font-weight: 500; padding: 0.6rem 1.5rem; border-radius: 50px; transition: background-color 0.3s ease; }
.header-auth .btn-login { background-color: rgba(255, 255, 255, 0.2); border: 1px solid var(--white); }
.header-auth .btn-login:hover { background-color: rgba(255, 255, 255, 0.3); }
.header-auth .btn-signup { background-color: var(--accent-black); }
.header-auth .btn-signup:hover { filter: brightness(90%); }

/* --- 2. Generic Desktop Dropdown Styling (for Currency & User) --- */
.header-dropdown-container { position: relative; }
.header-dropdown-toggle { display: flex; align-items: center; gap: 8px; padding: 8px 12px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border-radius: 50px; font-weight: 500; }
.user-dropdown .header-dropdown-toggle { background-color: rgba(255,255,255,0.9); color: var(--text-dark); }
.user-dropdown .header-dropdown-toggle:hover { background-color: var(--white); }
.currency-dropdown .header-dropdown-toggle { color: var(--white); background-color: rgba(255,255,255,0.1); }
.currency-dropdown .header-dropdown-toggle:hover { background-color: rgba(255,255,255,0.2); }
.header-dropdown-toggle .fa-angle-down { font-size: 0.8rem; transition: transform 0.3s ease; }
.header-dropdown-menu { position: absolute; top: calc(100% + 10px); right: 0; background-color: var(--white); border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); border: 1px solid var(--border-color); padding: 8px; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; min-width: 150px; }
.header-dropdown-container:hover .header-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.header-dropdown-container:hover .header-dropdown-toggle .fa-angle-down { transform: rotate(180deg); }
.dropdown-link { display: flex; align-items: center; gap: 10px; padding: 10px; text-decoration: none; color: var(--text-dark); font-size: 0.9rem; border-radius: 6px; transition: background-color 0.2s ease, color 0.2s ease; }
.dropdown-link.active, .dropdown-link:hover { background-color: var(--light-bg, #f8f9fa); }
.dropdown-link i { width: 16px; color: var(--text-light); transition: color 0.2s ease; }
.dropdown-logout-link:hover { background-color: var(--danger-bg, #ffebee); color: var(--danger-text, #e53935); }
.dropdown-logout-link:hover i { color: var(--danger-text, #e53935); }

/* --- 3. Mobile Sidebar & Overlay --- */
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease; }
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.mobile-sidebar { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); box-shadow: 0 0 20px rgba(0,0,0,0.1); z-index: 1001; transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; }
.mobile-sidebar.active { left: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 15px; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }
.sidebar-logo-image { height: 50px; }
.sidebar-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.sidebar-content { padding: 15px; overflow-y: auto; flex-grow: 1; }
.sidebar-link { display: flex; align-items: center; gap: 15px; padding: 12px 10px; text-decoration: none; color: var(--text-dark); font-weight: 500; border-radius: 8px; margin-bottom: 5px; }
.sidebar-link:hover, .sidebar-link.active { background-color: var(--light-bg, #f8f9fa); color: var(--accent-black); }
.sidebar-link i { width: 20px; text-align: center; color: var(--text-light); }
.sidebar-divider { border: none; height: 1px; background-color: var(--border-color); margin: 20px 0; }
.sidebar-contact { padding: 0 10px; display: flex; align-items: center; gap: 1rem; }
.sidebar-contact i { font-size: 1.5rem; color: var(--accent-black); }
.sidebar-contact div a { text-decoration: none; font-weight: 500; color: var(--text-dark); }
.sidebar-auth-buttons { padding: 0 10px; display: flex; flex-direction: column; gap: 10px; }
.btn-login-sidebar, .btn-signup-sidebar, .btn-myaccount-sidebar, .btn-logout-sidebar { display: block; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn-login-sidebar, .btn-myaccount-sidebar { background-color: var(--accent-black); color: var(--white); }
.btn-signup-sidebar { background-color: var(--light-bg, #f8f9fa); color: var(--text-dark); }
.user-welcome-sidebar span { display: block; margin-bottom: 15px; color: var(--text-light); text-align: center; }
.btn-logout-sidebar { background-color: var(--light-bg, #f8f9fa); border: 1px solid var(--border-color); color: var(--danger-red, #e53935); }

/* --- ⭐️ NEW: Sidebar Dropdown Styling ⭐️ --- */
.sidebar-dropdown-container { padding: 0 10px; }
.sidebar-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; padding: 12px 10px; text-decoration: none; color: var(--text-dark); font-weight: 500; border: 1px solid var(--border-color); border-radius: 8px; cursor: pointer; }
.sidebar-dropdown-toggle i.fa-angle-down { transition: transform 0.3s ease; }
.sidebar-dropdown-container.open .sidebar-dropdown-toggle i.fa-angle-down { transform: rotate(180deg); }
.sidebar-dropdown-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding-left: 10px; }
.sidebar-dropdown-menu .sidebar-link { font-size: 0.95rem; }

/* --- 4. Mobile Responsiveness --- */
.menu-toggle { display: none; }
@media (max-width: 992px) {
    .main-header { padding: 0.5rem 1rem; }
    .header-right { display: none; }
    .menu-toggle { display: block; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: #fff; z-index: 1; }
    .logo .logo-img { height: 45px; }
}































































































/* ================================================================ */
/*             REFINED & DYNAMIC FEATURES SECTION CSS               */
/* ================================================================ */

.features-section {
    padding: 4rem 0; /* Reduced vertical padding for better balance */
    background-color: #f9fafb;
}

.features-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Refined Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem; /* Reduced margin */
}
.section-header h2 {
    font-size: 2rem; /* DECREASED from 2.5rem */
    font-weight: 700;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}
.section-header p {
    font-size: 1rem; /* DECREASED from 1.1rem */
    color: var(--text-light, #718096);
    max-width: 600px;
    margin: 0 auto;
}

/* --- The Grid for Desktop --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* --- Modern Feature Card Styling --- */
.feature-card {
    background-color: #fff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: var(--border-radius-lg, 16px);
    padding: 2rem 1.5rem; /* Reduced vertical padding */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px); /* Slightly more subtle hover effect */
    border-color: var(--accent-black, #000000);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

/* --- Gradient Icon Style (Unchanged) --- */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #ffc88a, var(--accent-black, #000000));
    box-shadow: 0 8px 15px rgba(245, 130, 32, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

/* --- Refined Typography Inside Card --- */
.feature-card h3 {
    font-size: 1.1rem; /* DECREASED from 1.15rem */
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.9rem; /* DECREASED from 0.95rem */
    color: var(--text-light, #718096);
    line-height: 1.6;
}


/* --- RESPONSIVE: HORIZONTAL SCROLL ON MOBILE (Unchanged) --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: unset;
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 1.5rem 0; 
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        flex: 0 0 280px;
    }
}



















































/* ================================================================ */
/*       PREMIUM POPULAR AIRLINES SECTION CSS (FINAL VERSION)       */
/* ================================================================ */

.partners-section {
    padding: 5rem 0;
    background-color: var(--white, #ffffff);
}

.partners-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- The Main Layout Block (Text on left, Logos on right) --- */
.partner-block {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 3rem;
    align-items: center;
}

/* --- Text Styling --- */
.partner-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.partner-info p {
    font-size: 1rem;
    color: var(--text-light, #718096);
    line-height: 1.6;
}

/* --- The Grid of Logos --- */
.logo-grid {
    display: grid;
    /* 4 logos per row on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* --- ⭐️ CORRECTED Individual Logo Card & Hover Effect ⭐️ --- */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px; /* Slightly taller for a more premium feel */
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #f0f2f5; /* A subtle border by default */
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 50px; /* Slightly larger logo */
    object-fit: contain;
    
    /* --- ⭐️ FIX: REMOVED grayscale and opacity --- */
    /* filter: grayscale(100%);  <-- REMOVED */
    /* opacity: 0.7;             <-- REMOVED */
    
    /* No transition needed on the image itself anymore */
}

.partner-logo:hover {
    /* --- ⭐️ FIX: NEW hover effect to highlight the box --- */
    transform: translateY(-5px);
    border-color: var(--accent-black, #000000);
    background-color: #fff;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}


/* --- RESPONSIVE ADJUSTMENTS --- */

/* For Tablets and smaller devices */
@media (max-width: 992px) {
    .partner-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* For Mobile Phones */
@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .partner-info h2 {
        font-size: 1.8rem;
    }
}




























/* ================================================================ */
/*           ELEGANT CTA SECTION CSS (WITH BRAND COLORS)            */
/* ================================================================ */

.contact-cta-section {
    color: var(--white);
    padding: 6rem 0;
    position: relative; /* Needed for the overlay */
}

/* This pseudo-element creates the dark blue overlay */
.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* THE OVERLAY: A gradient using your primary blue for readability */
    /* It's darker on the left where the text is */
    background: linear-gradient(to right, 
        rgba(0, 51, 102, 0.95) 0%,   /* --primary-green at 95% opacity */
        rgba(0, 51, 102, 0.7) 50%,   /* --primary-green at 70% opacity */
        rgba(0, 51, 102, 0.4) 100%   /* --primary-green at 40% opacity */
    );
    z-index: 1;
}

/* This is the background image itself, behind the overlay */
.contact-cta-section {
    /* IMPORTANT: Replace with a high-quality background image */
    background-image: url('https://cdn.pixabay.com/photo/2024/01/14/19/17/plane-8508636_1280.jpg');
    background-size: cover;
    background-position: center;
}

.contact-cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative; /* To place content above the overlay */
    z-index: 2;
    
    display: grid;
    /* Create a two-column layout: one for content, one for empty space */
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* The content will live in the first grid column */
.cta-info {
    grid-column: 1 / 2;
}

/* --- Content Styling using your colors --- */
.eyebrow-text {
    color: var(--accent-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.cta-heading {
    font-family: serif; 
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-paragraph {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.85; /* Softens the text slightly */
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* --- The CTA Box --- */
.cta-box {
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-cta i {
    font-size: 2.5rem;
    color: #25D366;
}

.whatsapp-cta span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}
.whatsapp-cta strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-button {
    background-color: var(--accent-black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: filter 0.3s ease;
}

.cta-button:hover {
    filter: brightness(90%); /* Darkens the orange slightly on hover */
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
    .contact-cta-section .container {
        /* Collapse to a single column for content */
        grid-template-columns: 1fr;
    }
    .cta-info {
        text-align: center;
    }
    .cta-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-box {
        flex-direction: column;
        text-align: left;
        align-items: stretch;
    }
}
@media (max-width: 576px) {
    .cta-heading {
        font-size: 2.25rem;
    }
}











































/* ================================================================ */
/*             BEAUTIFUL TOP DESTINATIONS SECTION CSS               */
/* ================================================================ */

.destinations-section {
    padding: 5rem 0;
    background-color: var(--body-bg, #f4f4f4);
}

.destinations-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section Header Styling --- */
.destinations-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.destinations-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}
.destinations-section .section-header p {
    font-size: 1rem;
    color: var(--text-light, #718096);
    max-width: 600px;
    margin: 0 auto;
}

/* --- The Grid for Desktop --- */
.destinations-grid {
    display: grid;
    /* 3 equal columns on desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* --- The Destination Card --- */
.destination-card {
    position: relative; /* Crucial for positioning content */
    display: block;
    height: 450px;
    border-radius: var(--border-radius-lg, 16px);
    overflow: hidden; /* This clips the zooming image */
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

/* The Background Image */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image distortion */
    transition: transform 0.4s ease-out;
}

.destination-card:hover .card-bg-image {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* The Gradient Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

/* The Text Content */
.card-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-cta {
    transform: translateX(5px);
}


/* --- RESPONSIVE: HORIZONTAL SCROLL ON MOBILE --- */
@media (max-width: 992px) {
    .destinations-grid {
        /* Clear the grid layout */
        grid-template-columns: unset;
        
        /* Enable flexbox for scrolling */
        display: flex;
        overflow-x: auto; /* Enables the horizontal scroll */
        gap: 1.5rem;
        
        /* Add padding to the container for a nice start/end point and to see shadows */
        padding: 1rem 0 2rem 0; 
        
        /* This makes the scroll container snap to items, very app-like */
        scroll-snap-type: x mandatory;
        
        /* Hide the scrollbar for a cleaner look */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .destinations-grid::-webkit-scrollbar {
        display: none;
    }

    .destination-card {
        flex: 0 0 80%; /* Each card takes up 80% of the screen width */
        scroll-snap-align: start; /* Snaps the start of the card to the container */
    }
}
@media (max-width: 576px) {
    .destination-card {
         flex: 0 0 90%; /* On very small screens, cards are even wider */
    }
}










































/* ================================================================ */
/*           PREMIUM & INTEGRATED FOOTER SECTION CSS                */
/* ================================================================ */

.main-footer {
    background-color: var(--primary-green, #2a4033);
    color: var(--white, #ffffff);
    padding: 5rem 0 2rem 0;
}
.main-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- The 4-Column Grid Layout (Unchanged) --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
/* ... (All your other footer styles for .footer-logo, .footer-about, .footer-links, .footer-newsletter, .social-icons remain UNCHANGED) ... */
.footer-logo img { height: 80px; margin-bottom: 1rem;}
.footer-about p { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; }
.footer-links h4, .footer-newsletter h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { color: var(--white, #ffffff); padding-left: 5px; }
.footer-newsletter p { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; }
.newsletter-form input { flex-grow: 1; border: 1px solid rgba(255, 255, 255, 0.2); background-color: rgba(255, 255, 255, 0.1); padding: 0.75rem 1rem; border-radius: 8px 0 0 8px; color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form button { border: none; background-color: var(--accent-black, #000000); color: var(--white); padding: 0.75rem 1.25rem; border-radius: 0 8px 8px 0; font-weight: 600; cursor: pointer; transition: filter 0.2s ease; }
.newsletter-form button:hover { filter: brightness(90%); }
.social-icons { display: flex; gap: 0.75rem; }
.social-icons a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--white); background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; text-decoration: none; font-size: 0.9rem; transition: background-color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { background-color: var(--accent-black, #000000); transform: translateY(-3px); }


/* --- ⭐️ ELEGANT & INTEGRATED BOTTOM BAR ⭐️ --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    /* Use flexbox to align items horizontally */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    gap: 1.5rem;
}

/* --- Copyright Text --- */
.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    /* On desktop, this will be on the left */
}

/* --- Powered By Section --- */
.powered-by {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.powered-by span {
    font-weight: 500;
}

.powered-by a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.powered-by a:hover {
    opacity: 0.8;
}

.powered-by .cb-logo {
    height: 20px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
/* ================================================================ */
/* --- AFFILIATION ICONS (CORRECTED & CONSOLIDATED W/ MOBILE FIX) --- */
/* ================================================================ */

/* --- The Main Flex Container for the Affiliations --- */
.footer-affiliations {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* CRITICAL: Allows logos to stack on mobile, preventing overflow */
    gap: 1.5rem;     /* A consistent gap for spacing */
    /* On mobile, this container will be centered by its parent (.footer-bottom) */
}

.footer-affiliations span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevents "Registered With:" from breaking into two lines */
}

/* --- The Wrapper for Each Logo (for Tooltip Positioning) --- */
.affiliation-logo {
    position: relative;
    display: inline-block;
}

/* --- The Logo Image and its Hover Effect --- */
.affiliation-logo img {
    height: 35px;
    display: block; /* Prevents extra space below the image */
    transition: transform 0.3s ease;
    cursor: pointer;
}

.affiliation-logo:hover img {
    transform: scale(1.1);
}

/* --- Tooltip styling (For Desktop) --- */
.affiliation-logo::after {
    content: attr(data-name);
    position: absolute;
    bottom: 120%; /* Position tooltip above the logo */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10; /* Ensure tooltip appears above other content */
}

.affiliation-logo:hover::after {
    opacity: 1;
}


/* --- ⭐️ NEW: HIDE TOOLTIPS ON MOBILE DEVICES ⭐️ --- */
/* This rule will apply to any screen smaller than 992px (tablets and phones) */
@media (max-width: 992px) {
    /* We simply hide the pseudo-element that creates the tooltip */
    .affiliation-logo::after {
        display: none;
    }
}



/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    .social-icons {
        justify-content: flex-start;
    }

    /* ⭐️ On mobile, center the bottom bar content and stack it */
    .footer-bottom {
        flex-direction: column-reverse; /* Put copyright below logos */
        justify-content: center;
    }
}






































 /* --- 🎨 THEME & COLORS (ADOPTED FROM YOUR OLD PROJECT) --- */
        :root {
            /* These are your existing variables */
            --accent-black: #000000;
            --primary-green: #2a4033;
            --text-dark: #333;
            --text-light: #666;
            --border-color: #e0e0e0;
            --white: #ffffff;
            
            /* These are from the new theme you provided */
            --primary-gold: #c5a67c;  /* Example Gold */
            --primary-dark: #1a2b3c;  /* Example Dark Blue/Charcoal */
            --light-bg: #f8f9fa;      /* A very light grey for the page background */
        }
















/* --- ✈️ FINAL ANIMATED RESULTS HEADER STYLES --- */
        .results-page-header {
            background: var(--primary-green) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><g fill="%23fff" fill-opacity="0.05"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-48 0c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm76 50c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-48 0c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zM92 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zM11 68c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 0c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z"/></g></svg>');
            padding: 60px 0;
            overflow: hidden;
        }
        .animated-route-display { margin-top: 40px; display: flex; justify-content: center; align-items: center; gap: 30px; }
        .route-iata { font-size: 2.8rem; font-weight: 700; color: var(--white); text-shadow: 1px 1px 3px rgba(0,0,0,0.2); }
        .route-animation-path { position: relative; width: 250px; height: 2px; }
        .route-animation-path i { color: var(--white); font-size: 1.5rem; position: absolute; top: 50%; left: 0; transform: translateY(-50%); animation: fly-the-path 3s ease-in-out infinite; }
        .route-animation-path::after { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 2px; background-image: linear-gradient(to right, rgba(255,255,255,0.5) 50%, transparent 50%); background-size: 10px 2px; background-repeat: repeat-x; }
        @keyframes fly-the-path { 0% { left: -5%; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: 105%; opacity: 0; } }
        
        /* --- 🛠️ MAIN RESULTS PAGE LAYOUT --- */
        body.filters-open { overflow: hidden; }
        .loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s; }
        .loading-overlay.hidden { opacity: 0; visibility: hidden; }
        .loader { font-size: 3rem; color: var(--accent-black); animation: spin 1s linear infinite; margin-bottom: 1rem; }
        @keyframes spin { 100% { transform: rotate(360deg); } }

        .results-page-v2 { background-color: var(--light-bg); padding: 40px 0; }
        .results-page-v2 .container { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
        
        /* --- Sidebar (Functionality preserved) --- */
        .filters-sidebar { position: sticky; top: 20px; background: #fff; border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border-color); }
        .filter-group { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem; }
        .filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .filter-group h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
        .filter-option label { display: flex; align-items: center; cursor: pointer; gap: 0.5rem; }
        .filter-footer { margin-top: 1.5rem; }
        #reset-filters-btn { background: none; border: none; color: var(--accent-black); font-weight: 600; cursor: pointer; padding: 0; }
        #airline-filter-list { max-height: 200px; overflow-y: auto; padding-right: 0.5rem; }
        #price-slider { margin: 1rem 0; }
        .price-range-display { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 500; }
        
        /* --- Results Header & Sorting (Styling updated) --- */
        .results-header { margin-bottom: 20px; }
        .results-header h3 { font-weight: 600; color: var(--text-dark); }
        .results-header p { color: var(--text-light); }
        .sort-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        .sort-options select { padding: 0.5rem; border: 1px solid var(--border-color); border-radius: 8px; font-family: 'Poppins', sans-serif; }

        .results-list { display: flex; flex-direction: column; gap: 20px; }

        /* --- 💅 PREMIUM FLIGHT CARD STYLING (FROM YOUR OLD PROJECT) --- */
        .flight-row-wrapper { background-color: var(--white); border: 1px solid var(--border-color); border-radius: 12px; transition: box-shadow 0.3s ease; }
        .flight-row-wrapper:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); }

        .flight-row-main { padding: 20px; }
        .itinerary-part { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 20px; }
        .itinerary-part.return-part { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--border-color); }
        .airline-details { display: flex; align-items: center; gap: 10px; }
        .airline-details img { width: 40px; height: 40px; border-radius: 50%; object-fit: contain; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .airline-name-info span { font-weight: 600; display: block; color: var(--text-dark); }
        .airline-name-info small { color: var(--text-light); font-size: 0.8rem; }
        .flight-timing-details { display: flex; align-items: center; justify-content: space-between; }
        .time-iata strong { font-size: 1.4rem; font-weight: 600; color: var(--primary-dark); }
        .time-iata span { color: var(--text-light); font-size: 0.9rem; display: block; }
        .time-iata small { font-size: 0.75rem; color: var(--text-light); display:block; }
        .duration-stops { text-align: center; min-width: 120px; }
        .duration-stops .total-duration { font-size: 0.85rem; color: var(--text-light); }
        .duration-stops .line { height: 1px; background-color: var(--border-color); margin: 4px 0; }
        .duration-stops .stop-link { color: var(--accent-black); font-size: 0.9rem; font-weight: 500; }

        .flight-row-footer { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background-color: var(--light-bg); border-top: 1px solid var(--border-color); }
        .flight-meta-details { display: flex; gap: 25px; font-size: 0.9rem; color: var(--text-light); }
        .flight-meta-details i { margin-right: 8px; width: 15px; text-align: center; }
        .price-quote-details { display: flex; gap: 10px; align-items: center; }

        .btn-get-quote.with-price { background-color: var(--accent-black); color: var(--white); padding: 8px 20px; border-radius: 6px; font-weight: 600; text-decoration: none; text-align: center; display: flex; flex-direction: column; line-height: 1.3; }
        .btn-get-quote.with-price small { font-size: 0.7rem; font-weight: 400; opacity: 0.9; }
        .btn-get-quote.with-price strong { font-size: 1.1rem; }

        .btn-flight-details { background: var(--border-color); border: none; font-size: 0.85rem; color: var(--text-dark); font-weight: 500; cursor: pointer; padding: 10px 15px; border-radius: 6px; }
        .btn-flight-details i { margin-left: 5px; transition: transform 0.3s ease; }

        .flight-row-details-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
        .flight-row-details-content h4 { padding: 20px 20px 10px; margin: 0; border-top: 1px solid #eee; font-size: 1.1rem; }
        .detailed-segment { display: flex; align-items: center; gap: 15px; padding: 15px 20px; }
        .detailed-segment + .detailed-segment { border-top: 1px solid var(--light-bg); }
        .segment-info { flex: 0 0 200px; display: flex; align-items: center; gap: 10px; }
        .segment-info img { width: 32px; height: 32px; border-radius: 50%; }
        .segment-info strong { font-size: 0.9rem; display: block; }
        .segment-info small { font-size: 0.8rem; color: var(--text-light); }
        .detailed-timing { flex: 1; }
        .detailed-timing p { margin: 2px 0; font-size: 0.95rem; }
        .detailed-timing p small { font-size: 0.8rem; color: #777; }
        .detailed-timing .duration-leg { font-size: 0.8rem; color: var(--text-light); }
        .detailed-layover { text-align: center; background-color: #f0f4f8; color: var(--text-dark); padding: 10px; margin: 0 20px 15px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; }
        .detailed-layover i { margin-right: 8px; color: var(--accent-black); }

        .no-results-card { background-color: var(--white); padding: 50px; border-radius: 12px; text-align: center; }
        .btn-back { display: inline-block; margin-top: 30px; background-color: var(--accent-black); color: var(--white); padding: 12px 30px; border-radius: 8px; font-weight: 600; text-decoration: none; }
.mobile-filter-trigger { display: none;}
        /* --- 📱 RESPONSIVE STYLES (INTEGRATED) --- */
        @media (max-width: 992px) {
            /* Structural changes for sidebar */
            .results-page-v2 .container { grid-template-columns: 1fr; }
            .filters-sidebar { position: fixed; top: 0; left: -100%; width: 320px; height: 100%; z-index: 1001; transition: left 0.3s ease; overflow-y: auto; border-radius: 0; box-shadow: 5px 0 15px rgba(0,0,0,0.1); }
            .filters-sidebar.open { left: 0; }
            .filter-sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border-color); background: #f8f9fa; position: sticky; top: 0; z-index: 1; }
            .mobile-filter-trigger { display: flex; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--accent-black); color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 50px; font-size: 1rem; font-weight: 600; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 999; cursor: pointer; gap: 0.5rem; align-items: center; }
            .filter-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; }
            .filter-overlay.open { display: block; }

            /* Cosmetic changes from your old project for cards */
            .itinerary-part { grid-template-columns: 1fr; gap: 15px; }
            .flight-timing-details { padding-top: 15px; border-top: 1px solid var(--border-color); }
            .flight-row-footer { flex-direction: column; gap: 15px; align-items: stretch; text-align: center; }
            .price-quote-details { justify-content: center; }
        }
        
        @media (max-width: 768px) {
            .route-iata { font-size: 1.8rem; }
            .route-animation-path { width: 150px; }
        }




/* ================================================================ */
/*                FILTER SIDEBAR CLOSE BUTTON FIX                   */
/* ================================================================ */

/* --- 1. Hide the close button by default (for Desktop) --- */
.filter-sidebar-header {
    display: none; /* This hides the entire mobile header, including the button */
}













        /* ... (all your other styles in this file) ... */

/* --- ⭐️ NEW: Toast Notification Styling ⭐️ --- */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--text-dark, #333);
    color: var(--white, #fff);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* Can't click it */
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

































































.checkout-container {
    max-width: 1700px;
    margin: 40px auto;
    padding: 20px;
}

/* --- Main Two-Column Layout --- */
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* --- Itinerary Column (Left) --- */
.itinerary-card {
    background: var(--white, #fff);
    border-radius: 12px;
    border: 1px solid var(--border-color, #e0e6f1);
    padding: 25px;
}
.itinerary-card h2 { margin: 0 0 25px 0; font-size: 1.5rem; font-weight: 600; color: var(--primary-dark, #2a2a2a); display: flex; align-items: center; gap: 15px; }
.itinerary-card h2 i { font-size: 1rem; color: var(--text-light); }
.journey-section { margin-bottom: 30px; }
.journey-section:last-child { margin-bottom: 0; }
.journey-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color, #e0e6f1); }
.journey-header i { color: var(--primary-gold, #fbaa13); }
.journey-header h3 { margin: 0; font-size: 1.1rem; font-weight: 500; }
.flight-segment { display: flex; gap: 15px; }
.timeline { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 12px; height: 12px; background: var(--white); border: 2px solid var(--primary-gold, #fbaa13); border-radius: 50%; flex-shrink: 0; }
.timeline-line { width: 2px; background: repeating-linear-gradient(var(--border-color, #e0e6f1) 0 5px, transparent 5px 10px); flex-grow: 1; }
.segment-details { padding-bottom: 20px; width: 100%;}
.segment-time { margin: -5px 0 5px; }
.segment-time strong { font-size: 1.1rem; font-weight: 600; }
.segment-time span { font-size: 0.9rem; color: var(--text-light, #6c757d); margin-left: 15px; }
.segment-airports { margin: 0 0 10px; color: var(--text-light, #6c757d); }
.segment-airline { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; flex-wrap: wrap; }
.segment-airline img { width: 24px; height: 24px; border-radius: 50%; }
.baggage-info { margin-left: auto; background: var(--light-bg); padding: 3px 8px; border-radius: 5px; font-size: 0.8rem; }
.baggage-info i { margin-right: 5px; }
.layover-info { background: var(--light-bg, #f8f9fa); border-radius: 8px; padding: 10px 15px; margin: 10px 0 20px 27px; font-size: 0.9rem; color: var(--text-light, #6c757d); border: 1px solid var(--border-color, #e0e6f1); }
.layover-info i { color: var(--primary-gold, #fbaa13); margin-right: 8px; }

/* --- Summary Column (Right) --- */
.summary-column { position: sticky; top: 20px; }
.summary-card { background: var(--white, #fff); border-radius: 12px; border: 1px solid var(--border-color, #e0e6f1); padding: 25px; }
.summary-card h3 { margin: 0 0 20px; font-size: 1.3rem; }
.price-line { display: flex; justify-content: space-between; margin-bottom: 15px; }
.price-line span:first-child { color: var(--text-light, #6c757d); }
.price-line span:last-child { font-weight: 500; }
.summary-card hr { border: none; height: 1px; background-color: var(--border-color, #e0e6f1); margin: 15px 0; }
.total-price span { font-size: 1.2rem; font-weight: 600; color: var(--text-dark, #212529); }

/* --- Passenger Details Section --- */
.passenger-details-section { margin-top: 30px; }
.details-card { background: var(--white, #fff); border-radius: 12px; border: 1px solid var(--border-color, #e0e6f1); padding: 25px; }
.details-card h3 { margin: 0 0 10px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.details-card h3 i { color: var(--primary-gold); }
.info-text { color: var(--text-light, #6c757d); margin: 0 0 25px; font-size: 0.9rem; }
.passenger-form-group { padding: 20px 0; border-top: 1px solid var(--border-color, #e0e6f1); }
.passenger-form-group:first-of-type { padding-top: 0; border-top: none; }
.passenger-form-group h4 { margin: 0 0 15px; font-size: 1.1rem; }

.passenger-fields {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr; 
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}
.form-field label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light, #6c757d);
    margin-bottom: 6px;
}
.form-field input, .form-field select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid var(--border-color, #e0e6f1);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--white);
}
.form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: var(--primary-gold, #fbaa13);
    box-shadow: 0 0 0 2px rgba(204, 162, 87, 0.2);
}

/* --- Submit Button --- */
.submit-container { text-align: center; margin-top: 30px; }
.checkout-submit-button { background-color: var(--primary-gold, #fbaa13); color: white; padding: 15px 40px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.checkout-submit-button:hover { background-color: #b38e4a; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }


/* =======================================================
   **CORRECTED** Responsive Styles
   ======================================================= */

/* --- Medium Screens (Tablets) --- */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr; /* Stack main columns */
    }
    .summary-column {
        position: static; /* Remove sticky behavior */
        top: auto;
    }
    .passenger-fields {
        grid-template-columns: 1fr 1fr; /* 2-column grid for passenger fields */
    }
}

/* --- Small Screens (Mobile phones) --- */
@media (max-width: 576px) {
    .checkout-container {
        padding: 10px; /* Reduce outer padding */
        margin: 20px auto;
    }
    .itinerary-card, .summary-card, .details-card {
        padding: 15px; /* Reduce card padding */
    }
    .itinerary-card h2, .details-card h3 {
        font-size: 1.25rem; /* Make headings slightly smaller but still prominent */
    }
    .segment-time {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .segment-time span {
        margin-left: 0;
    }
    .passenger-fields {
        grid-template-columns: 1fr; /* Single column for passenger fields */
        gap: 15px;
    }
    .checkout-submit-button {
        width: 100%;
        padding: 15px;
    }
}






































































/* ================================================================ */
/*     PREMIUM TESTIMONIALS CAROUSEL CSS (NAVIGATION FINAL FIX)     */
/* ================================================================ */

.testimonials-section {
    padding: 5rem 0;
    background-color: var(--body-bg, #f4f4f4);
}
.testimonials-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative; /* For positioning nav buttons */
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--text-dark, #2d3748); margin-bottom: 0.5rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light, #718096); max-width: 600px; margin: 0 auto; }

/* --- Review Card Styling --- */
.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg, 16px);
    padding: 2rem;
    height: auto; /* Let content define the height */
    display: flex;
    flex-direction: column;
}
.review-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-avatar-logo { width: 100%; height: 100%; object-fit: contain; background-color: #f8f9fa; }
.review-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-color: var(--light-grey); color: var(--accent-black); font-size: 1.5rem; }
.review-author .author-name { font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 0.3rem; }
.review-author .author-title { font-size: 0.85rem; color: var(--text-light); }
.verified-tick { color: var(--primary-green, #2a4033); font-size: 0.9rem; }
.review-card-rating { display: flex; gap: 2px; font-size: 1rem; color: var(--accent-black); margin-bottom: 1rem; }
.review-card-rating .fa-star.empty { color: var(--border-color); }
.review-card-body { flex-grow: 1; }
.review-card-body h3 { font-size: 1.2rem; font-weight: 600; margin: 0 0 0.5rem 0; }
.review-card-body p { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); margin: 0; word-break: break-word; }
.review-card-footer { margin-top: auto; font-size: 0.8rem; color: #999; text-align: right; border-top: 1px solid var(--border-color); padding-top: 1rem; }


/* --- ⭐️ ELEGANT, REDESIGNED SWIPER CONTROLS ⭐️ --- */
.testimonials-slider {
    /* ⭐️ FIX: Added padding-bottom to create space for the dots */
    padding-bottom: 4rem; 
    
}

/* --- Pagination Dots --- */
.swiper-pagination {
    bottom: 0px !important; /* Position at the very bottom of the slider container */
       margin-top: 20px;
    
}
.swiper-pagination-bullet {
    width: 10px; /* Larger, more modern dots */
    height: 10px;
    background-color: #ccc;
    opacity: 1;
     

    transition: background-color 0.3s ease, width 0.3s ease;
}
.swiper-pagination-bullet-active {
    width: 30px; /* Active dot becomes a pill shape */
    border-radius: 5px;
    
    background-color: var(--accent-black);
}

/* --- Navigation Arrows (Desktop) --- */
.swiper-button-next,
.swiper-button-prev {
    /* ⭐️ FIX: Smaller and prettier buttons */
    width: 40px; 
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--primary-green); /* Use brand blue for arrows */
    transition: all 0.3s ease;
    
    /* Center them on the slide, not the whole container */
    top: 50%;
    transform: translateY(-70%); /* Adjust vertical position to align with card content */
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--accent-black);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.8rem; /* Smaller arrow icons */
    font-weight: bold;
}

/* Position arrows for a premium look */
@media (min-width: 1500px) {
    /* For very wide screens, push them further out */
    .swiper-button-prev { left: -25px; }
    .swiper-button-next { right: -25px; }
}

/* --- Professional Mobile Navigation --- */
@media (max-width: 992px) {
    /* Hide the arrow buttons on mobile for a clean, touch-first experience */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}












































/* ================================================================ */
/*        PREMIUM FLOATING ACTION BUTTON (FAB) CSS - CORRECTED      */
/* ================================================================ */
.floating-action-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}
.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: var(--accent-black, #000000);
    color: var(--white, #fff);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative; /* For icon switching */
}
.fab-main:hover {
    transform: scale(1.05);
}
.fab-main .icon-main,
.fab-main .icon-close {
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.fab-main .icon-close {
    transform: rotate(-45deg) scale(0.5);
    opacity: 0;
}
/* When open, rotate the main button and switch icons */
.floating-action-button.open .fab-main {
    transform: rotate(45deg);
    background-color: var(--primary-green, #2a4033);
}
.floating-action-button.open .fab-main .icon-main {
    transform: rotate(45deg) scale(0.5);
    opacity: 0;
}
.floating-action-button.open .fab-main .icon-close {
    transform: rotate(0) scale(1);
    opacity: 1;
}

/* --- THE FIX IS HERE --- */
/* The Menu Itself */
.fab-menu {
    position: absolute;
    /* This anchors the menu to the TOP of the main button, not a fixed pixel value from the bottom */
    bottom: 100%; 
    /* This adds a clean 15px gap between the menu and the main button */
    margin-bottom: 15px;
    /* This helps center the 50px menu items over the 60px main button */
    right: 5px;
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    /* Hide by default */
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.floating-action-button.open .fab-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}
.fab-item:hover {
    transform: scale(1.1);
}
/* Custom Colors */
.fab-item.whatsapp { background-color: #25D366; }
.fab-item.call { background-color: var(--primary-green, #2a4033); }
.fab-item.email { background-color: #c71610; }
.fab-item.star { background-color: #313621; }

/* Staggered animation for menu items */
.floating-action-button .fab-item { transition-delay: 0s; }
.floating-action-button.open .fab-item:nth-child(1) { transition-delay: 0.2s; }
.floating-action-button.open .fab-item:nth-child(2) { transition-delay: 0.1s; }
.floating-action-button.open .fab-item:nth-child(3) { transition-delay: 0s; }

















































/* ================================================================ */
/*           COMBINED CONTACT DETAILS & MAP SECTION CSS             */
/* ================================================================ */

.contact-map-section {
    padding: 6rem 0;
    background-color: var(--body-bg); /* Uses your root variable */
}

.contact-map-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Using a shared section-header style */
.contact-map-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-map-grid {
    display: grid;
    /* Create a 2-column layout */
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center; /* Vertically align items in the grid */
}

/* Styling for the left-side contact info box */
.contact-info-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.contact-info-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

/* Individual contact items (address, phone, email) */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-dark-green); /* Using your new brand color */
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.contact-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
    display: block; /* Ensures phone numbers appear on new lines */
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-dark-green); /* Using your new brand color */
}

/* Styling for the right-side map */
.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px; /* Ensure map has a good height */
    border-radius: var(--border-radius-lg);
    overflow: hidden; /* Hides parts of the iframe that might overflow */
    box-shadow: var(--card-shadow);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .contact-map-grid {
        /* On tablets and mobile, stack the columns */
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-wrapper {
        /* Ensure the contact info appears first on mobile */
        order: 2;
    }

    .map-wrapper {
        order: 1;
        min-height: 400px; /* Adjust map height for smaller screens */
    }
}





















/* ================================================================ */
/*           IMPACTFUL "ABOUT US" HERO BANNER CSS (FINAL)           */
/* ================================================================ */

.about-hero-section {
    /* Sizing: Impactful but smaller than the homepage */
    height: 60vh;
    min-height: 450px;
    
    position: relative; /* Required for the overlay */
    color: var(--white);
    
    /* These flexbox rules perfectly center the content block */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* The background image */
    /* IMPORTANT: Replace with a high-quality, relevant image */
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* This creates the dark, branded overlay for text readability */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    
    /* A gradient using your brand's dark green */
    background: linear-gradient(
        rgba(42, 64, 51, 0.7), /* Dark Green at 70% opacity */
        rgba(42, 64, 51, 0.5)  /* Dark Green at 50% opacity */
    );
}

/* This container holds the text and sits on top of the overlay */
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 800px; /* Prevents text from being too wide */
}

.about-hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Adds depth to the text */
}

.about-hero-subheadline {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .about-hero-section {
        height: 50vh; /* A slightly shorter banner on mobile */
    }
    .about-hero-headline {
        font-size: 2.25rem;
    }
    .about-hero-subheadline {
        font-size: 1rem;
    }
}






















































/* ================================================================ */
/*           ELEGANT & MODERN "ABOUT US" BANNER SECTION CSS         */
/* ================================================================ */

.about-banner-section {
    padding: 6rem 0;
    background-color: #f9fafb; /* A soft, premium off-white background */
    overflow: hidden; /* Prevents decorative shapes from spilling out */
}

.about-banner-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-banner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* A balanced two-column layout */
    gap: 4rem;
    align-items: center;
}

/* --- Left Column: Text Styling --- */
.about-banner-info .eyebrow-text {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.about-banner-info .about-banner-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-banner-info .about-banner-paragraph {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Right Column: Image Styling --- */
.about-banner-image-wrapper {
    position: relative; /* Anchor for the decorative shape */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* This is the subtle, decorative gradient shape behind the image */
.image-bg-shape {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* A soft, radial gradient using your brand colors */
    background-image: radial-gradient(circle, var(--light-cyan-bg) 0%, rgba(249, 250, 251, 0) 70%);
}

.banner-image {
    position: relative;
    z-index: 2; /* Ensure the image is on top of the shape */
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1 / 1; /* Makes the image a perfect square */
    object-fit: cover; /* Ensures the image fills the square without distortion */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .about-banner-layout {
        grid-template-columns: 1fr; /* Stack the columns on tablets and mobile */
        text-align: center;
    }
    .about-banner-image-wrapper {
        margin-top: 3rem; /* Add space between text and image when stacked */
    }
}

@media (max-width: 576px) {
    .about-banner-section {
        padding: 4rem 0; /* Reduce padding on small screens */
    }
    .about-banner-info .about-banner-heading {
        font-size: 2.25rem;
    }
}



















































/* ================================================================ */
/*           MODERN & DATA-DRIVEN "ABOUT US" INFO SECTION CSS       */
/* ================================================================ */

.about-info-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-info-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section Header --- */
.about-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.about-info-header .eyebrow-text {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-info-header .info-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 500px; /* Prevents text from being too wide */
}

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Main Content Grid --- */
.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; /* Keep this to ensure columns are equal height */
}



/* --- Image itself (UPDATED) --- */
.about-image-wrapper img {
    width: 100%;
    height: 100%;

    /* --- THE FIX --- */
    /* 'contain' fits the entire image inside the container without cropping. */
    /* This makes the image visually smaller and more deliberate. */
    object-fit: contain; 

    /* A smaller radius for the image to distinguish it from its background frame */
    border-radius: var(--border-radius-md); 
}


/* --- Feature Cards --- */
.feature-cards-wrapper {
    display: grid;
    gap: 1.5rem;
}

.feature-info-card {
    background-color: #f9fafb; /* Soft background for standard cards */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
}

/* Highlighted Card Style */
.feature-info-card.highlighted {
    background-color: var(--light-cyan-bg);
    border-color: var(--primary-green);
}

.feature-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-info-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .about-info-header {
        flex-direction: column; /* Stack header items */
        align-items: flex-start;
        text-align: left;
    }
    .about-info-grid {
        grid-template-columns: 1fr; /* Stack main content */
    }
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-info-header .info-section-heading {
        font-size: 2rem;
    }
    .stats-bar {
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}






























/* = a============================================================== */
/*       PREMIUM POPULAR AIRLINES SECTION CSS (REBRANDED)       */
/* ================================================================ */

.partners-section {
    padding: 5rem 0;
    background-color: var(--white, #ffffff);
}

.partners-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- The Main Layout Block (Text on left, Logos on right) --- */
.partner-block {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 3rem;
    align-items: center;
}

/* --- Text Styling --- */
.partner-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.partner-info p {
    font-size: 1rem;
    color: var(--text-light, #718096);
    line-height: 1.6;
}

/* --- The Grid of Logos --- */
.logo-grid {
    display: grid;
    /* 4 logos per row on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* --- Individual Logo Card & Hover Effect --- */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.partner-logo:hover {
    transform: translateY(-5px);
    /* UPDATED: Changed hover border color to your new primary cyan */
    border-color: var(--primary-green, #00D1E0);
    background-color: #fff;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .partner-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .partner-info h2 {
        font-size: 1.8rem;
    }
}


































/* ================================================================ */
/*           ELEGANT CTA SECTION CSS (REBRANDED FOR Bin Rafiq)        */
/* ================================================================ */

.contact-cta-section {
    color: var(--white);
    padding: 6rem 0;
    position: relative; /* Needed for the overlay */
}

/* This pseudo-element creates the dark violet overlay */
.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   /* UPDATED: Gradient now uses your primary dark green color */
    background: linear-gradient(to right, 
        rgba(42, 64, 51, 0.95) 0%,   /* Dark Green at 95% opacity */
        rgba(42, 64, 51, 0.7) 50%,   /* Dark Green at 70% opacity */
        rgba(42, 64, 51, 0.4) 100%   /* Dark Green at 40% opacity */
    );
    z-index: 1;
}

/* This is the background image itself, behind the overlay */
.contact-cta-section {
    /* IMPORTANT: Replace with a high-quality background image */
    background-image: url('https://cdn.pixabay.com/photo/2024/01/14/19/17/plane-8508636_1280.jpg');
    background-size: cover;
    background-position: center;
}

.contact-cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative; /* To place content above the overlay */
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-info {
    grid-column: 1 / 2;
}

/* --- Content Styling using your colors --- */
.eyebrow-text {
    /* UPDATED: Color changed to primary cyan */
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.cta-heading {
    font-family: serif; 
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-paragraph {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* --- The CTA Button (UPDATED) --- */
.cta-button {
    /* UPDATED: Color changed to primary cyan */
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2rem; /* Increased padding for more impact */
    border-radius: 8px;
    /* UPDATED: Changed to inline-flex to fit content width */
    display: inline-flex; 
    align-items: center;
    gap: 0.75rem; /* Increased gap */
    white-space: nowrap;
    transition: filter 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 209, 224, 0.2); /* Added a subtle glow effect */
}

.cta-button:hover {
    filter: brightness(90%);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .contact-cta-section .container {
        grid-template-columns: 1fr; /* Collapse to a single column */
    }
    .cta-info {
        text-align: center; /* Center align all content on smaller screens */
    }
    .cta-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 576px) {
    .cta-heading {
        font-size: 2.25rem;
    }
}







































/* ================================================================ */
/*           ELEGANT DESTINATIONS GALLERY SECTION CSS               */
/* ================================================================ */

.gallery-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.gallery-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-layout {
    display: grid;
    /* Create a 2-column layout, giving more space to the images */
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem; /* Generous gap for a premium feel */
    align-items: center;
}

/* --- Left Column: Text Styling (UPDATED) --- */
.gallery-info .eyebrow-text {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem; /* Adjusted margin for better spacing */
    
    /* REMOVED: No longer need padding-left */
}

/* This creates the decorative line before the eyebrow text */
.gallery-info .eyebrow-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-green);
}

.gallery-info .gallery-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.gallery-info p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Right Column: Image Collage Styling --- */
.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-image {
    aspect-ratio: 4 / 3; /* Maintain a consistent 4:3 aspect ratio */
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.05) rotate(1deg); /* A subtle, dynamic hover effect */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .gallery-layout {
        grid-template-columns: 1fr; /* Stack columns on tablets and mobile */
        gap: 3rem;
    }
    .gallery-info {
        text-align: center; /* Center the text when stacked */
    }
    .gallery-info .eyebrow-text {
        padding-left: 0; /* Remove padding when centered */
    }
    .gallery-info .eyebrow-text::before {
        /* Hide the line on mobile, as it doesn't look good when centered */
        display: none; 
    }
}

@media (max-width: 576px) {
    .image-collage {
        /* On small phones, show 2 images per row. You can change to 1fr for vertical stacking */
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .gallery-info .gallery-heading {
        font-size: 2rem;
    }
}

















































































































/* ==================================================================== */


/* === FINAL & CORRECT UMRAH PACKAGES STYLING (v8.0 - Button Update) === */


/* ==================================================================== */


/* --- 1. Main Section & Header --- */

.umrah-listings-section {
    padding: 2rem 1.5rem;
   
    max-width: 1400px;
        margin: 0 auto;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.listings-header-text .listings-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.listings-header-text .listings-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.btn-view-more {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 12px 25px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}


/* --- 2. The Packages Grid (Static 3-Column Layout) --- */

.umrah-grid {
    display: grid;
    /* This creates three explicit, non-stretching columns */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* --- 3. The Individual Umrah Card --- */

.umrah-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.umrah-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.umrah-card-banner {
    position: relative;
}

.umrah-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.days-badge {
    position: absolute;
    bottom: -28px;
    left: 20px;
    width: 56px;
    height: 56px;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.days-badge strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.days-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.umrah-card-content {
    padding: 45px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-details-wrapper {
    margin-bottom: 1rem;
}

.hotel-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.hotel-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hotel-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0;
}

.hotel-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-grid-umrah {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
    margin-top: auto;
}

.price-item-umrah {
    background-color: var(--white);
    padding: 10px;
    text-align: center;
}

.price-item-umrah span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-item-umrah strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}


/* --- 4. MODIFIED: "View Details" Button Styling --- */


/* This now uses the dark style you provided */

.btn-view-deal {
    display: block;
    width: 100%;
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: none;
    /* Ensure no default border */
}

.btn-view-deal:hover {
    background-color: #000;
    /* Darker hover effect */
}


/* --- 5. Mobile Styling --- */

@media (max-width: 992px) {
    /* Change desktop grid to mobile horizontal scroll */
    .umrah-grid {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem 1rem 1rem 1rem;
        margin: 0 -1rem;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .umrah-grid::-webkit-scrollbar {
        display: none;
    }
    .umrah-card {
        flex: 0 0 85%;
        max-width: 340px;
        scroll-snap-align: start;
    }
}





.view-more-card {
    display: none;
}


















































