/*================ ABOUT SECTION ================*/

.about {
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: 45px 0;

    background: linear-gradient(180deg,
            #ffffff 0%,
            #fffaf4 100%);

    overflow: hidden;
}

.about-container {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: clamp(24px, 3vw, 50px);
}

/*================ IMAGE =================*/

.about-image {

    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;
}

.about-image-wrapper {

    position: relative;

    width: clamp(280px, 30vw, 430px);

    aspect-ratio: 1;

    display: flex;

    justify-content: center;

    align-items: center;
}

.about-shape {

    position: absolute;

    inset: 50% auto auto 50%;

    width: 92%;

    aspect-ratio: 1;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: linear-gradient(180deg,
            #ef902d,
            #ffb257);

    opacity: .10;
}

.about-image img {

    position: relative;

    z-index: 2;

    width: auto;

    height: clamp(260px, 28vw, 390px);

    max-width: 100%;

    object-fit: contain;

    object-position: center bottom;

    transition: .35s ease;
}

.about-image:hover img {

    transform: translateY(-8px);
}

/*================ BADGE =================*/

.about-badge {

    position: absolute;

    bottom: 28px;

    right: -18px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(12px);

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

    z-index: 5;
}

.about-badge i {

    width: 46px;

    height: 46px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: #ef902d;

    color: #fff;

    font-size: 16px;
}

.about-badge h3 {

    font-size: 18px;

    margin-bottom: 3px;
}

.about-badge p {

    font-size: 12px;

    color: #666;
}

/*================ CONTENT =================*/

.about-content {

    flex: 1;

    max-width: 620px;
}

.section-tag {

    display: inline-block;

    padding: 8px 18px;

    margin-bottom: 8px;

    background: #fff7ef;

    color: #ef902d;

    border-radius: 30px;

    font-size: 14px;

    letter-spacing: .5px;

    font-weight: 600;
}

.about-content h2 {

    font-size: clamp(2rem, 3vw, 2.7rem);

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 16px;
}

.about-content h2 span {

    color: #ef902d;
}

.about-content p {

    max-width: 600px;

    font-size: clamp(1rem, 1.2vw, 1.08rem);

    line-height: 1.65;

    color: #666;

    margin-bottom: 18px;
}

/*================ FEATURES =================*/

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.feature {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    background: #fff;

    border-radius: 16px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    transition: .3s ease;
}

.feature:hover {

    transform: translateY(-5px);

    box-shadow: 0 16px 35px rgba(239, 144, 45, .18);
}

.feature i {

    color: #ef902d;

    font-size: 18px;

    flex-shrink: 0;
}

.about * {

    transition: .3s ease;
}

/*================ TABLET =================*/

@media (max-width:991px) {

    .about {

        min-height: auto;

        padding: 70px 0;
    }

    .about-container {

        flex-direction: column;

        text-align: center;

        gap: 50px;
    }

    .about-content {

        display: flex;

        flex-direction: column;

        align-items: center;

        max-width: 700px;
    }

    .about-content h2 {

        font-size: clamp(2rem, 5vw, 2.7rem);
    }

    .about-features {

        width: 100%;
    }
}

/*================ MOBILE =================*/

@media (max-width:576px) {

    .about {

        padding: 55px 0;
    }

    .about-container {

        gap: 35px;
    }

    .about-image-wrapper {

        width: 300px;
    }

    .about-image img {

        height: 300px;
    }

    .about-badge {

        bottom: 10px;

        right: -10px;

        padding: 10px 14px;

        gap: 10px;

        border-radius: 14px;
    }

    .about-badge i {

        width: 42px;

        height: 42px;

        font-size: 16px;
    }

    .about-badge h3 {

        font-size: 16px;
    }

    .about-badge p {

        font-size: 12px;
    }

    .about-content h2 {

        font-size: 2rem;
    }

    .about-content p {

        font-size: 15px;

        line-height: 1.7;
    }

    .about-features {

        grid-template-columns: 1fr;
    }
}

/*================ SMALL MOBILE =================*/

@media (max-width:400px) {

    .about-image-wrapper {

        width: 260px;
    }

    .about-image img {

        height: 260px;
    }

    .about-badge {

        right: 0;

        bottom: 8px;

        transform: scale(.9);

        transform-origin: bottom right;
    }
}