/* =======================================================
   ROOT VARIABLES & GLOBAL SETUP
   ======================================================= */
:root {
    --farm-dark: #0C3B25; 
    --farm-primary: #135939; 
    --farm-accent: #E87A00; 
    --farm-light: #F5F5F5;
    --orange-accent: #C2731A; 
    
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --gray-800: #1F2937;

    --text-dark: #000000;
    --text-gray: #777777;
    --bg-main: #FCFCFC;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main); 
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

/* =======================================================
   SEKSI: NAVBAR ATAS (BARU)
   ======================================================= */
.top-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--farm-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }
.logo-icon {
    width: 35px; height: 35px; background-color: var(--farm-accent);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; color: var(--white); padding: 6px;
}
.logo-text { font-family: 'Crimson Pro', serif; font-size: 20px; font-weight: 700; letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; margin: 0; padding: 0; }
.nav-links li a { text-decoration: none; color: var(--gray-200); font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-links li a:hover { color: var(--farm-accent); }
.nav-links li a.btn-contact {
    background-color: var(--farm-accent); color: var(--white);
    padding: 8px 20px; border-radius: 20px; transition: background-color 0.3s, transform 0.3s;
}
.nav-links li a.btn-contact:hover { background-color: var(--orange-accent); transform: translateY(-2px); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 5px; width: 40px; height: 40px; }

/* =======================================================
   SEKSI 0: HEADER NILAI INTI (REPLIKASI 100% ORISINAL)
   ======================================================= */
.section-header {
    background-color: #222222;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.25) 80%, rgba(0, 0, 0, 0) 100%), 
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2000&q=80');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    width: 100%; max-width: 2000px; min-height: 450px; 
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start; 
    padding: 80px 10%; box-shadow: 0 10px 25px rgba(0,0,0,0.1); margin: 0 auto; 
}
.interactive-layout { display: flex; flex-direction: row; align-items: stretch; gap: 50px; width: 100%; max-width: 1000px; }
.icon-column { display: flex; flex-direction: column; gap: 25px; flex-shrink: 0; }
.icon-btn { background: none; border: none; padding: 0; cursor: pointer; outline: none; }
.icon-btn:focus-visible .icon-circle { box-shadow: 0 0 0 3px var(--orange-accent); }
.section-header .icon-circle {
    width: 60px; height: 60px; border: 2px solid var(--orange-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    padding: 12px; position: relative; backdrop-filter: blur(2px); background-color: rgba(0, 0, 0, 0.4); 
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.icon-btn:hover .icon-circle { background-color: rgba(194, 115, 26, 0.4); transform: scale(1.05); }
.section-header .icon-circle::before {
    content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid var(--orange-accent); border-radius: 50%; opacity: 0.3; transition: opacity 0.3s ease, border-color 0.3s ease;
}
.icon-btn.is-active .icon-circle { border-color: var(--white); background-color: rgba(255, 255, 255, 0.2); transform: scale(1.1); }
.icon-btn.is-active .icon-circle::before { border-color: var(--white); opacity: 0.6; }
.dynamic-icon { width: 100%; height: 100%; object-fit: contain; }

.description-display {
    flex-grow: 1; display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr;
    border-left: 2px solid rgba(255, 255, 255, 0.1); padding-left: 40px; padding-top: 5px; padding-bottom: 10px; align-items: start; 
}
.desc-content {
    grid-column: 1 / -1; grid-row: 1 / -1; opacity: 0; visibility: hidden;
    transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.desc-content p { color: var(--white); font-size: 18px; line-height: 1.7; font-weight: 400; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9); margin: 0; max-width: 800px; text-align: left; }
.desc-content p strong { color: var(--orange-accent); font-weight: 600; display: block; margin-bottom: 12px; font-size: 26px; text-align: center; }
.desc-content.is-active { opacity: 1; visibility: visible; transform: translateY(0); }

/* =======================================================
   SEKSI 1: STRUKTUR ORGANISASI (BAGAN TREE)
   ======================================================= */
.org-container { width: 100%; max-width: 900px; margin: 0 auto; padding: 50px 15px; display: flex; flex-direction: column; align-items: center; }
.org-header { display: flex; align-items: center; justify-content: center; margin-bottom: 45px; gap: 15px; width: 100%; }
.org-header-line { height: 1.5px; background-color: var(--farm-accent); flex-grow: 1; max-width: 260px; }
.org-header-dot { width: 9px; height: 9px; background-color: var(--farm-accent); border-radius: 50%; flex-shrink: 0; }
.org-header h1 { color: var(--farm-dark); font-family: 'Crimson Pro', serif; font-size: 24px; font-weight: 700; letter-spacing: 1.5px; margin: 0; white-space: nowrap; }

.org-tree { display: flex; justify-content: center; width: 100%; }
.org-tree ul { padding-top: 25px; position: relative; display: flex; justify-content: center; width: 100%; list-style: none; margin: 0; padding-left: 0; }
.org-tree li { position: relative; padding: 25px 8px 0 8px; text-align: center; flex: 1; min-width: 0;}
.org-tree li::before, .org-tree li::after { content: ''; position: absolute; top: 0; right: 50%; border-top: 1.5px solid var(--farm-accent); width: 50%; height: 25px; }
.org-tree li::after { right: auto; left: 50%; border-left: 1.5px solid var(--farm-accent); }
.org-tree li:only-child::after, .org-tree li:only-child::before { display: none; }
.org-tree li:only-child { padding-top: 0; }
.org-tree li:first-child::before, .org-tree li:last-child::after { border: 0 none; }
.org-tree li:last-child::before { border-right: 1.5px solid var(--farm-accent); border-radius: 0; }
.org-tree li:first-child::after { border-radius: 0; }
.org-tree ul ul::before { content: ''; position: absolute; top: 0; left: 50%; border-left: 1.5px solid var(--farm-accent); width: 0; height: 25px; transform: translateX(-50%); }

.org-card {
    border: 1.5px solid var(--farm-accent); border-radius: 8px; background-color: var(--white); min-height: 72px; 
    display: flex; align-items: center; padding: 10px 14px; margin: 0 auto; width: 100%; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03); 
}
.org-card.top-card { max-width: 320px; }
.org-card.bottom-card { max-width: 240px; }
.org-avatar { width: 44px; height: 44px; background-color: var(--farm-dark); border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-shrink: 0; overflow: hidden; }
.org-avatar img { width: 100%; height: 100%; object-fit: cover; }
.org-card-info { flex-grow: 1; min-width: 0; margin-left: 12px; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.org-jabatan, .org-nama { display: block; }
.org-jabatan { font-size: 13.5px; font-weight: 600; color: var(--farm-dark); margin-bottom: 4px; }
.org-nama { font-size: 11.5px; color: var(--text-gray); }

/* =======================================================
   SEKSI 2: TIM MANAJEMEN
   ======================================================= */
.main-container {
    display: flex; flex-direction: row; width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 30px 45px; gap: 30px; align-items: stretch; background-color: var(--bg-main); 
}
.left-panel {
    background-color: var(--farm-dark); flex: 1 1 0; 
    border-radius: 15px; padding: 30px 15px; display: flex;
    flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.left-panel .icon-list { display: flex; flex-direction: column; justify-content: space-between; gap: 15px; height: 100%; width: 100%; }
.left-panel .icon-item { display: flex; align-items: center; gap: 15px; width: 100%; }
.left-panel .icon-circle {
    width: 60px; height: 60px; border: 2px solid var(--farm-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    padding: 10px; position: relative; flex-shrink: 0; background-color: transparent; backdrop-filter: none;
}
.left-panel .icon-circle::before {
    content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px;
    border: 1px solid var(--farm-accent); border-radius: 50%; opacity: 0.3;
}
.left-panel .icon-text { color: var(--white); font-size: 14px; white-space: nowrap; margin: 0; }
.left-panel .icon-line { flex-grow: 1; height: 2px; background-color: var(--farm-accent); position: relative; min-width: 15px; }
.left-panel .white-point { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background-color: var(--white); }

.right-panel { flex: 3 1 0; display: flex; flex-direction: column; min-width: 0; }
.header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; width: 100%; justify-content: center; }
.header-line { height: 1px; background-color: var(--farm-accent); flex-grow: 1; position: relative; min-width: 20px; }
.title { font-family: 'Crimson Pro', serif; font-size: 26px; text-transform: uppercase; letter-spacing: 2px; margin: 0; flex-shrink: 0; color: var(--text-dark);}
.orange-point-left, .orange-point-right { position: absolute; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background-color: var(--farm-accent); }
.orange-point-left { right: 0; }
.orange-point-right { left: 0; }
.card-grid { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; width: 100%; flex-grow: 1; align-items: stretch; justify-content: center;}

.profile-card {
    flex: 1 1 0; background-color: var(--white);
    border: 1px solid var(--farm-accent); border-radius: 15px; padding: 25px 15px; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.avatar-circle { width: 70px; height: 70px; border-radius: 50%; background-color: var(--farm-dark); display: flex; align-items: center; justify-content: center; padding: 4px; margin-bottom: 15px; flex-shrink: 0; overflow: hidden; }
.avatar-circle img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 16px; font-weight: 600; text-align: center; margin: 0; color: var(--text-dark);}
.card-separator { width: 75%; height: 1.5px; background-color: var(--text-gray); margin: 15px 0; opacity: 0.3; }
.details { list-style: none; padding: 0 10px; width: 100%; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.details li { position: relative; padding-left: 14px; font-size: 13px; color: var(--text-gray); line-height: 1.4; }
.details li::before { content: ''; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background-color: var(--farm-accent); }
.snap-container { scroll-snap-type: x mandatory; }
.snap-item { scroll-snap-align: start; }
.card-grid::-webkit-scrollbar { display: none; }
.card-grid { -ms-overflow-style: none; scrollbar-width: none; }

/* =======================================================
   SEKSI 3: FASILITAS, VISI, & KUALITAS
   ======================================================= */
.facilities-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; }
.facilities-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch; }
@media (min-width: 1024px) { .facilities-grid { grid-template-columns: repeat(3, 1fr); } }
.facility-card { border-radius: 16px; overflow: hidden; height: 180px; position: relative; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.img-card { border: 1px solid var(--gray-100); }
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-in-out; }
.img-card:hover img { transform: scale(1.1); }
.quote-card { background-color: var(--farm-dark); display: flex; align-items: center; justify-content: center; padding: 20px 24px; cursor: default; transition: box-shadow 0.3s; }
.quote-card:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.quote-mark { position: absolute; font-family: 'Playfair Display', serif; font-size: 60px; color: var(--farm-accent); line-height: 1; user-select: none; opacity: 0.9; }
.quote-mark.top-left { top: 10px; left: 16px; }
.quote-mark.bottom-right { bottom: -15px; right: 16px; transform: rotate(180deg); }
.quote-text { color: var(--white); font-size: 15px; font-weight: 500; text-align: center; z-index: 10; margin: 0; }
.quality-card { background-color: var(--white); border: 1.5px solid rgba(19, 89, 57, 0.3); display: flex; align-items: center; padding: 16px; cursor: default; transition: border-color 0.3s; }
.quality-card:hover { border-color: var(--farm-accent); }
.quality-content { display: flex; align-items: center; gap: 12px; width: 65%; z-index: 10; padding-left: 12px; }
.quality-icon { width: 56px; height: 56px; color: var(--farm-accent); flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.quality-text { border-left: 2px solid var(--gray-200); padding-left: 12px; display: flex; flex-direction: column; justify-content: center; }
.quality-title { font-size: 12px; font-weight: 700; color: var(--farm-dark); text-transform: uppercase; }
.quality-subtitle { font-size: 12px; font-weight: 700; color: var(--gray-700); text-transform: uppercase; }
.quality-bg { position: absolute; right: 0; bottom: 0; width: 45%; height: 100%; display: flex; align-items: flex-end; justify-content: flex-end; pointer-events: none; opacity: 0.9; mix-blend-mode: multiply; }
.quality-bg img { object-fit: contain; object-position: right bottom; transform: scale(1.3) translateX(16px); transform-origin: bottom; width: 100%; height: 100%; }

/* =======================================================
   SEKSI 4: TUGAS & FUNGSI (AKORDION DROPDOWN)
   ======================================================= */
.tasks-hr-section { max-width: 900px; margin: 0 auto; padding: 0 16px 60px; display: flex; flex-direction: column; gap: 40px; }
.tasks-container { border: 1.5px solid var(--farm-accent); border-radius: 24px; background: var(--white); overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.tasks-header { background-color: var(--farm-dark); padding: 16px; text-align: center; color: var(--white); }
.tasks-header h3 { margin: 0; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.tasks-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.task-item { border: 1.5px solid var(--gray-200); border-radius: 12px; background-color: var(--white); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.task-item.active { border-color: var(--farm-accent); box-shadow: 0 4px 12px rgba(232, 122, 0, 0.08); }
.task-header { display: flex; gap: 16px; align-items: center; padding: 16px; cursor: pointer; user-select: none; transition: background-color 0.3s ease; }
.task-header:hover { background-color: var(--gray-100); }
.task-icon { width: 44px; height: 44px; flex-shrink: 0; border: 2px solid var(--farm-accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--farm-dark); transition: all 0.3s; }
.task-icon svg { width: 22px; height: 22px; }
.task-header:hover .task-icon, .task-item.active .task-icon { background-color: var(--farm-accent); color: var(--white); }
.task-title { margin: 0; font-size: 15px; font-weight: 600; color: var(--farm-dark); flex-grow: 1; }
.task-arrow { width: 20px; height: 20px; color: var(--text-gray); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.task-arrow svg { width: 100%; height: 100%; }
.task-item.active .task-arrow { transform: rotate(180deg); color: var(--farm-accent); }
.task-content { max-height: 0; overflow: hidden; opacity: 0; padding: 0 16px 0 76px; transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease; }
.task-item.active .task-content { max-height: 150px; padding-bottom: 16px; opacity: 1; }
.task-content p { margin: 0; font-size: 13.5px; color: var(--gray-700); line-height: 1.6; }

/* =======================================================
   SEKSI 4: DATA SDM & TAB PANEL DROPDOWN
   ======================================================= */
.hr-container { display: flex; flex-direction: column; gap: 24px; }
.hr-header { display: flex; align-items: center; gap: 12px; width: 100%; }
.hr-header h2 { font-size: 18px; font-weight: 700; color: var(--farm-dark); text-transform: uppercase; margin: 0; white-space: nowrap; }
.hr-line { height: 1px; background-color: var(--gray-300); flex-grow: 1; position: relative; }
.hr-dot-right { position: absolute; right: 0; top: -3px; width: 8px; height: 8px; background-color: var(--farm-accent); border-radius: 50%; }
.hr-dot-left { position: absolute; left: 0; top: -3px; width: 8px; height: 8px; background-color: var(--farm-accent); border-radius: 50%; }
.hr-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.hr-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; flex: 1; min-width: 0; cursor: pointer; transition: transform 0.3s, opacity 0.3s; }
.hr-item:active { transform: scale(0.95); }
.hr-item.active .hr-icon { transform: translateY(-4px); color: var(--farm-accent); }
.hr-item.active span { color: var(--farm-accent); }
.hr-icon { width: 36px; height: 36px; color: var(--farm-dark); transition: transform 0.3s, color 0.3s; }
.hr-item:hover .hr-icon { transform: translateY(-4px); }
.hr-item span { font-size: 10px; font-weight: 700; color: var(--gray-800); text-transform: uppercase; line-height: 1.2; transition: color 0.3s; }

.hr-dropdown-panel { max-height: 0; overflow: hidden; background-color: var(--white); border-radius: 16px; margin-top: -8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid transparent; transition: max-height 0.4s ease, padding 0.4s ease, border-color 0.4s ease, margin-top 0.4s ease; }
.hr-dropdown-panel.open { max-height: 200px; padding: 16px 20px; margin-top: 8px; border-color: var(--farm-accent); }
.hr-panel-content { display: none; opacity: 0; transition: opacity 0.3s ease; }
.hr-panel-content.active { display: block; opacity: 1; animation: fadeInSdm 0.4s ease forwards; }
.hr-panel-content p { margin: 0; font-size: 13.5px; color: var(--gray-700); line-height: 1.6; }
.hr-panel-content p strong { color: var(--farm-dark); }
@keyframes fadeInSdm { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* =======================================================
   SEKSI FOOTER (BAGIAN BAWAH BARU)
   ======================================================= */
.footer {
    background-color: var(--farm-dark);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 40px;
    border-top: 4px solid var(--farm-accent);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-title { font-family: 'Crimson Pro', serif; font-size: 18px; color: var(--farm-accent); margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.footer-desc { font-size: 13.5px; color: var(--gray-300); line-height: 1.6; margin: 0; }
.social-links { display: flex; gap: 12px; margin-top: 10px; }
.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background-color: rgba(255,255,255,0.1);
    color: var(--white); border-radius: 50%; transition: background-color 0.3s, transform 0.3s;
}
.social-links a:hover { background-color: var(--farm-accent); transform: translateY(-3px); }
.social-links a svg { width: 18px; height: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a { color: var(--gray-300); text-decoration: none; font-size: 13.5px; transition: color 0.3s, padding-left 0.3s; }
.footer-links li a:hover { color: var(--farm-accent); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--gray-300); line-height: 1.5; }
.footer-contact li svg { width: 20px; height: 20px; color: var(--farm-accent); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 12px; color: var(--gray-300); }


/* =======================================================
   RESPONSIVITAS SMARTPHONE (PERFEKTIF DI SEMUA UKURAN)
   ======================================================= */
@media (max-width: 768px) {
    
    /* Navbar Responsif Mobile */
    .nav-container { padding: 0 15px; height: 60px; }
    .logo-text { font-size: 16px; }
    .logo-icon { width: 30px; height: 30px; padding: 5px; }
    .mobile-menu-btn { display: block; z-index: 1001; }
    
    .nav-links {
        position: fixed; top: 60px; left: -100%; width: 100%; height: calc(100vh - 60px);
        background-color: var(--farm-dark); flex-direction: column; justify-content: flex-start;
        padding-top: 40px; gap: 20px; transition: left 0.4s ease-in-out;
        box-shadow: inset 0 5px 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links li a { font-size: 16px; display: block; padding: 10px; }
    .nav-links li a.btn-contact { margin: 10px auto; width: 60%; }

    /* 0. Header Nilai Inti (Tervalidasi: Fleksibel tanpa nowrap) */
    .section-header {
        min-height: auto; 
        padding: 40px 15px; 
        background-image: 
            linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(0, 0, 0, 0.85) 45%, 
                rgba(0, 0, 0, 0) 100%
            ), 
            url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2000&q=80');
    }
    .interactive-layout { gap: 4vw; flex-direction: row; }
    .icon-column { flex-direction: column; justify-content: flex-start; gap: 12px; }
    .section-header .icon-circle { width: 38px; height: 38px; padding: 8px; }
    .section-header .icon-circle::before { top: -3px; left: -3px; right: -3px; bottom: -3px; }
    .description-display { padding-left: 3vw; padding-top: 0px; align-items: center; border-left: 1.5px solid rgba(255, 255, 255, 0.1); }
    .desc-content p { font-size: 10px; text-align: left; }
    .desc-content p strong { font-size: 14px; margin-bottom: 8px; text-align: left; }

    /* 1. Struktur Organisasi (Tervalidasi: Penjinak Blowout) */
    .org-container { padding: 20px 2vw; } 
    .org-header { gap: 8px; margin-bottom: 25px; }
    .org-header h1 { font-size: clamp(12px, 4vw, 14px); letter-spacing: 0.5px; text-align: center; white-space: normal;}
    .org-header-dot { width: 6px; height: 6px; }
    .org-tree ul { padding-top: 15px; }
    .org-tree li { padding: 15px 2px 0 2px; } 
    .org-tree li::before, .org-tree li::after, .org-tree ul ul::before { height: 15px; }
    .org-card { min-height: 45px; padding: 5px 2px; border-radius: 5px; }
    .org-card.top-card { max-width: 160px; }
    .org-card.bottom-card { max-width: 100%; width: 100%; }
    .org-avatar { width: 22px; height: 22px; }
    .org-card-info { margin-left: 4px; }
    
    /* Mencegah pecahnya flexbox pada layar yang sangat sempit */
    .org-jabatan, .org-nama { 
        font-size: 7.5px; 
        margin-bottom: 2px; 
        white-space: normal; 
        word-wrap: break-word; 
        line-height: 1.2; 
    } 
    .org-nama { font-size: 6.5px; }

    /* 2. Tim Manajemen Mobile */
    .main-container { display: flex; flex-direction: column; padding: 15px 5px; gap: 0; }
    .right-panel { order: 1; width: 100%; display: flex; flex-direction: column; }
    .header { position: sticky; top: 60px; z-index: 900; background-color: var(--bg-main); padding: 10px 0; margin-bottom: 15px; }
    .title { font-size: 14px; text-align: center; white-space: normal;}
    
    .card-grid { overflow-x: auto; padding-bottom: 15px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; justify-content: flex-start; gap: 10px; }
    .card-grid::-webkit-scrollbar { display: block; height: 4px; }
    .card-grid::-webkit-scrollbar-thumb { background-color: var(--farm-accent); border-radius: 10px; }
    .card-grid::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.05); }
    
    .profile-card { flex: 0 0 calc(50vw - 20px); min-width: 130px; scroll-snap-align: center; margin: 0 auto; padding: 10px 8px; border-radius: 10px; }
    .avatar-circle { width: 35px; height: 35px; padding: 2px; margin-bottom: 8px; }
    .profile-name { font-size: 10px; }
    .card-separator { margin: 8px 0; height: 1px; }
    .details { gap: 6px; }
    .details li { font-size: 8px; padding-left: 10px; line-height: 1.2; }
    .details li::before { width: 4px; height: 4px; top: 3px; }
    
    .left-panel { order: 2; width: 100%; flex: none; margin-top: 15px; padding: 15px 10px; border-radius: 10px; }
    .left-panel .icon-list { flex-direction: column; justify-content: space-between; gap: 10px; height: 100%; width: 100%; }
    .left-panel .icon-item { display: flex; align-items: center; flex-direction: row; gap: 10px; width: 100%; }
    .left-panel .icon-circle { width: 30px; height: 30px; padding: 4px; margin: 0; border-width: 1px; }
    .left-panel .icon-circle::before { top: -2px; left: -2px; right: -2px; bottom: -2px; }
    .left-panel .icon-text { font-size: 9px; text-align: left; white-space: normal; line-height: 1.2;}
    .left-panel .icon-line { display: block; flex-grow: 1; height: 1px; background-color: var(--farm-accent); position: relative; min-width: 10px; }
    .left-panel .white-point { width: 4px; height: 4px; }

    /* 3. Fasilitas Horizontal Scroll */
    .facilities-section { padding: 20px 5px; }
    .facilities-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 10px; padding-bottom: 15px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .facilities-grid::-webkit-scrollbar { height: 4px; display: block; }
    .facilities-grid::-webkit-scrollbar-thumb { background-color: var(--farm-accent); border-radius: 10px; }
    .facilities-grid::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.05); border-radius: 10px; }
    
    .facility-card { flex: 0 0 calc(60vw - 10px); min-width: 140px; height: 100px; scroll-snap-align: start; border-radius: 8px; }
    .quote-card { padding: 10px 12px; }
    .quote-mark { font-size: 24px; }
    .quote-mark.top-left { top: 4px; left: 8px; }
    .quote-mark.bottom-right { bottom: -8px; right: 8px; }
    .quote-text { font-size: 9px; }
    .quality-card { padding: 8px; border-width: 1px; }
    .quality-content { gap: 6px; padding-left: 4px; width: 60%; }
    .quality-icon { width: 24px; height: 24px; }
    .quality-text { padding-left: 6px; border-left-width: 1px; }
    .quality-title { font-size: 7.5px; }
    .quality-subtitle { font-size: 7.5px; }
    .quality-bg img { transform: scale(1.1) translateX(8px); }
    
    /* 4. Tugas & SDM Mobile */
    .tasks-hr-section { padding: 0 5px 40px; gap: 20px; }
    .tasks-container { border-radius: 12px; border-width: 1px; }
    .tasks-header { padding: 10px; }
    .tasks-header h3 { font-size: 14px; }
    .tasks-body { padding: 10px; gap: 6px; }
    .task-item { border-radius: 8px; border-width: 1px; }
    .task-header { padding: 8px 6px; gap: 8px; }
    .task-icon { width: 24px; height: 24px; border-width: 1px; }
    .task-icon svg { width: 12px; height: 12px; }
    .task-title { font-size: 9px; }
    .task-arrow { width: 14px; height: 14px; }
    .task-content { padding: 0 8px 0 38px; }
    .task-content p { font-size: 8px; line-height: 1.4; white-space: normal;}
    .task-item.active .task-content { padding-bottom: 8px; }

    .hr-container { gap: 15px; }
    .hr-header h2 { font-size: 14px; text-align: center; white-space: normal;}
    .hr-header { gap: 8px; }
    .hr-dot-right, .hr-dot-left { width: 4px; height: 4px; top: -1px; }
    
    .hr-grid { padding: 8px 6px; gap: 2px; border-radius: 10px; border-width: 1px; }
    .hr-item { gap: 6px; flex: 1; min-width: 0;}
    .hr-icon { width: 18px; height: 18px; }
    .hr-icon svg { width: 18px; height: 18px; }
    .hr-item span { font-size: 7.5px; line-height: 1.2;} 
    
    .hr-dropdown-panel { border-radius: 10px; margin-top: -4px; }
    .hr-dropdown-panel.open { padding: 10px; margin-top: 4px; max-height: 120px; }
    .hr-panel-content p { font-size: 8px; line-height: 1.4; }
    
    /* Footer Mobile */
    .footer { padding: 40px 15px 20px; margin-top: 20px; }
    .footer-container { gap: 30px; grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-contact li { justify-content: center; text-align: left; }
}

/* =======================================================
   ANIMASI EFEK TRANSAKSI RENDERING GPU
   ======================================================= */
.fade-in-section {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.fade-in-section.is-visible { opacity: 1; transform: none; }