/* =========================
FILE : panduan-style.css
========================= */


/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
BODY + BACKGROUND
Ganti background sendiri
========================= */
body {
    font-family: Arial, sans-serif;
    color: #222;

    /* Background utama */
    background-image: url("background1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* =========================
SECTION UTAMA
========================= */
.guide-page {
    width: 100%;
    min-height: 100vh;
    padding: 30px 70px 60px;
    background: transparent;
}


/* =========================
NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}


/* =========================
LOGO AREA
========================= */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box img {
    width: 65px;
    height: auto;
}

.logo-text h3 {
    color: #288fd7;
    font-size: 22px;
    line-height: 1.2;
}


/* =========================
MENU AREA
========================= */
.menu-area {
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn-active,
.btn-outline,
.btn-dark {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-active {
    background: #288fd7;
    color: white;
    border: 2px solid #288fd7;
}

.btn-outline {
    border: 2px solid #288fd7;
    background: white;
    color: #288fd7;
}

.btn-dark {
    background: #084671;
    color: white;
}

.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


/* =========================
TOP CONTENT
========================= */
.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.left-image {
    width: 42%;
}

.left-image img {
    width: 100%;
    height: auto;
}

.right-content {
    width: 55%;
}

.right-content h1 {
    font-size: 62px;
    color: #288fd7;
    margin-bottom: 20px;
}


/* =========================
BOX STYLE
========================= */
.content-box,
.feature-card {
    background: white;
    border: 2px solid #288fd7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.content-box h3,
.feature-card h3 {
    color: #288fd7;
    margin-bottom: 15px;
    font-size: 24px;
}

.content-box p,
.feature-card p {
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
}

.intro-box {
    min-height: 180px;
}


/* =========================
FEATURE GRID
========================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    min-height: 320px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}


/* =========================
FLOWCHART SECTION
========================= */
.flowchart-section {
    margin-bottom: 60px;
}

.big-box {
    width: 100%;
    min-height: 600px;
}

.flowchart-image {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 100px;
}

.flowchart-image img {
    width: 80%;
    max-width: 800px;
    height: auto;
}


/* =========================
BUTTON KEMBALI
========================= */
.back-button-section {
    display: flex;
    justify-content: flex-end;
}

.btn-back {
    background: #084671;
    color: white;
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 28px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s ease;
}

.back-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


/* =========================
HOVER EFFECT
========================= */

.btn-active:hover {
    background: #1f7fc2;
    transform: translateY(-2px);
}

.btn-outline:hover {
    background: #288fd7;
    color: white;
    transform: translateY(-2px);
}

.btn-outline:hover .btn-icon {
    filter: brightness(0) invert(1);
}

.btn-dark:hover,
.btn-back:hover {
    background: #063553;
    transform: translateY(-2px);
}

.content-box:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.18);
}


.feature-card ol {
    text-align: left;   /* teks rata kiri */
    padding-left: 25px; /* jarak nomor dengan tepi */
    margin-top: 10px;
}


/* Agar setiap <li> lebih rapi */
.feature-card ol li {
    margin-bottom: 8px; /* jarak antar list */
    line-height: 1.6;
}

.feature-card ul {
    text-align: left;   /* teks rata kiri */
    padding-left: 25px; /* jarak nomor dengan tepi */
    margin-top: 10px;
}


/* Agar setiap <li> lebih rapi */
.feature-card ul li {
    margin-bottom: 8px; /* jarak antar list */
    line-height: 1.6;
    font-size: 16px;
}

.flowchart-section ol {
    text-align: left;   /* teks rata kiri */
    padding-left: 25px; /* jarak nomor dengan tepi */
    margin-top: 10px;
}

.flowchart-section ol li {
    margin-bottom: 8px; /* jarak antar list */
    line-height: 1.6;
    font-size: 18px;
}