 :root {
    --brand-blue: #003a8f;
    --brand-red: #e60023;
    --brand-yellow: #ffcc00;
    --text-dark: #222;
}

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: #003a8f;
            color: #fff;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 {
            margin: 0;
            font-size: 22px;
        }

        nav a {
            color: #fff;
            margin-left: 20px;
            text-decoration: none;
            font-weight: 500;
        }
 

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 45px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
}

/* CENTER */
.nav-center {
    display: flex;
    gap: 25px;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    width: 0; 
    height: 2px;
    background: #ffcc00;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-center a:hover::after {
    width: 100%;
}
/* NAV BASE */
.nav-center {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* ICONS */
.nav-link i {
    font-size: 14px;
}

/* ACTIVE PAGE */
.nav-link.active {
    color: #ffcc00;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #ffcc00;
    bottom: -6px;
    left: 0;
    border-radius: 3px;
}

/* HOVER EFFECT */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #ffcc00;
    bottom: -6px;
    left: 0;
    transition: 0.3s ease;
    border-radius: 3px;
}

.nav-link:hover::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 11px;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    overflow: hidden;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #003a8f;
    font-weight: 500;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f2f6ff;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ROTATE ARROW */
.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* RIGHT */
.book-btn {
    background: #e60023;
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: #ff1f3d;
}
/* HEADER */
.main-header {
    background: var(--brand-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { height: 45px; }
.brand-name { font-weight: 700; font-size: 20px; }

.nav-left { display: flex; align-items: center; gap: 10px; }

.nav-center {
    display: flex;
    gap: 2px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover { color: var(--brand-yellow); }

.nav-link.active {
    color: var(--brand-yellow);
}

/* BOOK BUTTON */
.book-btn {
    background: var(--brand-red);
    padding: 10px 22px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* MEGA MENU */
.mega-dropdown { position: relative; }

.mega-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    color: var(--text-dark);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 25px;
    border-radius: 12px;
    min-width: 380px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s;
}

.mega-menu h4 {
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.mega-menu a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 6px;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

 /* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: white;
}

 .mobile-menu {
    position: fixed;
    inset: 0;
    width: 260px;
    max-width: 85vw;
    margin-left: auto;
    background: var(--brand-blue);
    padding: 85px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    z-index: 1200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
}

 
/* CLOSE BUTTON */
.mobile-close {
    position: fixed;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
     z-index: 1300;
}


/* MENU LINKS */
.mobile-menu a,
.accordion-btn {
    color: white;
    text-decoration: none;
    font-size: 15px; /* 🔽 reduced */
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0; /* 🔽 reduced */
}

/* ACCORDION */
.mobile-accordion h5 {
    color: var(--brand-yellow);
    margin: 8px 0 4px;
    font-size: 13px;
}

.accordion-content {
    display: none;
    flex-direction: column;
    padding-left: 18px;
}

.accordion-content a {
    font-size: 14px;
    padding: 4px 0;
}

/* QUICK CONTACT */
.mobile-contact {
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}

.mobile-contact a {
    font-weight: 600;
    font-size: 14px;
}

 /* MOBILE BOOK BUTTON */
.mobile-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--brand-red); /* 🔴 solid red */
    color: #ffffff !important;

    padding: 12px 16px;
    margin-top: 14px;

    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 10px 20px rgba(230, 0, 35, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON */
.mobile-book i {
    font-size: 16px;
}

/* HOVER / PRESS */
.mobile-book:hover,
.mobile-book:active {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(230, 0, 35, 0.45);
}

/* VERY SMALL SCREENS */
@media (max-width: 360px) {
    .mobile-book {
        font-size: 14px;
        padding: 10px 14px;
    }
}


/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #001427, #001d3d);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

/* ============================= */
/* ACTIVE MOBILE LINK – LUXURY   */
/* ============================= */
.mobile-menu a {
    position: relative;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Active Link */
.mobile-menu a.active {
    color: var(--brand-yellow);
    font-weight: 700;
}

/* Active Icon */
.mobile-menu a.active i {
    color: var(--brand-yellow);
}

/* Left Indicator Bar (Premium) */
.mobile-menu a.active::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--brand-yellow),
        var(--brand-red)
    );
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
}

/* Hover Effect (Desktop & Mobile) */
.mobile-menu a:hover {
    color: var(--brand-yellow);
}

/* ============================= */
/* MOBILE MENU CONTAINER         */
/* ============================= */
.mobile-menu {
    background: linear-gradient(180deg, #000814, #001d3d);
    overscroll-behavior: contain;
    box-shadow: 8px 0 25px rgba(0, 0, 0, 0.65);
}

/* ============================= */
/* SMALL SCREENS (≤360px)        */
/* ============================= */
@media (max-width: 360px) {
    .mobile-menu {
        width: 230px;
        padding-top: 80px;
    }

    .mobile-menu a,
    .accordion-btn {
        font-size: 14px;
        padding: 6px 0;
        gap: 6px;
    }

    .accordion-content a {
        font-size: 13px;
    }

    .mobile-book {
        font-size: 14px;
        padding: 9px;
    }
}

/* ============================= */
/* SHORT HEIGHT SCREENS          */
/* ============================= */
@media (max-height: 600px) {
    .mobile-menu {
        padding-bottom: 80px;
    }
}
.mobile-menu {
    backdrop-filter: blur(8px);
}