/* Header moderne avec glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    z-index: 1001;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-numbers {
    display: flex;
    gap: 15px;
    font-size: 1rem;
}

.phone-numbers a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 4px;
}

.phone-numbers a:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Menu hamburger moderne */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 157, 0.1);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b9d;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b9d, #ff8e53);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: #ff6b9d;
}

/* Menu déroulant Services */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-content a:first-child {
    border-radius: 15px 15px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 15px 15px;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    padding-left: 25px;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-only {
    display: none;
}

/* Responsive Menu */
@media (max-width: 1000px) {
    nav {
        position: relative;
        padding: 0.5rem;
        justify-content: flex-start;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 5px;
        right: 15px;
        z-index: 1002;
    }
    
    .logo {
        width: 100%;
        align-items: flex-start;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .phone-numbers {
        font-size: 0.8rem;
        gap: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .dropdown {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

@media (max-width: 600px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .phone-numbers {
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .logo-main {
        gap: 8px;
    }
    
    nav {
        padding: 0.3rem;
    }
}

@media (max-width: 400px) {
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .phone-numbers {
        gap: 2px;
        font-size: 0.7rem;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
}