.search-section {
    background: #16302b;
    color: white;
    padding: 4rem 2rem; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px; 
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.search-container {
    position: relative;
    z-index: 2;
    max-width: 750px; 
    margin: 0 auto;
}

.search-section h2 {
    color: white;
    font-size: 2.2rem; 
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.search-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem; 
    margin-bottom: 2rem;
    font-weight: 300;
}

.search-form {
    background: white;
    padding: 2rem; 
    border-radius: 12px;
    color: #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 1.2rem;
    margin-bottom: 1.2rem; 
}

.action-row {
    align-items: flex-end;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #1a3a52;
    font-weight: 600;
    font-size: 0.85rem; 
    display: flex;
    align-items: center;
    gap: 0.4rem; 
}

.label-icon {
    font-size: 1rem; 
}

.form-group input,
.form-group select {
    padding: 0.7rem 0.9rem; 
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem; 
    transition: all 0.3s ease;
    background: white;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
    background: rgba(212, 165, 116, 0.02);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%222%22%3e%3cpolyline points=%226 9 12 15 18 9%22%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.1em 1.1em; 
    padding-right: 2.3rem; 
}

.input-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix span {
    position: absolute;
    left: 0.9rem; 
    color: #d4a574;
    font-weight: 600;
    font-size: 0.9rem; 
}

.input-prefix input {
    padding-left: 1.8rem;
}

.price-row .form-group {
    position: relative;
}

.search-btn {
    background: linear-gradient(135deg, #d4a574 0%, #c49460 100%);
    color: white;
    padding: 0.8rem 1.5rem; 
    border: none;
    border-radius: 6px;
    font-size: 0.9rem; 
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem; 
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

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

.search-icon {
    font-size: 1.1rem; 
    transition: transform 0.3s ease;
}

.search-btn:hover .search-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .search-section {
        padding: 2.5rem 1.5rem;
    }
    
    .search-section h2 {
        font-size: 1.8rem; 
    }
    
    .search-subtitle {
        font-size: 0.85rem; 
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem; 
        margin-bottom: 1rem; 
    }
    
    .action-row {
        align-items: stretch;
    }
    
    .search-btn {
        width: 100%;
    }
}