/* Hero Search Form - Enhanced with categories and regions */

.hero-search-form .search-input-group {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    align-items: stretch;
}

.hero-search-form .search-type-wrapper,
.hero-search-form .search-category-wrapper,
.hero-search-form .search-location-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-search-form .search-type-wrapper {
    background: #e3f8fc;
    border: 2px solid #0cc0df;
}

.hero-search-form .search-type-wrapper:hover,
.hero-search-form .search-category-wrapper:hover,
.hero-search-form .search-location-wrapper:hover {
    background: #e9ecef;
}

.hero-search-form .search-type-wrapper:hover {
    background: #d1f4f9;
}

.hero-search-form .search-type-wrapper i,
.hero-search-form .search-category-wrapper i,
.hero-search-form .search-location-wrapper i {
    color: #0cc0df;
    margin-right: 0.875rem;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.hero-search-form .search-type,
.hero-search-form .search-category,
.hero-search-form .search-location {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a2332;
    outline: none;
    width: 100%;
}

.hero-search-form .search-type {
    font-weight: 600;
}

.hero-search-form .search-type,
.hero-search-form .search-category,
.hero-search-form .search-location {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b9aaf' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.hero-search-form .search-type:focus,
.hero-search-form .search-category:focus,
.hero-search-form .search-location:focus {
    outline: 2px solid #0cc0df;
    outline-offset: 2px;
}

.hero-search-form .btn-search {
    background: linear-gradient(135deg, #0cc0df 0%, #0aa3be 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.hero-search-form .btn-search:hover {
    background: linear-gradient(135deg, #0aa3be 0%, #088fa5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.3);
}

.hero-search-form .btn-search:active {
    transform: translateY(0);
}

.hero-search-form .btn-search:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-search-form .search-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-search-form .btn-search {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-search-form .search-input-wrapper,
    .hero-search-form .search-category-wrapper,
    .hero-search-form .search-location-wrapper {
        padding: 0.625rem 0.875rem;
    }
    
    .hero-search-form .btn-search span {
        display: inline;
    }
}
