/* ==================================================
   WHY CHOOSE US SECTION
   ================================================== */
.why-choose-section {
    padding: 120px 0;
    background: #f4f5f7;
    /* Matching light gray background */
    font-family: 'Poppins', sans-serif;
}

.why-grid {
    display: flex;
    gap: 80px;
    /* Increased gap */
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    align-items: stretch;
}

.why-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-main-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-header {
    margin-bottom: 40px;
}

.why-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 1000;
    font-size: 42px;
    letter-spacing: -1.5px;
    color: #4F94D2;
    text-transform: uppercase;
    line-height: 1.1;
}

.why-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 500px;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 20px;
    border: none;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: #f4f5f7;
    color: var(--primary-black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-card-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0px;
}

.why-card-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.start-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.start-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: #ffffff;
    color: var(--accent-yellow);
    box-shadow: 0 10px 20px rgba(79, 148, 210, 0.4);
}

/* Responsiveness */
@media (max-width: 1199px) {
    .why-grid {
        gap: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .why-grid {
        flex-direction: column;
    }

    .why-left {
        height: auto;
        max-height: 350px;
    }
    
    .why-main-img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-header h2 {
        font-size: clamp(32px, 6vw, 42px);
    }
    
    .why-card {
        padding: 20px;
    }
    
    .why-card-text h4 {
        font-size: 17px;
    }
    
    .why-card-text p {
        font-size: 14px;
    }
}