/*=========================================================
    ABOUT SECTION - Elegant Responsive v2.1
=========================================================*/

.kk-about {
    padding: clamp(58px, 7vw, 92px) 0;
    background:
        radial-gradient(circle at top left, rgba(255, 179, 0, .10), transparent 34%),
        linear-gradient(180deg, var(--kk-bg-light, #FFFDF9), #FFF7ED);
}

.kk-about-wrapper {
    display: grid;
    grid-template-columns: minmax(320px, 455px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.kk-about-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*=========================================================
    Image Card
=========================================================*/

.kk-about-image-card {
    width: 100%;
    max-width: 455px;
    overflow: hidden;
    background: var(--kk-surface, #fff);
    border: 1px solid rgba(198, 40, 40, .08);
    border-radius: 28px;
    box-shadow: var(--kk-shadow-lg, 0 22px 55px rgba(0,0,0,.10));
    transition: transform .35s ease, box-shadow .35s ease;
}

.kk-about-image-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kk-shadow-xl, 0 28px 70px rgba(0,0,0,.14));
}

.kk-about-image-card img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .45s ease;
}

.kk-about-image-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.06);
}

.kk-about-image-info {
    padding: 22px 24px;
    text-align: center;
}

.kk-about-image-info h4 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--kk-text, #222);
}

.kk-about-image-info p {
    margin: 0;
    color: var(--kk-text-light, #666);
    font-size: 15px;
    line-height: 1.6;
}

/*=========================================================
    Right Content
=========================================================*/

.kk-about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
}

.kk-about-right .kk-section-header {
    margin-bottom: 18px;
}

.kk-about-right .kk-section-header h2,
.kk-about-right h2 {
    font-size: clamp(32px, 4vw, 44px) !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.kk-about-text {
    max-width: 640px;
    margin: 0 0 20px;
    color: var(--kk-text-light, #666);
    font-size: 16px;
    line-height: 1.78;
}

.kk-about-quote {
    margin: 4px 0 26px;
    color: var(--kk-primary, #C62828);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
    font-weight: 600;
    font-style: italic;
}

/*=========================================================
    Feature Grid
=========================================================*/

.kk-about-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0 28px;
}

.kk-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px;
    background: var(--kk-surface, #fff);
    border: 1px solid rgba(198, 40, 40, .08);
    border-radius: 22px;
    box-shadow: var(--kk-shadow-card, 0 12px 30px rgba(0,0,0,.06));
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.kk-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 152, 0, .65);
    box-shadow: var(--kk-shadow-hover, 0 20px 45px rgba(0,0,0,.10));
}

.kk-feature-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFF8EC, #FFF0DC);
    color: var(--kk-primary, #C62828);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: transform .3s ease;
}

.kk-feature-card:hover .kk-feature-icon {
    transform: rotate(5deg) scale(1.05);
}

.kk-feature-card h4 {
    margin: 0 0 8px;
    color: var(--kk-text, #222);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.kk-feature-card p {
    margin: 0 0 16px;
    color: var(--kk-text-light, #777);
    font-size: 14.5px;
    line-height: 1.65;
}

.kk-feature-card span {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding: 7px 14px;
    border-radius: 999px;
    background: #FFF5E9;
    color: #E67E22;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.2;
}

/*=========================================================
    Actions
=========================================================*/

.kk-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.kk-about-actions .kk-btn {
    min-width: 160px;
    justify-content: center;
}

/*=========================================================
    Mobile Image
=========================================================*/

.kk-about-image-mobile {
    display: none;
}

/*=========================================================
    Responsive - Laptop
=========================================================*/

@media (max-width: 1200px) {
    .kk-about-wrapper {
        grid-template-columns: 410px minmax(0, 1fr);
        gap: 42px;
    }

    .kk-about-image-card img {
        height: 380px;
    }
}

/*=========================================================
    Responsive - Tablet
=========================================================*/

@media (max-width: 992px) {
    .kk-about-wrapper {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    .kk-about-left {
        display: none;
    }

    .kk-about-right {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .kk-about-image-mobile {
        display: block;
        width: 100%;
        margin: 22px auto 26px;
    }

    .kk-about-image-mobile .kk-about-image-card {
        max-width: 520px;
        margin-inline: auto;
    }

    .kk-about-text {
        max-width: 760px;
    }

    .kk-about-features {
        max-width: 760px;
    }

    .kk-feature-card {
        text-align: left;
    }

    .kk-about-actions {
        justify-content: center;
    }
}

/*=========================================================
    Responsive - Mobile
=========================================================*/

@media (max-width: 768px) {
    .kk-about {
        padding: 54px 0;
    }

    .kk-about-right .kk-section-header h2,
    .kk-about-right h2 {
        font-size: 30px !important;
        line-height: 1.18;
    }

    .kk-about-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .kk-about-quote {
        font-size: 18px;
        margin: 4px 0 22px;
    }

    .kk-about-image-mobile img,
    .kk-about-image-card img {
        height: 245px;
    }

    .kk-about-image-info {
        padding: 18px;
    }

    .kk-about-image-info h4 {
        font-size: 19px;
    }

    .kk-about-image-info p {
        font-size: 14px;
    }

    .kk-about-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px 0 24px;
    }

    .kk-feature-card {
        align-items: center;
        text-align: center;
        padding: 22px;
    }

    .kk-feature-icon {
        margin-inline: auto;
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        font-size: 24px;
    }

    .kk-feature-card h4 {
        font-size: 20px;
    }

    .kk-feature-card p {
        font-size: 14px;
    }

    .kk-feature-card span {
        align-self: center;
    }

    .kk-about-actions {
        width: 100%;
        flex-direction: column;
    }

    .kk-about-actions .kk-btn {
        width: 100%;
    }
}

/*=========================================================
    Responsive - Small Mobile
=========================================================*/

@media (max-width: 480px) {
    .kk-about {
        padding: 46px 0;
    }

    .kk-about-right .kk-section-header h2,
    .kk-about-right h2 {
        font-size: 27px !important;
    }

    .kk-about-image-card {
        border-radius: 20px;
    }

    .kk-about-image-mobile img,
    .kk-about-image-card img {
        height: 220px;
    }

    .kk-feature-card {
        padding: 20px;
        border-radius: 20px;
    }
}
