/* ═══════════════════════════════════════════════════════════════
   about.css — About Section
   ═══════════════════════════════════════════════════════════════ */

.about-section {
    background-color: var(--color-bg-section);
    background-image: url("../assets/about-section/about-sectiong-bg.png");
    padding: var(--space-section-py) var(--space-section-px);
    position: relative;
    z-index: 20;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

/* ── Label ── */
.about-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.about-label img {
    width: 28px;
}

.about-label span {
    font-family: var(--font-heading);
    font-weight: var(--label-span-font-weight);
    font-size: var(--label-span-font-size);
    letter-spacing: var(--label-span-letter-spacing);
    color: var(--color-primary);
    text-transform: uppercase;
}

/* ── Heading ── */
.about-heading {
    font-family: var(--font-display);
    color: var(--color-dark);
    font-weight: var(--heading-font-weight);
    font-size: var(--heading-font-size);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin-bottom: var(--heading-margin-bottom);
    text-transform: uppercase;
}

/* ── Description ── */
.about-desc {
    font-family: var(--font-inter);
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 90%;
    letter-spacing: 1%;
}

.about-divider {
    border: none;
    height: 1.5px;
    background: linear-gradient(to right, #6d6d6d 0%, transparent 85%);
    margin-bottom: var(--space-lg);
}

/* ── Checklist ── */
.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) 0;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 18px;
    color: #131313b2;
}

.about-check-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Counter box ── */
.about-counter-wrap {
    display: flex;
    justify-content: flex-end;
    padding-right: 6rem;
}

.about-counter {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-svg {
    position: absolute;
    width: 70px;
    height: 70px;
    pointer-events: none;
}

.corner-tl {
    top: 0;
    left: -30px;
}
.corner-tr {
    top: 0;
    right: -30px;
}
.corner-bl {
    bottom: 0;
    left: -30px;
}
.corner-br {
    bottom: 0;
    right: -30px;
}

.about-number {
    font-family: var(--font-display);
    font-size: 300px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: 5%;
    user-select: none;
}

.about-years-label {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    background: var(--color-bg-section);
    padding: 6px 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-dark);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    z-index: var(--z-normal);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-counter-wrap {
        justify-content: center;
        padding-right: 0;
    }

    .about-checklist {
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 1.5rem 2rem;
    }

    .about-counter {
        width: 240px;
        height: 240px;
    }

    .about-number {
        font-size: 13rem;
    }

    .about-label {
        justify-content: center;
    }

    .about-heading,
    .about-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-desc {
        max-width: 100%;
    }

    .about-divider {
        margin: 0 auto var(--space-lg);
        width: 60%;
        background: linear-gradient(
            to right,
            transparent 0%,
            #6d6d6d 50%,
            transparent 100%
        );
    }

    .about-check-item {
        justify-content: flex-start;
    }

    .about-years-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .about-checklist {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-check-item {
        margin-left: 5%;
        justify-content: start;
    }
    .about-counter {
        width: 200px;
        height: 200px;
    }
    .about-number {
        font-size: 12rem;
    }
    .about-years-label {
        font-size: 0.8rem;
    }
    .about-counter {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 425px) {
    .about-heading {
        font-size: 1.6rem;
    }
}

/* Large desktop */
@media (min-width: 1032px) {
    .about-counter {
        width: 300px;
        height: 300px;
    }

    .about-number {
        font-size: 17rem;
    }
}
