/* --- PENGATURAN DASAR AGAR TIDAK OVERFLOW DI 300px --- */
.sitemap-section,
.sitemap-section * {
    box-sizing: border-box;
}

/* --- Latar belakang gradient yang elegan --- */
.sitemap-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
    width: 100%;
}

.sitemap-header h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-header p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Layout Default (Desktop) */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

/* --- Keyframes untuk animasi masuk --- */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Desain Kartu dengan Garis Aksen ORANYE --- */
.sitemap-column {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 5px solid #e65c00;
    /* GANTI WARNA: Garis atas oranye */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;

    /* Animasi Masuk */
    opacity: 0;
    animation: slideUpFade 0.6s ease forwards;
    width: 100%;
}

.sitemap-column:nth-child(1) {
    animation-delay: 0.1s;
}

.sitemap-column:nth-child(2) {
    animation-delay: 0.2s;
}

.sitemap-column:nth-child(3) {
    animation-delay: 0.3s;
}

.sitemap-column:nth-child(4) {
    animation-delay: 0.4s;
}

.sitemap-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 92, 0, 0.15);
    /* GANTI WARNA: Bayangan hover oranye tipis */
}

.sitemap-column h2 {
    font-size: 1.3rem;
    color: #e65c00;
    /* GANTI WARNA: Judul oranye */
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ced4da;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    word-wrap: break-word;
}

.sitemap-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-column ul li {
    margin-bottom: 6px;
}

/* --- Tautan interaktif bergaya "Pill" transparan --- */
.sitemap-column ul li a {
    text-decoration: none;
    color: #495057;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: -12px;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    word-wrap: break-word;
}

.sitemap-column ul li a::before {
    content: '›';
    margin-right: 10px;
    color: #adb5bd;
    font-weight: bold;
    font-size: 1.4rem;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

/* Efek Hover Tautan */
.sitemap-column ul li a:hover {
    color: #e65c00;
    /* GANTI WARNA: Teks berubah oranye saat disentuh */
    background-color: #fff4ed;
    /* GANTI WARNA: Latar belakang hover oranye super muda */
    transform: translateX(5px);
}

.sitemap-column ul li a:hover::before {
    color: #e65c00;
    /* GANTI WARNA: Panah berubah oranye */
}

/* ======================================================= */
/* --- RESPONSIVITAS MULTI-LEVEL (HINGGA 300px) --- */
/* ======================================================= */

@media (max-width: 768px) {
    .sitemap-section {
        padding: 50px 15px;
    }

    .sitemap-header {
        margin-bottom: 40px;
    }

    .sitemap-header h1 {
        font-size: 2.2rem;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sitemap-column {
        padding: 25px 20px;
    }
}

@media (max-width: 380px) {
    .sitemap-section {
        padding: 35px 10px;
    }

    .sitemap-header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .sitemap-header p {
        font-size: 0.95rem;
    }

    .sitemap-grid {
        gap: 15px;
    }

    .sitemap-column {
        padding: 20px 15px;
    }

    .sitemap-column h2 {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .sitemap-column ul li a {
        font-size: 0.95rem;
        padding: 8px 10px;
        margin-left: -10px;
    }

    .sitemap-column ul li a::before {
        font-size: 1.2rem;
        margin-right: 6px;
    }
}