/* Navbar Animations */
#navbar {
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    background: rgba(15, 52, 96, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-teal-medium), var(--primary-teal-dark));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Dropdown Menu */
#mobile-dropdown {
    background: rgba(15, 52, 96, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-dropdown.active {
    max-height: 100vh;
}

.mobile-link {
    display: block;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
}

#mobile-dropdown.active .mobile-link {
    transform: translateX(0);
    opacity: 1;
}

#mobile-dropdown.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

#mobile-dropdown.active .mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

#mobile-dropdown.active .mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

#mobile-dropdown.active .mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

#mobile-dropdown.active .mobile-link:nth-child(5) {
    transition-delay: 0.3s;
}

#mobile-dropdown.active .mobile-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-link.active {
    background: var(--primary-teal-dark);
    /*color: var(--accent-light);*/
    padding-left: 32px;
}

/*.mobile-link:hover {*/
/*    background: var(--primary-teal-dark);*/
/*    !*color: var(--accent-light);*!*/
/*    padding-left: 32px;*/
/*}*/

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-cta {
    background: linear-gradient(90deg, var(--primary-blue-dark), var(--primary-teal-dark)) !important;
    color: white !important;
    margin: 16px 24px;
    padding: 12px 24px !important;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    border-bottom: none !important;
}

/* Hamburger Animation */
#mobile-menu-btn i {
    transition: transform 0.3s ease;
}

#mobile-menu-btn.active i {
    /*transform: rotate(90deg);*/
}

/* Advanced Button Styles */
.btn-gradient {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-teal-dark));
    transition: all 0.3s ease;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 52, 96, 0.3);
}

/* Button Effects - CSS-based */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-hover-effect:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(15, 52, 96, 0.2);
}

.btn-hover-effect:hover::before {
    left: 100%;
}

.btn-hover-effect:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


/* Notification System - CSS-based */
.notification {
    color: white;
    position: fixed;
    top: 20px;
    right: -400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.notification.show {
    right: 20px;
}

.notification-success {
    border-left: 4px solid #10b981;
    background: rgba(16, 185, 129, 0.5);
    /*color: #065f46;*/
}

.notification-error {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.5);
    /*color: #7f1d1d;*/
}

.notification-info {
    border-left: 4px solid #3b82f6;
    background: rgba(59, 130, 246, 0.5);
    /*color: #1e3a8a;*/
}
