@import url('visa-style.css');

/* --- CSS Reset & Base Styles (REBRANDED) --- */
:root {
    /* Havana Brand Colors (Updated) */
    --primary-purple: #10303C;
    /* Dark Slate/Teal - primary brand color */
    --accent-purple: #7C3482;
    /* Logo purple - for highlights and secondary actions */
    --light-purple: #E3E8EA;
    /* Light Slate - for hover states/backgrounds */
    --dark-purple: #08181E;
    /* Darker Slate - for dark backgrounds/text */

    /* Standard Colors (Mostly Unchanged) */
    --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;
}

/* ================================================================ */
/*         UPDATED HERO SECTION & CAROUSEL STYLES                   */
/* ================================================================ */

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    /* RESTORED: Re-applied the dark brand-aligned gradient overlay */
    background-image: linear-gradient(rgba(16, 48, 60, 0.6), rgba(0, 0, 0, 0.3)), url('https://i.pinimg.com/1200x/32/01/4a/32014a3d845c27e07d9581b49ab1b86e.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content-container {
    max-width: 900px;
    z-index: 2;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-section {
        height: 70vh;
    }
}


/* ================================================================ */
/*     FINAL UNIFIED HEADER, SIDEBAR & DROPDOWN CSS (COMPLETE)      */
/* ================================================================ */

/* --- 1. Desktop Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo .logo-img {
    height: 56px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* CHANGED */
    background-color: var(--accent-purple);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}



/* Header Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    border-top: 3px solid var(--accent-purple);
}

.nav-item-dropdown:hover .dropdown-menu-custom {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-menu-custom a {
    color: var(--primary-purple);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    font-weight: 500;
}

.dropdown-menu-custom a:hover {
    background-color: #f8f9fa;
    color: var(--accent-purple);
    padding-left: 25px;
    /* slight indent effect on hover */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Contact Info Styling --- */
.contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-purple);
}

/* CHANGED */
.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.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(--primary-purple);
}

/* --- Authentication Section --- */
.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: transparent;
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
}

.header-auth .btn-login:hover {
    background-color: var(--light-purple);
}

/* CHANGED */
.header-auth .btn-signup {
    background-color: var(--accent-purple);
}

.header-auth .btn-signup:hover {
    filter: brightness(90%);
}

/* --- User Dropdown Styling --- */
.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: var(--light-purple);
    color: var(--primary-purple);
}

.user-dropdown .header-dropdown-toggle:hover {
    background-color: var(--white);
}

.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: #f8f9fa;
}

.dropdown-link i {
    width: 16px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.dropdown-logout-link:hover {
    background-color: #ffebee;
    color: var(--danger-red);
}

.dropdown-logout-link:hover i {
    color: var(--danger-red);
}

/* --- 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: 35px;
}

.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;
}

/* CHANGED */
.sidebar-link:hover,
.sidebar-link.active {
    background-color: var(--light-purple);
    color: var(--primary-purple);
}

.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;
}

/* CHANGED */
.sidebar-contact i {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

.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;
}

/* CHANGED */
.btn-myaccount-sidebar {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-login-sidebar {
    background-color: var(--accent-purple);
    color: var(--white);
}

/* CHANGED */
.btn-signup-sidebar {
    background-color: var(--light-purple);
    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-purple);
    border: 1px solid var(--border-color);
    color: var(--danger-red);
}

/* --- Mobile Responsiveness --- */
.menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .main-header {
        padding: 0.8rem 1.5rem;
    }

    .header-right {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary-purple);
        z-index: 1;
    }

    .logo .logo-img {
        height: 44px;
    }
}













/* ================================================================ */
/*     BULLETPROOF FULL-HEIGHT SLIDER & CENTERING STYLES      */
/* ================================================================ */

/* --- 1. Force the hero section to be exactly screen height --- */
.hero-section {
    height: 80vh;
    position: relative;
    color: var(--primary-purple);
}

/* --- 2. Force the Swiper containers to inherit that full height --- */
.hero-slider,
.hero-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

/* ================================================================ */
/*     FIX: INCREASED SPECIFICITY TO OVERRIDE CONFLICTS             */
/* ================================================================ */

.hero-slider .swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    background-size: cover;
    background-position: center;
}

/* --- 4. Add a vertical offset to avoid your header --- */
.hero-content-container {
    transform: translateY(60px);
    padding: 0 1.5rem;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


/* ================================================================ */
/*     FIX FOR SWIPER FADE EFFECT + LOOP OVERLAP                    */
/* ================================================================ */

.swiper-slide {
    /* Push non-active slides to the back */
    z-index: 1;
}

.swiper-slide-active {
    /* Bring the current, active slide to the front */
    z-index: 2;
}

/* ================================================================ */
/*     FIXED SWIPER BUTTONS (POSITIONED & REBRANDED)                */
/* ================================================================ */

/* --- 1. Common styles for both buttons --- */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: filter 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- 2. Horizontal Positioning --- */
.swiper-button-prev {
    left: 4%;
}

.swiper-button-next {
    right: 4%;
}

/* --- 3. Specific background and icon colors (UPDATED) --- */
.swiper-button-prev {
    background-color: var(--primary-purple);
    /* CHANGED */
    color: var(--white);
}

.swiper-button-next {
    background-color: var(--white);
    color: var(--primary-purple);
    /* CHANGED */
}

/* --- 4. Hover states --- */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    filter: brightness(95%);
}

/* --- 5. Icon setup (Font Awesome) --- */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
}

.swiper-button-prev::after {
    content: '\f053';
}

.swiper-button-next::after {
    content: '\f054';
}

/* --- 6. Pagination styling (UPDATED) --- */
.swiper-pagination {
    padding: 20px;
    bottom: 0 !important;
    /* Ensures it stays at the bottom */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-purple);
    /* CHANGED */
}


/* --- 7. Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }

    .hero-content-container {
        transform: translateY(40px);
    }

    .hero-headline {
        font-size: 2rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        top: auto;
        bottom: 30px;
        transform: none;
        width: 40px !important;
        /* Adjusted size for mobile */
        height: 40px !important;
    }

    .swiper-button-prev {
        left: 50%;
        margin-left: -55px;
    }

    .swiper-button-next {
        left: 50%;
        margin-left: 5px;
        right: auto;
    }
}






























































/* ================================================================ */
/*             REFINED & DYNAMIC FEATURES SECTION CSS               */
/* ================================================================ */

.features-section {
    padding: 4rem 0;
    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;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 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;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple, #7C3482);
    box-shadow: 0 15px 30px -10px rgba(124, 52, 130, 0.15);
}

/* --- Gradient Icon Style (UPDATED) --- */
.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, var(--primary-purple), var(--accent-purple));
    box-shadow: 0 8px 15px rgba(124, 52, 130, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

/* --- Refined Typography Inside Card --- */
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light, #718096);
    line-height: 1.6;
}


/* --- RESPONSIVE: HORIZONTAL SCROLL ON MOBILE --- */
@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;
    }
}
















































/* = 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-cyan, #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 The Havana Intl)        */
/* ================================================================ */

.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 Slate/Teal color (#10303C) */
    background: linear-gradient(to right,
            rgba(16, 48, 60, 0.95) 0%,
            /* Havana Dark Slate at 95% opacity */
            rgba(16, 48, 60, 0.7) 50%,
            /* Havana Dark Slate at 70% opacity */
            rgba(16, 48, 60, 0.4) 100%
            /* Havana Dark Slate 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 Havana accent (Red) */
    color: var(--accent-purple);
    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 Havana accent (Red) */
    background-color: var(--accent-purple);
    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(124, 52, 130, 0.3);
    /* 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;
    }
}














































































/* ================================================================ */
/*           PREMIUM B2B FOOTER CSS (REBRANDED FOR The Havana Intl)         */
/* ================================================================ */

.main-footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

.main-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* --- Column 1: About & Logo --- */
.footer-logo img {
    max-height: 60px;
    margin-bottom: 1rem;
    /* REMOVED: Invert filter removed to show original colors over white footer */
}

.footer-about p {
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    background-color: var(--accent-purple);
    transition: all 0.3s ease;
}

.social-icons a.facebook {
    background-color: #1877F2;
}

.social-icons a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a:hover {
    /* UPDATED: Uses The Havana Intl light purple */
    background-color: var(--light-purple);
    color: var(--primary-purple);
    transform: translateY(-3px);
}

/* --- Columns 2 & 3: Link Lists --- */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    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: var(--accent-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

/* --- Column 4: Newsletter/Offices --- */
.footer-newsletter p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--accent-purple);
}

/* --- Footer Bottom --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-affiliations {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-affiliations img {
    height: 35px;
    opacity: 0.8;
}

.copyright-text {
    font-size: 0.9rem;
}

/* --- Responsive Design for Footer --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}








































































































.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;
    }
}

















































/* ================================================================ */
/*           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-cyan);
    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-cyan);
}

.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;
    }
}








































































/* ================================================================ */
/*     PREMIUM TESTIMONIALS CAROUSEL CSS (REBRANDED FOR The Havana Intl)    */
/* ================================================================ */

.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;
    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;
}

/* UPDATED */
.review-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-cyan-bg);
    color: var(--primary-cyan);
    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);
}

/* UPDATED */
.verified-tick {
    color: var(--primary-violet);
    font-size: 0.9rem;
}

/* UPDATED */
.review-card-rating {
    display: flex;
    gap: 2px;
    font-size: 1rem;
    color: var(--primary-cyan);
    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;
}


/* --- SWIPER CONTROLS (REBRANDED) --- */
.testimonials-slider {
    padding-bottom: 4rem;
}

/* --- Pagination Dots --- */
.swiper-pagination {
    bottom: 0px !important;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    /* UPDATED */
    background-color: var(--primary-cyan);
}

/* --- Navigation Arrows (Desktop) --- */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* UPDATED */
    color: var(--primary-violet);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-70%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    /* UPDATED */
    background-color: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 209, 224, 0.3);
    /* Cyan Glow Effect */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.8rem;
    font-weight: bold;
}

/* Position arrows for a premium look */
@media (min-width: 1500px) {
    .swiper-button-prev {
        left: -25px;
    }

    .swiper-button-next {
        right: -25px;
    }
}

/* --- Mobile Navigation --- */
@media (max-width: 992px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}













































/* ================================================================ */
/*        PREMIUM FLOATING ACTION BUTTON (FAB) CSS (REBRANDED)      */
/* ================================================================ */
.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;
    /* UPDATED: Main button color is now primary purple */
    background-color: var(--primary-purple);
    color: var(--white, #fff);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
    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);
    /* UPDATED: Open state color is now accent purple */
    background-color: var(--accent-purple);
}

.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 Menu Itself */
.fab-menu {
    position: absolute;
    bottom: 75px;
    /* Position above the main button */
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    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 (UPDATED) */
.fab-item.whatsapp {
    background-color: #25D366;
}

/* UPDATED: 'call' button now uses the accent purple */
.fab-item.call {
    background-color: var(--accent-purple);
}

.fab-item.email {
    background-color: #c71610;
}

/* UPDATED: 'star' button now uses the primary purple */
.fab-item.star {
    background-color: var(--primary-purple);
}

/* 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;
}













































/* ================================================================ */
/*           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;

    /* RESTORED: Re-applied the dark brand-aligned gradient overlay */
    background: linear-gradient(rgba(16, 48, 60, 0.6), rgba(0, 0, 0, 0.3));
}

/* 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;
    color: var(--white);
    text-shadow: 0 4px 15px 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-cyan);
    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-cyan);
    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-violet);
}

.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-cyan);
}

.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;
    }
}











































































/* ================================================================ */
/*           CLEAN & MODERN "CONTACT US" DETAILS SECTION CSS        */
/* ================================================================ */

.contact-details-section {
    padding: 6rem 0;
    background-color: var(--body-bg);
}

.contact-details-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Re-using the section-header style you already have */
.contact-details-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    /* Create a 3-column layout on desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-cyan);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.contact-card-header i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    width: 40px;
    text-align: center;
}

.contact-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-card-body p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-card-body p:last-child {
    margin-bottom: 0;
}

.contact-card-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Styling for the clickable links */
.contact-card-body a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-card-body a:hover {
    color: var(--primary-cyan);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .contact-grid {
        /* Stack to a single column on tablets and mobile for readability */
        grid-template-columns: 1fr;
    }
}











































/* ================================================================ */
/*           GOOGLE MAPS LOCATIONS SECTION CSS                      */
/* ================================================================ */

.map-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.map-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-grid {
    display: grid;
    /* Two equal columns on desktop */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.map-wrapper {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /* This is crucial to make the iframe respect the border-radius */
    box-shadow: var(--card-shadow);
}

.map-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.25rem;
    background-color: #f9fafb;
    border-bottom: 1px solid var(--border-color);
}

.map-embed iframe {
    /* Ensures the iframe is responsive and has no ugly default border */
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    /* Removes any potential whitespace below the iframe */
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .map-grid {
        /* Stack to a single column on tablets and mobile */
        grid-template-columns: 1fr;
    }
}























































/* ==================================================================== */


/* === 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: #000;
    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: #000;
    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(--accent-purple);
    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: var(--accent-purple);
    opacity: 0.9;
    /* 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;
}

/* --- Core Services: 5 Columns Unification --- */
.services-grid-5-cols {
    grid-template-columns: repeat(5, 1fr) !important;
}

.service-icon-custom {
    background: transparent !important;
    width: 80px !important;
    height: 80px !important;
    overflow: hidden;
    padding: 0 !important;
}

.service-icon-custom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments for 5 columns */
@media (max-width: 1200px) {
    .services-grid-5-cols {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-grid-5-cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .services-grid-5-cols {
        grid-template-columns: 1fr !important;
    }
}
