/* ===== Why Choose Us Component ===== */
.why-choose-us {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../../images/site/why-choose-us-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.why-choose-us .section-title h2,
.why-choose-us .section-title p {
    color: #fff;
}

.why-choose-us .section-title {
    margin-bottom: 25px;
}

.why-choose-us .feature-box h3,
.why-choose-us .feature-box p {
    color: #fff;
}

.why-choose-us .feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-us .feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.why-choose-us .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(253, 184, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us .feature-icon i {
    font-size: 30px;
    color: #FDB827;
}

.why-choose-us .feature-box h3 {
    margin: 15px 0;
    font-size: 1.5rem;
}

.why-choose-us .feature-box p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .why-choose-us {
        padding: 70px 0;
    }
    
    .why-choose-us .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 50px 0;
    }
    
    .why-choose-us .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-us .feature-icon i {
        font-size: 25px;
    }
}
