.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

body { font-family: 'Inter', sans-serif; }

.hero-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glass-header, .glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.ghost-border, .ghost-border-input {
    border-bottom: 2px solid rgba(194, 198, 212, 0.3);
    transition: border-color 0.2s ease-in-out;
}

.ghost-border-input:focus {
    outline: none;
    border-bottom-color: #003e7f;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    padding: 0.75rem 0;
    margin-top: 1.25rem;
    z-index: 100;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    height: 1.25rem;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #545F72;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.dropdown-menu a:hover {
    color: #003E7F;
    background: #F6FAFF;
}
.dropdown-menu a .material-symbols-outlined {
    font-size: 18px;
    color: #003E7F;
    opacity: 0.5;
}
.dropdown-menu a:hover .material-symbols-outlined { opacity: 1; }

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 70;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 10px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #545F72;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(194,198,212,0.15);
}
.mobile-menu-link:hover, .mobile-menu-link.active {
    color: #003E7F;
    background: #F6FAFF;
}
.mobile-submenu {
    display: none;
    background: #F6FAFF;
}
.mobile-submenu.open {
    display: block;
}
.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #545F72;
    text-decoration: none;
    transition: all 0.2s;
}
.mobile-submenu a:hover {
    color: #003E7F;
}
.mobile-submenu a .material-symbols-outlined {
    font-size: 18px;
    color: #003E7F;
    opacity: 0.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f6faff; }
::-webkit-scrollbar-thumb { background: #003e7f; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #002a5c; }

/* Page Transition */
body { transition: opacity 0.3s ease-in-out; opacity: 1; }
body.fade-out { opacity: 0; }
