/* Search Section Styles */
.search-section {
    background: linear-gradient(135deg, rgba(188, 154, 106, 0.35) 0%, #ae8346 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.search-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.search-decoration-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.search-decoration-2 {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    opacity: 0.5;
}

/* 將搜索框相關樣式也整合進來 */
.search-input {
    border-radius: 8px;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-button {
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: #17a2b8;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #138496;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}