/* Hero Slider Section */
.hero-slider {
    background-color: #A9B2BB;
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
}

.hero-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .hero-overlay {
    padding-left: 100px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-slider .hero-content {
    padding: 60px 20px;
    max-width: 1700px;
    width: 100%;
}

.hero-slider .search-filter {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px;
    border-radius: 12px;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-slider .search-filter h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1D2939;
    margin-bottom: 10px;
}

.hero-slider .search-filter > p {
    font-size: 14px;
    color: #475467;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-slider .filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-slider .filter-group {
    display: flex;
    flex-direction: column;
}

.hero-slider .filter-group select {
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    font-size: 14px;
    color: #475467;
    background-color: #FCFCFD;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    padding-right: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475467' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: #FCFCFD;
}

.hero-slider .filter-group select:hover {
    border-color: #98A2B3;
}

.hero-slider .filter-group select:focus {
    outline: none;
    border-color: #2D7A4D;
    box-shadow: 0 0 0 3px rgba(45, 122, 77, 0.1);
}

.hero-slider .search-btn {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(to right, #13618C, #297B35);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-slider .search-btn:hover {
    background: linear-gradient(to right, #0D5038, #255A3D);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-slider .search-btn .arrow {
    font-size: 16px;
}

.hero-slider .filter-hint {
    font-size: 12px;
    color: #98A2B3;
    text-align: center;
}

/* Slider Dots */
.hero-slider .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider .dot.active {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.hero-slider .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .hero-slider .hero-content {
        padding: 40px 20px;
    }

    .hero-slider .search-filter {
        max-width: 100%;
        max-width: 360px;
    }

    .hero-slider .search-filter h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }

    .hero-slider .search-filter {
        padding: 25px 15px;
        max-width: 100%;
    }

    .hero-slider .search-filter h2 {
        font-size: 20px;
    }

    .hero-slider .search-filter > p {
        font-size: 13px;
    }

    .hero-slider .filter-group select {
        font-size: 13px;
        padding: 10px 12px;
    }

    .hero-slider .search-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-slider .dot {
        width: 10px;
        height: 10px;
    }
}
