/*
Theme Name: Nugraha Fauzi Minimalist
Theme URI: http://nugrahafauzi.id
Author: Full Stack Dev
Description: Tema WordPress modern minimalis khusus untuk personal branding, edukasi kesehatan, dan konversi lead (@nugrahatalk).
Version: 1.0.4 (Refactored & Cleaned)
License: GNU General Public License v2 or later
Text Domain: nugrahafauzi
*/

/* =======================================================
   1. RESET & VARIABEL DASAR
   Fungsi: Mendefinisikan warna utama tema, jenis font, dan menghapus jarak bawaan browser agar tampilan seragam.
   ======================================================= */
:root {
    --primary-color: #0F172A;
    --accent-color: #2563EB;
    --bg-color: #F1F5F9; 
    --surface-color: #FFFFFF;
    --text-muted: #64748B;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* =======================================================
   2. TYPOGRAPHY & LAYOUT UTAMA UTAMA
   Fungsi: Mengatur lebar maksimal website, jarak konten, serta memastikan susunan list (angka/bullet) di artikel tidak melipat berantakan.
   ======================================================= */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.entry-content ul, 
.entry-content ol,
.single-article-content ul,
.single-article-content ol {
    padding-left: 40px !important; 
    margin-bottom: 20px !important;
    display: block !important;
}

.entry-content li,
.single-article-content li {
    display: list-item !important; 
    list-style-position: outside !important; 
    margin-bottom: 12px !important;
    padding-left: 5px !important; 
    line-height: 1.7 !important;
}


/* =======================================================
   3. HEADER & MENU NAVIGASI (DESKTOP)
   Fungsi: Membuat header menempel di atas layar (sticky) dengan efek kaca buram (glassmorphism), serta menata kesejajaran mutlak antara logo ikon dan teks judul.
   ======================================================= */
.site-header {
    padding: 15px 0; 
    background-color: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.site-logo-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    line-height: 0; 
}

.site-title {
    margin: 0;
    display: flex;
    align-items: center;
}

.site-title a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1; 
    padding-top: 2px; 
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center; /* KUNCI PERBAIKAN: Memaksa semua isi menu rata tengah secara vertikal */
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: flex;
    align-items: center; /* Menyelaraskan teks biasa agar lurus sempurna */
    line-height: 1;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

.site-footer {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: auto;
}


/* =======================================================
   4. KOMPONEN KARTU (CARD) & HALAMAN DEPAN
   Fungsi: Memberikan kotak putih berbayang yang elegan pada setiap seksi, dan mengatur tata letak khusus untuk Halaman Depan bergaya Portfolio.
   ======================================================= */
.page-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
    margin-bottom: 40px;
}

/* Hero Section (Foto Profil & Nama) */
.hero-profile, .hero-professional {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image-placeholder {
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.profile-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.social-handle {
    font-weight: 600;
    color: var(--accent-color);
}

/* --- Rekam Jejak / Resume Preview (Front Page) --- */
.resume-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resume-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.resume-item:hover {
    border-color: var(--accent-color);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    transform: translateX(4px); /* Efek bergeser sedikit ke kanan saat disentuh */
}

.resume-icon {
    font-size: 2rem;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    padding-top: 2px;
}

.resume-details h3 {
    color: var(--primary-color);
}

.resume-company {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.resume-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}


/* =======================================================
   5. HALAMAN ARTIKEL & NAVIGASI POSTINGAN
   Fungsi: Mengatur jarak dan ukuran teks saat membaca artikel, tombol baca selengkapnya, serta mendesain tombol "Artikel Sebelumnya/Selanjutnya" menjadi kartu interaktif.
   ======================================================= */
.read-more-btn {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--accent-color);
    padding: 6px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.read-more-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.entry-title a:hover {
    color: var(--accent-color) !important;
}

.single-article-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.single-article-content h2, 
.single-article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.single-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Post Navigation (Tombol Bawah Artikel) */
.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px dashed #E2E8F0;
}

.post-navigation .nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media(min-width: 600px) {
    .post-navigation .nav-links {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    display: flex;
}

.post-navigation .nav-next {
    justify-content: flex-end;
}

.post-navigation a {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-navigation a:hover {
    background: #FFFFFF;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
    color: var(--accent-color) !important;
}

.post-navigation .nav-previous a::before {
    content: "← Artikel Sebelumnya";
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.post-navigation .nav-next a {
    text-align: right;
    align-items: flex-end;
}

.post-navigation .nav-next a::before {
    content: "Artikel Selanjutnya →";
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 700;
}


/* =======================================================
   6. UI KHUSUS (AKORDION, LINK TREE, E-BOOK)
   Fungsi: Komponen pelengkap seperti tombol sosmed, akordion sumber referensi, dan display penjualan e-book.
   ======================================================= */
.link-tree-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--surface-color);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.primary-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.primary-btn:hover {
    background-color: #1D4ED8;
    color: white;
}

.btn-icon {
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Accordion Tab */
.nf-accordion {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin: 30px 0;
    background: #F8FAFC;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nf-accordion-title {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; 
    position: relative;
    user-select: none;
    font-size: 1rem;
}

.nf-accordion-title::-webkit-details-marker {
    display: none;
}

.nf-accordion-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.nf-accordion[open] .nf-accordion-title::after {
    content: '−'; 
    transform: translateY(-50%) rotate(180deg);
}

.nf-accordion-content {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
    color: #475569;
    border-top: 1px dashed #CBD5E1;
    margin-top: 10px;
    padding-top: 15px;
    line-height: 1.6;
}

/* E-Book Card */
.nf-ebook-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

@media (min-width: 600px) {
    .nf-ebook-card {
        flex-direction: row; 
    }
}

.ebook-visual {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.ebook-mockup {
    background: var(--surface-color);
    width: 140px;
    height: 190px;
    border-radius: 4px 12px 12px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3), inset 3px 0 5px rgba(0,0,0,0.05);
    border-left: 5px solid #CBD5E1;
}

.ebook-icon {
    font-size: 3rem;
}

.ebook-badge {
    position: absolute;
    top: 10px;
    right: -10px;
    background: #EF4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.ebook-details {
    padding: 30px;
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ebook-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ebook-pricing {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-sale {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669; 
}

.price-regular {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.ebook-description ul {
    list-style: none;
    margin: 15px 0 25px;
    padding: 0;
}

/* Desain Tombol Beli E-Book (CTA WhatsApp) */
.ebook-btn-buy {
    display: block;
    text-align: center;
    background-color: #25D366; /* Warna Hijau Khas WhatsApp */
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease; /* Kunci mutlak agar animasi pergerakan mulus */
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.1);
}

/* Animasi saat tombol disentuh / di-hover */
.ebook-btn-buy:hover {
    background-color: #128C7E; /* Hijau WA yang lebih pekat */
    transform: translateY(-3px); /* Efek tombol terangkat ke atas */
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35); /* Bayangan hijau menyala */
}


/* =======================================================
   7. UI DAFTAR MENU SKRINING INTERAKTIF (HUB)
   Fungsi: Desain grid kotak-kotak kartu dengan label untuk halaman direktori skrining.
   ======================================================= */
.nf-screening-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media(min-width: 600px){
    .nf-screening-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nf-scr-card {
    background: var(--surface-color);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 25px 20px;
    text-decoration: none;
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nf-scr-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.nf-scr-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    background: #F1F5F9;
    color: #475569;
}

.nf-scr-badge.promo { background: #FEF08A; color: #854D0E; }
.nf-scr-badge.b2b { background: #E0E7FF; color: #3730A3; }

.nf-scr-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.nf-scr-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.nf-scr-card p {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 20px;
    flex-grow: 1; 
    line-height: 1.5;
}

.nf-scr-btn {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}


/* =======================================================
   8. KALKULATOR UI (GAYA HALODOC UNTUK SDS-30)
   Fungsi: Memoles radio button standar menjadi kotak interaktif yang bisa diklik.
   ======================================================= */
.sds-options-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.sds-option-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 5px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.sds-option-btn:hover {
    border-color: #CBD5E1;
    background-color: #F8FAFC;
}

.sds-option-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sds-custom-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.2s ease;
}

.sds-opt-text {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.3;
    font-weight: 500;
}

/* State Aktif (Saat Diklik) */
.sds-option-btn.active-opt {
    border-color: #E11D48; 
    background-color: #FFF1F2; 
}

.sds-option-btn.active-opt .sds-custom-radio { border-color: #E11D48; }

.sds-option-btn.active-opt .sds-custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #E11D48;
    border-radius: 50%;
}

.sds-option-btn.active-opt .sds-opt-text {
    color: #E11D48;
    font-weight: 700;
}


/* =======================================================
   9. MOBILE BOTTOM NAVIGATION APP
   Fungsi: Menampilkan menu bar di bawah khusus untuk layar HP.
   ======================================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    display: none; 
    justify-content: space-around;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom)); 
    z-index: 1000;
    border-top: 1px solid #E2E8F0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s;
}

.bottom-nav-item:hover,
.bottom-nav-item:active { color: var(--accent-color); }
.nav-icon { font-size: 1.4rem; margin-bottom: 2px; }

/* =======================================================
   11. TIMELINE RIWAYAT KARIR & PENCAPAIAN
   Fungsi: Menampilkan riwayat vertikal interaktif
   ======================================================= */
    .nf-timeline-container {
        position: relative;
        margin: 40px 0;
        padding-left: 15px; /* Ruang untuk garis */
    }

    /* Garis Lurus Vertikal */
    .nf-timeline-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 21px; /* Posisi garis presisi */
        width: 2px;
        background: #E2E8F0;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 30px;
        padding-left: 35px; /* Jarak kotak dari garis */
    }

    /* Lingkaran (Dot) pada Garis */
    .timeline-dot {
        position: absolute;
        left: -1px; /* Disesuaikan dengan posisi garis */
        top: 5px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: white;
        border: 3px solid var(--accent-color);
        box-shadow: 0 0 0 4px #EFF6FF;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .timeline-item:hover .timeline-dot {
        background: var(--accent-color);
        box-shadow: 0 0 0 4px #DBEAFE;
        transform: scale(1.2);
    }

    /* Kotak Konten Riwayat */
    .timeline-content {
        background: var(--surface-color);
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        transition: all 0.3s ease;
    }

    .timeline-item:hover .timeline-content {
        border-color: var(--accent-color);
        box-shadow: 0 8px 15px -3px rgba(37,99,235,0.08);
        transform: translateY(-3px);
    }

    /* Desain Teks di dalam Kotak */
    .timeline-date {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        color: #1E40AF;
        background: #DBEAFE;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .timeline-title {
        font-size: 1.15rem;
        color: var(--primary-color);
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .timeline-company {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .timeline-content p {
        font-size: 0.95rem;
        color: #334155;
        margin-bottom: 0;
        line-height: 1.6;
    }

/* =======================================================
   12. LIFESTYLE / CYCLING SECTION (FRONT PAGE)
   ======================================================= */
    .cycling-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    @media(min-width: 600px) {
        .cycling-highlights {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .highlight-box {
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 20px 15px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .highlight-box:hover {
        border-color: var(--accent-color);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
        transform: translateY(-3px);
    }

    .hl-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
        line-height: 1;
    }

    .highlight-box h4 {
        font-size: 1.05rem;
        color: var(--primary-color);
        margin-bottom: 8px;
    }

    .highlight-box p {
        font-size: 0.85rem !important;
        color: var(--text-muted) !important;
        margin-bottom: 0 !important;
        line-height: 1.5 !important;
    }

    /* Kotak Promo E-Book Mini */
    .ebook-promo-mini {
        margin-top: 30px;
        background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
        border: 1px solid #BFDBFE;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .promo-icon {
        font-size: 2.5rem;
        line-height: 1;
    }

    .promo-text {
        flex: 1;
    }

    .promo-text h4 {
        margin: 0 0 5px;
        color: #1E3A8A;
        font-size: 1.1rem;
    }

    .promo-text p {
        margin: 0 !important;
        font-size: 0.9rem !important;
        color: #2563EB !important;
        line-height: 1.4 !important;
    }

    .promo-btn {
        background-color: var(--accent-color);
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.3s;
        font-size: 0.9rem;
    }

    .promo-btn:hover {
        background-color: #1D4ED8;
        color: white;
    }

/* =======================================================
   13. HIGHLIGHT MENU HEADER (TOMBOL DAFTAR SKRINING)
   Fungsi: Mengubah menu biasa menjadi tombol CTA berlatar warna
   ======================================================= */
    .main-navigation .menu-highlight-btn a {
        background-color: var(--accent-color); /* Ini menggunakan warna Biru tema Anda */
        color: #FFFFFF !important;
        padding: 8px 18px !important;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    /* Efek saat kursor diarahkan (Hover) */
    .main-navigation .menu-highlight-btn a:hover {
        background-color: #1E3A8A; /* Biru yang lebih gelap */
        color: #FFFFFF !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    }

    /* JIKA ANDA LEBIH INGIN WARNA MERAH, Hapus kode di atas, dan gunakan yang ini:
    .main-navigation .menu-highlight-btn a {
        background-color: #EF4444; 
        color: #FFFFFF !important;
        padding: 8px 18px !important;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .main-navigation .menu-highlight-btn a:hover {
        background-color: #DC2626; 
        color: #FFFFFF !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
    }
    */

/* =======================================================
   10. SAPU JAGAT RESPONSIVE MOBILE (PENGECILAN FONT & LAYOUT)
   Fungsi UTAMA: Semua kode yang dibungkus dalam area ini HANYA akan aktif pada layar sempit (HP), memastikan desain Desktop tidak rusak.
   ======================================================= */
@media (max-width: 600px) {
    
    /* A. Reset Layout Dasar Mobile */
    .main-navigation { display: none; }
    .bottom-nav { display: flex; }
    body { padding-bottom: 70px; }
    .site-footer { padding-bottom: 80px; }
    .page-card { padding: 20px 15px; border-radius: 12px; }

    /* B. Kesejajaran Logo & Judul Header */
    .site-branding h1.site-title {
        margin-bottom: 0 !important; 
        line-height: 1 !important;
    }
    .site-title a {
        font-size: 1.2rem !important; 
        padding-top: 2px !important;
    }

    /* C. Penyesuaian Font Judul & Teks Promo */
    .nf-coupon-code {
        font-size: 0.85rem !important;
        padding: 10px 15px !important;
    }
    h1, .page-card h1 {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    .single-article-content h2, .page-card h2 {
        font-size: 1.35rem !important; /* Hierarki H2 yang benar */
        margin-top: 20px !important;
        margin-bottom: 10px !important;
    }
    .single-article-content h3 { 
        font-size: 1.15rem !important; 
    }
    .page-card h3, .entry-title, .entry-title a {
        font-size: 1.15rem !important; /* Diperkecil agar konsisten sebagai H3 (Sub-judul/List) */
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }

    /* D. Pengecilan Font Halaman Depan (Portfolio Style) */
    .hero-professional h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    .hero-professional p { font-size: 0.95rem !important; }
    .hero-professional .profile-image-placeholder {
        width: 80px !important;
        height: 80px !important;
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    .portfolio-section h2, .b2b-section h2, .lifestyle-section h2, .recent-articles-section h2 {
        font-size: 1.35rem !important; /* Diperbesar agar konsisten sebagai H2 (Judul Seksi Utama) */
        margin-bottom: 12px !important;
    }
    .portfolio-section p, .portfolio-section li, .b2b-section p, .lifestyle-section p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    .b2b-section .link-btn {
        font-size: 0.95rem !important;
        padding: 12px 20px !important;
        width: 100% !important; 
        text-align: center !important;
        justify-content: center !important;
    }
    .recent-articles-section article { padding: 15px !important; }
    .recent-articles-section article h3 { font-size: 1.15rem !important; /* Hierarki H3 yang benar */ }
    .recent-articles-section article div { font-size: 0.85rem !important; }

    /* Tambahan Pengecilan Resume Card di Mobile */
    .experience-section h2 {
        font-size: 1.35rem !important;
    }
    .resume-item {
        padding: 15px 12px !important;
        gap: 10px !important;
    }
    .resume-icon {
        font-size: 1.6rem !important;
    }
    .resume-details h3 {
        font-size: 1.05rem !important;
    }
    .resume-company {
        font-size: 0.85rem !important;
        margin-bottom: 5px !important;
    }
    .resume-desc {
        font-size: 0.8rem !important;
    }

    /* E. Penyesuaian Kalkulator SDS-30 (Halodoc UI) */
    .sds-options-row { gap: 5px; }
    .sds-option-btn {
        padding: 10px 2px;
        border-width: 1px;
        border-radius: 8px;
    }
    .sds-custom-radio {
        width: 18px;
        height: 18px;
        margin-bottom: 6px;
    }
    .sds-option-btn.active-opt .sds-custom-radio::after {
        width: 10px;
        height: 10px;
    }
    .sds-opt-text { font-size: 0.65rem; }
    
    .sds-report-title { font-size: 1.2rem !important; }
    .sds-report-subtitle { font-size: 0.8rem !important; }
    .sds-report-heading { font-size: 1.1rem !important; }
    #nf-result-score-sds { font-size: 1.4rem !important; }
    #nf-result-score-sds span { font-size: 1rem !important; }
    .sds-report-desc { font-size: 0.9rem !important; }

    /* F. Penyesuaian Hasil Kalkulator JAKVAS & NCEP */
    #nf-result-title-jakvas, #nf-result-title-ncep { font-size: 1.1rem !important; }
    #nf-result-score-jakvas, #nf-result-score-ncep { font-size: 1.4rem !important; }
    #nf-result-score-jakvas span, #nf-result-score-ncep span { font-size: 1rem !important; }
    #nf-result-desc-jakvas, #nf-result-desc-ncep { font-size: 0.9rem !important; }
    .nf-offer-box h5 { font-size: 1rem !important; }
    
    /* G. Penyesuaian Lifestyle / Ultra-Cycling Section di Mobile */
    .ebook-promo-mini {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }
    .promo-btn {
        width: 100%;
        text-align: center;
        padding: 12px !important;
    }

} /* <=== INI ADALAH KURUNG KURAWAL PENUTUP SUPER PENTING UNTUK MEDIA QUERY MOBILE */