/* +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ */
/* | ________    _______  ___      ___  _______  ___        ______    _______    _______  ________      _______  ___  ___  ____          __  ___________  __    __   ____  ____   _______      ___      ___   ________       | */
/* ||"      "\  /"     "||"  \    /"  |/"     "||"  |      /    " \  |   __ "\  /"     "||"      "\    |   _  "\|"  \/"  |))_ ")        /""\("     _   ")/" |  | "\ ("  _||_ " | /"      \    |"  \    /"  | /"       )      | */
/* |(.  ___  :)(: ______) \   \  //  /(: ______)||  |     // ____  \ (. |__) :)(: ______)(.  ___  :)   (. |_)  :)\   \  /(____(        /    \)__/  \\__/(:  (__)  :)|   (  ) : ||:        |    \   \  //   |(:   \___/       | */
/* ||: \   ) || \/    |    \\  \/. ./  \/    |  |:  |    /  /    ) :)|:  ____/  \/    |  |: \   ) ||   |:     \/  \\  \/  _____       /' /\  \  \\_ /    \/      \/ (:  |  | . )|_____/   )    /\\  \/.    | \___  \         | */
/* |(| (___\ || // ___)_    \.    //   // ___)_  \  |___(: (____/ // (|  /      // ___)_ (| (___\ ||   (|  _  \\  /   /   ))_ ")     //  __'  \ |.  |    //  __  \\  \\ \__/ //  //      /    |: \.        |  __/  \\        | */
/* ||:       :)(:      "|    \\   /   (:      "|( \_|:  \\        / /|__/ \    (:      "||:       :)   |: |_)  :)/   /   (____(     /   /  \\  \\:  |   (:  (  )  :) /\\ __ //\ |:  __   \    |.  \    /:  | /" \   :)       | */
/* |(________/  \_______)     \__/     \_______) \_______)\"_____/ (_______)    \_______)(________/    (_______/|___/              (___/    \___)\__|    \__|  |__/ (__________)|__|  \___)   |___|\__/|___|(_______/        | */
/* |                                                                                                                                                                                                                         | */
/* |@ _______     ______    _______      ___                                                                                                                                                                                 | */
/* | /"     "\   /    " \  /"     "\    /. ")                                                                                                                                                                                | */
/* |(__/\    :) // ____  \(__/\    :)  /:  /                                                                                                                                                                                 | */
/* |    / ___/ /  /    ) :)   / ___/  //  /___                                                                                                                                                                               | */
/* |   // \___(: (____/ //   // \___ (   / _  \                                                                                                                                                                              | */
/* |  (:  /  "\\        /   (:  /  "\|:   /_) :)                                                                                                                                                                             | */
/* |   \_______)\"_____/     \_______)\_______/                                                                                                                                                                              | */
/* +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ */

/* =========================================================
   1. VARIABLES & GLOBAL RESET
========================================================= */
:root {
    --primary-dark: #0F291E; 
    --secondary-dark: #1E861B; 
    --brand-green: #2DAE41;  
    --brand-green-hover: #217d0f; 
    --light-green-bg: #F0F9EE; 
    --card-green: #567E3A; 
    --text-dark: #1E293B; 
    --text-gray: #475569; 
    --bg-light: #FFFFFF;
    --wa-green: #25D366;
    --accent-color: #2DAE41;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 1.05rem; 
    letter-spacing: 0.01em;
}

:focus-visible { outline: 3px solid var(--brand-green); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.02em; }
h1 { font-size: 3.5rem; }
p { color: var(--text-gray); margin-bottom: 1.5rem; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 30px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.sub-title { text-transform: uppercase; font-size: 0.85rem; font-weight: 800; letter-spacing: 3px; color: var(--brand-green); border-bottom: 2px solid var(--brand-green); display: inline-block; margin-bottom: 20px; padding-bottom: 5px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes floatBadge { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

/* Inline Link */
.link-inline { color: var(--brand-green); font-weight: 700; text-decoration: none; border-bottom: 1px dashed var(--brand-green); transition: all 0.3s ease; }
.link-inline:hover { color: var(--primary-dark); border-bottom: 1px solid var(--primary-dark); }

/* =========================================================
   2. COMPONENTS (BUTTONS, MODALS, SLIDER CONTROLS)
========================================================= */
/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; cursor: pointer; text-align: center; border: none; }
.btn-primary { background: var(--brand-green); color: var(--bg-light); border: 1px solid var(--brand-green); }
.btn-primary:hover { background: var(--brand-green-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(45, 174, 65, 0.3); color: #fff; }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); background: var(--brand-green); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-virtual { background: var(--light-green-bg); color: var(--primary-dark); border: 1px solid var(--brand-green); padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; cursor: pointer; transition: 0.3s; }
.btn-virtual:hover { background: var(--brand-green); color: #fff; transform: translateY(-2px); }
.ft-btn-wrapper { text-align: center; }
.btn-explore { padding: 16px 40px; font-size: 1.1rem; border-radius: 30px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 15px 30px rgba(45, 174, 65, 0.2); }

/* Modals & Pop-ups */
.vr-modal { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: rgba(15, 23, 42, 0.9); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.4s ease; }
.vr-modal.show { display: block; opacity: 1; }
.vr-modal-content { position: relative; margin: 4% auto; width: 95%; max-width: 1100px; height: 85vh; background: #000; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); transform: translateY(-50px); transition: transform 0.4s ease; border: 1px solid rgba(255,255,255,0.1); }
.vr-modal.show .vr-modal-content { transform: translateY(0); }
.vr-close { position: absolute; top: 15px; right: 25px; color: #fff; font-size: 40px; font-weight: 300; cursor: pointer; z-index: 10; text-shadow: 0 2px 10px rgba(0,0,0,0.5); transition: 0.3s; background: rgba(0,0,0,0.4); width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; border-radius: 50%; border: none;}
.vr-close:hover { color: var(--brand-green); background: rgba(255,255,255,0.9); }
.vr-iframe-container { width: 100%; height: 100%; background: #111; }
.vr-iframe-container iframe { width: 100%; height: 100%; border: none; }

/* Custom Modal Body (For Text & Logo Mitra) */
.modal-body-custom { background: #fff; max-width: 600px; width: 95%; max-height: 85vh; padding: 40px; border-radius: 24px; margin: 7.5vh auto; position: relative; display: flex; flex-direction: column; box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.modal-close-btn { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: #f0f0f0; color: var(--primary-dark); display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; transition: 0.3s; }
.modal-close-btn:hover { background: var(--brand-green); color: #fff; transform: rotate(90deg); }
.scrollable-modal-content { flex-grow: 1; overflow-y: auto; padding-right: 15px; margin-top: 10px; -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%); mask-image: linear-gradient(to bottom, black 85%, transparent 100%); }
.scrollable-modal-content::-webkit-scrollbar { width: 6px; }
.scrollable-modal-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.scrollable-modal-content::-webkit-scrollbar-thumb { background: var(--brand-green); border-radius: 10px; }
.modal-scroll-indicator { text-align: center; color: var(--brand-green); font-size: 0.85rem; font-weight: 600; margin-top: -15px; pointer-events: none; animation: bounceIndicator 2s infinite; background: #fff; padding-top: 15px; z-index: 2; flex-shrink: 0; }
@keyframes bounceIndicator { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-4px); } }

/* Mobile Slider Controls (Hidden on Desktop) */
.slider-controls-mobile { display: none; }

/* =========================================================
   3. HEADER & NAVIGATION
========================================================= */
nav { padding: 12px 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; z-index: 1000; transition: 0.3s; }
nav.scrolled { box-shadow: 0 5px 20px rgba(0,0,0,0.08); padding: 8px 0; }
.nav-wrapper { display: flex; align-items: center; position: relative; }
.logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.logo img { height: 50px; width: auto; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.brand-name { font-size: 1.1rem; font-weight: 800; color: var(--primary-dark); line-height: 1.1; letter-spacing: -0.02em; }
.brand-tagline { font-size: 0.7rem; color: var(--brand-green-hover); font-weight: 600; letter-spacing: 0.02em; font-style: italic; }

.nav-links { display: flex; gap: 25px; align-items: center; margin-right: 25px; }
.nav-links > li > a { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
.nav-links > li > a:hover { color: var(--brand-green); }
.nav-right { display: flex; align-items: center; gap: 15px; }
.hamburger { display: none; font-size: 1.5rem; color: var(--primary-dark); cursor: pointer; border: none; background: none; }
.mobile-only-btn { display: none; }

/* Dropdown */
.dropdown { position: relative; }
.chevron-icon { font-size: 0.7rem; transition: 0.3s; margin-top: 2px; }
.dropdown:hover .chevron-icon { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px; opacity: 0; visibility: hidden; transform: translateY(15px); transition: 0.3s ease; z-index: 1100; border: 1px solid rgba(0,0,0,0.05); margin-top: 15px; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { display: block; margin-bottom: 2px; }
.dropdown-menu li a { display: block; padding: 10px 15px; border-radius: 8px; font-weight: 500; color: var(--text-gray); font-size: 0.9rem; transition: 0.2s; }
.dropdown-menu li a:hover { background-color: var(--light-green-bg); color: var(--brand-green); padding-left: 20px; }

/* =========================================================
   4. MAIN SECTIONS
========================================================= */
/* --- HERO VIDEO --- */
.video-header-wrapper { position: relative; width: 100%; height: 100vh; min-height: 680px; overflow: hidden; display: flex; align-items: flex-end; background: #000; }
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.video-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(15, 41, 30, 0.2) 0%, transparent 40%, rgba(15, 41, 30, 0.95) 100%); z-index: 1; }

.video-content-container { justify-content: flex-end !important; align-items: center !important; text-align: center; position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; padding-bottom: 50px;}
.video-content-text { background: transparent; border: none; padding: 0; position: relative; opacity: 0; transform: translateY(30px); animation: contentSlideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards; display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
@keyframes contentSlideUp { to { opacity: 1; transform: translateY(0); } }

.cinematic-subtitle { display: block; font-size: 1rem; letter-spacing: 5px; font-weight: 700; color: var(--wa-green); margin-bottom: 10px; text-transform: uppercase; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.cinematic-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4rem; line-height: 1.1; color: #fff; margin-bottom: 15px; font-weight: 300; text-shadow: 0 5px 20px rgba(0,0,0,0.6); }
.cinematic-title strong { font-weight: 800; color: #fff; text-transform: uppercase; margin-left: 15px; background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)); }
.cinematic-desc { font-size: 1.2rem; color: rgba(255,255,255,0.95); line-height: 1.6; font-weight: 400; margin: 0 auto; max-width: 750px; text-shadow: 0 3px 10px rgba(0,0,0,0.8); text-align: center; }

.trust-badges { display: flex; gap: 15px; align-items: center; margin-top: 30px; opacity: 0; animation: contentSlideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards; flex-wrap: wrap; justify-content: center;}
.trust-badge-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); padding: 8px 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); }
.trust-badge-item span { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }
.badge-icon-yellow { color: #F59E0B; font-size: 1.2rem; }
.badge-icon-blue { color: #3B82F6; font-size: 1.2rem; }

.video-scroll-indicator { display: flex; flex-direction: column; align-items: center; color: rgba(255,255,255,0.6); text-decoration: none; }
.scroll-text { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; writing-mode: vertical-rl; text-orientation: mixed; margin-bottom: 10px; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: #fff; animation: dropLine 2s infinite; }
@keyframes dropLine { 0% { top: -100%; } 100% { top: 100%; } }

/* --- STATS BAR --- */
.stats-bar { background: var(--brand-green-hover); padding: 40px 0; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stat-item h3 { font-size: 3rem; font-weight: 800; margin-bottom: 5px; color: #fff; }
.stat-item p { font-size: 1.1rem; font-weight: 500; opacity: 0.9; color: #fff; margin: 0; }

/* --- LOGO STRIP (Infinite Marquee 2026) --- */
.logo-strip { 
    padding: 25px 0; /* Sangat ramping */
    background: #f8fafc; /* Abu-abu kebiruan sangat muda, memberi kesan tech/medical */
    border-bottom: 1px solid #f0f0f0; 
    overflow: hidden; /* Sembunyikan apapun yang keluar dari layar */
    position: relative;
    /* Efek pudar di ujung kiri dan kanan layar agar teks muncul perlahan */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-wrapper { width: 100%; display: flex; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px; /* Jarak lega antar logo */
    white-space: nowrap;
    /* Animasi berjalan terus menerus ke kiri selama 30 detik */
    animation: scrollMarquee 30s linear infinite;
}

/* Pause animasi jika pengunjung mengarahkan mouse (hover) ke area logo */
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Bergeser 50% karena kita punya 2 set logo (asli + duplikat) */
}

/* Desain Teks Logo (Bersih & Tanpa Kotak) */
.logo-item { 
    font-weight: 700; 
    font-size: 1.15rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--text-gray); 
    cursor: pointer; 
    transition: 0.3s; 
    opacity: 0.7; /* Sedikit pudar seperti watermark */
    filter: grayscale(100%); /* Hitam putih */
}

/* Saat disentuh/hover, logo akan menyala hijau dan membesar sedikit */
.logo-item:hover { 
    color: var(--brand-green); 
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05); 
}

.logo-item i { font-size: 1.4rem; }


/* --- ABOUT SECTION --- */
/* .about-image img { border-radius: 20px; box-shadow: 0 20px 60px -15px rgba(15, 41, 30, 0.25); width: 100%; display: block; transition: transform 0.3s ease, box-shadow 0.3s ease; } */
/* .about-image img:hover { transform: translateY(-5px); box-shadow: 0 30px 70px -15px rgba(15, 41, 30, 0.35); } */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-text h2 { margin-bottom: 25px; font-size: 2.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.icon-box { background-color: var(--brand-green); min-width: 50px; height: 50px; border-radius: 12px; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.2rem; flex-shrink: 0; }
/* --- ABOUT SECTION --- */
/* --- ABOUT SECTION (Refined Offset Frame) --- */
.about-image { 
    position: relative; 
    z-index: 1; 
    /* Padding ditingkatkan agar ada ruang untuk kotak belakang bergeser */
    padding-left: 30px; 
    padding-bottom: 30px; 
    margin-top: 20px;
}

.about-image::before { 
    content: ''; 
    position: absolute; 
    z-index: -1; 
    /* Lebar dan tinggi dibuat 100% dari gambar utama */
    width: 100%; 
    height: 100%; 
    /* Offset (pergeseran) ke kiri dan bawah yang lebih tegas */
    bottom: 0; 
    left: 0; 
    /* Styling Pigura Premium */
    background: var(--light-green-bg);
    border: 2px solid #d1ebd5;
    border-radius: 30px; /* Sudut lebih melengkung */
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image:hover::before {
    /* Saat di-hover, pigura bergeser lebih jauh ke kiri bawah */
    transform: translate(-15px, 15px);
    background: #e2f0e5;
    border-color: var(--brand-green);
}

.about-image img { 
    border-radius: 24px; 
    box-shadow: 0 20px 40px rgba(15, 41, 30, 0.15); 
    width: 100%; 
    display: block; 
    position: relative; 
    z-index: 2;
    transition: transform 0.5s ease;
}

.about-image:hover img { 
    transform: translate(5px, -5px); /* Gambar utama bergeser ke kanan atas */
}

.experience-badge-ribbon {
    background: linear-gradient(to right, var(--brand-green) 0%, #153a2a 100%);
    color: #fff;
    width: 90%;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-bottom: 4px solid var(--primary-dark); /* Saya ganti hijau gelap agar kontras dengan gradient atasnya */
    
    /* ANIMASI MELAYANG LEMBUT */
    animation: floatRibbon 4s ease-in-out infinite;
}

@keyframes floatRibbon {
    0%, 100% { transform: translateY(0); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
    50% { transform: translateY(-8px); box-shadow: 0 25px 40px rgba(0,0,0,0.3); }
}

.experience-badge-ribbon i { font-size: 2.5rem; color: #F59E0B; }
.ebr-text h3 { color: #fff; font-size: 1.5rem; margin-bottom: 2px; line-height: 1; }
.ebr-text span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.experience-badge h3 { color: #ffffff !important; margin: 0; line-height: 1; font-size: 2.5rem; }
.experience-badge span { color: rgba(255,255,255,0.9); font-weight: 600; }

/* --- CHOOSE US --- */
.choose-section { padding: 40px 0 60px; background: #fff; border-bottom: 1px solid #f0f0f0; }
.choose-header-center { text-align: center; margin-bottom: 80px; }
.choose-header-center h2 { font-size: 3.2rem; color: var(--primary-dark); line-height: 1.2; letter-spacing: -0.02em; }
.choose-header-desc { color: var(--text-gray); font-size: 1.1rem; max-width: 800px; margin: 20px auto 0; }

.choose-right-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1200px; margin: 0 auto; }
.knh-pill-badge { background: var(--brand-green); border-radius: 60px; padding: 15px 30px 15px 15px; display: flex; align-items: center; gap: 25px; box-shadow: 0 15px 30px rgba(45, 174, 65, 0.15); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.knh-pill-badge:hover { transform: translateY(-8px); background: var(--brand-green-hover); box-shadow: 0 20px 40px rgba(33, 125, 15, 0.3); }

.pill-icon-wrap { flex-shrink: 0; }
.pill-icon { width: 80px; height: 80px; background: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--brand-green); font-size: 2rem; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.knh-pill-badge:hover .pill-icon { color: var(--brand-green-hover); transform: scale(1.05); }

/* THE MAGIC: FLUID STACKING HOVER EFFECT */
.pill-content { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; /* Selalu paksa konten berada di tengah vertikal */
    width: 100%;
    /* Berikan tinggi minimal yang pasti agar semua kapsul sama tingginya, tidak peduli seberapa panjang teksnya */
    min-height: 70px; 
    position: relative;
    overflow: hidden;
}

.pill-title { 
    color: #fff; 
    font-size: 1.2rem; 
    font-weight: 800; 
    letter-spacing: 0.5px; 
    line-height: 1.2;
    margin-bottom: 5px;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* KUNCI 1: Saat normal, judul sedikit turun ke tengah untuk menyeimbangkan deskripsi */
    transform: translateY(0); 
}

/* Wadah untuk menumpuk Deskripsi dan Click Hint di satu tempat yang sama */
.pill-text-stack {
    position: relative;
    width: 100%;
}

.pill-desc { 
    color: rgba(255,255,255,0.9); 
    font-size: 0.95rem; 
    margin: 0; 
    line-height: 1.4; 
    font-weight: 400; 
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    /* Deskripsi mengambil tempat normal */
    position: relative;
    transform: translateY(0);
}

.click-hint { 
    font-size: 1rem; 
    color: #fff; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    opacity: 0; 
    /* KUNCI 2: Click Hint bersembunyi persis di belakang deskripsi (Absolute Top) */
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(20px); 
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* === THE HOVER ANIMATION === */

/* 1. Judul digeser ke bawah agar menempel ke tengah kapsul */
.knh-pill-badge:hover .pill-title {
    transform: translateY(10px); 
}

/* 2. Deskripsi terlempar ke atas dan memudar */
.knh-pill-badge:hover .pill-desc { 
    opacity: 0; 
    transform: translateY(-20px); 
}

/* 3. Teks "Baca Selengkapnya" naik dari bawah menggantikan deskripsi, 
   lalu menempel sejajar di bawah judul */
.knh-pill-badge:hover .click-hint { 
    opacity: 1; 
    transform: translateY(10px); /* Samakan pergeserannya dengan judul agar jaraknya pas */
}

/* --- SERVICES --- */
.services-section { background: #f9fafb; padding: 40px 0;}
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 16px; overflow: hidden; transition: 0.3s; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column;}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(45, 174, 65, 0.15); border-color: var(--brand-green); }
.service-img { height: 280px; width: 100%; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.service-head-layout { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.service-icon { width: 50px; height: 50px; background: var(--light-green-bg); color: var(--brand-green); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; flex-shrink: 0; }
.service-head-layout h3 { font-size: 1.3rem; margin-bottom: 0; line-height: 1.3; }
.service-content p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px; }
.service-link { color: var(--brand-green); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.service-link:hover { gap: 12px; }

/* Expertise Box in Services */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.expertise-box { background: #fff; border-radius: 20px; padding: 30px; border: 1px solid #e2f0e5; box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: 0.3s; }
.expertise-box:hover { border-color: var(--brand-green); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(45, 174, 65, 0.08); }
.eb-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; }
.eb-icon { font-size: 1.8rem; color: var(--brand-green); }
.eb-header h4 { font-size: 1.15rem; color: var(--primary-dark); margin: 0; line-height: 1.3; }
.eb-list { list-style: none; padding: 0; margin: 0; }
.eb-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-gray); line-height: 1.5; }
.eb-list li i { color: var(--wa-green); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

/* --- COMPACT FACILITIES TEASER --- */
.facilities-teaser-bg { background: #fdfbfd; padding: 40px 0;}
.ft-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.ft-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: 0.4s; cursor: pointer; }
.ft-card:hover { transform: translateY(-10px); }
.ft-card-img { width: 100%; height: 100%; object-fit: cover; }
.ft-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px 20px; background: linear-gradient(to top, rgba(15,41,30,0.95) 0%, transparent 100%); color: #fff; text-align: center;}
.ft-card-title { margin: 0; font-size: 1.3rem; color: #fff; }
.ft-card-subtitle { color: var(--brand-green); font-size: 0.9rem; font-weight: 600; }
.ft-btn-wrapper { text-align: center; }
.btn-explore { padding: 16px 40px; font-size: 1.1rem; border-radius: 30px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 15px 30px rgba(45, 174, 65, 0.2); }
/* Badge Elegan Melayang di Pojok Kiri Atas Gambar */
.ft-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: 0.3s;
}
.ft-badge i { color: var(--brand-green); font-size: 0.85rem; }
.ft-card:hover .ft-badge { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

/* --- MIDDLE HERO --- */
.hero { background: linear-gradient(to right, rgba(15, 41, 30, 0.9) 0%, rgba(33, 125, 15, 0.8) 100%), url('../img/header-knh.jpg'); background-size: cover; background-position: center; color: #fff; min-height: 600px; display: flex; align-items: center; position: relative; text-align: center; }
.hero-content { display: flex; justify-content: center; align-items: center; z-index: 1; width: 100%; flex-direction: column; }
.hero-text { flex: unset; max-width: 900px; padding-bottom: 0; margin: 0 auto; }
.hero h1, .hero h2 { color: #fff; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.hero h1 {font-size: 3.5rem; }
.hero h2 {font-size: 2.5rem; }
.hero p { color: rgba(255,255,255,0.95); margin-bottom: 2.5rem; font-weight: 500; font-size: 1.2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero .sub-title { color: #B7FFB1; border-color: #BFECB9; }
.hero-title-main { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.hero-cta-wrapper { display: flex; flex-direction: column; gap: 20px; align-items: center; margin-top: 30px; }
.hero-cta-row1 { display: flex; gap: 15px; justify-content: center; }
.hero-cta-row2 { display: flex; justify-content: center; width: 100%; max-width: 500px; }
.btn-anamnesa-hero { width: 100%; background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.4); color: #fff; border-radius: 12px; font-size: 1rem; padding: 14px 20px; transition: 0.3s; display: inline-flex; justify-content: center; align-items: center; font-weight: 700; }
.btn-anamnesa-hero:hover { background: rgba(255,255,255,0.25); }
.btn-anamnesa-hero i { margin-right: 10px; }

/* --- TEAM MEDIS --- */
.team-section { background: linear-gradient(to bottom, #fcfaff 0%, #ffffff 100%); border-top: 1px solid #f0f0f0; padding: 40px 0;}
.team-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; }
.team-card-pro { background: #fff; border-radius: 24px; position: relative; box-shadow: 0 15px 40px rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; padding: 0 30px 40px; height: 100%; }
.team-card-pro:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(45, 174, 65, 0.15); border-bottom: 5px solid var(--brand-green); }
.team-img-wrap { margin-top: -60px; margin-bottom: 20px; text-align: center; position: relative; z-index: 2; }
.team-img-pro { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); border: 6px solid #fff; transition: transform 0.5s ease; background: #fff; }
.team-card-pro:hover .team-img-pro { transform: scale(1.05); }
.team-content { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; flex-grow: 1; }
.team-role-badge { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; color: var(--primary-dark); margin-bottom: 15px; background: rgba(45, 174, 65, 0.1); padding: 6px 14px; border-radius: 20px; }
.team-name { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 8px; font-weight: 800; }
.team-cert { font-size: 0.8rem; color: var(--brand-green); font-weight: 700; display: block; margin-bottom: 15px; }
.team-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.team-social { display: flex; gap: 12px; justify-content: center; width: 100%; padding-top: 20px; border-top: 1px dashed #eee;}
.team-social a { width: 35px; height: 35px; border-radius: 50%; background: #f8fafc; color: var(--text-gray); display: flex; align-items: center; justify-content: center; transition: 0.3s; font-size: 0.9rem; border: 1px solid #eee; }
.team-social a:hover { background: var(--brand-green); color: #fff; transform: translateY(-3px); border-color: var(--brand-green);}

/* --- TESTIMONIALS (Video Cards) --- */
.testimonials { background: linear-gradient(to bottom, #ffffff 0%, var(--light-green-bg) 100%); border-top: 1px solid #f0f0f0; padding: 40px 0;}
.testi-header-center { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.testi-header-center h2 { font-size: 3rem; color: var(--primary-dark); line-height: 1.2; margin-bottom: 20px;}
.trust-score-badge { display: inline-flex; align-items: center; justify-content: center; gap: 15px; background: #fff; padding: 12px 30px; border-radius: 50px; box-shadow: 0 15px 30px rgba(45, 174, 65, 0.1); border: 1px solid #d1ebd5; }
.trust-score-badge .stars { color: #F59E0B; font-size: 1.2rem; }
.trust-score-badge span { font-size: 1.05rem; color: var(--primary-dark); font-weight: 500; }
.trust-score-badge span strong { font-weight: 800; }
.testi-grid-uniform { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Efek Gradasi Hijau Gelap (Disesuaikan agar tidak terlalu tinggi) */
.tv-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Gradasi ditekan ke bawah: mulai transparan dari tengah, menggelap di dasar */
    background: linear-gradient(to top, rgba(15, 41, 30, 0.98) 0%, rgba(15, 41, 30, 0.6) 25%, transparent 50%);
    z-index: 2;
    transition: 0.5s ease;
}
.testi-video-card:hover .tv-overlay {
    /* Saat hover, gradasi naik sedikit saja, tidak menutupi gambar */
    background: linear-gradient(to top, rgba(15, 41, 30, 0.98) 0%, rgba(15, 41, 30, 0.8) 35%, rgba(15, 41, 30, 0.2) 65%);
}

/* Teks Meluncur (Sliding Text) - Dipersempit agar elegan */
.tv-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 25px 20px; /* Padding dikurangi agar tidak memakan ruang gambar */
    z-index: 4;
    transform: translateY(15px); 
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}
.testi-video-card:hover .tv-content {
    transform: translateY(0);
}

.tv-content h4 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.tv-action { display: inline-block; font-size: 0.8rem; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: var(--brand-green); padding: 8px 15px; border-radius: 30px; transition: 0.3s; opacity: 0.8; }
.testi-video-card:hover .tv-action { opacity: 1; box-shadow: 0 5px 15px rgba(45, 174, 65, 0.4); }

/* Kuis Anamnesa Pill (Glow Hover) - Global Desktop */
.anamnesa-pill { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border: 1px solid #d1ebd5; padding: 15px 25px; border-radius: 50px; display: flex; align-items: center; gap: 20px; box-shadow: 0 10px 30px rgba(15, 41, 30, 0.05); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.anamnesa-pill:hover { border-color: var(--brand-green); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(45, 174, 65, 0.15); }
.pulse-icon { font-size: 1.8rem; color: var(--brand-green); animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { transform: scale(1); } 50% { transform: scale(1.1); opacity: 0.7; } 100% { transform: scale(1); } }
.ap-text strong { display: block; font-size: 1.1rem; color: var(--primary-dark); line-height: 1.2; }
.ap-text span { font-size: 0.85rem; color: var(--text-gray); font-weight: 500;}
.btn-ap { width: 40px; height: 40px; background: var(--light-green-bg); color: var(--brand-green); border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: 0.3s; font-size: 1.1rem; border: none; cursor: pointer; }
.anamnesa-pill:hover .btn-ap { transform: translateX(5px); background: var(--brand-green); color: #fff; }

/* --- STYLING KHUSUS FORM KUIS ANAMNESA (Enterprise UI) --- */
.form-anamnesa { text-align: left; width: 100%; }
.form-group { margin-bottom: 20px; }
.form-group-last { margin-bottom: 30px; }

.form-label { 
    font-weight: 700; 
    font-size: 1rem; 
    color: var(--primary-dark); 
    display: block; 
    margin-bottom: 8px; 
}

.form-control { 
    width: 100%; 
    padding: 15px 20px; 
    border-radius: 12px; 
    border: 2px solid #e2e8f0; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 1.05rem; 
    color: var(--text-dark); 
    background: #f8fafc;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Penting agar tidak keluar dari batas modal */
}
.form-control::placeholder { color: #94a3b8; font-weight: 400; }
.form-control:focus { 
    outline: none; 
    border-color: var(--brand-green); 
    background: #fff; 
    box-shadow: 0 0 0 4px rgba(45, 174, 65, 0.15); 
}

/* Kustomisasi Dropdown (Select) */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

/* Tombol Submit Kuis (Besar & Solid) */
.btn-submit-kuis { 
    width: 100%; 
    padding: 16px; 
    font-size: 1.15rem; 
    font-weight: 800;
    border-radius: 12px; 
    background: var(--brand-green);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(45, 174, 65, 0.2);
    transition: 0.3s;
    cursor: pointer;
}
.btn-submit-kuis:hover {
    background: var(--brand-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 174, 65, 0.3);
}

/* Video Card Styling */
.testi-video-card { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; cursor: pointer; box-shadow: 0 15px 35px rgba(0,0,0,0.1); border: 2px solid transparent; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.testi-video-card:hover { transform: translateY(-15px); border-color: var(--brand-green); box-shadow: 0 25px 50px rgba(45, 174, 65, 0.25); }
.tv-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; z-index: 1; }
.testi-video-card:hover .tv-img { transform: scale(1.08); }
.tv-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(15, 41, 30, 0.95) 0%, rgba(15, 41, 30, 0.4) 50%, transparent 100%); z-index: 2; transition: 0.5s ease; }
.testi-video-card:hover .tv-overlay { background: linear-gradient(to top, rgba(15, 41, 30, 0.98) 0%, rgba(15, 41, 30, 0.7) 60%, rgba(15, 41, 30, 0.2) 100%); }
.tv-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 4; transform: translateY(15px); transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);text-align: center; }
.testi-video-card:hover .tv-content { transform: translateY(0); }
.tv-content h4 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.tv-action { display: inline-block; font-size: 0.9rem; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: var(--brand-green); padding: 8px 15px; border-radius: 30px; transition: 0.3s; opacity: 0.8; }
.testi-video-card:hover .tv-action { opacity: 1; box-shadow: 0 5px 15px rgba(45, 174, 65, 0.4); }
.tv-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(5px); border: 2px solid rgba(255,255,255,0.7); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 1.8rem; z-index: 5; animation: sonarPulseCard 2s infinite; transition: 0.3s; }
.tv-play-btn i { margin-left: 5px; }
.testi-video-card:hover .tv-play-btn { background: var(--brand-green); border-color: var(--brand-green); transform: translate(-50%, -50%) scale(1.15); animation: none; }
@keyframes sonarPulseCard { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); } 70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
.card-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 5px; }

/* --- USER JOURNEY --- */
.journey-section { background: var(--bg-light); border-top: 1px solid #f0f0f0; padding: 40px 0;}
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; position: relative; margin-top: 50px;}
.journey-line { position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: #e2f0e5; z-index: 1; }
.journey-item { position: relative; z-index: 2; padding: 0 10px;}
.journey-number { width: 80px; height: 80px; background: var(--brand-green); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(45,174,65,0.3); border: 8px solid #fff; }
.journey-title { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary-dark); }

/* --- FAQ SECTION --- */
.faq-section { background: #fdfbfd; padding: 40px 0; border-top: 1px solid #f0f0f0; }
.faq-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.faq-header-box { position: sticky; top: 120px; }
.faq-header-box h2 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; color: var(--primary-dark); }
.faq-header-box p { color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }
.faq-contact-card { background: #fff; padding: 25px; border-radius: 16px; border: 1px solid #eee; box-shadow: 0 15px 35px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 20px; }
.faq-contact-icon { width: 50px; height: 50px; background: var(--light-green-bg); color: var(--brand-green); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; flex-shrink: 0; }
.faq-contact-text h5 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 5px; }
.faq-contact-text a { color: var(--brand-green); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 5px; }
.faq-contact-text a:hover { color: var(--brand-green-hover); gap: 8px; }
.faq-list-wrapper { display: flex; flex-direction: column; gap: 15px; }
.faq-item-modern { background: #fff; border-radius: 16px; border: 1px solid #eee; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.faq-item-modern:hover { border-color: #d1ebd5; box-shadow: 0 10px 25px rgba(45, 174, 65, 0.08); }
.faq-btn { width: 100%; text-align: left; padding: 25px 30px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }
.faq-btn:focus-visible { outline: 3px solid var(--brand-green); border-radius: 16px;}
.faq-btn-text { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); transition: color 0.3s; padding-right: 20px; line-height: 1.4; }
.faq-icon-toggle { width: 35px; height: 35px; border-radius: 50%; background: #f8fafc; color: var(--text-gray); display: flex; justify-content: center; align-items: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); flex-shrink: 0; }
.faq-answer-modern { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, opacity 0.5s ease; opacity: 0; }
.faq-answer-inner { padding: 0 30px 25px 30px; color: var(--text-gray); font-size: 1rem; line-height: 1.7; border-top: 1px dashed transparent; transition: border-color 0.3s; }
.faq-item-modern.active { border-color: var(--brand-green); background: #fff; box-shadow: 0 15px 35px rgba(45, 174, 65, 0.1); }
.faq-item-modern.active .faq-btn-text { color: var(--primary-dark); }
.faq-item-modern.active .faq-icon-toggle { background: var(--brand-green); color: #fff; transform: rotate(180deg); }
.faq-item-modern.active .faq-answer-modern { max-height: 500px; opacity: 1; }
.faq-item-modern.active .faq-answer-inner { border-color: #eee; margin-top: 5px; padding-top: 20px;}

/* --- MAP SECTION --- */
.map-section { position: relative; height: 600px; width: 100%; margin-top: 0; padding: 0 !important; overflow: hidden; border-top: 8px solid var(--brand-green); }
.map-frame { width: 100%; height: 100%; border: none; filter: grayscale(15%) contrast(110%); }
.map-overlay-card { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 40px 35px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); width: 100%; max-width: 380px; z-index: 10; border: 1px solid rgba(255,255,255,0.8); display: flex; flex-direction: column; gap: 20px; }
.map-overlay-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(to right, var(--brand-green), var(--brand-green-hover)); border-radius: 24px 24px 0 0; }
.map-header h4 { font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 5px; }
.map-info-list { display: flex; flex-direction: column; gap: 15px; }
.map-info-item { display: flex; gap: 15px; align-items: flex-start; }
.map-info-icon { width: 40px; height: 40px; background: var(--light-green-bg); color: var(--brand-green); border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 1.1rem; flex-shrink: 0; }
.map-info-text h5 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 3px; }
.map-info-text p { font-size: 0.9rem; color: var(--text-gray); margin: 0; line-height: 1.4; }
.map-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.btn-direction { display: flex; justify-content: center; align-items: center; gap: 10px; background: var(--brand-green); color: #fff; padding: 14px 20px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; transition: 0.3s; }
.btn-direction:hover { background: var(--brand-green-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(45, 174, 65, 0.2); color: #fff;}
.btn-wa-outline { display: flex; justify-content: center; align-items: center; gap: 10px; background: transparent; color: var(--wa-green); border: 2px solid var(--wa-green); padding: 12px 20px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; transition: 0.3s; }
.btn-wa-outline:hover { background: var(--wa-green); color: #fff; }

/* =========================================================
   5. FOOTER & FLOATING ELEMENTS
========================================================= */
footer { background-color: var(--primary-dark); color: #fff; padding: 0; position: relative; overflow: hidden; border-top: 5px solid var(--brand-green); }
.footer-content-wrap { padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 30px; }
.footer-brand .logo { background: rgba(255,255,255,0.05); padding: 10px; border-radius: 8px; display: inline-flex; }
.footer-brand .logo img { height: 50px; width: auto; }
.footer-brand .logo-text .brand-name { color: #fff; }
.footer-brand .logo-text .brand-tagline { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 25px 0; max-width: 90%; font-size: 1rem; line-height: 1.6; }
.footer-socials a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255,255,255,0.08); color: #fff; border-radius: 8px; margin-right: 12px; transition: 0.3s; }
.footer-socials a:hover { background: var(--brand-green); transform: translateY(-3px); }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 14px; position: relative; padding-left: 20px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 500; }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }
.footer-col ul li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--brand-green); position: absolute; left: 0; top: 3px; font-size: 0.8rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; padding-left: 0 !important; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.contact-list li::before { content: none !important; }
.contact-list li i { color: var(--brand-green); margin-top: 5px; width: 15px; }
.footer-bottom { padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; font-size: 0.9rem; color: rgba(255,255,255,0.4); text-align: center; }

/* Footer Brand Layout */
.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Author Credit Heart */
.author-heart {
    color: #ef4444;
}

/* VR Modal Iframe Map */
.vr-iframe-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* =========================================
   FEATURE & MITRA MODAL UI (POP-UP)
========================================= */
.fm-header-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.fm-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-green-bg);
    color: var(--brand-green);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.fm-title-text {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.fm-image-wrap {
    display: none; /* Default hidden as per logic */
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.fm-image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fm-desc-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
    padding-bottom: 20px;
}

.fm-scroll-icon {
    display: block;
    margin-top: 5px;
}

/* Standarisasi Tombol Aksi & WA di Dalam Modal Mitra */
.fm-action-btn,
.fm-wa-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
}

.fm-wa-btn {
    background: #25D366;
    color: #ffffff;
    border: none;
    transition: 0.3s ease;
}

.fm-wa-btn:hover {
    background: #1ebd5a;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* MEMASTIKAN TEKS "TUTUP JENDELA INI" MENGHILANG (Failsafe CSS) */
.modal-body-custom a[onclick*="tutupFitur"],
.modal-body-custom a[onclick*="close"] {
    display: none !important;
}
/* Desain Mewah Kredit Pembuat Website */
.author-credit { 
    display: inline-block; 
    margin-top: 10px; 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.5); /* Teks dasar pudar */
    letter-spacing: 0.5px;
}
.author-credit i { 
    color: #F87171; /* Warna merah hati */
    font-size: 0.8rem;
    margin: 0 3px;
    animation: heartbeat 2s infinite; /* Efek detak jantung */
}
.author-credit a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 700; 
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.3);
    transition: 0.3s; 
}
.author-credit a:hover { 
    color: var(--brand-green); /* Menyala jadi hijau KNH saat disorot */
    border-bottom-color: var(--brand-green);
    text-shadow: 0 0 10px rgba(45, 174, 65, 0.5);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* =========================================================
   PREMIUM LANGUAGE TOGGLE (Pill Slider)
========================================================= */
.lang-switch-wrapper {
    margin-left: 15px;
    padding-left: 20px;
    border-left: 1px solid rgba(15, 41, 30, 0.1); /* Garis pemisah samar */
    display: flex;
    align-items: center;
}

.lang-toggle-pill {
    background: #f1f5f9; /* Abu-abu sangat muda */
    border-radius: 30px;
    display: flex;
    position: relative;
    padding: 4px;
    width: 90px; /* Lebar total kapsul */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Latar belakang hijau yang bisa bergeser (Sliding Indicator) */
.lang-active-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 41px; /* Lebar satu tombol */
    height: calc(100% - 8px);
    background: var(--brand-green);
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(45, 174, 65, 0.2);
    z-index: 1;
}

/* Posisi saat English aktif (Bergeser ke kanan) */
.lang-active-bg.is-en {
    transform: translateX(41px);
}

/* Teks Tombol Bahasa */
.lang-btn {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-gray); /* Warna teks saat tidak aktif */
    z-index: 2;
    position: relative;
    padding: 6px 0;
    transition: color 0.4s ease;
}

/* Warna teks berubah putih saat aktif (karena di bawahnya ada background hijau) */
.lang-btn.active {
    color: #fff !important; 
}

/* Helper Margins */
.mb-20 { margin-bottom: 20px; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-50 { margin-top: 50px; }

/* About Section */
.about-image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 41, 30, 0.15);
    width: 100%;
}

/* Middle Hero CTA */
.hero-btn-container-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

/* Map Iframe */
.map-frame {
    border: 0;
}

/* =========================================
   PEMBERSIHAN INLINE CSS: ANAMNESA MODAL
========================================= */
.anamnesa-header-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.anamnesa-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-green-bg);
    color: var(--brand-green);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.anamnesa-title {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.3;
}

.anamnesa-badge {
    font-size: 0.9rem;
    color: var(--brand-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.anamnesa-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.6;
}

/* =========================================
   PEMBERSIHAN INLINE CSS: MODAL IG VIDEO
========================================= */
.ig-modal-overlay {
    background: transparent;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ig-modal-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ig-close-btn {
    position: absolute;
    top: -50px;
    right: -10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.ig-iframe-wrapper {
    width: 100%;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.ig-iframe-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.ig-iframe {
    display: block;
    width: 100%;
}

/* --- Responsif untuk HP --- */
@media (max-width: 968px) {
    .lang-switch-wrapper {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 15px;
        justify-content: center; /* Pindahkan ke tengah di menu HP */
    }
    .lang-toggle-pill {
        width: 120px; /* Sedikit diperbesar di HP agar mudah di-tap */
        padding: 5px;
    }
    .lang-active-bg {
        width: 55px;
        height: calc(100% - 10px);
    }
    .lang-active-bg.is-en {
        transform: translateX(55px);
    }
    .lang-btn {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}
.choose-header-center, .section-header { margin-bottom: 40px; }
section {padding: 20px 0;}
/* Floating Buttons */
.floating-container { position: fixed; bottom: 30px; right: 30px; z-index: 2000; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.btn-top { width: 45px; height: 45px; background: #fff; color: var(--brand-green); border-radius: 50%; box-shadow: 0 5px 20px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; font-size: 1.2rem; border: 2px solid var(--brand-green); }
.btn-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-top:hover { background: var(--brand-green); color: #fff; }
.wa-wrapper { position: relative; display: flex; align-items: center; }
.btn-wa { width: 60px; height: 60px; background: var(--wa-green); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); animation: pulse-green 2s infinite; cursor: pointer; text-decoration: none; position: relative; z-index: 2; }
.wa-tooltip { background: #fff; padding: 8px 15px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-right: 15px; opacity: 0; transform: translateX(10px); transition: 0.3s; pointer-events: none; }
.wa-wrapper:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes pulse-green { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Mobile Sticky Bar */
.mobile-sticky-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; display: none; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 2000; padding: 12px 15px; gap: 10px; }
.sticky-btn { flex: 1; display: flex; justify-content: center; align-items: center; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; gap: 8px; }
.sticky-btn.call { background: #f1f5f9; color: var(--text-dark); }
.sticky-btn.wa { background: #25D366; color: white; }

/* =========================================================
   BOTTOM CTA (GLOBAL DIRECTORY CTA)
========================================================= */
.directory-cta { 
    background: linear-gradient(135deg, #059D2B 0%, #2c6a1f 100%); 
    padding: 100px 0; 
    text-align: center; 
    color: #fff; 
    position: relative; 
    overflow: hidden; 
}

.directory-cta::before { 
    content: ''; position: absolute; width: 400px; height: 400px; 
    background: radial-gradient(circle, rgba(45, 174, 65, 0.2) 0%, transparent 70%); 
    border-radius: 50%; top: -200px; left: -100px; 
}
.directory-cta::after { 
    content: ''; position: absolute; width: 300px; height: 300px; 
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%); 
    border-radius: 50%; bottom: -150px; right: -50px; 
}

.cta-content-inner { position: relative; z-index: 2; }

.directory-cta h2 { font-size: 2.8rem; margin-bottom: 20px; color: #ffffff; }
.directory-cta p { color: rgba(255,255,255,0.85); margin-bottom: 40px; font-size: 1.15rem; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; }

.btn-white { 
    background: #ffffff; 
    color: var(--primary-dark) !important; 
    padding: 16px 35px; 
    border-radius: 30px; 
    font-weight: 800; 
    font-size: 1.05rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    transition: 0.3s; 
    border: 2px solid #ffffff; 
}
.btn-white:hover { 
    background: transparent; 
    color: #ffffff !important; 
    transform: translateY(-5px); 
}

/* ====================================================================
   6. MEDIA QUERIES (RESPONSIVE RULES) - WAJIB DI BAWAH!
==================================================================== */

@media (max-width: 1024px) {
	.container { padding: 0 30px; }
	.hero h1 { font-size: 3.5rem; }
    .choose-right-badges { gap: 20px; }
    .knh-pill-badge { padding: 12px 25px 12px 12px; gap: 15px; }
    .pill-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .pill-title { font-size: 1.15rem; }
    .pill-desc { font-size: 0.9rem; }
	.team-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .testi-grid-uniform { gap: 20px; }
    .testi-card-uniform { padding: 30px; }
    .assessment-header-modern { flex-direction: column; align-items: flex-start; gap: 30px; }
}

@media (max-width: 968px) {
	.container { padding: 0 15px;}
	.hamburger { display: block; }
	.desktop-only { display: none; }
	
    /* Perbaikan Menu Mobile */
	.nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; align-items: stretch; padding: 20px; gap: 20px; border-bottom: 1px solid #f0f0f0; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-150%); opacity: 0; transition: 0.4s; z-index: -1; margin-right: 0; }
	.nav-links.active { transform: translateY(0); opacity: 1; z-index: 99; }
	.mobile-only-btn { display: inline-block; text-align: center; margin-top: 15px; }
	.dropdown { width: 100%; text-align: left; }
	.dropdown > a { justify-content: space-between; }
    /* Perbaikan Dropdown Menu di HP agar terlihat seperti sub-menu */
    .dropdown-menu { display: none; position: static; width: 100%; padding: 10px; box-shadow: none; border: none; background: var(--light-green-bg); border-radius: 12px; margin-top: 10px; }
    .dropdown-menu.show { display: block; } 
	.dropdown-menu::before { display: none; }
    .dropdown-menu li a { font-size: 0.85rem; padding: 8px 15px; }

	.hero h1 { font-size: 2.5rem; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.about-grid, .services-grid { grid-template-columns: 1fr; gap: 50px; }
	.about-image { order: -1; margin-bottom: 30px; margin-left: 0; }
    .experience-badge { padding: 15px 20px; right: -10px; bottom: -15px; border-radius: 12px; transform: none; }
    .experience-badge h3 { font-size: 1.8rem; }
    .experience-badge span { font-size: 0.75rem; letter-spacing: 0.5px; line-height: 1.2; display: block; }

    .choose-header-center h2 { font-size: 2.8rem; }
    .expertise-grid { grid-template-columns: 1fr; gap: 20px; }	

    .assessment-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testi-grid-uniform { grid-template-columns: 1fr; gap: 30px; max-width: 600px; margin: 0 auto; }	
	.journey-grid { grid-template-columns: 1fr; gap: 50px; }
	.journey-line { display: none; }
}

@media (max-width: 768px) {
	.video-header-wrapper { height: 50vh; min-height: 550px; } 
	.video-content-container { padding-bottom: 30px; }
	.cinematic-title { font-size: 2.5rem; white-space: normal; line-height: 1.2; }
	.cinematic-title strong { display: block; margin-left: 0; margin-top: 5px; }
	.cinematic-desc { font-size: 1rem; padding: 0 10px; }
	.trust-badges { flex-direction: column; gap: 10px; }
	.video-scroll-indicator { display: none; }
    .directory-cta { padding: 80px 0; }
    .directory-cta h2 { font-size: 2.2rem; }
    .directory-cta p { font-size: 1.05rem; padding: 0 15px; }

    /* ---------------------------------------------------
       SLIDER HORIZONTAL SAKTI UNTUK SEMUA GRID DI HP
    --------------------------------------------------- */
    .swipeable-row-mobile {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding-bottom: 30px !important; 
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    .swipeable-row-mobile::-webkit-scrollbar { display: none; }
    
    .swipeable-row-mobile > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        scroll-snap-align: center !important;
        margin-bottom: 0 !important; 
    }

    /* Logo Strip Grid di HP */
    /* .logo-container {  */
        /* display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; opacity: 1; filter: none; */
    /* } */
    /* .logo-item {  */
        /* background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 15px; width: 100%;  */
        /* display: flex; justify-content: flex-start; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 700; box-shadow: 0 4px 10px rgba(0,0,0,0.02); color: var(--primary-dark);  */
    /* } */
    /* .logo-item i { width: 25px; text-align: center; font-size: 1.1rem; color: var(--brand-green); flex-shrink: 0; } */
    /* .logo-item:active { background: var(--light-green-bg); border-color: var(--brand-green); transform: scale(0.96); } */

    .choose-header-center h2 { font-size: 2rem; }
    .choose-right-badges { grid-template-columns: 1fr; gap: 15px;}
    .knh-pill-badge { 
        flex-direction: row; 
        text-align: left; 
        border-radius: 40px; 
        padding: 10px 20px 10px 10px; 
        gap: 15px; 
        align-items: center; /* Ikon tetap di tengah vertikal */
    }
    .pill-icon { width: 55px; height: 55px; font-size: 1.4rem; margin: 0; flex-shrink: 0;}
    .pill-title { font-size: 1.1rem; margin-bottom: 2px; }
    .pill-desc { font-size: 0.85rem; line-height: 1.4; }
    .click-hint { font-size: 0.9rem; }

    .pill-icon { width: 60px; height: 60px; font-size: 1.5rem; margin: 0; }
    .pill-title { font-size: 1.1rem; margin-bottom: 3px; }
    .pill-desc { font-size: 0.85rem; line-height: 1.4; }

    .assessment-header-modern { align-items: center; text-align: center; padding-bottom: 30px; }
    .ahm-text h2 { font-size: 2rem; }
    .ahm-text { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    
    .anamnesa-pill { flex-direction: row; justify-content: space-between; border-radius: 50px; width: 100%; max-width: 400px; margin: 0 auto; background: #fff; border: 2px solid var(--brand-green); box-shadow: 0 10px 20px rgba(45, 174, 65, 0.15); padding: 10px 15px; }
    .ap-text { text-align: left; flex-grow: 1; margin-left: 5px; }
    .ap-text strong { font-size: 1rem; }
    .ap-text span { font-size: 0.75rem; }
    .pulse-icon { margin-right: 5px; font-size: 1.5rem; }
    .btn-ap { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: var(--brand-green); color: #fff; }

    .assessment-grid-modern { grid-template-columns: 1fr; gap: 15px; }
    .agm-item { padding: 15px; border-radius: 16px; display: flex; flex-direction: row; align-items: flex-start; gap: 15px; }
    .agm-head { display: contents; }
    .agm-icon { width: 50px; height: 50px; font-size: 1.4rem; margin-bottom: 0; border-radius: 12px; background: var(--brand-green); color: #fff; flex-shrink: 0;}
    .agm-item::after { display: none; } 
    .agm-item h4 { font-size: 1.1rem; margin-bottom: 5px; width: calc(100% - 65px);}
    .agm-item p { font-size: 0.9rem; line-height: 1.5; margin: 0; width: calc(100% - 65px); margin-left: 65px; margin-top: -15px;}

    .testi-header-center h2 { font-size: 2rem; }
    .directory-cta h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2rem; }
    .trust-score-badge { flex-direction: column; gap: 5px; padding: 15px 20px; text-align: center; }

    .modal-body-custom { padding: 30px 20px; width: 95%; max-height: 85vh; margin: 7.5vh auto; }
    #fm-image-container { height: 160px !important; }
	
	.map-section { height: auto; display: flex; flex-direction: column; }
	.map-frame { height: 400px; order: 1; }
	.map-overlay-card { position: relative; top: auto; left: auto; transform: none; order: 2; margin: -50px auto 50px; width: 90%; max-width: 450px; z-index: 10;}
    
    .slider-controls-mobile { display: block; width: 100%; margin-bottom: 20px; }
    .slider-header-wrap { display: flex; justify-content: space-between; align-items: flex-end; }
    .swipe-indicator { font-size: 0.85rem; color: var(--brand-green); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; animation: swipePulse 2s infinite; }
    @keyframes swipePulse { 0%, 100% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(5px); opacity: 0.5; } }
    .slider-btn-group { display: flex; gap: 10px; }
    .btn-slide { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--brand-green); color: var(--brand-green); display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 4px 10px rgba(45, 174, 65, 0.1); transition: 0.3s; }
    .btn-slide:hover, .btn-slide:active { background: var(--brand-green); color: #fff; }

    .experience-badge-ribbon { width: 95%; padding: 15px 20px; gap: 15px; }
    .experience-badge-ribbon i { font-size: 2rem; }
    .ebr-text h3 { font-size: 1.2rem; }
    .ebr-text span { font-size: 0.75rem; line-height: 1.3; display: block; }
    /* =========================================================
       HORIZONTAL SLIDER (100% LEBAR LAYAR)
    ========================================================= */
    .swipeable-row-mobile,
    .mobile-scroll-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        gap: 20px !important;
        
        /* Memaksa slider menyentuh ujung layar HP (Edge-to-Edge) */
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-left: 15px !important; 
        padding-right: 15px !important; 
        padding-bottom: 20px !important;
        
/* Efek Magnet */
        scroll-snap-type: x mandatory !important; 
        
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }

    .swipeable-row-mobile::-webkit-scrollbar,
    .mobile-scroll-container::-webkit-scrollbar { 
        display: none; 
    }
    
    .swipeable-row-mobile > div,
    .mobile-scroll-container > div {
        flex: 0 0 100% !important; /* Kartu memakan 100% layar (Pilihan Anda) */
        max-width: 100% !important;
        
        /* KUNCI PRESISI: Mengunci posisi kartu PASTI di tengah layar */
        scroll-snap-align: center !important; 
        margin-bottom: 0 !important;
    }
        /* Tampilkan teks aksi video selalu di HP (Karena tidak ada hover di HP) */
    .tv-content { transform: translateY(0); }
    .tv-action { opacity: 1; }

} 

/* =========================================================
   MEDIA QUERY UNTUK HP KECIL (MAX 576PX)
========================================================= */
@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item h3 { font-size: 2rem; }
    .stat-item p { font-size: 0.9rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; text-align: left; }
    .footer-brand { grid-column: span 2; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
    .footer-col { text-align: left; }
    .footer-col ul li { padding-left: 20px; }
    .footer-col ul li::before { display: block; }
    .contact-list li { flex-direction: row; align-items: flex-start; gap: 15px; justify-content: flex-start;}

    .mobile-sticky-bar { display: flex; }
    .floating-container { display: none; }
    footer { padding-bottom: 90px; }
    .brand-tagline { display: none; }
    
    /* .logo-container {  */
        /* display: grid; */
        /* grid-template-columns: repeat(2, 1fr); /* Paksa jadi 2 kolom */ */
        /* gap: 10px;  */
    /* } */
    
    /* .logo-item {  */
        /* padding: 12px 10px;  */
        /* font-size: 0.75rem; /* Teks dikecilkan */ */
        /* flex-direction: column; /* Ikon di atas, teks di bawah */ */
        /* text-align: center; */
        /* justify-content: center; */
        /* gap: 8px; */
        /* border-radius: 12px; */
    /* } */
    
    /* .logo-item i { */
        /* font-size: 1.5rem; /* Ikon sedikit dibesarkan agar proporsional */ */
        /* margin: 0 auto; */
    /* } */
}