/* ============================================
   TENTANG - GAYA KHUSUS
   ============================================ */

.tentang-page {
    position: relative;
    overflow: hidden;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Video Background */
.tentang__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.tentang__video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tentang__video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tentang__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

/* Konten di atas video */
.tentang-page .container {
    position: relative;
    z-index: 2;
}

/* Teks profil */
.tentang__teks {
    max-width: 800px;
    margin: 24px auto 48px;
    text-align: center;
}
.tentang__teks p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Judul keunggulan */
.keunggulan-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 32px;
}

/* Grid keunggulan (2 kolom) */
.tentang__keunggulan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.keunggulan-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.keunggulan-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.keunggulan-item img {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    filter: invert(27%) sepia(51%) saturate(1000%) hue-rotate(316deg) brightness(100%);
}
.keunggulan-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}
.keunggulan-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Dark mode */
body.dark-mode .tentang-page {
    background: #0f0f1a;
}
body.dark-mode .tentang__overlay {
    background: rgba(0, 0, 0, 0.6);
}
body.dark-mode .keunggulan-item {
    background: #1a1a2e;
}
body.dark-mode .keunggulan-item h4 {
    color: #eaeaea;
}
body.dark-mode .keunggulan-item img {
    filter: invert(27%) sepia(51%) saturate(1000%) hue-rotate(316deg) brightness(100%);
}

/* Responsif */
@media (max-width: 768px) {
    .tentang__keunggulan {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .keunggulan-title {
        font-size: 1.5rem;
    }
    .tentang__teks {
        margin: 16px auto 32px;
    }
}