/* Why Choose Us Section Styles */
.why-choose-us-section {
    width: 100%;
    background: var(--color-white-solid, white);
    padding: 40px 0;
}

.why-choose-us-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Header Styles */
.why-choose-us-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-us-label-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow-flag, #F2CE16);
    border-radius: 50%;
}

.why-choose-us-label-container {
    padding-left: 8px;
    display: inline-flex;
}

.why-choose-us-label {
    color: var(--color-orange-44, #D97706);
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.80px;
    text-align: center;
}

.why-choose-us-dot-container {
    width: 16px;
    height: 8px;
    padding-left: 8px;
    display: inline-flex;
}

.why-choose-us-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us-title-proven {
    color: var(--blue-2, #152FBF);
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 48px;
    white-space: nowrap;
}

.why-choose-us-title-excellence {
    color: var(--color-yellow-53, #FFCD11);
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 48px;
    white-space: nowrap;
}

.why-choose-us-description-container {
    width: 100%;
    padding-top: 8px;
    display: flex;
    justify-content: center;
}

.why-choose-us-description {
    color: var(--color-azure-34, #4B5563);
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
}

/* Cards Container */
.why-choose-us-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

/* Card Styles */
.why-choose-us-card {
    flex: 1 1 calc(25% - 24px);
    min-width: 280px;
    background: var(--color-white-solid, white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-choose-us-card-image {
    width: 100%;
    height: 192px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-us-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0) 100%);
}

.why-choose-us-card-content {
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-choose-us-card-title {
    color: var(--blue-2, #152FBF);
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 28px;
}

.why-choose-us-card-subtitle {
    color: var(--color-azure-34, #4B5563);
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    line-height: 24px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .why-choose-us-cards {
        gap: 24px;
    }
    
    .why-choose-us-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-container {
        padding-left: 16px;
        padding-right: 16px;
        gap: 40px;
    }
    
    .why-choose-us-title-proven,
    .why-choose-us-title-excellence {
        font-size: 36px;
        line-height: 40px;
    }
    
    .why-choose-us-description {
        font-size: 18px;
        line-height: 24px;
    }
    
    .why-choose-us-cards {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-us-card {
        flex: 1 1 100%;
    }
    
    .why-choose-us-title-proven,
    .why-choose-us-title-excellence {
        font-size: 28px;
        line-height: 32px;
        white-space: normal;
    }
    
    .why-choose-us-description {
        font-size: 16px;
        line-height: 22px;
    }
}
