
/* ---------------------------------- */
/* GLOBAL */
/* ---------------------------------- */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}
body, html {
    overflow-x: hidden !important;
}

/* ---------------------------------- */
/* NAVBAR */
/* ---------------------------------- */

.navbar-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent; /* IMPORTANT – bg image shows behind navbar */
}

.navbar-box {
    width: 90%;
    background: white;
    padding: 6px 35px;
    border-radius: 60px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0 auto;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #0A954F;
}

.book-btn {
    background: #0F9D58;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.book-btn:hover { background: #0c7c47; }


.book-btn-mobile {
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 25px;
    text-decoration: none;
    margin-left: auto;
}

.book-btn-mobile i { color: #000; }

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 10px;
}

/* MOBILE NAV FIXES */
@media (max-width: 991px) {
    .nav-links, .book-btn {
        display: none !important;
    }

    .logo {
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mobile-menu {
    width: 50%;
    min-width: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    font-size: 18px;

    position: fixed;          /* FIXED = stays under navbar always */
    top: 90px;                /* exactly under navbar */
    left: -60%;               /* hidden off-screen */
    z-index: 99999;

    transition: left 0.35s ease;
}

/* Show when opening */
.menu-open {
    left: 10%;               /* original popup spot */
}


.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li { margin: 12px 0; }
.mobile-menu a { text-decoration: none; color: #000; font-weight: 500; }




/* sixth */

.sixth {
    width: 100%;
    padding: 70px 6%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin-top: 11vh;
}

/* Header Section */
.sixth-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sixth-header h2 {
    font-weight: 500;
    font-size: 40.9px;
    line-height: 49px;
    letter-spacing: 2%;
    margin: 0;
}

.sixth-header p {
    max-width: 450px;
    font-weight: 300;
    font-size: 14.61px;
    line-height: 23px;
    letter-spacing: 2%;
    margin: 0;
}

/* Grid */
.package-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

/* Card */
.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.package-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.package-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}



/* Content */
/* Main Section */
.sixth {
    width: 100%;
    padding: 70px 6%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Header Section */
.sixth-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sixth-header h2 {
    font-weight: 500;
    font-size: 40.9px;
    line-height: 49px;
    letter-spacing: 2%;
    margin: 0;
}

.sixth-header p {
    max-width: 450px;
    font-weight: 300;
    font-size: 14.61px;
    line-height: 23px;
    letter-spacing: 2%;
    margin: 0;
}

/* Grid — EXACT 3 per row on desktop */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.package-card img {
    width: 100%;
    height: 300px; /* taller like screenshot */
    object-fit: cover;
    display: block;
}

/* Gradient overlay always visible */
.package-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Content */
.package-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: white;
}

/* NAME: hidden initially */
.package-content h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 18.82px;
    line-height: 22.55px;
    letter-spacing: 2%;
    margin: 0 0 10px 0;

    opacity: 0;
    transform: translateY(12px);
    transition: 0.4s ease;
}

/* Name appears on hover only */
.package-card:hover .package-content h3 {
    opacity: 1;
    transform: translateY(0px);
}

/* Button: always visible */
.package-content button {
    padding: 6px 18px;
    background: #0E9F6E;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    cursor: pointer;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
    .package-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .package-card img {
        height: 260px;
    }
}

/* HUGE screens — keep 3 per row */
@media (min-width: 1400px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* footer  */
/* --- Global Styles for Footer --- */
.main-footer {
    width: 100%;
    margin-top: 10vh;
    /* font-family: , sans-serif; Fallback font */
}

/* ========================================= */
/* 2. Main Footer (Bottom Dark Part) */
/* ========================================= */
.footer-bottom {
    background-color: #000000; /* Dark background color */
    color: #ffffff;
    padding: 80px 100px 40px 100px;
}

.footer-content {
    max-width: 1400px; /* Match newsletter width */
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* This section contains the navigation links and social icons */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover {
    color: #38a55e;
}

.pipe {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icon:hover {
    background-color: #38a55e;
    border-color: #38a55e;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.footer-copyright-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-policy:hover {
    color: #38a55e;
}


/* ========================================= */
/* 📱 Responsive Adjustments (Max width 768px) */
/* ========================================= */
@media (max-width: 768px) {
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 20px 60px 20px;
    }

    .newsletter-content {
        flex-direction: column; /* Stack text and form */
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-heading {
        font-size: 28px;
    }

    .newsletter-form-container {
        flex-direction: column; /* Stack input and button */
        width: 100%;
        gap: 10px;
    }

    .email-input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }

    /* Main Footer Section */
    .footer-bottom {
        padding: 60px 20px 30px 20px;
    }

    .footer-links-social {
        flex-direction: column; /* Stack links and social icons */
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap; /* Allow links to wrap */
    }

    .footer-nav a, .pipe {
        margin: 0 5px;
    }

    .footer-copyright-policy {
        flex-direction: column; /* Stack copyright and policy */
        gap: 10px;
        align-items: flex-start;
    }
}