/* === Variabel CSS & Reset === */
:root {
    --primary: #1d4ed8;
    --primary-hover: #1e3a8a;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --text-light: #9ca3af;
    --border-light: #e5e7eb;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #1f2937;
    --transition: all 0.3s ease-in-out;
    --header-height: 73px;
}

/* === Theme Toggle Button === */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: var(--bg-gray);
    color: var(--primary);
    transform: rotate(15deg);
}

/* Sembunyikan di mobile agar tidak penuh (opsional) */
@media (max-width: 400px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.bg-gray-section { background-color: var(--bg-gray); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

/* === Tipografi === */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header.left { text-align: left; }

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.section-header.left p { margin: 0; }

/* === Tombol === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.btn-primary { background-color: var(--primary); color: var(--bg-white); }
.btn-primary:hover { background-color: var(--primary-hover); }
.btn-outline { background-color: transparent; color: var(--text-dark); border-color: var(--border-light); }
.btn-outline:hover { border-color: var(--text-dark); }
.btn-outline-white { background-color: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background-color: rgba(255,255,255,0.1); border-color: white; }

/* === Header === */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    transition: var(--transition);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 700; 
    font-size: 1.25rem; 
    letter-spacing: -0.02em; 
}

.logo-box {
    width: 40px; height: 40px;
    background-color: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px; font-style: italic; font-size: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-gray); font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 1.75rem; 
    cursor: pointer; 
    color: var(--text-dark);
    padding: 4px;
    line-height: 1;
}

/* === Hero dengan Background Full === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background-image: url('https://image.qwenlm.ai/public_source/edf76b2b-78af-42a0-991a-6abea48193b4/16499f6bf-b41e-418c-888e-4b2d3db31127.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 0.85) 0%,
        rgba(17, 24, 39, 0.65) 50%,
        rgba(17, 24, 39, 0.5) 100%
    );
    z-index: 1;
}

.hero > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 720px;
}

.hero .section-tag {
    color: #60a5fa;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span { color: #60a5fa; }
.hero h1 span.typewriter { 
    color: #60a5fa; 
    display: inline-block;
    min-width: 150px;
    border-right: 3px solid #60a5fa;
    padding-right: 5px;
    animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
    from, to { border-color: transparent; }
    50% { border-color: #60a5fa; }
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-meta i { color: #60a5fa; font-size: 1.1rem; }

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === Mitra / Klien (Marquee) === */
.partners-section { padding: 40px 0; border-bottom: 1px solid var(--border-light); overflow: hidden; background: var(--bg-white); }
.partners-title { text-align: center; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; font-weight: 600; }
.marquee { display: flex; width: 200%; animation: scroll 20s linear infinite; gap: 60px; align-items: center; }
.marquee-content { display: flex; justify-content: space-around; width: 100%; gap: 60px; align-items: center; }
.partner-logo { font-size: 1.5rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; font-weight: bold; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === Tentang & Visi Misi === */
#tentang { scroll-margin-top: var(--header-height); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
}

/* Right Column (Logo + Nilai-Nilai) */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.about-logo-container {
    text-align: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.about-logo-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto auto auto;
    display: block;
}

/* === Values Box (Kotak Nilai-Nilai) === */
.values-box {
    padding: 28px;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-white) 100%);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.values-title {
    display: flex;
    align-items: center;
    gap: 0.1px;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--border-light);
}

.values-title i {
    font-size: 1rem;
}

.value-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.value-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.value-item h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    
}

.vision-mission-box { 
    background: var(--bg-white); 
    border: 1px solid var(--border-light); 
    padding: 32px; 
    border-radius: 8px; 
    margin-top: 32px; 
}
.vm-item { margin-bottom: 20px; }
.vm-item:last-child { margin-bottom: 0; }
.vm-item h4 { display: flex; align-items: center; gap: 8px; color: var(--primary); margin-bottom: 8px; }

/* === Layanan === */
#layanan { scroll-margin-top: var(--header-height); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 32px; border: 1px solid var(--border-light); border-radius: 8px; background-color: var(--bg-white); transition: var(--transition); }
.service-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-icon { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--text-gray); font-size: 0.95rem; }

/* === Statistik (Counter) === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 3rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1; }
.stat-item p { color: var(--text-gray); font-weight: 500; font-size: 0.95rem; }

/* === Portofolio / Proyek === */
#portofolio { scroll-margin-top: var(--header-height); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.portfolio-card { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; border: 1px solid var(--border-light); }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,24,39,0.95) 0%, rgba(17,24,39,0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s ease; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }
.portfolio-tag { font-size: 0.75rem; color: var(--primary); background: white; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-bottom: 8px; font-weight: 600; width: max-content; }
.portfolio-title { color: white; font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.portfolio-client { color: var(--text-light); font-size: 0.85rem; }

/* === Tim Kami === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--bg-gray); }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { color: var(--primary); font-size: 0.85rem; font-weight: 500; }

/* === Legalitas & Sertifikasi === */
.legal-banner { background: var(--bg-dark); color: white; padding: 40px 0; }
.legal-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.legal-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); padding: 12px 20px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.2); }
.badge i { font-size: 1.5rem; color: #fbbf24; }
.badge div { display: flex; flex-direction: column; }
.badge span { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.badge strong { font-size: 0.95rem; font-weight: 600; }

/* === Testimoni === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { padding: 32px; border: 1px solid var(--border-light); border-radius: 8px; background: var(--bg-white); }
.testi-quote { font-size: 2rem; color: var(--border-light); margin-bottom: 16px; line-height: 1; }
.testi-text { color: var(--text-gray); font-style: italic; margin-bottom: 24px; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: var(--bg-gray); border: 1px solid var(--border-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--text-gray); }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border-light); padding: 20px 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--text-dark); gap: 12px; }
.faq-answer { display: none; padding-top: 12px; color: var(--text-gray); font-size: 0.95rem; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: var(--transition); color: var(--primary); flex-shrink: 0; }

/* === Kontak & Form === */
#kontak { scroll-margin-top: var(--header-height); }
.contact-grid { display: grid; grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; text-align: center; }
.contact-list { display: flex; flex-direction: column; gap: 24px; align-items: center; margin-top: 32px; }
.contact-item { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.contact-item i { font-size: 2rem; color: var(--primary); }

/* === Footer === */
footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border-light); }

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #128c7e; }

/* Logo Image */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.05rem;
    }
}

/* ========================================= */
/* === RESPONSIVE — TABLET (max 992px) === */
/* ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .right-column {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    .services-grid, .testimonial-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-flex { flex-direction: column; text-align: center; }
    .legal-badges { justify-content: center; }
    .section-header h2 { font-size: 1.9rem; }
}

/* ========================================= */
/* === RESPONSIVE — MOBILE (max 768px) === */
/* ========================================= */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section-padding { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.65rem; }
    .section-header p { font-size: 1rem; }

    header { padding: 14px 0; }
    .logo { font-size: 1.05rem; gap: 10px; }
    .logo-box { width: 36px; height: 36px; font-size: 0.85rem; }

    .mobile-menu-btn { display: block; }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 32px 24px;
        gap: 8px;
        transition: right 0.35s ease-in-out;
        border-left: 1px solid var(--border-light);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
    }
    .nav-links a:last-child { border-bottom: none; }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        top: var(--header-height);
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }
    .nav-overlay.active { display: block; }

    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
        background-attachment: scroll;
    }
    .hero h1 { font-size: 2.25rem; line-height: 1.15; }
    .hero h1 span.typewriter { min-width: auto; }
    .hero p { font-size: 1rem; margin-bottom: 24px; }
    .hero-meta { flex-wrap: wrap; gap: 10px; margin-bottom: 24px; font-size: 0.85rem; }
    .hero-meta span { padding: 5px 10px; font-size: 0.8rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }

    .partners-section { padding: 30px 0; }
    .partner-logo { font-size: 1.15rem; }
    .marquee-content { gap: 40px; }

    .about-grid { gap: 32px; }
    .about-logo-container { padding: 28px 20px; }
    .vision-mission-box { padding: 24px; margin-top: 24px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item h3 { font-size: 2.25rem; }
    .stat-item p { font-size: 0.85rem; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 24px; }
    .service-card:hover { transform: none; }

    .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
    .portfolio-overlay { opacity: 1; }
    .portfolio-title { font-size: 1.1rem; }

    .team-grid { grid-template-columns: 1fr; gap: 24px; }
    .team-img { width: 100px; height: 100px; }

    .legal-banner { padding: 32px 0; }
    .legal-flex { flex-direction: column; text-align: center; gap: 20px; }
    .legal-badges { flex-direction: column; width: 100%; gap: 12px; }
    .badge { width: 100%; justify-content: flex-start; }

    .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
    .testi-card { padding: 24px; }

    .faq-question { font-size: 0.95rem; }

    .contact-list {
        flex-direction: column !important;
        gap: 28px !important;
    }
    .contact-item a, .contact-item p { font-size: 1rem !important; }

    .whatsapp-float { 
        bottom: 20px; 
        right: 20px; 
        width: 52px; 
        height: 52px; 
        font-size: 1.6rem; 
    }
}

@media (max-width: 400px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.85rem; }
    .section-header h2 { font-size: 1.45rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-item h3 { font-size: 2rem; }
}

/* ========================================= */
/* === DARK MODE === */
/* ========================================= */
html.dark {
    --text-dark: #f3f4f6;
    --text-gray: #9ca3af;
    --text-light: #6b7280;
    --border-light: #374151;
    --bg-white: #111827;
    --bg-gray: #1f2937;
    --bg-dark: #030712;
}

html.dark body {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

/* Header dark mode */
html.dark header {
    background-color: rgba(17, 24, 39, 0.95);
    border-bottom-color: var(--border-light);
}

html.dark .theme-toggle {
    border-color: var(--border-light);
    color: var(--text-dark);
}

html.dark .theme-toggle:hover {
    background-color: var(--bg-gray);
}

/* Section bg-gray */
html.dark .bg-gray-section {
    background-color: var(--bg-gray);
    border-color: var(--border-light);
}

/* Cards */
html.dark .service-card,
html.dark .testi-card,
html.dark .vision-mission-box,
html.dark .about-logo-container {
    background-color: var(--bg-gray);
    border-color: var(--border-light);
}

html.dark .service-card:hover {
    border-color: var(--primary);
}

/* Portfolio */
html.dark .portfolio-card {
    border-color: var(--border-light);
}

html.dark .portfolio-tag {
    background: var(--bg-gray);
}

/* FAQ */
html.dark .faq-item {
    border-bottom-color: var(--border-light);
}

html.dark .faq-question {
    color: var(--text-dark);
}

/* Team */
html.dark .team-img {
    border-color: var(--bg-gray);
}

/* Testimonial */
html.dark .testi-avatar {
    background-color: var(--bg-gray);
    border-color: var(--border-light);
}

/* Legal banner */
html.dark .legal-banner {
    background-color: #000;
}

html.dark .badge {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
html.dark footer {
    border-top-color: var(--border-light);
}

/* Partners */
html.dark .partners-section {
    background-color: var(--bg-white);
    border-bottom-color: var(--border-light);
}

/* Marquee */
html.dark .partner-logo {
    color: var(--text-light);
}

/* Nav mobile */
html.dark .nav-links {
    background-color: var(--bg-white);
    border-left-color: var(--border-light);
}

html.dark .nav-links a {
    border-bottom-color: var(--border-light);
    color: var(--text-gray);
}

html.dark .nav-links a:hover {
    color: var(--primary);
}

/* Buttons outline */
html.dark .btn-outline {
    color: var(--text-dark);
    border-color: var(--border-light);
}

html.dark .btn-outline:hover {
    border-color: var(--text-dark);
}

/* Hero overlay - sedikit lebih gelap di dark mode */
html.dark .hero::before {
    background: linear-gradient(
        135deg,
        rgba(3, 7, 18, 0.9) 0%,
        rgba(3, 7, 18, 0.75) 50%,
        rgba(3, 7, 18, 0.6) 100%
    );
}

/* Logo text */
html.dark .logo-text {
    color: var(--text-dark);
}

/* Scrollbar di dark mode */
html.dark ::-webkit-scrollbar {
    width: 10px;
}

html.dark ::-webkit-scrollbar-track {
    background: var(--bg-white);
}

html.dark ::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 5px;
}

html.dark ::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Values Box dark mode */
html.dark .values-box {
    background: linear-gradient(135deg, var(--bg-gray) 0%, #1a2332 100%);
    border-color: var(--border-light);
}

html.dark .values-title {
    border-bottom-color: var(--border-light);
}

html.dark .value-item {
    border-bottom-color: var(--border-light);
}

/* === Text Justify === */
.about-grid p,
.vision-mission-box p,
.testi-text,
.faq-answer,
.contact-grid p,
.value-item p {
    text-align: justify;
    text-justify: inter-word;
}

/* Optional: Tambah hyphens agar lebih rapi */
.about-grid p,
.vision-mission-box p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}