/* --- GLOBAL STYLES --- */
:root {
    --primary-color: #ea580c; 
    --secondary-color: #f97316; 
    --black: #0f172a;
    --white: #ffffff;
    --gray: #f1f5f9;
    --gray-2: #94a3b8;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; background-color: #f8fafc; overflow-x: hidden; margin:0; padding:0; width:100%;}

/* Loader Layout */
#loader-wrapper { position: fixed; inset: 0; background: #fff; z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.4s ease, visibility 0.4s; }
.loader-spinner { border: 4px solid #f1f5f9; border-top: 4px solid #ea580c; border-radius: 50%; width: 45px; height: 45px; animation: spin 0.8s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Reveal Scroll System */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.glass { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

/* Desktop Hover Menu system */
.nav-item .dropdown-menu { display: none; }
.nav-item:hover .dropdown-menu { display: block; animation: slideDown 0.25s ease forwards; }
@keyframes slideDown { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Sidebar Notifications drawer panel */
#notif-sidebar { position: fixed; right: -100%; top: 0; bottom: 0; width: 100%; max-width: 330px; z-index: 3000; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: white; box-shadow: -10px 0 40px rgba(0,0,0,0.06); border-left: 1px solid #f1f5f9;}
#notif-sidebar.open { right: 0; }

.notif-trigger { position: fixed; right: 20px; bottom: 20px; z-index: 1000; cursor: pointer; transition: 0.3s; }
.notif-trigger:hover { transform: scale(1.05); }

/* Overlays Layer configurations */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px); z-index: 3100; display: none; }

/* Elastic Morphing Hamburger Button layout */
.modern-hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 24px; height: 16px; background: transparent; border: none; cursor: pointer; relative; z-index: 2100; }
.modern-hamburger .bar { width: 100%; height: 2px; background-color: #0f172a; border-radius: 10px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

.modern-hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background-color: #ea580c; }
.modern-hamburger.open .bar:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.modern-hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background-color: #ea580c; }

/* Custom Flow Systems Scrollbars configurations */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Ambient Shimmer Physics */
.shimmer-canvas { position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(244,245,247,0.3) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(254,243,199,0.1) 0%, transparent 50%); pointer-events: none; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.2; pointer-events: none; }
.orb-1 { width: 200px; height: 200px; background: #fef08a; top: -5%; left: -5%; }
.orb-2 { width: 250px; height: 250px; background: #cbd5e1; bottom: -5%; right: -5%; }
