/* ==========================================================================
   PREMIUM CORPORATE CSS - TEMA BIRU & ABU-ABU MEWAH (FIX BENDERA WINDOWS)
   ========================================================================== */

/* --- Variabel Utama --- */
:root {
    --navy-dark: #0A192F;       
    --navy-blue: #112240;       
    --royal-blue: #1A56DB;      
    --blue-glow: rgba(26, 86, 219, 0.4);
    --blue-light: #E0E7FF;
    
    --silver-light: #F8FAFC;    
    --silver-base: #E2E8F0;     
    --gray-text: #64748B;       
    --gray-dark: #1E293B; 
    
    --white: #FFFFFF;
    --black: #000000;
    --bg-light: #F8FAFC;
    
    --font-main: 'Inter', sans-serif;
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(26, 86, 219, 0.15);
    --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* --- Reset & Pengaturan Dasar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    /* Gembok anti geser kanan-kiri */
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--gray-text);
    line-height: 1.7;
    /* Gembok anti geser kanan-kiri */
    overflow-x: hidden !important;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* LAYOUT WINDOWS PRESISI 1350px */
.container {
    width: 95%;
    max-width: 1350px; 
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    font-size: 0.8rem;
    color: var(--gray-text);
    display: block;
}

/* --- PENGATUR JARAK SCROLL --- */
#hero, #stats, #profile, #program, #legalitas, #struktur, #mitra, #lokasi {
    scroll-margin-top: 90px;
}

/* --- INDIKATOR MENU NAVIGASI AKTIF --- */
.nav-item.active-nav {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.navbar.scrolled .nav-item.active-nav {
    background: rgba(0, 0, 0, 0.05);
    color: var(--royal-blue);
}

/* --- SISTEM ROUTING SINGLE PAGE APPLICATION (SPA) --- */
.page-section {
    display: none; 
    opacity: 0;
    animation: none;
}

.page-section.active-page {
    display: block; 
    animation: fadeInPage 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MULTI-LANGUAGE SYSTEM --- */
[data-lang="en"], [data-lang="jp"] { display: none; }

body.lang-en [data-lang="id"] { display: none !important; }
body.lang-en [data-lang="jp"] { display: none !important; }
body.lang-en [data-lang="en"] { display: block; }
body.lang-en span[data-lang="en"], 
body.lang-en a[data-lang="en"], 
body.lang-en strong[data-lang="en"], 
body.lang-en label[data-lang="en"] { display: inline; }
body.lang-en li[data-lang="en"] { display: list-item; }

body.lang-jp [data-lang="id"] { display: none !important; }
body.lang-jp [data-lang="en"] { display: none !important; }
body.lang-jp [data-lang="jp"] { display: block; }
body.lang-jp span[data-lang="jp"], 
body.lang-jp a[data-lang="jp"], 
body.lang-jp strong[data-lang="jp"], 
body.lang-jp label[data-lang="jp"] { display: inline; }
body.lang-jp li[data-lang="jp"] { display: list-item; }

/* ==========================================================================
   DESAIN DROPDOWN BAHASA
   ========================================================================== */
.dropdown-lang {
    position: relative;
    display: inline-block;
    margin-left: 5px; 
}

.lang-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    /* TOMBOL BIRU TERANG */
    background: var(--royal-blue) !important; 
    color: var(--white) !important;
    padding: 6px 12px; 
    border-radius: 6px; 
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem; 
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
}

.lang-btn:hover {
    background: var(--navy-blue) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.5);
}

.navbar.scrolled .lang-btn {
    background: var(--silver-base) !important;
    color: var(--navy-dark) !important;
    box-shadow: none;
}

.navbar.scrolled .lang-btn:hover {
    background: var(--silver-light) !important;
}

/* 🔥 TRIK SAKTI WINDOWS: GANTI TEKS 'ID' JADI GAMBAR BENDERA ASLI 🔥 */
#current-lang-icon {
    display: inline-block;
    width: 22px; /* Lebar bendera pas */
    height: 15px; /* Tinggi bendera pas */
    color: transparent !important; /* Membuat huruf ID bawaan Windows MENGHILANG */
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
    /* Bendera Indonesia (Default) */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/9f/Flag_of_Indonesia.svg');
}

/* Saat Body Punya Class Bahasa Inggris (EN) */
body.lang-en #current-lang-icon {
    background-image: url('https://upload.wikimedia.org/wikipedia/en/a/ae/Flag_of_the_United_Kingdom.svg');
}

/* Saat Body Punya Class Bahasa Jepang (JP) */
body.lang-jp #current-lang-icon {
    background-image: url('https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg');
}

.arrow-lang {
    font-size: 0.5rem;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.dropdown-content-lang {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    top: 130%;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid var(--silver-base);
}

.dropdown-content-lang a {
    color: var(--navy-dark) !important;
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--silver-light);
}

.dropdown-content-lang a:last-child {
    border-bottom: none;
}

.dropdown-content-lang a:hover {
    background-color: var(--blue-light);
    color: var(--royal-blue) !important;
    padding-left: 20px;
}

.show-lang {
    display: block !important;
    animation: fadeInLang 0.3s ease forwards;
}

.rotate-arrow {
    transform: rotate(180deg);
}

@keyframes fadeInLang {
    from { 
        opacity: 0; 
        transform: translateY(5px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* --- PRELOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; 
    background-color: var(--navy-dark);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    width: 90%;
}

.preloader-logo {
    width: 100%;
    max-width: 500px; 
    max-height: 250px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    display: block;
    animation: pulseLogo 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.loader-line {
    width: 150px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.loader-line::before {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--royal-blue);
    border-radius: 5px;
    animation: loadingBar 1.5s infinite linear;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes loadingBar {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* --- CAPTCHA GATE --- */
.entry-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999998;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.entry-verification-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.captcha-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: translateY(0);
    animation: slideUpVerif 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpVerif {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.captcha-container {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.captcha-container:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.captcha-checkbox {
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    margin-right: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.captcha-checkbox.loading {
    border-radius: 50%;
    border-color: transparent;
    border-top-color: var(--royal-blue);
    animation: spinCaptcha 1s linear infinite;
}

.captcha-checkbox.checked {
    border-color: #009E55;
    background-color: transparent;
}

.captcha-checkbox.checked::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid #009E55;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin-top: -2px;
    display: block;
}

.captcha-text {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    flex-grow: 1;
    text-align: left;
}

@keyframes spinCaptcha {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--royal-blue);
    z-index: 99998;
    transition: width 0.1s linear;
}

/* ==========================================================================
   ANIMASI REVEAL - BOLAK BALIK (MEWAH)
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right { 
    opacity: 0; 
    filter: blur(8px);
    will-change: transform, opacity, filter; 
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1); 
}

.reveal-up { transform: translateY(50px) scale(0.95); }
.reveal-left { transform: translateX(-50px) scale(0.95); }
.reveal-right { transform: translateX(50px) scale(0.95); }

/* Class 'active' akan dipasang & dicabut berulang kali oleh JavaScript */
.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active { 
    opacity: 1; 
    filter: blur(0px);
    transform: translate(0) scale(1); 
}

.delay-100 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.3s; }
.delay-300 { transition-delay: 0.45s; }

/* ==========================================================================
   TYPOGRAFI & KONTRAST TEKS 
   ========================================================================== */
.text-gradient {
    background: linear-gradient(to right, var(--royal-blue), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--royal-blue);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    max-width: 750px;
    color: var(--gray-dark); 
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8); 
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1.5rem; }

/* --- Tombol --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--royal-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--navy-blue);
    transform: translateY(-4px) scale(1.02);
}

.btn-glow:hover {
    box-shadow: 0 10px 25px var(--blue-glow);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--navy-dark);
    transform: translateY(-4px) scale(1.02);
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.875rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   NAVIGASI (LAYOUT WINDOWS)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-right: 20px; 
}

.nav-logo-img {
    max-height: 55px; 
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    background: transparent !important;
}

.logo-text {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem); 
    font-weight: 800;
    color: var(--white);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.navbar.scrolled .logo-text {
    color: var(--navy-dark);
}

.logo-highlight {
    color: var(--royal-blue);
}

.nav-links {
    display: flex;
    gap: 0.3rem; 
    align-items: center;
}

.nav-item {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem; 
    padding: 8px 12px; 
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.navbar.scrolled .nav-item {
    color: var(--navy-dark);
}

.navbar.scrolled .nav-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--navy-dark);
}

.btn-nav {
    background-color: var(--white);
    color: var(--navy-dark) !important;
    padding: 8px 20px; 
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem; 
    margin-left: 0.5rem; 
    transition: var(--transition-fast);
    white-space: nowrap;
    cursor: pointer;
}

.btn-nav:hover {
    background-color: var(--royal-blue);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar.scrolled .btn-nav {
    background-color: var(--navy-dark);
    color: var(--white) !important;
}

.navbar.scrolled .btn-nav:hover {
    background-color: var(--royal-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-fast);
    border-radius: 3px;
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--navy-dark);
}

/* ==========================================================================
   HERO SECTION (PERBAIKAN KECILIN TEKS & GESER KANAN DIKIT)
   ========================================================================== */
.hero-section {
    position: relative;
    /* Hero mutlak nutupin layar laptop lu tanpa sisa bocor */
    min-height: 100vh;
    min-height: 100dvh; 
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 100px;
    overflow: hidden;
    transition: padding 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.7) 45%, rgba(10, 25, 47, 0.2) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text-box {
    max-width: 100%;
    /* INI KUNCI GESER KANAN DIKIT BIAR RAPI SAMA LOGO ATASNYA */
    padding-left: 2.5rem; 
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    /* INI KUNCI KECILIN DIKIT TEKSNYA DARI 3.8rem JADI 3.2rem */
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
    /* Disesuaikan lebar maxnya biar imbang sama judul yang dikecilin */
    max-width: 85%; 
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 300px;
}

.floating-hero-img {
    width: 100%;
    max-width: 450px;
    max-height: 60vh;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4));
    animation: floatImage 6s ease-in-out infinite;
    object-fit: cover;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: var(--transition-fast);
}

.scroll-down-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   STATISTIK 
   ========================================================================== */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: 0; /* GAK ADA LAGI MARGIN NEGATIF YANG BIKIN PUTIH BOCOR DI HERO */
    padding-top: 4rem; 
    padding-bottom: 4rem;
    background-color: var(--white);
    background-image: radial-gradient(var(--silver-base) 1px, transparent 1px);
    background-size: 25px 25px;
    transition: margin 0.5s ease;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.65); /* Blur Natural Mewah */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-color);
    padding: clamp(1.5rem, 3vw, 3rem) 2rem;
    transition: var(--transition-fast);
}

.stat-box {
    text-align: center;
    position: relative;
    padding: 1rem;
    transition: var(--transition-fast);
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--silver-base);
}

.stat-icon-wrapper {
    width: 55px;
    height: 55px;
    margin: 0 auto 1rem;
    background-color: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.stat-box:hover .stat-icon-wrapper {
    background-color: var(--royal-blue);
}

.stat-icon {
    width: 24px;
    height: 24px;
    color: var(--royal-blue);
    transition: var(--transition-fast);
}

.stat-box:hover .stat-icon {
    color: var(--white);
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--navy-dark);
}

.stat-number {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0;
    font-weight: 800;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
}

.stat-label {
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   PROFILE SECTION
   ========================================================================== */
.profile-section {
    padding: 6rem 0 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.65) 0%, rgba(226, 232, 240, 0.65) 100%); 
    transition: padding 0.5s ease;
}

.bg-shape, .shape-1, .shape-2 {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--blue-light);
    top: -100px;
    right: -100px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-frame {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.image-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-color: var(--royal-blue);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition-fast);
}

.image-frame:hover::before {
    transform: translate(10px, 10px);
}

.profile-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5; 
    background-color: var(--silver-base); 
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition-slow);
}

.experience-badge {
    position: absolute;
    bottom: 4rem;
    left: -2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    z-index: 3;
    transition: var(--transition-fast);
}

.experience-badge:hover {
    transform: scale(1.05);
}

.exp-years {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--royal-blue);
    line-height: 1;
}

.exp-text {
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
    font-size: 0.9rem;
}

.luxury-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.vm-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.55); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.glass-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translateX(10px);
    border-color: var(--blue-light);
}

.card-icon {
    background-color: var(--royal-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.glass-card:hover .card-icon {
    background-color: var(--navy-dark);
    transform: rotate(5deg) scale(1.1);
}

.glass-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mission-list {
    padding-left: 1rem;
}

.mission-list li {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mission-list li::before {
    content: '•';
    color: var(--royal-blue);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* ==========================================================================
   PROGRAM SECTION
   ========================================================================== */
.program-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.7) 50%, rgba(255, 255, 255, 0.7) 100%);
    position: relative;
    z-index: 10;
    transition: padding 0.5s ease;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver-base);
    transition: var(--transition-slow);
    cursor: pointer; 
    position: relative;
    z-index: 20;
}

.program-card:active {
    transform: scale(0.98);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-light);
}

.program-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--silver-base); 
}

.program-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}

.program-card:hover .program-img-box img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-body {
    padding: 2rem;
}

.badge-wrapper {
    margin-bottom: 1.2rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-badge { background-color: var(--navy-dark); color: var(--white); }
.blue-badge { background-color: var(--royal-blue); color: var(--white); }
.gray-badge { background-color: var(--gray-text); color: var(--white); }

.program-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.program-card:hover .program-title {
    color: var(--royal-blue);
}

.program-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.program-link svg {
    transition: transform 0.3s ease;
}

.program-card:hover .program-link svg {
    transform: translateX(5px);
}

/* ==========================================================================
   MODAL / POP-UP UMUM
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999999; 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, color 0.3s ease;
}

.modal-close:hover {
    color: var(--navy-dark);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    background-color: var(--silver-base);
}

.modal-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.modal-list {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.modal-list li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-weight: bold;
}

.modal-action {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* ==========================================================================
   GALERI KEBERANGKATAN SISWA
   ========================================================================== */
.gallery-keberangkatan-section {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.marquee-track-photo {
    display: flex;
    width: max-content;
    animation: scroll-left-photo 35s linear infinite; 
}

.marquee-track-photo:hover {
    animation-play-state: paused;
}

.photo-slide {
    width: 320px;
    height: 220px;
    margin: 0 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    background-color: var(--silver-base); 
    flex-shrink: 0; 
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.photo-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll-left-photo {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ==========================================================================
   LEGALITAS SECTION
   ========================================================================== */
.legality-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background-color: rgba(248, 250, 252, 0.75);
    background-image: linear-gradient(rgba(226, 232, 240, 0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    transition: padding 0.5s ease;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background-color: rgba(26, 86, 219, 0.05);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    position: absolute;
}

.legality-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.table-responsive {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    border: 1px solid var(--silver-base);
    transition: var(--transition-fast);
}

.table-responsive:hover {
    box-shadow: var(--shadow-hover);
}

.luxury-table {
    width: 100%;
    border-collapse: collapse;
}

.luxury-table th {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.luxury-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--silver-base);
    color: var(--gray-dark);
    transition: var(--transition-fast);
}

.luxury-table tbody tr:hover {
    background-color: var(--silver-light);
}

.luxury-table tbody tr:hover td {
    color: var(--navy-dark);
}

.table-subtext {
    font-size: 0.8rem;
    color: var(--gray-text);
    font-weight: 400;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.active-status {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.trust-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--royal-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.trust-banner:hover {
    transform: translateX(10px);
}

.trust-icon {
    color: var(--royal-blue);
    flex-shrink: 0;
}

.trust-text h4 {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.trust-text p {
    margin: 0;
    font-size: 0.9rem;
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--silver-base);
    padding-bottom: 1rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cert-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    aspect-ratio: 3/4;
    cursor: pointer;
    background-color: var(--silver-base);
}

.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.cert-overlay span {
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-size: 0.85rem;
}

.cert-item:hover img {
    transform: scale(1.08);
}

.cert-item:hover .cert-overlay {
    opacity: 1;
}

.cert-item:hover .cert-overlay span {
    transform: translateY(0);
}

/* --- LIGHTBOX ZOOM GAMBAR --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--royal-blue);
    transform: rotate(90deg);
}

/* ==========================================================================
   ORGANIZATION STRUCTURE
   ========================================================================== */
.org-section {
    padding: 8rem 0;
    transition: padding 0.5s ease;
}

.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 50px;
    background-color: var(--royal-blue);
    opacity: 0.5;
}

.person-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-slow);
}

.person-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.premium-card {
    width: 300px;
    border: 2px solid var(--royal-blue);
}

.standard-card {
    width: 260px;
    border: 1px solid var(--border-color);
}

.highlight-border {
    border-bottom: 4px solid var(--royal-blue);
}

.person-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--silver-base);
}

.premium-card .person-img-wrapper {
    height: 320px;
}

.person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.person-card:hover .person-img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.person-info {
    padding: 1.5rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.person-name {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: var(--navy-dark);
    transition: var(--transition-fast);
}

.person-card:hover .person-name {
    color: var(--royal-blue);
}

.person-role {
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.person-socials {
    margin-top: 1rem;
}

.person-socials a {
    color: var(--gray-text);
    display: inline-block;
    padding: 0.3rem;
    transition: var(--transition-fast);
}

.person-socials a:hover {
    color: var(--royal-blue);
    transform: translateY(-3px);
}

/* ==========================================================================
   KERJA SAMA PERUSAHAAN (INFINITE MARQUEE)
   ========================================================================== */
.partner-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.7) 100%);
    border-top: 1px solid var(--border-color);
    overflow: hidden; 
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    -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-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite; 
}

.marquee-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    filter: none !important; 
    opacity: 1 !important; 
    transition: var(--transition-fast);
    cursor: pointer;
}

.partner-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.15);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ==========================================================================
   CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-section {
    padding: 8rem 0;
    background-color: var(--navy-dark);
    color: var(--white);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
}

.contact-details-list {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-fast);
}

.contact-detail-item:hover {
    transform: translateX(10px);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.contact-detail-item:hover .icon-circle {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
}

.detail-content h5 {
    color: var(--silver-light);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.map-frame {
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}

.map-frame:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.contact-form-panel {
    background: var(--white);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    color: var(--gray-dark);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    margin-bottom: 2.5rem;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-floating {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    font-family: var(--font-main);
    font-size: 1rem !important; 
    color: var(--navy-dark);
    background-color: var(--silver-light);
    border: 1px solid var(--silver-base);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px var(--blue-glow);
}

.form-floating label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
    transition: var(--transition-fast);
    pointer-events: none;
    font-size: 0.95rem;
}

.form-floating textarea ~ label {
    top: 1.5rem;
    transform: translateY(0);
}

.form-control:focus ~ label, 
.form-control:not(:placeholder-shown) ~ label {
    top: 0.4rem;
    font-size: 0.75rem;
    color: var(--royal-blue);
    font-weight: 600;
}

.form-control::placeholder {
    color: transparent;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    padding-top: 1.5rem;
}

.select-label {
    top: 0.4rem !important;
    font-size: 0.75rem !important;
    color: var(--gray-text) !important;
    font-weight: 600;
}

.social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.ig-pill {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.wa-pill {
    background-color: #25D366;
}

.in-pill {
    background-color: #0077B5;
}

.social-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: var(--white);
}

/* ==========================================================================
   PREMIUM FOOTER
   ========================================================================== */
.footer {
    background-color: #050d1a;
    color: var(--white);
    padding-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1.2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer h4 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--royal-blue);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--royal-blue);
    padding-left: 8px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.3rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    padding: 0 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--navy-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* ==========================================================================
   PERBAIKAN RESPONSIVITAS (MOBILE & TABLET & LAPTOP)
   ========================================================================== */
@media (max-width: 1400px) {
    .nav-links { gap: 1.5rem; }
    .hero-content-split { gap: 2rem; }
}

@media (max-width: 1200px) {
    .nav-links { gap: 0.5rem; }
    .logo-text { font-size: 1.3rem; }
    .btn-nav { padding: 8px 16px; font-size: 0.85rem; margin-left: 0.5rem; }
    .profile-content, .contact-wrapper, .legality-wrapper { gap: 3rem; }
    .hero-content-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 992px) {
    .hero-content-split { grid-template-columns: 1fr; text-align: center; padding-top: 4rem; }
    .hero-text-box { margin: 0 auto; max-width: 100%; padding-left: 0; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.8rem; }
    .floating-hero-img { max-width: 400px; min-height: 300px; margin: 0 auto; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stat-box:not(:last-child)::after { display: none; }
    .profile-content, .legality-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .image-frame { margin-bottom: 2rem; max-width: 600px; margin-inline: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .form-control { font-size: 16px !important; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: var(--shadow-float);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        align-items: center;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        color: var(--navy-dark) !important;
        font-size: 1.1rem;
    }
    
    .nav-logo-img {
        max-height: 40px;
        min-width: 40px;
        margin-right: 15px; 
    }
    
    .menu-toggle { display: flex; }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--navy-dark);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--navy-dark);
    }
    
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .form-group-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .photo-slide { width: 280px; height: 180px; }
    .btn-nav { margin-left: 0; }
    
    .dropdown-lang { margin-left: 0; margin-top: 10px; width: 100%; text-align: center; }
    .lang-btn { justify-content: center; background: rgba(0,0,0,0.05); color: var(--navy-dark); border-color: rgba(0,0,0,0.1); }
    .dropdown-content-lang { position: relative; top: 0; box-shadow: none; background-color: transparent; border: none; min-width: 100%; }
    .dropdown-content-lang a { justify-content: center; border-bottom: none; }
}

@media (max-width: 480px) {
    .stats-container { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; }
    .btn { width: 100%; }
    .floating-hero-img { max-width: 100%; min-height: 250px; }
    .cert-grid { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 2rem 1.5rem; }
    .partner-logo { width: 180px; height: 100px; margin: 0 1rem; }
    .partner-logo img { max-height: 70px; }
    .photo-slide { width: 250px; height: 160px; }
}
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.profile-top-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.profile-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.image-frame {
    position: relative;
    width: 100%;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.profile-text {
    flex: 1;
    text-align: left;
}

.vm-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

.glass-card {
    flex: 1;
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 30px;
    border-radius: 16px;
}

.mission-list, .vision-list {
    padding-left: 20px;
    margin: 0;
}

.mission-list li, .vision-list li {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .profile-top-row {
        flex-direction: column;
    }
    .profile-image-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .vm-container {
        flex-direction: column;
    }
}
