/* ======================================================= */
/* ROOMPORTAL UNBREAKABLE NAVIGATION & FOOTER SYSTEM       */
/* ======================================================= */

/* FORCED DARK TOP NAVIGATION BAR */
.navbar-glass {
    background-color: rgba(15, 23, 42, 0.95) !important; 
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #1e293b !important; 
}

/* PREMIUM MODERN FOOTER CONFIGURATION */
.custom-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important; /* Deep luxury gradient baseline */
    color: #94a3b8 !important; /* Soft slate text color */
    border-top: 1px solid #1e293b !important;
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
    font-family: sans-serif !important;
}

.footer-grid {
    max-w: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-cols: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr); /* Gives description more breathing room */
    }
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    letter-spacing: 0.05em !important;
}

.footer-logo-accent {
    color: #f59e0b !important;
}

.footer-description {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
    max-width: 320px;
}

.footer-heading {
    color: #ffffff !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 1.25rem !important;
    position: relative;
}

/* Elegant line marker under footer categories */
.footer-heading::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #f59e0b;
    margin-top: 0.5rem;
    border-radius: 2px;
}

.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

/* Interactive moving links */
.custom-footer-link {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    transition: all 0.2s ease-in-out !important;
    display: inline-flex !important;
    align-items: center !important;
}

.custom-footer-link:hover {
    color: #f59e0b !important;
    transform: translateX(4px); /* Sophisticated nudge animation on hover */
}

.custom-footer-link i {
    font-size: 1rem;
    width: 20px;
    color: #f59e0b;
}

/* Bottom copyright bar strip */
.footer-bottom-strip {
    max-w: 80rem;
    margin: 4rem auto 0 auto;
    padding: 2rem 1.5rem 0 1.5rem;
    border-top: 1px solid rgba(30, 41, 59, 0.6) !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem !important;
}

@media (min-width: 640px) {
    .footer-bottom-strip {
        flex-direction: row;
    }
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

/* ------------------------------------------------------- */
/* MOBILE DRAWER STYLING (Kept untouched for functionality) */
/* ------------------------------------------------------- */
@media (min-width: 1024px) {
    .custom-mobile-overlay, .custom-mobile-drawer, .mobile-trigger-wrapper {
        display: none !important;
    }
}
.custom-mobile-overlay {
    position: fixed !important; top: 0 !important; left: 0 !important;
    width: 100vw !important; height: 100vh !important; height: 100dvh !important;
    background-color: rgba(0, 0, 0, 0.65) !important; backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important; z-index: 99998 !important; display: none;
}
.custom-mobile-overlay.is-active { display: block !important; }
.custom-mobile-drawer {
    position: fixed !important; top: 0 !important; left: -320px !important; 
    width: 288px !important; max-width: 85vw !important; height: 100vh !important; height: 100dvh !important;
    background-color: #0f172a !important; border-right: 1px solid #1e293b !important; 
    z-index: 99999 !important; display: flex !important; flex-direction: column !important;
    transition: left 0.3s ease-in-out !important; box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5) !important; box-sizing: border-box !important;
}
.custom-mobile-drawer.is-active { left: 0 !important; }
.drawer-header { display: flex !important; align-items: center !important; padding: 0 24px !important; height: 80px !important; border-bottom: 1px solid #1e293b !important; flex-shrink: 0 !important; box-sizing: border-box !important; }
.drawer-brand { color: #ffffff !important; font-weight: 700 !important; font-size: 1.25rem !important; letter-spacing: -0.025em !important; font-family: sans-serif !important; }
.drawer-brand-highlight { color: #f59e0b !important; }
.drawer-nav { padding: 16px !important; display: flex !important; flex-direction: column !important; gap: 8px !important; overflow-y: auto !important; flex-grow: 1 !important; box-sizing: border-box !important; }
.drawer-link { display: flex !important; align-items: center !important; padding: 16px !important; color: #cbd5e1 !important; text-decoration: none !important; border-radius: 8px !important; transition: background-color 0.2s ease, color 0.2s ease !important; font-size: 1.125rem !important; font-weight: 500 !important; box-sizing: border-box !important; width: 100% !important; }
.drawer-link:hover { background-color: rgba(79, 70, 229, 0.2) !important; color: #ffffff !important; }
.drawer-link-icon { width: 36px !important; font-size: 1.25rem !important; color: #f59e0b !important; flex-shrink: 0 !important; display: inline-block !important; }