/* ========================================
   HEADER DROPDOWN STYLES - LIGHT THEME
======================================== */

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

/* Dropdown Toggle */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(193, 0, 1, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px 0;
    list-style: none;
}

/* Dropdown arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(193, 0, 1, 0.1);
    border-left: 1px solid rgba(193, 0, 1, 0.1);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Links */
.dropdown-link {
    display: block;
    padding: 12px 24px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #C10001 0%, #ff4444 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(193, 0, 1, 0.05);
    color: #C10001;
    padding-left: 28px;
}

.dropdown-link:hover::before {
    height: 70%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(193, 0, 1, 0.02);
        margin-top: 8px;
        border: none;
        border-left: 3px solid #C10001;
        padding: 8px 0 8px 20px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu.show {
        transform: none;
    }
    
    .dropdown-link {
        padding: 10px 16px;
    }
    
    .dropdown-link:hover {
        padding-left: 20px;
    }
}