/* /assets/css/style_v4.css */
:root {
    /* Palet Warna Terang Baru yang Terinspirasi Rumahweb */
    --bg-color: #F8FAFC; /* Off-white / very light blue-gray */
    --bg-secondary-color: #FFFFFF; /* White for cards */
    --text-primary-color: #212529; /* Soft black */
    
    /* PERBAIKAN: Warna abu-abu digelapkan untuk kontras yang lebih baik */
    --text-secondary-color: #495057; 

    --accent-color: #0D6EFD; /* A calm, standard blue */
    --accent-hover-color: #0B5ED7; /* Darker blue for hover */
    --border-color: #DEE2E6; /* Lighter gray for borders */
    --hero-text-color: #FFFFFF;
    --header-bg-light: rgba(248, 250, 252, 0.8); /* Semi-transparent light bg */
    --bg-color-rgb: 248, 250, 252;
}

body.dark-mode {
    /* Palet Warna Gelap Tidak Berubah */
    --bg-color: #0D1117; 
    --bg-secondary-color: #161B22; 
    --text-primary-color: #F3F4F6;
    --text-secondary-color: #9CA3AF; 
    --accent-color: #3B82F6; 
    --accent-hover-color: #2563EB;
    --border-color: #30363D; 
    --header-bg-dark: rgba(13, 17, 23, 0.8);
    --bg-color-rgb: 13, 17, 23;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-color); color: var(--text-primary-color); transition: background-color 0.3s ease, color 0.3s ease;}
body.menu-open { overflow: hidden; }
.container { max-width: 1200px; margin: auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; font-weight: 700; }
.section-title p { max-width: 600px; margin: 1rem auto; color: var(--text-secondary-color); }
.main-header { padding: 1.5rem 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all 0.3s ease; }
.main-header.scrolled { padding: 1rem 0; background-color: var(--header-bg-light); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
body.dark-mode .main-header.scrolled { background-color: var(--header-bg-dark); }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.header-left { display: flex; align-items: center; gap: 3rem; }
.logo img { height: 40px; transition: height 0.3s ease; }
.main-header.scrolled .logo img { height: 32px; }
body:not(.dark-mode) .logo .logo-dark { display: none; }
body.dark-mode .logo .logo-light { display: none; }
.main-nav { display: none; }
@media (min-width: 992px) { .main-nav { display: flex; } }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { color: var(--hero-text-color); text-decoration: none; font-weight: 500; transition: color 0.3s ease;}
.main-header.scrolled .nav-links a { color: var(--text-primary-color); }
.main-header.scrolled .nav-links a:hover { color: var(--accent-color); }
.header-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-actions { display: none; }
@media (min-width: 992px) { .nav-actions { display: flex; align-items: center; gap: 1rem; } }
.theme-switcher { cursor: pointer; font-size: 1.2rem; color: var(--hero-text-color); line-height: 1; transition: color 0.3s ease;}
.main-header.scrolled .theme-switcher { color: var(--text-primary-color); }
body:not(.dark-mode) .theme-switcher .fa-sun { display: none; }
body.dark-mode .theme-switcher .fa-moon { display: none; }
.hamburger { display: block; cursor: pointer; z-index: 1001; }
@media (min-width: 992px) { .hamburger { display: none; } }
.hamburger .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--hero-text-color); border-radius: 2px; }
body.menu-open .hamburger .bar { background-color: var(--text-primary-color); }
body.menu-open .hamburger .bar:nth-child(2) { opacity: 0; }
body.menu-open .hamburger .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .hamburger .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.main-header.scrolled .hamburger .bar { background-color: var(--text-primary-color); }
.mobile-nav-panel { position: fixed; top: 0; left: 0; width: 80%; max-width: 350px; height: 100vh; background-color: var(--bg-color); z-index: 999; padding: 8rem 2rem 2rem 2rem; display: flex; flex-direction: column; justify-content: space-between; transform: translateX(-100%); transition: transform 0.4s ease; border-right: 1px solid var(--border-color);}
body.menu-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.mobile-nav-links a { color: var(--text-primary-color); text-decoration: none; font-size: 1.5rem; font-weight: 600; padding: 0.5rem 0; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; margin-top: 1.5rem; }
.mobile-nav-actions .btn { width: 100%; text-align: center; padding: 12px; }
.mobile-nav-actions .btn-secondary { border-color: var(--border-color); color: var(--text-primary-color); }
.mobile-nav-actions .btn-secondary:hover { background-color: var(--bg-secondary-color); }
.btn { display: inline-block; padding: 8px 20px; border-radius: 8px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background-color: var(--accent-color); color: #FFFFFF; }
.btn-primary:hover { background-color: var(--accent-hover-color); transform: translateY(-2px);}
.btn-secondary { background: transparent; border-color: var(--hero-text-color); color: var(--hero-text-color); }
.main-header.scrolled .btn-secondary { color: var(--text-primary-color); border-color: var(--border-color); }
.main-header.scrolled .btn-secondary:hover { background-color: var(--bg-secondary-color); }
.immersive-hero { height: 100vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--hero-text-color); background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background-truk.jpg'); }
.hero-content { max-width: 100%; text-align: left; }
.hero-content h1 { font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.hero-content p { font-size: 1.5rem; line-height: 1.6; opacity: 0.9; }
.tools-panel-wrapper { padding: 0; }
.tools-panel { max-width: 100%; margin: -80px auto 0 auto; position: relative; z-index: 10; background-color: var(--bg-secondary-color); border: 1px solid var(--border-color); border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden;}
.panel-tabs { display: flex; border-bottom: 1px solid var(--border-color); }
.tab-button { flex-grow: 1; padding: 1.2rem 1rem; border: none; background: none; cursor: pointer; color: var(--text-secondary-color); font-weight: 600; font-size: 1rem; transition: color 0.3s ease, border-color 0.3s ease; border-bottom: 3px solid transparent; }
.tab-button.active { color: var(--accent-color); border-bottom-color: var(--accent-color); }
.panel-content { padding: 2.5rem; }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-pane h3 { text-align: center; margin-bottom: 1.5rem; font-weight: 600;}
.tab-pane .modern-form { display: flex; max-width: 1000px; margin: auto; align-items: center; }
.tab-pane .modern-form input { flex-grow: 1; padding: 14px; border-radius: 8px 0 0 8px; border: 1px solid var(--border-color); background: var(--bg-color); border-right: none; color: var(--text-primary-color); outline: none;}
.tab-pane .modern-form input:focus { border-color: var(--accent-color); }
.tab-pane .modern-form button { padding: 14px 1.5rem; border: none; background-color: var(--accent-color); color: #FFF; cursor: pointer; font-weight: 500; border-radius: 0 8px 8px 0; transition: background-color 0.3s ease;}
.tab-pane .modern-form button:hover { background-color: var(--accent-hover-color); }
.price-check-form .form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; align-items: flex-end; }
.price-check-form .form-group { display: flex; flex-direction: column; position: relative; }
.price-check-form label { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--text-secondary-color); }
.price-check-form input, .price-check-form select { padding: 12px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--bg-color); color: var(--text-primary-color); outline: none; width: 100%; font-size: 1rem; }
.price-check-form input:focus, .price-check-form select:focus { border-color: var(--accent-color); box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2); }
.suggestion-list { position: absolute; top: 100%; left: 0; right: 0; background-color: var(--bg-secondary-color); border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; z-index: 100; max-height: 200px; overflow-y: auto; display: none; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.suggestion-list.active { display: block; }
.suggestion-item { padding: 10px 12px; cursor: pointer; }
.suggestion-item:hover { background-color: var(--bg-color); }
#dynamic-fields-container { margin-top: 1.5rem; animation: fadeIn 0.5s ease; }
.btn-cek-harga { width: 100%; padding: 14px; font-size: 1.1rem; margin-top: 1.5rem; }
.pricing-results-wrapper { margin-top: 2rem; }
.price-result-card { padding: 2rem; border-radius: 12px; background-color: var(--bg-secondary-color); border: 1px solid var(--border-color); text-align: center; }
.price-result-card .route { font-size: 1.2rem; color: var(--text-secondary-color); margin-bottom: 1rem; }
.price-result-card .route strong { color: var(--text-primary-color); }
.price-result-card .price-header { font-size: 1rem; color: var(--text-secondary-color); font-weight: 500; }
.price-result-card .total-price { font-size: 2.5rem; font-weight: 700; color: var(--accent-color); margin: 0.25rem 0; }
.price-result-card .price-details { display: flex; justify-content: center; gap: 1rem; color: var(--text-secondary-color); margin-bottom: 1.5rem; }
.price-result-card .truck-details, .price-result-card .price-notes { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); text-align: left; font-size: 0.85rem; color: var(--text-secondary-color); }
.price-result-card .truck-details h4, .price-result-card .price-notes h4 { font-weight: 600; color: var(--text-primary-color); margin-bottom: 0.75rem; font-size: 0.9rem; }
.price-result-card .truck-details p { margin-bottom: 0.25rem; }
.price-result-card .price-notes ul { list-style-position: inside; padding-left: 0; margin: 0; }
.price-result-card .price-notes li { margin-bottom: 0.3rem; }
.price-error-message { text-align: center; color: #DC3545; font-weight: 500; padding: 1.5rem; border-radius: 12px; background-color: var(--bg-secondary-color); border: 1px solid var(--border-color); }
.tracking-results-wrapper { margin-top: 2rem; background-color: var(--bg-secondary-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; }
.result-summary-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem; }
.summary-item { display: flex; flex-direction: column; }
.summary-label { font-size: 0.85rem; color: var(--text-secondary-color); margin-bottom: 0.25rem; }
.summary-value { font-size: 1.1rem; font-weight: 600; color: var(--text-primary-color); }
.status-highlight { color: var(--accent-color); font-size: 1.2rem; }
.tracking-progress-bar { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.5rem 0; margin-bottom: 2rem; position: relative; }
.tracking-progress-bar::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 3px; background-color: var(--border-color); transform: translateY(-50%); z-index: 0; }
.progress-step { flex: 1; text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.progress-step .step-icon { width: 50px; height: 50px; border-radius: 50%; background-color: var(--bg-color); border: 3px solid var(--border-color); display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--text-secondary-color); transition: all 0.3s ease; margin-bottom: 0.5rem; }
.progress-step.completed .step-icon { background-color: var(--accent-color); border-color: var(--accent-color); color: #FFF; }
.progress-step p { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary-color); }
.progress-step.completed p { color: var(--text-primary-color); }
.history-details h4 { text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.history-details table { width: 100%; border-collapse: collapse; }
.history-details th, .history-details td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border-color); text-align: left; font-size: 0.9rem; }
.history-details th { background-color: var(--bg-color); color: var(--text-primary-color); font-weight: 600; }
.history-details td { color: var(--text-secondary-color); }
.history-details td strong { color: var(--text-primary-color); }
.scrollytelling-section { background-color: var(--bg-color); padding-top: 8rem; }
.scrolly-container { display: flex; position: relative; }
.scrolly-visuals { flex: 1; height: 100vh; position: sticky; top: 0; overflow: hidden; }
.visual-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.6s ease-in-out; }
.visual-item.visible { opacity: 1; }
.visual-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.scrolly-steps { flex: 1; padding: 5vh 4rem; z-index: 10; }
.step { min-height: 80vh; padding: 15vh 0; display: flex; flex-direction: column; justify-content: center;}
.step h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.step p { font-size: 1.1rem; color: var(--text-secondary-color); line-height: 1.8; }
.armada-section { background-color: var(--bg-secondary-color); }
.armada-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.armada-row { background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; position: relative; }
.truck-card-clickable { cursor: pointer; transition: background-color 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.truck-card-clickable .card-content { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.truck-card-clickable h3 { font-size: 1.25rem; font-weight: 600; }
.truck-card-clickable .arrow-icon { font-size: 1.2rem; transition: transform 0.3s ease; }
.truck-card-clickable.active .arrow-icon { transform: rotate(180deg); }
.armada-detail-panel { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(4px); color: white; padding: 1rem; text-align: left; transform: translateY(100%); transition: transform 0.4s ease-in-out; z-index: 3; }
.armada-row:hover .armada-detail-panel { transform: translateY(0); }
.armada-row:hover .card-content { opacity: 0; }
.armada-detail-panel p { margin: 0; color: var(--hero-text-color); font-size: 0.85rem; }
.armada-detail-panel p strong { display: block; margin-bottom: 4px; color: #FBBF24; }
.truck-image-container { overflow: hidden; width: 100%; height: 200px; position: relative; }
.truck-image-wrapper { display: flex; width: 200%; height: 100%; transition: transform 0.7s ease-in-out; }
.truck-image-wrapper.slide { transform: translateX(-50%); }
.truck-image-wrapper img { width: 50%; height: 100%; object-fit: contain; padding: 1rem; }
/* === [REVISI] Logo Scroller Section === */
.logo-scroller-section { 
    padding: 2rem 0; 
    overflow: hidden; 
    background-color: var(--bg-secondary-color); 
}

/* Mengubah kecepatan animasi dan item logo untuk desktop */
@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-100%); } 
}

/* Mengatur agar logo lebih rapat di desktop */
.scroller-track { 
    display: flex; 
    animation: scroll 25s linear infinite; /* Kecepatan lebih cepat: 40s -> 25s */
    width: max-content; /* Memastikan lebar cukup untuk menampung semua logo */
}

/* Mengatur ukuran logo di desktop */
.logo-item { 
    flex-shrink: 0; 
    width: 150px; /* Jarak antar logo lebih rapat: 250px -> 150px */
    padding: 0 10px; /* Mengurangi padding */
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.logo-item img { max-width: 160px; max-height: 50px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: all 0.3s ease;}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }
.dark-mode .logo-item img { filter: grayscale(1) invert(1) brightness(2); }
.dark-mode .logo-item:hover img { filter: grayscale(0) invert(0) brightness(1); }
.final-cta { background-color: var(--bg-color); }
.cta-card { background: var(--accent-color); color: #FFF; padding: 4rem; border-radius: 24px; text-align: center; }
.cta-card h2 { font-size: 2.5rem; margin-bottom: 1rem; color: #FFF; }
.cta-card p { max-width: 600px; margin: auto auto 2.5rem auto; }
.cta-card .btn-cta { background-color: #FFF; color: var(--accent-color); padding: 16px 32px; font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.3s ease; }
.cta-card .btn-cta:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.main-footer { background-color: var(--bg-secondary-color); padding: 2.5rem 0 1rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; gap: 1.5rem; }
.footer-grid h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-primary-color); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid ul li { margin-bottom: 0.5rem; }
.footer-grid a, .footer-grid p { text-decoration: none; color: var(--text-secondary-color); transition: color 0.3s ease; font-size: 0.85rem; }
.footer-grid a:hover { color: var(--accent-color); }
.footer-grid input { width: 100%; padding: 10px; border: 1px solid var(--border-color); background: var(--bg-color); color: var(--text-primary-color); font-size: 0.85rem; }
.footer-grid form { display: flex; }
.footer-grid form input { border-right: none; border-radius: 8px 0 0 8px; }
.footer-grid form button { border-radius: 0 8px 8px 0; padding: 10px 15px; font-size: 0.85rem; }
.footer-bottom { margin-top: 2rem; padding: 1rem 0 0 0; border-top: 1px solid var(--border-color); text-align: center; color: var(--text-secondary-color); font-size: 0.8rem; }

@media (max-width: 992px) {
    .main-nav, .nav-actions { display: none; }
    .section { padding: 4rem 0; }
    .section-title { margin-bottom: 2.5rem; }
    .immersive-hero { background-position: 65% center; }
    .hero-content { text-align: left; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .scrolly-container { flex-direction: column; }
    .scrolly-visuals { position: sticky; top: 60px; z-index: 5; flex: none; width: 100%; height: calc(100vh - 60px); }
    .scrolly-visuals .visual-item img { object-fit: cover; }
    .scrolly-steps { position: relative; z-index: 10; padding: 0 1.5rem; margin-top: calc(-100vh + 60px); }
    .step { min-height: 100vh; padding: 2rem; justify-content: center; }
    .step h2, .step p { background-color: rgba(var(--bg-color-rgb), 0.95); padding: 0.3rem 0.6rem; border-radius: 4px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); color: var(--text-primary-color); }
    .armada-grid, .bento-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .col-span-2 { grid-column: span 2; }
    .logo-scroller-section { padding: 2rem 0; }
    .tools-panel { margin: -60px 0 0 0; border-radius: 0; border-left: none; border-right: none; box-shadow: none; }
    .panel-content { padding: 1.5rem; }
    .tracking-results-wrapper { padding: 1rem; border-radius: 0; border-left: none; border-right: none; }
    .result-summary-card { grid-template-columns: 1fr; }
    .tracking-progress-bar { display: none; }
    .history-details h4 { text-align: left; }
    .history-details table { border-spacing: 0 8px; }
    .history-details thead { display: none; }
    .history-details tbody, .history-details tbody tr { display: block; width: 100%; }
    .history-details tbody tr { border: 1px solid var(--border-color); border-radius: 8px; padding: 0.75rem 1rem; background-color: var(--bg-secondary-color); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
    .history-details tbody tr td { display: block; padding: 0.3rem 0; border-bottom: 1px solid var(--border-color); }
    .history-details tbody tr td:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
    .hero-content h1, .section-title h2, .step h2, .cta-card h2 { font-size: 1.5rem; }
    .hero-content p, .tab-pane h3, .bento-item h3 { font-size: 0.9rem; }
    .armada-grid, .bento-grid, .footer-grid { grid-template-columns: 1fr; }
    .col-span-2, .row-span-2 { grid-column: span 1; grid-row: span 1; }
    .cta-card { padding: 2rem; }
    .cta-card .btn-cta { padding: 12px 24px; font-size: 1rem; }
}

/* === [REVISI] Style tambahan untuk halaman utama === */
.solution-finder-section { background-color: var(--bg-color); }
.solution-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; max-width: 1100px; margin: auto; }
.solution-options button { display: flex; align-items: center; width: 100%; padding: 1.2rem 1.5rem; margin-bottom: 1rem; font-size: 1.1rem; font-weight: 600; text-align: left; border: 2px solid var(--border-color); background-color: var(--bg-secondary-color); color: var(--text-secondary-color); border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.solution-options button i { margin-right: 1rem; font-size: 1.5rem; width: 30px; text-align: center; color: var(--text-secondary-color); transition: color 0.3s ease; }
.solution-options button:hover { border-color: var(--accent-color); color: var(--text-primary-color); }
.solution-options button.active { border-color: var(--accent-color); background-color: var(--accent-color); color: #FFFFFF; box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2); }
.solution-options button.active i { color: #FFFFFF; }
.solution-display .solution-content { display: none; text-align: center; animation: fadeIn 0.5s ease; }
.solution-display .solution-content.active { display: block; }
.solution-display .solution-image { margin-bottom: 2rem; }
.solution-display .solution-image img { max-width: 280px; width: 100%; height: auto; }
.solution-display h3 { font-size: 2rem; font-weight: 700; color: var(--text-primary-color); margin-bottom: 1rem; }
.solution-display p { font-size: 1rem; color: var(--text-secondary-color); line-height: 1.7; margin-bottom: 2rem; }
.solution-display .btn-primary { padding: 12px 28px; font-size: 1rem; }

.advantages-section { background-color: var(--bg-secondary-color); }
.advantage-card-single { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; background: var(--bg-color); padding: 3rem; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 8px 25px rgba(0,0,0,0.07); }
.advantage-item { display: flex; align-items: center; gap: 1.5rem; }
.advantage-item .icon { font-size: 2.5rem; color: var(--accent-color); flex-shrink: 0; }
.advantage-item .advantage-text h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-primary-color); }
.advantage-item .advantage-text p { font-size: 0.9rem; color: var(--text-secondary-color); line-height: 1.6; margin: 0; }

.faq-section { background-color: var(--bg-color); }
.faq-container { max-width: 800px; margin: auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid var(--border-color); border-radius: 12px; transition: all 0.3s ease; }
.faq-item.active { border-color: var(--accent-color); background-color: var(--bg-secondary-color); box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1); }
.faq-question { width: 100%; background: none; border: none; padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.faq-question span { font-size: 1.1rem; font-weight: 600; color: var(--text-primary-color); }
.faq-question i { transition: transform 0.3s ease; font-size: 1rem; color: var(--text-secondary-color); }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--accent-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; }
.faq-answer p { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-secondary-color); line-height: 1.7; font-size: 0.95rem; margin: 0; }
.faq-item.active .faq-answer { max-height: 300px; }

@media (max-width: 992px) {
    .solution-grid { grid-template-columns: 1fr; gap: 2rem; }
    .solution-display { margin-top: 2rem; }
    .advantage-card-single { grid-template-columns: 1fr 1fr; padding: 2rem; gap: 1.5rem; }
    .advantage-item { flex-direction: column; text-align: center; gap: 0.5rem; }
}
@media (max-width: 768px) {
    .advantage-card-single { grid-template-columns: 1fr; }
    .solution-display .solution-image { margin-bottom: 1rem; }
}

/* =================================================================== */
/* [PENAMBAHAN] Sembunyikan Section Layanan (Scrollytelling) di Mobile */
/* =================================================================== */
@media (max-width: 768px) {
    #layanan.scrollytelling-section {
        display: none;
    }
}
