.header-main {
    /* background: var(--accent-gold); */
    padding: 0;
    position: relative;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
}



.header-main-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    /* background: var(--primary-purple);
    padding: 10px;
    border-radius: 12px 12px 0 0; */
}

.logo-icon {
    width: 100px;
    max-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .logo-icon::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(45deg) translateY(-100%);
        transition: transform 0.6s;
    }

.logo-box:hover .logo-icon::after {
    transform: rotate(45deg) translateY(0px);
}

.logo-subtitle {
    margin-block: 5px;
    font-weight: 800;
    color: var(--dark);
    font-size: 14px;
    text-wrap: balance;
    max-width: 600px;
}

.bi-calendar2-event-fill {
    color: var(--primary-orange);
}

.bi-pin-map-fill {
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

    .header-actions .btn-ProPaper {
        padding: 12px 24px;
        font-size: 12px;
    }



/* ============================================
           NAVBAR BASE
        ============================================ */
.navbar-main {
    background: var(--primary-purple);
    padding-top: 0;
    padding-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 10px 0;
}

    .navbar-main .container {
        position: relative;
    }

    .navbar-main .navbar-nav {
        gap: 5px;
    }

    .navbar-main .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 6px 10px !important;
        border-radius: 6px;
        transition: all 0.3s ease;
        white-space: nowrap;
        border: 2px solid transparent;
    }

        .navbar-main .nav-link:hover,
        .navbar-main .nav-link.active {
            color: var(--primary-purple) !important;
            background: #ffffff;
            border-radius: 25px;
            border: 2px solid #fff;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }

    /* Remove Bootstrap default caret */
    .navbar-main .dropdown-toggle::after {
        display: none !important;
    }

/* Custom caret icon */
.caret-icon {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* ============================================
           DROPDOWN MENU (Level 1)
        ============================================ */
.navbar-main .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 8px;
    min-width: 260px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    margin-top: 6px !important;
}

.navbar-main .dropdown-item {
    color: var(--white);
    background: var(--primary-purple-light);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    white-space: nowrap;
    margin-bottom: 2px;
}

    .navbar-main .dropdown-item:hover,
    .navbar-main .dropdown-item:focus,
    .navbar-main .dropdown-item.active {
        background: var(--primary-purple-dark);
        color: var(--white);
        padding-left: 22px;
    }

/* ============================================
           DESKTOP HOVER DROPDOWNS
        ============================================ */
@media (min-width: 992px) {

    /* Main dropdown hover */
    .navbar-main .dropdown:hover > .dropdown-menu,
    .navbar-main .dropdown:focus-within > .dropdown-menu {
        display: block;
        animation: dropdownFadeIn 0.25s ease;
    }

    @keyframes dropdownFadeIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Rotate caret on hover */
    .navbar-main .dropdown:hover > .dropdown-toggle .caret-icon,
    .navbar-main .dropdown:focus-within > .dropdown-toggle .caret-icon {
        transform: rotate(180deg);
    }

    /* Submenu hover */
    .dropdown-submenu:hover > .dropdown-menu,
    .dropdown-submenu:focus-within > .dropdown-menu {
        display: block;
        top: 0;
        left: 100%;
        margin-top: 0 !important;
        margin-left: 8px;
        animation: submenuFadeIn 0.25s ease;
    }

    @keyframes submenuFadeIn {
        from {
            opacity: 0;
            transform: translateX(8px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Rotate sub-caret on hover */
    .dropdown-submenu:hover > .dropdown-toggle .sub-caret,
    .dropdown-submenu:focus-within > .dropdown-toggle .sub-caret {
        transform: rotate(90deg);
    }

    /* Bridge to prevent hover gap */
    .navbar-main .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        width: 100%;
        height: 8px;
    }

    .dropdown-submenu > .dropdown-menu::before {
        top: 0;
        left: -8px;
        width: 8px;
        height: 100%;
    }
}

/* ============================================
           SUBMENU (Level 2)
        ============================================ */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: 0;
        margin-left: 8px;
    }

.sub-caret {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.3s ease;
    margin-left: auto;
}

/* ============================================
           TOGGLER BUTTON
        ============================================ */
.navbar-main .navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

    .navbar-main .navbar-toggler:hover {
        background: var(--primary-orange);
    }

    .navbar-main .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(232, 93, 43, 0.4);
    }

/* ============================================
           MOBILE RESPONSIVE
        ============================================ */
@media (max-width: 991px) {
    .logo-subtitle {
        font-size: 10px;
    }

    .navbar-main {
        padding: 0;
    }

    .header-main {
        background: #fff;
    }

    .logo-icon {
        max-width: 70px;
    }

    .navbar-main .navbar-collapse {
        /* background: var(--primary-green); */
        border-radius: 0 0 16px 16px;
        padding: 10px 0 20px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-main .nav-link {
        padding: 14px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }



    /* Mobile Level 1 Dropdown */
    .navbar-main .dropdown-menu {
        background: rgba(0, 0, 0, 0.15);
        box-shadow: none;
        border-radius: 10px;
        margin: 4px 16px 8px !important;
        padding: 8px;
        position: static;
        float: none;
    }

    .navbar-main .dropdown-item {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

        .navbar-main .dropdown-item:last-child {
            border-bottom: none;
        }

    /* Mobile Level 2 Submenu */
    .dropdown-submenu > .dropdown-menu {
        position: static;
        left: auto;
        margin-left: 0 !important;
        margin-top: 4px !important;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        padding: 6px;
        display: none;
        float: none;
    }

    /* Show submenu when .show is added by JS */
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }

    /* Rotate caret when open */
    .dropdown-submenu.show > .dropdown-toggle .sub-caret {
        transform: rotate(90deg);
    }

    .navbar-main .dropdown.show > .dropdown-toggle .caret-icon {
        transform: rotate(180deg);
    }
}

/* Scrollbar for mobile collapse */
.navbar-main .navbar-collapse::-webkit-scrollbar {
    width: 5px;
}

.navbar-main .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}


/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 40px 0px;
}

.footer-brand {
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
}



    .footer-brand img:hover {
        opacity: 1;
    }

.footer-desc {
    line-height: 1.8;
    font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-title::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 40px;
        height: 2px;
        background: var(--primary-orange);
    }

.footer-links {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .footer-links li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

        .footer-links li i {
            color: var(--primary-orange);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }

        .footer-links a::before {
            content: "";
            width: 0px;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 4px;
        }

            .footer-links a:hover::before {
                width: 12px;
            }

.footer-brand iframe {
    border-radius: 8px;
    filter: grayscale(0.3) contrast(1.1);
    transition: filter 0.3s;
}

    .footer-brand iframe:hover {
        filter: grayscale(0) contrast(1);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

    .footer-bottom p {
        margin: 0px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
    }

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        font-size: 14px;
    }

        .footer-social a:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(232, 93, 43, 0.3);
        }

/* Responsive */
@media (max-width: 991px) {
    .site-footer {
        padding: 60px 24px 0px;
    }


    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .site-footer {
        padding: 40px 16px 0px;
    }

        .site-footer * {
            justify-content: center;
            text-align: center;
        }

    .footer-bottom {
        margin-top: 40px;
    }
}
