
.eco-search-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.eco-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.eco-search-section .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.ecosearch-inner {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.ecosearch-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #ff6b35, #e85a2c);
}

.ecosearch-inner > span {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 40px;
    position: relative;
}

.ecosearch-inner > span::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff6b35, #e85a2c);
    border-radius: 2px;
}

.ecosearch-select-single {
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.ecosearch-select-single:nth-child(2) { animation-delay: 0.2s; }
.ecosearch-select-single:nth-child(3) { animation-delay: 0.4s; }
.ecosearch-select-single:nth-child(4) { animation-delay: 0.6s; }

.ecosearch-select-single > span {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35, #e85a2c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}

.ecosearch-select-single select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    font-size: 1rem;
    color: #2d3436;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d3436' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.ecosearch-select-single select:hover {
    border-color: #ff6b35;
}

.ecosearch-select-single select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.ecosearch-select-single select option {
    padding: 10px;
}

.ecosearch-inner button {
    display: block;
    width: 100%;
    padding: 20px;
    margin-top: 40px;
    border: none;
    background: linear-gradient(135deg, #ff6b35, #e85a2c);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.ecosearch-inner button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ecosearch-inner button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.ecosearch-inner button:hover::before {
    transform: translateX(100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .eco-search-section {
        padding: 60px 0;
    }

    .ecosearch-inner {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .ecosearch-inner > span {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .ecosearch-select-single {
        margin-bottom: 20px;
    }

    .ecosearch-select-single > span {
        left: 0;
        top: -35px;
    }

    .ecosearch-select-single select {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .ecosearch-inner button {
        padding: 15px;
        font-size: 1rem;
        margin-top: 30px;
    }
}
