.dentista-home-search-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.home-search-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.search-field {
    flex: 2;
    padding: 10px 25px;
    border-right: 1px solid #eee;
}

.search-field:last-of-type {
    flex: 3;
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home-search-select {
    width: 100%;
    border: none !important;
    background: none !important;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 5px 0 !important;
    cursor: pointer;
    box-shadow: none !important;
}

.home-search-select:focus {
    outline: none !important;
}

.location-group {
    display: flex;
    gap: 10px;
}

.location-group select {
    flex: 1;
}

.search-button-wrap {
    flex: 1;
    padding-right: 10px;
}

.home-search-btn {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.home-search-btn h3 {
    margin: 0;
}

.home-search-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .dentista-home-search-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .dentista-home-search-wrapper {
        border-radius: 20px;
        padding: 20px;
    }
    .home-search-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .search-field {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
    .search-button-wrap {
        padding-right: 0;
        margin-top: 15px;
    }
    .home-search-btn {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .location-group {
        flex-direction: column;
    }
    .dentista-home-search-wrapper {
        margin: 20px auto;
    }
}

/* TV / Large Screens */
@media (min-width: 1921px) {
    .dentista-home-search-wrapper {
        max-width: 1400px;
        padding: 20px;
    }
    .home-search-select {
        font-size: 1.25rem;
    }
    .search-field label {
        font-size: 0.9rem;
    }
    .home-search-btn {
        font-size: 1.1rem;
        padding: 20px 40px;
    }
}
