/* ===== Why Choose Us Section - FIXED ===== */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-content h2 {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-content>p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-list {
    margin-bottom: 32px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.why-item i {
    font-size: 28px;
    color: #FFD700;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item div {
    flex: 1;
}

.why-item h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.why-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.image-wrapper i {
    font-size: 120px;
    color: #1a1a1a;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(255, 215, 0, 0.5);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-content h2 {
        font-size: 28px;
    }

    .image-wrapper {
        width: 300px;
        height: 300px;
    }

    .image-wrapper i {
        font-size: 90px;
    }
}