﻿/* Navigation Styles */
.navbar-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .navbar-premium.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo/Brand */
.navbar-brand-premium {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

    .navbar-brand-premium:hover {
        color: #667eea;
        transform: translateY(-1px);
    }

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    padding-left: 12px !important;
}

.nav-item {
    position: relative;
}

.nav-link-premium {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .nav-link-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .nav-link-premium:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    }

        .nav-link-premium:hover::before {
            width: 100%;
        }

.dropdown-arrow {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Premium Dropdown Menu */
.dropdown-menu-premium {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 185px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 0;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu-premium {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header-premium {
    /*padding: 0px 24px 0px;*/
    /*font-weight: 600;
    font-size: 16px;
    color: #1f2937;*/
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.dropdown-item-premium {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 400;
    font-size: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
}

    .dropdown-item-premium::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.1;
    }

    .dropdown-item-premium:hover {
        /*color: #667eea;*/
        background: rgba(102, 126, 234, 0.05);
        border-left-color: #F29434;
        transform: translateX(0px);
    }

        .dropdown-item-premium:hover::before {
            width: 100%;
        }

.dropdown-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.dropdown-item-premium:hover .dropdown-item-icon {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .mobile-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
    }

.toggle-line {
    width: 24px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

    .mobile-menu.active {
        transform: translateX(0);
    }

.mobile-nav-list {
    padding: 24px;
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .mobile-nav-link:hover {
        
        /*background: rgba(102, 126, 234, 0.1);
        color: #667eea;*/
        transform: translateX(4px);
    }

.mobile-dropdown-items {
    padding-left: 20px;
    margin-top: 12px;
    border-left: 2px solid rgba(102, 126, 234, 0.2);
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

    .mobile-dropdown-item:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
    }

/* Right Menu Items */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .nav-right .nav-link-premium {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
    }

        .nav-right .nav-link-premium:hover {
            background: #667eea;
            color: white;
        }

/* Content Area */
.hero-section {
    padding: 120px 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    /*.nav-menu {
        display: none;
    }*/

    .mobile-toggle {
        display: flex;
    }

    .navbar-content {
        height: 64px;
    }

    .mobile-menu {
        top: 64px;
        height: calc(100vh - 64px);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 80px 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
