/* Tentang page styles - light theme matching website */
:root {
    --bg: #f4f6f9;
    --panel: #ffffff;
    --panel-2: #f9faf9;
    --text: #333333;
    --muted: #6c757d;
    --brand: #166d3b;
    --brand-2: #219150;
    --accent: #185b36;
    --border: #e6ece4;
    --shadow: 0 4px 16px rgba(20, 60, 30, 0.08);
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* ========== HERO ========== */
.tentang-hero {
    position: relative;
    padding: 88px 0 48px;
    border-bottom: 1px solid var(--border);
    /* layered gradients with light theme */
    background: radial-gradient(
            1200px 400px at 10% -10%,
            rgba(22, 109, 59, 0.08),
            transparent
        ),
        radial-gradient(
            1000px 500px at 110% 10%,
            rgba(33, 145, 80, 0.06),
            transparent
        ),
        linear-gradient(180deg, #ffffff 0%, #f9faf9 60%, #eef8f0 100%);
}
.tentang-hero::after {
    /* subtle dot grid */
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(22, 109, 59, 0.04) 1px,
        transparent 1px
    );
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0)
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
}

.tentang-hero .container {
    animation: fadeUp 0.65s ease-out both;
}
.tentang-hero h1 {
    font-size: clamp(30px, 3.8vw, 44px);
    margin: 0 0 10px 0;
    line-height: 1.15;
    background: linear-gradient(90deg, var(--brand-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tentang-hero p {
    color: var(--muted);
    max-width: 900px;
    line-height: 1.75;
    margin: 0;
}

/* ========== CONTENT GRID ========== */
.tentang-content {
    padding: 32px 0 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 900px) {
    .tentang-content {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

/* ========== CARDS ========== */
.tentang-content section {
    position: relative;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease,
        border-color 0.22s ease;
    animation: cardIn 0.6s ease both;
}
.tentang-content section::before {
    /* gradient top bar */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    opacity: 0.9;
}
.tentang-content section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 60, 30, 0.15);
    border-color: rgba(22, 109, 59, 0.2);
}

/* staggered entrance */
.tentang-content section:nth-of-type(1) {
    animation-delay: 0.02s;
}
.tentang-content section:nth-of-type(2) {
    animation-delay: 0.08s;
}
.tentang-content section:nth-of-type(3) {
    animation-delay: 0.14s;
}
.tentang-content section:nth-of-type(4) {
    animation-delay: 0.2s;
}
.tentang-content section:nth-of-type(5) {
    animation-delay: 0.26s;
}

/* ========== HEADINGS ========== */
.tentang-content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--text);
    letter-spacing: 0.3px;
    position: relative;
}
.tentang-content h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 6px;
    background: linear-gradient(90deg, var(--brand-2), var(--accent));
    border-radius: 3px;
    opacity: 0.85;
}

/* ========== TYPOGRAPHY ========== */
.tentang-content p {
    color: var(--text);
    opacity: 0.92;
    line-height: 1.7;
    margin: 6px 0 0;
}

/* ========== LISTS ========== */
.tentang-content ul {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
}
.tentang-content li {
    color: var(--text);
    margin: 8px 0;
    padding-left: 26px;
    position: relative;
    line-height: 1.6;
}
.tentang-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 0 3px rgba(22, 109, 59, 0.12);
}

/* ========== KONTAK LIST WITH ICONS ========== */
.tentang-content .kontak {
    margin-top: 8px;
}
.tentang-content .kontak li {
    color: var(--muted);
}
.tentang-content .kontak li::before {
    box-shadow: none;
    width: 14px;
    height: 14px;
    top: 6px;
    border-radius: 4px;
}
.tentang-content .kontak li:nth-child(1)::before {
    content: "✉";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #042;
    background: transparent;
    box-shadow: none;
}
.tentang-content .kontak li:nth-child(2)::before {
    content: "☎";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #042;
    background: transparent;
    box-shadow: none;
}
.tentang-content .kontak li:nth-child(3)::before {
    content: "📍";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #042;
    background: transparent;
    box-shadow: none;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 640px) {
    .tentang-hero {
        padding: 72px 0 34px;
    }
    .tentang-content {
        padding: 24px 0 60px;
    }
    .tentang-content section {
        padding: 16px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
