/* ===== About Page ===== */
.about-banner {
    position: relative;
    overflow: hidden;
}

.about-banner .banner-bg {
    width: 100%;
    height: 100%;
}

.about-banner .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-section {
    padding: clamp(40px, 6vh, 80px) 0;
    background: url('../image/about/about_bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.about-content-section .container {
    position: relative;
    z-index: 2;
}

.about-intro {
    margin-bottom: clamp(30px, 5vh, 60px);
}

.about-intro h2 {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-intro p {
    color: var(--text-dark);
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.8;
    text-align: justify;
}

.about-stats {
    margin-bottom: clamp(30px, 5vh, 60px);
}

.about-stat-item {
    text-align: center;
    padding: clamp(15px, 2vh, 30px) clamp(10px, 1.5vw, 25px);
    position: relative;
}

.about-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #ddd;
}

.about-stat-item:last-child::after {
    display: none;
}

.about-stat-item .stat-label {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: bold;
    color: #000;
}

.about-gallery {
    margin-bottom: clamp(40px, 6vh, 80px);
}

.gallery-item {
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.about-global {
    margin-bottom: clamp(40px, 6vh, 80px);
}

.about-global img{
    width: 80%;
    margin-left: 10%;
}

.about-values h3 {
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: clamp(13px, 1.1vw, 16px);
    color: var(--text-dark);
    line-height: 2;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.value-icon {
    width: clamp(18px, 1.4vw, 22px);
    height: clamp(18px, 1.4vw, 22px);
    margin-right: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.values-list li strong {
    color: var(--text-dark);
}

/* ===== Responsive - About Page ===== */
@media (max-width: 991.98px) {
    .about-banner {
        margin-top: 60px;
    }

    .about-stat-item::after {
        display: none;
    }

    .about-stats .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-stats .row > [class*="col-"] {
        padding: 0;
    }

    .about-gallery .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-gallery .row > [class*="col-"] {
        padding: 0;
    }

    .about-content-section .container {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }
}

@media (max-width: 767.98px) {
    .about-banner {
        height: 220px;
    }

    .about-content-section {
        padding: 40px 0;
    }

    .about-intro {
        margin-bottom: 30px;
    }

    .about-intro h2 {
        font-size: 18px;
    }

    .about-intro p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-stats {
        margin-bottom: 30px;
    }

    .about-stat-item {
        padding: 15px 5px;
    }

    .about-stat-item .stat-label {
        font-size: 18px;
    }

    .about-gallery {
        margin-bottom: 40px;
    }

    .about-global {
        margin-bottom: 40px;
    }

    .about-values h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .values-list li {
        font-size: 13px;
        line-height: 1.8;
    }

    .value-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    .values-list li strong {
        white-space: nowrap;
    }
}
