/* Container Utama */
.tentang-container {
    min-height: 100vh;
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 10%, rgba(46, 107, 56, 0.15) 0%, transparent 50%);
}

/* Efek Cahaya (Light Beam) */
.light-beam {
    position: absolute;
    top: -100px;
    left: -50px;
    width: 400px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.tentang-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Typography Khusus */
.headline {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: var(--teks-utama);
}

.highlight-green { 
    color: #2e6b38; 
}

[data-theme="light"] .highlight-green {
    color: #1e5228;
}

.highlight-blue { 
    color: var(--warna-air);
    text-shadow: 0 0 20px rgba(58, 159, 255, 0.3);
}

[data-theme="light"] .highlight-blue {
    text-shadow: none;
}

.brand-text {
    font-weight: 700;
    color: var(--warna-udara);
}

.deskripsi {
    max-width: 500px;
    font-size: 1.1rem;
    color: var(--teks-utama);
}

/* Quote Card */
.quote-card {
    padding: 20px;
    border-left: 4px solid var(--hijau-medium);
    background: rgba(46, 107, 56, 0.1);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    max-width: 450px;
    color: var(--teks-utama);
}

[data-theme="light"] .quote-card {
    background: rgba(46, 107, 56, 0.08);
}

/* Statistik Cards */
.tentang-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--hijau-border);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, border 0.3s ease, background-color 0.3s;
}

/* Glassmorphism hanya di dark mode */
:root:not([data-theme="light"]) .stat-card {
    background: rgba(15, 39, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateX(-10px);
    border: 1px solid var(--hijau-medium);
}

.stat-info h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

/* Warna angka statistik */
.stat-air   h2 { color: var(--warna-air); }
.stat-udara h2 { color: #e05555; }
.stat-tanah h2 { color: var(--hijau-medium); }

.stat-info p {
    color: var(--teks-redup);
}

/* Ikon Styling */
.stat-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .stat-icon {
    background: rgba(46, 107, 56, 0.08);
}

.icon-air   { color: var(--warna-air); }
.icon-udara { color: var(--teks-redup); }
.icon-tanah { color: var(--hijau-medium); }

/* Responsive */
@media (max-width: 992px) {
    .tentang-content {
        grid-template-columns: 1fr;
    }
    .tentang-container {
        padding: 40px 5%;
    }
    .stat-card:hover {
        transform: translateY(-5px);
    }
}