/* Pengaturan Dasar & Smooth Scroll */
html {
    scroll-behavior: smooth; /* Membuat animasi scroll meluncur mulus */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.info-header {
    background: #0f172a;
    color: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
}
.back-home {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}
.back-home:hover {
    text-decoration: underline;
}
.info-header h1 {
    font-size: 32px;
    font-weight: 800;
}

/* Layout Utama */
.info-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

/* Sidebar Kiri (Sticky) */
.info-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 40px; /* Jarak dari atas layar saat di-scroll */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.info-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.2s;
    border-left: 3px solid transparent;
}
.nav-link:hover {
    background: #f0f2f5;
    color: #ff6b00;
    border-left-color: #ff6b00;
}

/* Konten Kanan */
.info-content {
    flex-grow: 1;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Bagian Seksi */
.content-section {
    /* Padding atas yang besar mencegah judul tertutup oleh atas layar saat di-scroll ke anchor */
    padding-top: 40px;
    margin-top: -40px;
}
.content-section h2 {
    font-size: 26px;
    color: #111;
    margin-bottom: 20px;
}
.content-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

/* List Syarat Ketentuan */
.terms-list {
    padding-left: 20px;
    color: #555;
}
.terms-list li {
    margin-bottom: 15px;
}
.terms-list strong {
    color: #111;
}

/* Kartu Kontak */
.contact-cards {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    border: 1px solid #eee;
}
.contact-card .icon {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}
.contact-card h4 {
    color: #111;
    margin-bottom: 5px;
}
.contact-card p {
    font-size: 14px;
    color: #ff6b00;
    font-weight: bold;
    margin: 0;
}

/* Styling khusus untuk Kartu Kontak yang bisa diklik */
a.link-card {
    text-decoration: none; /* Menghilangkan garis bawah link */
    display: block;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Efek terangkat dan berubah warna saat di-hover */
a.link-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b00;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.1);
}

a.link-card:hover h4 {
    color: #ff6b00;
}

/* Styling Detail Langkah Panduan di Halaman Informasi */
.guide-steps-detailed {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.guide-step-item {
    background: #fdfdfd;
    border-left: 4px solid #ff6b00;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    border-top: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
.guide-step-item h5 {
    font-size: 16px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 8px;
}
.guide-step-item p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0 !important; /* Reset margin bawaan */
}
.guide-step-item strong {
    color: #222222;
    background: #fff3eb;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

/* Responsif untuk Layar HP */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
    }
    .info-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    .info-content {
        padding: 30px 20px;
    }
    .contact-cards {
        flex-direction: column;
    }
}
