/* =========================
   ABOUT / WHY CHOOSE US
   ========================= */
.about {
    padding: 100px 20px;
}

.about-wrapper {
    max-width: 1400px;
    margin: auto;
}

/* Intro */
.about-intro {
    text-align: center;
    max-width: 720px;
    margin: auto;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.about-intro.show {
    opacity: 1;
    transform: translateY(0);
}

.about-intro h2 {
    font-size: 38px;
    color: var(--pink-dark);
    margin-bottom: 14px;
}

/* Cards grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

/* Card */
.about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 36px 22px 28px;
    border-radius: 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Floating icon */
.icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 18px;
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.35);
}

.icon-wrap img {
    width: 34px;
    /* filter: brightness(0) invert(1); */
}

/* Text */
.about-card h4 {
    font-size: 17px;
    color: var(--pink-dark);
    margin-bottom: 6px;
}

.about-card p {
    font-size: 13px;
    line-height: 1.6;
}

/* Hover */
.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(233, 30, 99, 0.18);
}

/* Show animation */
.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1100px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}