/* RESET SYSTEM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* TECH COLOR PALETTE (Modern Slate & Vibrant Tech Blue) */
    --obsidian-dark: #0F172A;     /* Slate 900 - Biru gelap teknologi */
    --obsidian-light: #1E293B;    /* Slate 800 - Navy modern */
    --gold-premium: #2563EB;     /* TECH BLUE (Variabel dipertahankan agar HTML tidak error) */
    --gold-hover: #1D4ED8;       /* Hover Tech Blue yang lebih pekat */
    --bg-cream: #F8FAFC;         /* Slate 50 - Off-white kebiruan khas aplikasi modern */
    --bg-white: #FFFFFF;
    --text-main: #334155;        /* Slate 700 - Abu-abu bersih untuk teks */
    --text-muted: #64748B;       /* Slate 500 - Abu-abu sekunder */
    --border-premium: #E2E8F0;   /* Garis batas modern */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.7;
    scroll-behavior: smooth;
    padding-top: 80px;
}

/* Mengubah semua judul menjadi font modern (menghilangkan gaya formal serif) */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--obsidian-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.section-badge {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold-premium);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    background: #EFF6FF;
    padding: 4px 12px;
    border-radius: 20px;
}

/* NAVBAR TECH STYLE */
.navbar {
    background-color: var(--obsidian-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 88%;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Menghilangkan gaya miring/italic agar terkesan seperti logo aplikasi */
.logo span {
    color: #3B82F6; /* Biru cerah */
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: #60A5FA; }

/* HERO SECTION - TONE COOL BLUE */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #60A5FA;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.hero-content h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: #94A3B8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* BUTTONS MODERN SAAS */
.btn-main, .btn-card {
    background: var(--gold-premium); /* Tech Blue */
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px; /* Sudut lebih tegas ala aplikasi */
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-main:hover, .btn-card:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-gold-fix {
    background: var(--gold-premium) !important;
    color: #fff !important;
    font-weight: 600 !important;
}
.btn-gold-fix:hover { background: var(--gold-hover) !important; }

/* PILARS SECTION */
.about { background-color: var(--bg-white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; margin-bottom: 15px; }
.section-subtitle { color: var(--text-muted); font-size: 15px; max-width: 700px; margin: 0 auto; }

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pillar-card {
    background: var(--bg-cream);
    padding: 45px 35px;
    border-radius: 12px;
    border: 1px solid var(--border-premium);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-premium);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.pillar-icon { 
    font-size: 36px; 
    margin-bottom: 20px; 
    background: #EFF6FF;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.pillar-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--obsidian-dark); }
.pillar-card p { font-size: 15px; color: var(--text-muted); text-align: justify; }

/* LEADERSHIP SECTION STYLE */
.leadership-section { background-color: var(--bg-cream); }
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
}

.leader-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-premium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.premium-top-card {
    border: 2px solid #E2E8F0;
    background: #F8FAFC;
}

.leader-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08); border-color: var(--gold-premium); }
.leader-photo { width: 100%; height: 340px; overflow: hidden; background: #E2E8F0; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: contrast(1.05); }
.leader-card:hover .leader-photo img { transform: scale(1.05); }

.leader-info { padding: 25px 20px; }
.leader-info h3 { font-size: 19px; margin-bottom: 8px; }

.title-badge {
    font-size: 11px;
    color: var(--gold-premium);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    background: #EFF6FF;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
}

.protector-badge {
    background: var(--obsidian-dark);
    color: #38BDF8;
}

/* PARTNERS SECTION STYLE */
.partners-section { background-color: var(--bg-white); }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.partner-card-item {
    background: var(--bg-cream);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-premium);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card-item:hover {
    border-color: var(--gold-premium);
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05);
}

.partner-logo {
    height: 75px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-premium);
    padding: 10px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.partner-card-item:hover .partner-logo img {
    filter: grayscale(0%) opacity(1);
}

.partner-card-item h4 { font-size: 15px; color: var(--obsidian-dark); margin-bottom: 10px; line-height: 1.4; }
.partner-card-item p { font-size: 12px; color: var(--text-muted); }

.future-plans-box {
    background: #EFF6FF;
    border: 1px dashed var(--gold-premium);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto;
    color: #1E3A8A;
}

/* ADMISSION HUB CARDS */
.registration { background-color: var(--bg-cream); }
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-premium);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); }
.card-top { margin-bottom: 20px; }
.card-icon { font-size: 40px; margin-bottom: 15px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }

.age-tag {
    font-size: 11px;
    background: #F1F5F9;
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.gold-tag { background: #EFF6FF; color: var(--gold-premium); } /* Berubah jadi Tag Biru */
.black-tag { background: var(--obsidian-dark); color: #fff; }
.card-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; flex-grow: 1; }
.card-benefits { margin-bottom: 30px; }
.card-benefits h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: var(--obsidian-dark); font-weight: 700;}
.card-benefits ul { list-style: none; }
.card-benefits ul li { font-size: 14px; margin-bottom: 8px; color: var(--text-main); position: relative; padding-left: 15px;}
.card-benefits ul li::before { content: "•"; color: var(--gold-premium); font-weight: bold; position: absolute; left: 0; }

.card.highlight { border: 2px solid var(--gold-premium); background: #F8FAFC; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08); }
.btn-gold { background: var(--gold-premium); color: #fff; text-align: center; font-weight: 600; }
.btn-gold:hover { background: var(--gold-hover); color: #fff; }
.btn-card { text-align: center; margin-top: auto; }

/* DETAILED SECTIONS */
.bg-white { background-color: var(--bg-white); }
.bg-cream { background-color: var(--bg-cream); }

.detail-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}
.detail-wrapper.inverse { direction: rtl; }
.detail-wrapper.inverse .detail-content { direction: ltr; }

.detail-content h3 { font-size: 32px; margin-bottom: 20px; }
.detail-content p { color: var(--text-muted); margin-bottom: 25px; }

.tenure-banner {
    background: var(--obsidian-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 25px;
    border-left: 4px solid var(--gold-premium);
}

.requirements-box {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-premium);
}
.gold-border { border: 1px solid rgba(37, 99, 235, 0.2); background: #EFF6FF; }
.requirements-box h4 { font-size: 15px; margin-bottom: 12px; color: var(--obsidian-dark); }
.requirements-box ul { list-style: none; margin-left: 5px; }
.requirements-box ul li { font-size: 14px; margin-bottom: 8px; color: var(--text-main); position: relative; padding-left: 20px; }
.requirements-box ul li::before { content: "→"; color: var(--gold-premium); position: absolute; left: 0; font-weight: bold;}

.detail-visual img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.custom-agents { background: var(--bg-white); padding: 30px; border-radius: 16px; border: 1px solid var(--border-premium); text-align: center; }
.custom-agents h4 { font-size: 16px; margin-bottom: 25px; color: var(--obsidian-dark); text-transform: uppercase; letter-spacing: 1px;}
.agents-row { display: flex; justify-content: space-around; gap: 15px; }
.agent-avatar { text-align: center; }
.agent-avatar img { width: 85px; height: 85px; border-radius: 50%; border: 3px solid var(--gold-premium); margin-bottom: 10px; object-fit: cover;}
.agent-avatar h5 { font-size: 12px; color: var(--text-main); font-weight: 600; }

/* FOOTER TECH */
footer { background-color: var(--obsidian-dark); color: #94A3B8; padding-top: 80px; border-top: 4px solid var(--gold-premium); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; padding-bottom: 50px; }
.footer-brand h3 { color: #fff; font-size: 24px; margin-bottom: 15px; letter-spacing: -0.5px;}
.footer-brand h3 span { color: var(--gold-premium); }
.footer-tag { font-size: 12px; color: #60A5FA; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-weight: 600; }
.footer-nav-links h4, .footer-contact h4 { color: #fff; font-size: 16px; margin-bottom: 20px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.footer-nav-links ul { list-style: none; }
.footer-nav-links li { margin-bottom: 12px; }
.footer-nav-links a { color: #94A3B8; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-nav-links a:hover { color: #60A5FA; }
.footer-contact p { font-size: 14px; margin-bottom: 12px; }
.footer-bottom { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #64748B; }

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 38px; }
    .pillars-grid, .detail-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .detail-wrapper.inverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .leaders-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } 
    .hero-content h1 { font-size: 28px; }
    .card-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ANIMASI TRANSISI HALAMAN (SPA EFFECT)
   ========================================= */
.fade-in-page {
    animation: fadeInPage 0.5s ease-out forwards;
}

.fade-out-page {
    animation: fadeOutPage 0.4s ease-in forwards;
}

@keyframes fadeInPage {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeOutPage {
    from { 
        opacity: 1; 
        transform: translateY(0); 
    }
    to { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
}

/* =========================================================
   STYLE KHUSUS HALAMAN KEPENGURUSAN (CYBER PURPLE THEME)
   (Tambahkan di baris paling bawah file style.css)
   ========================================================= */

.pengurus-section {
    /* Latar belakang ungu sangat gelap ala Cyberpunk/Tech */
    background: linear-gradient(135deg, #090514 0%, #170E30 100%);
    color: #E2E8F0;
    font-family: 'Poppins', sans-serif;
}

.pengurus-section h2.text-purple-glow {
    color: #F3E8FF;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.pengurus-section .subtitle-light {
    color: #A78BFA;
}

.purple-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #D8B4FE;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

/* Grids Setup */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.founders-grid, .admin-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.admin-grid { margin-bottom: 50px; }

/* Card Styles */
.board-card, .founder-card, .admin-card, .creative-card {
    background: rgba(30, 20, 60, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.board-card:hover, .founder-card:hover, .admin-card:hover {
    transform: translateY(-5px);
    border-color: #A855F7;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    background: rgba(45, 27, 105, 0.7);
}

.premium-purple h4, .founder-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #C4B5FD;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.admin-card h5 {
    color: #A78BFA;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.board-name, .admin-card p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 700;
}

.board-desc, .creative-card .desc {
    font-size: 12px;
    color: #8B5CF6;
    margin-top: 8px;
}

/* 2 Pillars Layout */
.pillars-org-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pillar-org-card {
    background: linear-gradient(180deg, rgba(30,20,60,0.8) 0%, rgba(15,9,30,0.8) 100%);
    border: 1px solid #7C3AED;
    border-top: 4px solid #8B5CF6;
    border-radius: 12px;
    padding: 30px;
}

.pillar-header h3 {
    color: #F3E8FF;
    font-size: 22px;
    margin-bottom: 5px;
}

.pillar-header span {
    display: block;
    color: #A855F7;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.member-list {
    list-style: none;
    text-align: left;
}

.member-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.member-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.member-list strong { color: #FFFFFF; font-size: 16px; }
.member-list span { color: #C4B5FD; font-size: 13px; }

/* Creative Card */
.creative-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.creative-card {
    border-color: #D946EF; /* Sedikit aksen pink/magenta untuk Rumpun Kreatif */
    max-width: 400px;
    width: 100%;
}
.creative-badge {
    background: rgba(217, 70, 239, 0.2);
    color: #F0ABFC;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}
.creative-card h4 { color: #FFF; font-size: 20px; margin-bottom: 5px; }

/* Grand Programs Box */
.grand-programs-box {
    background: rgba(15, 23, 42, 0.5); /* Campur dengan tech blue agar nyambung ke halaman lain */
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
    padding: 40px;
}

.box-title {
    text-align: center;
    color: #38BDF8;
    font-size: 24px;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid #8B5CF6;
}
.program-item:last-child { margin-bottom: 0; }

.program-item h4 {
    color: #F8FAFC;
    font-size: 18px;
    margin-bottom: 10px;
}

.program-item p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.6;
}

/* RESPONSIVE UNTUK HP */
@media (max-width: 992px) {
    .pillars-org-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   STYLE TOTAL REVISI: FORMULIR PENDAFTARAN (CYBER PURPLE)
   ========================================================= */
.form-section {
    background: linear-gradient(135deg, #090514 0%, #130B26 100%) !important;
    color: #E2E8F0 !important;
    padding: 80px 0 !important;
}

.form-section h2 {
    color: #F3E8FF !important;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
    font-size: 36px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.form-section .section-subtitle {
    color: #A78BFA !important;
    font-size: 15px !important;
    text-align: center !important;
}

/* Wrapper Formulir Di Tengah, Rapi, & Sinkron dengan Kepengurusan */
.form-wrapper {
    max-width: 650px !important;
    margin: 40px auto 0 auto !important;
    background: rgba(25, 16, 48, 0.7) !important;
    padding: 45px 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    display: block !important;
}

/* Mengatur tata letak vertikal agar rapi berjejer ke bawah */
.input-group {
    margin-bottom: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.input-group label {
    display: block !important;
    font-size: 14px !important;
    color: #C4B5FD !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.5px !important;
}

/* Kotak Input, Dropdown, dan Textarea Cyberpunk Style */
.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    color: #FFFFFF !important;
    background: rgba(15, 9, 30, 0.6) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: none !important;
}

/* Memperbaiki warna opsi teks di dalam dropdown/select */
.input-group select option {
    background: #130B26 !important;
    color: #FFFFFF !important;
}

/* Efek Glow Menyala saat diklik */
.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none !important;
    border-color: #A855F7 !important;
    background: rgba(30, 18, 61, 0.8) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
}

/* Warna Teks Placeholder Petunjuk */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #A78BFA !important;
    opacity: 0.4 !important;
}

/* Tombol Kirim Ungu Gradient Modern */
.btn-submit {
    width: 100% !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 16px !important;
    background: linear-gradient(90deg, #7C3AED 0%, #A855F7 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #6D28D9 0%, #9333EA 100%) !important;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* =========================================================
   STYLE UNTUK SECTION LIVE KONSULTASI (TECH & LIVE HUB)
   (Tambahkan di baris paling bawah file style.css)
   ========================================================= */
.consult-section {
    background-color: var(--bg-white, #FFFFFF) !important;
    padding: 80px 0 !important;
}

.consult-badge {
    background: #F0FDF4 !important;
    color: #16A34A !important;
    border: 1px solid rgba(22, 163, 74, 0.2) !important;
}

.consult-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    max-width: 900px !important;
    margin: 40px auto 0 auto !important;
}

.consult-card {
    background: var(--bg-cream, #F8FAFC) !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-premium, #E2E8F0) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.consult-card:hover {
    transform: translateY(-5px) !important;
    border-color: #16A34A !important;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.08) !important;
}

.consult-icon {
    font-size: 35px !important;
    margin-bottom: 15px !important;
}

.consult-card h3 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    color: var(--obsidian-dark, #0F172A) !important;
    font-weight: 600;
}

.consult-card p {
    font-size: 14px !important;
    color: var(--text-muted, #64748B) !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
}

.btn-consult {
    background: #16A34A !important;
    color: #FFFFFF !important;
    padding: 12px 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.2) !important;
}

.btn-consult:hover {
    background: #15803D !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Mengatur warna tombol kemitraan dengan nuansa obsidian gelap */
.btn-partner-wa {
    background: #0F172A !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2) !important;
}

.btn-partner-wa:hover {
    background: #1E293B !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Responsif untuk tampilan HP/Mobile */
@media (max-width: 768px) {
    .consult-grid { 
        grid-template-columns: 1fr !important; 
    }
}

/* =========================================================
   STYLE TAMBAHAN: HUB MEDIA SOSIAL KONSULTASI
   ========================================================= */
.socmed-hub-wrapper {
    margin-top: 60px !important;
    padding-top: 40px !important;
    border-top: 1px dashed rgba(139, 92, 246, 0.2) !important;
    text-align: center !important;
}

.socmed-title {
    font-size: 22px !important;
    color: var(--obsidian-dark, #0F172A) !important;
    margin-bottom: 30px !important;
    font-weight: 600 !important;
}

.socmed-container-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.socmed-group-card {
    background: #FFFFFF !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-premium, #E2E8F0) !important;
    text-align: left !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
}

.socmed-group-card h4 {
    font-size: 16px !important;
    color: #7C3AED !important; /* Warna ungu khas */
    margin-bottom: 20px !important;
    border-bottom: 2px solid #F3E8FF !important;
    padding-bottom: 8px !important;
    font-weight: 600 !important;
}

.socmed-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.socmed-list li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #F8FAFC !important;
    font-size: 14px !important;
}

.socmed-list li:last-child {
    border-bottom: none !important;
}

.socmed-label {
    font-weight: 600 !important;
    color: var(--text-muted, #64748B) !important;
}

.socmed-link {
    color: #2563EB !important; /* Biru link medsos */
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.socmed-link:hover {
    color: #1D4ED8 !important;
    text-decoration: underline !important;
}

/* Sentuhan khusus pembeda warna link untuk Founder & Co-Founder */
.pimpinan-link {
    color: #DB2777 !important; /* Pink eksklusif */
}
.pimpinan-link:hover {
    color: #BE185D !important;
}

@media (max-width: 768px) {
    .socmed-container-grid { 
        grid-template-columns: 1fr !important; 
    }
    .socmed-list li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }
}

/* =========================================================
   STYLE TAMBAHAN: LOGO BRANDING DI HALAMAN KONSULTASI
   ========================================================= */
.consult-logo-container {
    margin: 20px auto 15px auto !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.consult-brand-logo {
    width: 100px !important; /* Mengatur ukuran lebar logo agar pas dan proporsional */
    height: auto !important;
    border-radius: 50% !important; /* Membuat sudut gambar melingkar rapi jika logonya berbentuk bundar */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important; /* Efek bayangan estetik */
    border: 2px solid #F3E8FF !important; /* Garis tepi tipis elegan warna ungu muda */
    transition: transform 0.3s ease !important;
}

/* Efek interaktif bergerak sedikit ke atas saat kursor diarahkan ke logo */
.consult-brand-logo:hover {
    transform: scale(1.05) translateY(-3px) !important;
}

/* =========================================================
   STYLE TAMBAHAN: LOGO BRANDING UNTUK 2 PILAR GERAKAN
   ========================================================= */
.pillar-logo-container {
    width: 70px !important; /* Mengatur area ruang ikon pilar */
    height: 70px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F8FAFC !important; /* Warna dasar abu-abu sangat muda/bersih */
    border-radius: 12px !important; /* Membuat sudut kotak pembungkus agak melengkung modern */
    border: 1px solid rgba(139, 92, 246, 0.1) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}

.pillar-brand-logo {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important; /* Memastikan logo tidak gepeng atau terpotong */
    border-radius: 8px !important;
    transition: transform 0.3s ease !important;
}

/* Efek interaktif ketika kartu pilar disorot kursor */
.pillar-card:hover .pillar-brand-logo {
    transform: scale(1.1) rotate(2deg) !important; /* Logo bergerak sedikit membesar dan memutar dinamis */
}

/* =========================================================
   STYLE TOTAL REVISI: NAVBAR ONE-COLUMN DROPDOWN SYSTEM
   ========================================================= */
.nav-dropdown-wrapper {
    position: relative !important;
    display: inline-block !important;
}

/* Tombol Utama Menu Navigasi */
.nav-dropdown-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.nav-dropdown-btn:hover {
    background: rgba(139, 92, 246, 0.2) !important; /* Bias ungu transparan saat di-hover */
    border-color: #A855F7 !important;
}

.arrow-icon {
    font-size: 10px !important;
    transition: transform 0.3s ease !important;
}

/* Kolom Konten Dropdown (Tersembunyi secara bawaan) */
.nav-dropdown-content {
    display: none;
    position: absolute !important;
    right: 0 !important;
    top: 45px !important;
    background: rgba(15, 23, 42, 0.95) !important; /* Warna obsidian gelap transparan */
    min-width: 220px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(139, 92, 246, 0.25) !important;
    border-radius: 8px !important;
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    z-index: 9999 !important;
    backdrop-filter: blur(10px) !important;
}

/* Animasi Kelas Aktif saat Menu Muncul */
.nav-dropdown-content.show-menu {
    display: block !important;
    animation: fadeInSlide 0.25s ease-out forwards !important;
}

/* Mengatur baris daftar pilihan ke bawah dalam 1 kolom */
.nav-dropdown-content li {
    width: 100% !important;
}

.nav-dropdown-content li a {
    color: #E2E8F0 !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-align: left !important;
    transition: all 0.2s ease !important;
}

/* Efek saat baris menu disorot */
.nav-dropdown-content li a:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.3) 0%, rgba(168, 85, 247, 0.1) 100%) !important;
    color: #FFFFFF !important;
    padding-left: 25px !important; /* Efek bergeser sedikit ke kanan yang estetik */
}

/* Animasi transisi menu muncul */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   STYLE TOTAL REVISI: MENGUBAH LATAR BELAKANG PUTIH POLOS 
   MENJADI WARNA DIGITAL PREMIUM (CYBER EDITIONS)
   ========================================================= */

/* 1. SECTION PILAR GERAKAN (#pilar) */
#pilar, .about {
    background: linear-gradient(180deg, #0A061E 0%, #0F0A2A 100%) !important;
    color: #E2E8F0 !important;
    padding: 90px 0 !important;
}

#pilar h2, .about h2 {
    color: #F3E8FF !important;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3) !important;
}

#pilar .section-subtitle, .about .section-subtitle {
    color: #94A3B8 !important;
}

/* Modifikasi Kartu di Dalam Pilar */
.pillar-card, #pilar .card, .about .card {
    background: rgba(23, 15, 48, 0.6) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.pillar-card h3, #pilar .card h3 {
    color: #FFFFFF !important;
}

.pillar-card p, #pilar .card p {
    color: #94A3B8 !important;
}


/* 2. SECTION MITRA KAMI (#mitra) */
#mitra, .partners {
    background: #0B061A !important;
    color: #E2E8F0 !important;
    padding: 80px 0 !important;
    border-top: 1px solid rgba(139, 92, 246, 0.1) !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1) !important;
}

#mitra h2, .partners h2 {
    color: #FFFFFF !important;
}


/* 3. SECTION PUSAT PENDAFTARAN (#pusat-pendaftaran) */
#pusat-pendaftaran, .registration {
    background: linear-gradient(180deg, #0F0A2A 0%, #070414 100%) !important;
    color: #E2E8F0 !important;
    padding: 90px 0 !important;
}

#pusat-pendaftaran h2 {
    color: #FFFFFF !important;
}

/* Modifikasi Kartu Pendaftaran yang Bukan Highlight (Card 1 & Card 3) */
#pusat-pendaftaran .card:not(.highlight) {
    background: rgba(20, 13, 41, 0.7) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    color: #E2E8F0 !important;
}

#pusat-pendaftaran .card:not(.highlight) h3,
#pusat-pendaftaran .card:not(.highlight) h4 {
    color: #FFFFFF !important;
}

#pusat-pendaftaran .card:not(.highlight) p,
#pusat-pendaftaran .card:not(.highlight) li {
    color: #94A3B8 !important;
}

#pusat-pendaftaran .card:not(.highlight) .age-tag {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #E2E8F0 !important;
}


/* 4. SECTION KONSULTASI (#konsultasi-hub) */
.consult-section {
    background: linear-gradient(180deg, #070414 0%, #0F0A2A 100%) !important;
    color: #E2E8F0 !important;
    padding: 90px 0 !important;
}

.consult-section h2 {
    color: #F3E8FF !important;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3) !important;
}

.consult-section .section-subtitle {
    color: #94A3B8 !important;
}

/* Kartu Konsultasi WA & Kemitraan */
.consult-card {
    background: rgba(26, 17, 56, 0.5) !important;
    border: 1px solid rgba(22, 163, 74, 0.25) !important; /* Bias hijau tipis penanda tombol aktif */
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.consult-card h3 {
    color: #FFFFFF !important;
}

.consult-card p {
    color: #94A3B8 !important;
}

/* Kartu Kelompok Media Sosial di Bagian Bawah Konsultasi */
.socmed-group-card {
    background: rgba(21, 13, 46, 0.6) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.socmed-title {
    color: #FFFFFF !important;
}

.socmed-group-card h4 {
    color: #A855F7 !important;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2) !important;
}

.socmed-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.socmed-label {
    color: #C4B5FD !important;
}

.socmed-link {
    color: #38BDF8 !important; /* Warna biru langit cerah agar kontras di latar gelap */
}
.socmed-link:hover {
    color: #7DD3FC !important;
}

.pimpinan-link {
    color: #F472B6 !important; /* Warna pink cerah untuk jajaran pimpinan */
}
.pimpinan-link:hover {
    color: #FBCFE8 !important;
}