/* ================= GLOBAL VARIABLES & RESET ================= */
:root {
    --primary-blue: #064e89;
    --dark-blue: #032d50;
    --accent-light: #e3f2fd;
    --accent-blue: #0088cc;
    --text-grey: #555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #fcfcfc;
    color: var(--text-grey);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================= HEADER (Unified) ================= */
header {
    background-color: #044d7e;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

nav ul li a:hover { opacity: 0.8; }


        /* Basic Reset */
        body {
            overflow-x: hidden; /* Prevents horizontal scroll when menu slides */
        }

        /* Navigation Bar Styles */
        .navbar {
            background-color: #044d7e; /* Nextrippy Blue */
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 900;
        }

        /* Logo Styling */
        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            z-index: 901; /* Keeps logo visible if needed */
        }

        /* Navigation Links (Desktop) */
        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover {
            color: #ffcc00;
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1000; /* CRITICAL: Keeps button on top of the sliding menu */
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s ease;
        }

        /* --- MOBILE STYLES (Max-width 768px) --- */
        @media screen and (max-width: 768px) {
            
            .nav-links {
                position: fixed;       /* Fixes menu to the viewport */
                top: 0;
                right: -250px;        /* Hides menu off-screen to the RIGHT */
                height: 100vh;        /* Full screen height */
                width: 250px;         /* Width of the sidebar */
                background-color: #003366; /* Slightly darker blue for contrast */
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.3s ease-in-out; /* Smooth slide animation */
                z-index: 999;         /* Sits on top of page content */
                box-shadow: -5px 0 15px rgba(0,0,0,0.3); /* Shadow for depth */
            }

            /* The class added by JavaScript to slide it in */
            .nav-links.active {
                right: 0; 
            }

            .nav-links li {
                margin: 2rem 0; /* More spacing for mobile touch targets */
            }

            .hamburger {
                display: flex; /* Show hamburger on mobile */
            }

            /* Animation for hamburger to 'X' */
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        }


        /* --- Close Button Styles --- */
.close-btn {
    display: none; /* Hidden by default on desktop */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 40px;
        color: white;
        cursor: pointer;
        line-height: 1;
        margin: 0 !important; /* Prevents it from acting like a regular link */
    }

    /* Pushes your regular links down a bit so the X doesn't overlap them */
    .nav-links {
        padding-top: 60px; 
    }
}
/* ================= HOME PAGE: HERO SECTION ================= */
.hero {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    margin-top: 10px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* ================= HOME PAGE: SECTIONS ================= */
.section-padding {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Popular Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover img { transform: scale(1.1); }

.dest-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    color: #000;
    border: 1px solid rgba(255,255,255,0.3);
}

.dest-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.dest-overlay p {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Luxury Escape */
.luxury-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.luxury-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.luxury-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000;
}

.luxury-desc {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.info-tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.luxury-right-panel {
    background-color: #5b9bd5;
    color: white;
    flex: 0.6;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 250px;
}

.feature-list p { margin-bottom: 10px; font-size: 0.95rem; }

.book-btn {
    margin-top: 20px;
    background-color: #317cbd;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.book-btn:hover { background-color: var(--primary-blue); }

/* Travel Moods */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mood-card {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mood-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mood-card:hover img { transform: scale(1.05); }

/* ================= CHARITY & SUPPORT SECTIONS ================= */
.charity-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    color: white;
    text-align: center;
    overflow: hidden;
}

.charity-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    opacity: 0.05;
    pointer-events: none;
    color: white;
}

.charity-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.charity-tag {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    opacity: 0.9;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 5px 15px;
    border-radius: 50px;
}

.charity-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.charity-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.btn-transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    color: white;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-transparent:hover {
    background: white;
    color: #42a5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Women Support Section */
.support-section {
    background: linear-gradient(to right, #2b72b8, #3b8ad9);
    padding: 80px 20px;
    color: white;
    position: relative;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.support-text { flex: 2; min-width: 300px; }
.support-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

.support-action { flex: 1; text-align: right; min-width: 200px; }

.btn-bright {
    background-color: #55acee;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-bright:hover {
    background-color: white;
    color: #2b72b8;
    transform: scale(1.05);
}

/* ================= SERVICES PAGE SPECIFIC ================= */
.page-hero {
    height: 350px;
    background: linear-gradient(rgba(6, 78, 137, 0.7), rgba(6, 78, 137, 0.7)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=2021&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: #777;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-img { height: 250px; width: 100%; object-fit: cover; }
.card-content { padding: 30px; }

.card-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content ul { list-style: none; }
.card-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.card-content li i { color: var(--primary-blue); }

.transport-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}
.transport-header i { font-size: 2rem; color: var(--primary-blue); }

header .logo {
        display: inline-block !important;
        width: auto !important; /* Let it be as wide as it needs */
        height: auto !important;
        margin: 0 !important;
        padding: 5px 0; /* Add a little breathing room */
    }

    /* 2. Style the image specifically */
    .logo-img {
        height: 40px !important;  /* Set fixed height for navbar */
        width: auto !important;   /* Allow width to adjust automatically */
        max-width: none !important; /* Stop it from being cut off */
        object-fit: contain !important; /* Ensure the whole logo is seen */
        border-radius: 0 !important; /* Remove rounding if it cuts corners */
    }

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.transport-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 20px; background: #fdfdfd; border: 1px solid #eee; border-radius: 8px;
    transition: var(--transition);
}

.transport-item:hover {
    background: var(--primary-blue); color: white; border-color: var(--primary-blue);
}
.transport-item:hover i { color: white; }

.transport-item i {
    font-size: 2rem; color: var(--primary-blue); margin-bottom: 15px; transition: var(--transition);
}
.transport-item h4 { font-size: 1.1rem; font-weight: 500; }

.events-banner {
    position: relative; border-radius: 15px; overflow: hidden; height: 400px;
    color: white; display: flex; align-items: center; justify-content: space-between; padding: 0 50px;
}

.events-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(6, 78, 137, 0.95), rgba(6, 78, 137, 0.4)), url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover; background-position: center; z-index: 1;
}

.events-content { position: relative; z-index: 2; width: 100%; }
.events-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-top: 30px;
}

.event-box {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px);
    padding: 20px; border-radius: 8px; border-left: 4px solid #fff;
}
.event-box h4 { font-size: 1.2rem; margin-bottom: 5px; }

/* ================= CAREERS PAGE SPECIFIC ================= */
.join-hero { text-align: center; padding: 60px 20px 20px; }
.join-hero h1 { font-size: 2.8rem; font-weight: 700; color: #222; }
.join-hero p { font-size: 1.2rem; color: #666; margin-top: 10px; }

.why-join-section {
    background-color: #f4f7fa; padding: 60px 20px; margin-top: 40px;
}
.why-join-container { max-width: 1200px; margin: 0 auto; }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; margin-top: 40px;
}

.feature-card {
    background: white; padding: 30px; border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-icon { font-size: 3rem; margin-bottom: 20px; display: inline-block; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #333; }
.feature-card p { font-size: 0.9rem; color: #666; line-height: 1.5; }

.info-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}
.info-card {
    border-radius: 20px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: white; height: 100%; display: flex; flex-direction: column; transition: var(--transition);
}
.info-card:hover { transform: translateY(-5px); }
.card-image-wrapper { height: 250px; width: 100%; position: relative; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 30px; position: relative; background: white; flex-grow: 1; }

.card-tag {
    position: absolute; top: -18px; right: 20px; background-color: var(--primary-blue);
    color: white; padding: 6px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 10;
}
.card-label {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888;
    margin-bottom: 5px; display: block;
}
.card-title {
    font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; color: #222;
}
.card-desc { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* ================= CONNECT & FOOTER (Unified) ================= */
.connect-section {
    text-align: center; padding: 60px 20px; background-color: #ffffff;
}
.connect-section h2 {
    font-size: 2rem; font-weight: 400; letter-spacing: 1px; margin-bottom: 30px;
    text-transform: uppercase; color: #000;
}
.social-icons { display: flex; justify-content: center; gap: 20px; }
.social-circle {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: white; transition: transform 0.3s ease; text-decoration: none;
}
.social-circle:hover { transform: translateY(-5px); }

.fb { background-color: #3b5998; }
.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.in { background-color: #0077b5; }
.tw { background-color: #000000; }

/* ================= REGISTER FORM SECTION ================= */

.register-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f9fd;
}

.register-container {
    background: #ffffff;
    width: 100%;
    max-width: 850px;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.register-container:hover {
    transform: translateY(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #064e89;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 15px;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    padding: 13px 15px;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9fbfd;
    transition: 0.3s;
    outline: none;
    width: 100%;
}

.form-control:focus {
    border-color: #064e89;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(6, 78, 137, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

/* File Upload */
input[type="file"].form-control {
    padding: 10px;
    background: #fff;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    max-width: 220px;
    margin: 30px auto 0;
    padding: 15px;
    background-color: #064e89;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease;
    display: block;
}

.submit-btn:hover {
    background-color: #0088cc;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

    .register-container {
        padding: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .submit-btn {
        width: 100%;
    }
}


.footer {
            background-color: #044d7e;
            color: white;
            padding: 60px 50px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }



        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #3498db;
        }

        .contact-info p {
            margin-bottom: 12px;
            font-size: 14px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            margin-top: 4px;
            color: #3498db;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #dbe9f4;
        }

        .footer-links a {
            margin-left: 20px;
            transition: 0.3s;
        }

        .footer-links a:hover { color: white; text-decoration: underline; }

.contact-list { list-style: none; padding: 0; }
.contact-item {
    display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px;
    font-size: 15px; font-weight: 300;
}
.contact-item i { margin-top: 4px; font-size: 14px; color: #00aaff; }

.bottom-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.bottom-links a {
    color: #cccccc; text-decoration: none; margin-left: 5px; transition: color 0.3s;
}
.bottom-links a:hover { color: white; }

/* ================= FLOATING BUTTON & POPUP ================= */
.floating-btn {
    position: fixed; bottom: 30px; right: 30px; background-color: var(--accent-blue);
    color: white; padding: 12px 25px; border-radius: 30px; font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s;
}
.floating-btn:hover {
    transform: scale(1.05); background-color: #0077b5;
}

.contact-popup {
    display: none; position: fixed; bottom: 90px; right: 30px; width: 380px;
    background-color: white; border-radius: 12px; box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    z-index: 10000; animation: slideUp 0.3s ease-out; overflow: hidden;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.popup-header {
    background-color: var(--primary-blue); color: white; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.popup-header h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: 0.5px; }
.close-btn { cursor: pointer; font-size: 24px; color: white; line-height: 1; font-weight: 700; }
.close-btn:hover { color: #ffcccc; }

.popup-body {
    padding: 20px; max-height: 450px; overflow-y: auto;
}
.popup-form-group { margin-bottom: 12px; }
.popup-input, .popup-textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px;
    font-size: 13px; outline: none; background: #f9f9f9;
}
.popup-input:focus, .popup-textarea:focus { border-color: var(--accent-blue); background: #fff; }
.popup-textarea { min-height: 80px; resize: vertical; }

.popup-submit {
    width: 100%; background-color: var(--accent-blue); color: white; border: none;
    padding: 14px; border-radius: 6px; font-weight: 600; cursor: pointer; margin-top: 5px;
}
.popup-submit:hover { background-color: var(--primary-blue); }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    /* Navigation */
    nav ul { display: none; }
    .hamburger { display: block; }
    
    /* Heroes */
    .hero h1, .page-hero h1 { font-size: 2.5rem; }
    .charity-title { font-size: 2rem; }
    
    /* Grids */
    .mood-grid, .core-grid, .transport-grid, .footer-container, .support-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    /* Footer */
    .footer-container { gap: 30px; }
    .bottom-container { justify-content: center; text-align: center; flex-direction: column; }
    
    /* Misc */
    .luxury-wrapper { flex-direction: column; }
    .support-action { text-align: left; width: 100%; }
}

@media (max-width: 400px) {
    .contact-popup { width: 90%; right: 5%; bottom: 80px; }
}

/*booknow*/


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light-grey);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }


        .form-container {
            background: white;
            width: 100%;
            max-width: 900px;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            margin-top: 20px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h4 {
            color: var(--accent-blue);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .form-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 15px;
        }

        /* Form Grid Layout */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .full-width {
            grid-column: span 2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 14px;
            font-weight: 500;
            color: #444;
            margin-bottom: 8px;
        }

        .form-control {
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            font-size: 15px;
            color: #333;
            background-color: #fcfcfc;
            transition: var(--transition);
            outline: none;
        }

        .form-control:focus {
            border-color: var(--accent-blue);
            background-color: white;
            box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
        }

        .submit-btn:hover {
            background-color: #0077b5;
            transform: translateY(-2px);
        }

        