/* ================= NAVBAR ================= */
#navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #c1121f, #780000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo-text span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
}

.logo-text p {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links {
    display: flex;
    gap: 65px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 16px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c1121f, #780000);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #c1121f;
    font-weight: bold;
}

/* ================= SUB NAVBAR (SAME AS MAIN) ================= */
.sub-navbar {
    position: fixed;
    top: 70px; /* adjust to match your navbar height */
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;

    background: transparent;
}

/* Scroll effect SAME as navbar */
.sub-navbar.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

/* Container */
.sub-nav-container {
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 16px 60px;
}

/* Links EXACT SAME STYLE */
.sub-link {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 15px;
}

/* Underline animation SAME as main navbar */
.sub-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c1121f, #780000);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.sub-link:hover::after,
.sub-link.active::after {
    width: 100%;
}

/* Active */
.sub-link.active {
    color: #c1121f;
    font-weight: 600;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60vw;
    height: 100vh;
    background: #003049;
    z-index: 999;
    padding: 80px 30px;

    display: flex;              /* ADD THIS */
    flex-direction: column;     /* ADD THIS */

    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.nav-links-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu .btn {
    background: linear-gradient(135deg, #c1121f, #780000);
    padding: 12px 22px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;

    margin-top: auto;   /* 🔥 THIS pushes it to bottom */
    text-align: center;
}

.nav-links-mobile a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links-mobile a.active {
    color: #c1121f;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ================= FOOTER ================= */
.site-footer {
    background: #003049;
    color: white;
    padding: 70px 20px 20px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #c1121f;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #c1121f;
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: #c1121f;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #c1121f;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .nav-container {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container .btn-primary {
        display: none;
    }

    
    


    .custom-banner {
        padding: 40px 20px;
    }

    .custom-banner h2 {
        font-size: 28px;
    }

    .custom-banner p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .packages-hero h1 {
        font-size: 28px;
    }

    .package-content h3 {
        font-size: 22px;
    }

    .duration-price {
        font-size: 14px;
    }

    .features li {
        font-size: 14px;
    }

    .custom-banner h2 {
        font-size: 24px;
    }
}

/* ================= RESPONSIVE IMPROVEMENTS ================= */

/* For Sub Navbar */
@media (max-width: 992px) {
    .sub-nav-container {
        gap: 25px;
        padding: 12px 30px;
    }
    
    .sub-link {
        font-size: 14.5px;
    }
}

@media (max-width: 768px) {
    .sub-navbar {
        top: 68px; /* Adjust if your navbar height changes on mobile */
    }
    
    .sub-nav-container {
        gap: 18px;
        padding: 12px 20px;
        justify-content: flex-start; /* Allows horizontal scroll on very small screens */
    }
    
    .sub-link {
        font-size: 14px;
    }
}