.search-area {
    position: relative;
    z-index: 3;
    margin-top: -20px;
}

.search-wrap {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* Onglets du formulaire de recherche */
.search-wrap-area-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1.5rem;
}

.nav-tabs.custom {
    border: none;
    display: flex;
    gap: 15px;
}

.nav-tabs.custom .nav-link {
    border: none;
    color: #555;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    position: relative;
}

.nav-tabs.custom .nav-link.active {
    background-color: rgba(255, 170, 0, 0.1);
    color: #ff9900;
}

.nav-tabs.custom .nav-link:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}

.tab-content {
    padding: 1.5rem;
}

/* Style des champs de formulaire */
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
}

.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    font-size: 1rem;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.25);
}

/* Style des boutons */
.search-form-btn {
    height: 48px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, #ff9900, #ffcc33);
    color: white;
    font-weight: 600;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.search-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 153, 0, 0.4);
}

/* Champs spéciaux - select et range */
.custom-select {
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    -webkit-appearance: none;
    appearance: none;
}

.custom-range {
    height: 6px;
    border-radius: 3px;
}

/* Style de mise en page responsive */
@media (max-width: 768px) {
    .search-area {
        margin-top: -10px;
    }
    
    .tab-content {
        padding: 1rem;
    }
    
    .search-form-row {
        margin-bottom: 0.5rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
}
