/* HEADER PRINCIPAL */
header {
    background: linear-gradient(90deg, #004080 0%, #0066cc 50%, #0080ff 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Logo */
.header-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
    margin-right: 15px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    background: rgba(255,255,255,0.2);
}

/* Bouton Boutique spécial */
.nav-link[href="special"] {
    background: #ff9933;
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-link[href="special"]:hover {
    background: #ff7711;
    transform: translateY(-2px);
}

/* Numéro de téléphone */
.phone-link {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px);
}

/* Bouton Demander un Expert */
.expert-btn {
    background: #ff9933;
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.expert-btn:hover {
    background: #ff7711;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.expert-btn i {
    color: white;
}

/* Bouton Boutique - Bleu sur fond Orange */
.boutique-btn {
    background: #ff9933;
    color: #004080 !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 700;
}

.boutique-btn:hover {
    background: #ff7711;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.boutique-btn i {
    color: #004080;
}

/* Formulaire de recherche */
.nav-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    padding: 5px;
    transition: all 0.3s;
}

.nav-search-form:focus-within {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.nav-search-input {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 15px;
    outline: none;
    width: 200px;
    font-size: 14px;
}

.nav-search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.nav-search-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 14px;
}

.nav-search-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Actions header */
.header-actions {
    display: flex;
    gap: 15px;
}

.header-icon {
    color: white !important;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 153, 51, 0.8);
}

.header-icon:hover {
    background: rgba(255, 153, 51, 0.2);
    color: #ff9933 !important;
    transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    display: none;
    z-index: 1000;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #004080;
}

.dropdown-item i {
    color: #004080;
    width: 20px;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-search-input {
        width: 150px;
    }
}
