.why-choose-us-sec {
    background: #F4F4F4;
    position: relative;
    overflow: hidden;
}

.why-choose-us-sec .heading-title {
    color: var(--dark);

    &::before {
        background-color: var(--dark);
    }
}

.why-choose-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.why-choose-content {
    flex: 1;
    min-width: 0;
}

.why-choose-image {
    flex: 0 0 485px;
    max-width: 485px;
    position: relative;
    align-self: stretch;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.why-choose-heading {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: clamp(24px, 24px + (46 - 24) * ((100vw - 575px) / (1920 - 575)), 46px);
    line-height: 50px;
    color: var(--text-primary);
    max-width: 640px;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 90px;
    column-gap: 100px;
}

/* ── Single feature item ── */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    object-fit: contain;
}

/* ── Feature text block ── */
.feature-text {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    line-height: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-desc {
    font-family: var(--font-ui);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-body);
    max-width: 336px;
}


/* ═══════════ RESPONSIVE BREAKPOINTS ═════════════ */

@media (max-width: 1699.98px) {

    .why-choose-grid {
        row-gap: 60px;
        column-gap: 60px;
    }

    .why-choose-heading {
        line-height: 46px;
    }

    .why-choose-image {
        flex: 0 0 420px;
        max-width: 420px;
    }
}

@media (max-width: 1439.98px) {

    .why-choose-inner {
        gap: 40px;
    }

    .why-choose-grid {
        row-gap: 40px;
        column-gap: 40px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-desc {
        line-height: 22px;
    }

    .why-choose-image {
        flex: 0 0 360px;
        max-width: 360px;
    }

    .why-choose-heading {
        line-height: 42px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1199.98px) {

    .why-choose-inner {
        flex-direction: column;
        gap: 48px;
    }

    .why-choose-image {
        flex: unset;
        max-width: 100%;
        width: 100%;
        height: 360px;
        order: -1;
    }

    .why-choose-image img {
        margin-top: 0;
        height: 100%;
    }

    .why-choose-heading {
        line-height: 38px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
        column-gap: 30px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {

    .why-choose-heading {
        line-height: 36px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .why-choose-image {
        height: 280px;
    }

    .feature-desc {
        max-width: unset;
    }
}

@media (max-width: 575.98px) {

    .why-choose-inner {
        gap: 30px;
    }

    .why-choose-heading {
        line-height: 30px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
}