/* Custom Styles */

/* Hero Gradient - Used for Headers and Footers */
.hero-gradient {
    background: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Header Glass Effect */
.header-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/* Card Shadow */
.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Logo Text Gradient */
.logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mega Menu Styles */
.mega-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-trigger:hover .mega-menu {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Slide Animation */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

[dir="rtl"] .mobile-menu {
    transform: translateX(-100%);
}

[dir="rtl"] .mobile-menu.active {
    transform: translateX(0);
}

/* Search Bar Animation */
.search-bar {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-bar.active {
    width: 300px;
    opacity: 1;
}

@media (max-width: 768px) {
    .search-bar.active {
        width: 100%;
    }
}

/* Dropdown Animation */
.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-menu.active {
    max-height: 500px;
}
