: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-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 var(--primary-color); border-radius: 50%; width: 45px; height: 45px; animation: spin 0.8s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.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); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.glass-panel { background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); }

.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); } }

#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); }

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

.modern-hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 24px; height: 16px; background: transparent; border: none; cursor: pointer; position: 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: var(--primary-color); }
.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: var(--primary-color); }

::-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; }

@keyframes float-up-down {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.animate-float { animation: float-up-down 5s ease-in-out infinite; }
.animate-float-delayed { animation: float-up-down 6s ease-in-out infinite 2s; }