﻿/* =============================================
   LIGHT MODE THEME - SMK TI BALI GLOBAL BADUNG
   Toggle antara Dark Mode dan Light Mode
   ============================================= */

/* Variabel buat mode terang (light mode) */
[data-theme="light"] {
    /* Warna background (versi terang) */
    --primary-900: #ffffff;
    --primary-800: #f8fafc;
    --primary-700: #f1f5f9;
    --primary-600: #e2e8f0;
    --primary-500: #3182ce;
    --primary-400: #4299e1;
    --primary-300: #63b3ed;
    --primary-200: #90cdf4;
    --primary-100: #bee3f8;
    
    /* Warna teks (biar kebaca di mode terang) */
    --gray-900: #f8fafc;
    --gray-800: #f1f5f9;
    --gray-700: #e2e8f0;
    --gray-600: #cbd5e1;
    --gray-500: #94a3b8;
    --gray-400: #64748b;
    --gray-300: #475569;
    --gray-200: #334155;
    --gray-100: #1e293b;
    --gray-50: #0f172a;
    --gray-950: #ffffff;
    --white: #0f172a;
    
    /* Warna aksen (disesuain biar cocok di background terang) */
    --accent-500: #0891b2;
    --accent-400: #06b6d4;
    --accent-300: #22d3ee;
    --accent-glow: rgba(8, 145, 178, 0.3);
    
    /* Warna sekunder */
    --secondary-500: #7c3aed;
    --secondary-400: #8b5cf6;
    --secondary-glow: rgba(124, 58, 237, 0.3);
    
    /* Gradient versi terang */
    --gradient-primary: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-400) 0%, var(--secondary-400) 100%);
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --gradient-glass: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%);
    
    /* Bayangan (lebih soft biar enak di mode terang) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow-cyan: 0 0 30px rgba(8, 145, 178, 0.2);
    --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.2);

    /* Semantic Tokens (sync dengan style.css) */
    --bg-primary: #ffffff;
    --bg-card: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
}

/* Background body versi terang */
[data-theme="light"] body {
    background-color: #ffffff;
    color: #1e293b;
}

/* Efek background (dibikin lebih kalem di mode terang) */
[data-theme="light"] .bg-grid {
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.05) 1px, transparent 1px);
}

[data-theme="light"] .bg-glow {
    opacity: 0.08;
}

[data-theme="light"] .bg-glow-1 {
    background: var(--accent-400);
}

[data-theme="light"] .bg-glow-2 {
    background: var(--secondary-400);
}

/* Navbar di mode terang */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .logo-text {
    color: #1e293b;
}

[data-theme="light"] .logo-text span:first-child {
    color: #0891b2;
}

[data-theme="light"] .nav-links a {
    color: #475569;
}

[data-theme="light"] .nav-links a:hover {
    color: #1e293b;
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-links a.active {
    color: #0891b2;
}

/* Icon trigger dropdown di mode terang */
[data-theme="light"] .nav-links > li.has-dropdown > a.dropdown-trigger > i {
    color: #64748b;
}

[data-theme="light"] .nav-links > li.has-dropdown:hover > a.dropdown-trigger > i {
    color: #0891b2;
}

/* Hero di mode terang */
[data-theme="light"] .hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

[data-theme="light"] .hero h1 {
    color: #0f172a;
}

[data-theme="light"] .hero-description {
    color: #475569;
}

[data-theme="light"] .hero-badge {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.3);
    color: #0891b2;
}

[data-theme="light"] .highlight {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card statistik di mode terang */
[data-theme="light"] .stat-item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stat-number {
    color: #0891b2;
}

[data-theme="light"] .stat-label {
    color: #64748b;
}

/* Judul section di mode terang */
[data-theme="light"] .section-badge {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

[data-theme="light"] .section-title {
    color: #0f172a;
}

[data-theme="light"] .section-subtitle {
    color: #64748b;
}

/* Card-card di mode terang */
[data-theme="light"] .keunggulan-card,
[data-theme="light"] .jurusan-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .berita-card,
[data-theme="light"] .card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .keunggulan-card:hover,
[data-theme="light"] .jurusan-card:hover,
[data-theme="light"] .berita-card:hover {
    background: #ffffff;
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .keunggulan-card h3,
[data-theme="light"] .jurusan-card h3,
[data-theme="light"] .berita-card h3,
[data-theme="light"] .card h3 {
    color: #0f172a;
}

[data-theme="light"] .keunggulan-card p,
[data-theme="light"] .jurusan-card p,
[data-theme="light"] .berita-card p,
[data-theme="light"] .card p {
    color: #64748b;
}

/* Box icon di mode terang */
[data-theme="light"] .keunggulan-icon {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

/* Tombol-tombol di mode terang */
[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    color: #ffffff;
}

[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* Footer di mode terang */
[data-theme="light"] footer,
[data-theme="light"] .footer {
    background: #f1f5f9;
    color: #475569;
}

[data-theme="light"] .footer h4 {
    color: #0f172a;
}

[data-theme="light"] .footer a {
    color: #64748b;
}

[data-theme="light"] .footer a:hover {
    color: #0891b2;
}

[data-theme="light"] .footer-bottom {
    background: #e2e8f0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Input form di mode terang */
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus,
[data-theme="light"] select:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
    color: #94a3b8;
}

/* Showcase animasi di mode terang */
[data-theme="light"] .animation-showcase {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stage-indicator {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .stage-dot {
    background: #cbd5e1;
}

[data-theme="light"] .stage-dot.active {
    background: #0891b2;
}

/* Testimoni di mode terang */
[data-theme="light"] .testimonial-card {
    background: #ffffff;
}

[data-theme="light"] .testimonial-content {
    color: #475569;
}

[data-theme="light"] .testimonial-author strong {
    color: #0f172a;
}

/* Section CTA di mode terang */
[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

[data-theme="light"] .cta-section h2 {
    color: #0f172a;
}

[data-theme="light"] .cta-section p {
    color: #64748b;
}

/* Tag-tag di mode terang */
[data-theme="light"] .tag,
[data-theme="light"] .berita-tag {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

/* =============================================
   THEME TOGGLE BUTTON STYLES
   ============================================= */

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--accent-400);
    transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: block;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle i {
    color: #0891b2;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

/* Penyesuaian versi HP (mobile) */
@media (max-width: 768px) {
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
    
    .theme-toggle i {
        font-size: 1rem;
    }
}

/* Transisi halus pas ganti tema */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body,
.navbar,
.card,
.keunggulan-card,
.jurusan-card,
.testimonial-card,
.berita-card,
footer,
input,
textarea,
select {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* =============================================
   LIGHT MODE - HALAMAN BERITA DETAIL
   ============================================= */

/* Progress bar baca (biar tau udah sampai mana) */
[data-theme="light"] .reading-progress {
    background: rgba(0, 0, 0, 0.1);
}

/* Partikel background */
[data-theme="light"] .particle {
    background: rgba(8, 145, 178, 0.4);
}

/* Breadcrumb (jejak halaman) */
[data-theme="light"] .breadcrumb-section {
    background: #f8fafc;
}

[data-theme="light"] .breadcrumb a {
    color: #64748b;
}

[data-theme="light"] .breadcrumb a:hover {
    color: #0891b2;
}

[data-theme="light"] .breadcrumb .current {
    color: #1e293b;
}

[data-theme="light"] .breadcrumb .separator {
    color: #cbd5e1;
}

/* Header artikel */
[data-theme="light"] .article-header {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

[data-theme="light"] .article-category {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

[data-theme="light"] .article-title {
    color: #0f172a;
}

[data-theme="light"] .article-meta {
    color: #64748b;
}

[data-theme="light"] .meta-item {
    color: #64748b;
}

[data-theme="light"] .author-avatar {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
}

/* Konten artikel */
[data-theme="light"] .article-content {
    background: #ffffff;
}

[data-theme="light"] .article-body {
    color: #334155;
}

[data-theme="light"] .article-body h2,
[data-theme="light"] .article-body h3,
[data-theme="light"] .article-body h4 {
    color: #0f172a;
}

[data-theme="light"] .article-body blockquote {
    background: #f8fafc;
    border-left-color: #0891b2;
    color: #475569;
}

[data-theme="light"] .article-body code {
    background: #f1f5f9;
    color: #0f172a;
}

[data-theme="light"] .article-body pre {
    background: #1e293b;
    color: #e2e8f0;
}

[data-theme="light"] .article-body a {
    color: #0891b2;
}

[data-theme="light"] .article-body ul li::before,
[data-theme="light"] .article-body ol li::marker {
    color: #0891b2;
}

/* Caption gambar */
[data-theme="light"] .image-caption {
    color: #64748b;
}

/* Tombol share */
[data-theme="light"] .share-section {
    background: #f8fafc;
    border-color: #e2e8f0;
}

[data-theme="light"] .share-title {
    color: #0f172a;
}

[data-theme="light"] .share-btn {
    background: #ffffff;
    color: #475569;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .share-btn:hover {
    background: #f1f5f9;
}

/* Tag-tag */
[data-theme="light"] .tag-item {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

[data-theme="light"] .tag-item:hover {
    background: rgba(8, 145, 178, 0.2);
}

/* Sidebar (info tambahan) */
[data-theme="light"] .sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .widget-title {
    color: #0f172a;
}

[data-theme="light"] .related-article {
    border-bottom-color: #f1f5f9;
}

[data-theme="light"] .related-article:hover {
    background: #f8fafc;
}

[data-theme="light"] .related-title {
    color: #1e293b;
}

[data-theme="light"] .related-date {
    color: #64748b;
}

/* Daftar isi */
[data-theme="light"] .toc-link {
    color: #475569;
}

[data-theme="light"] .toc-link:hover,
[data-theme="light"] .toc-link.active {
    color: #0891b2;
}

/* Box penulis */
[data-theme="light"] .author-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .author-info h4 {
    color: #0f172a;
}

[data-theme="light"] .author-info p {
    color: #64748b;
}

/* Section komentar */
[data-theme="light"] .comments-section {
    background: #ffffff;
}

[data-theme="light"] .comment-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .comment-author {
    color: #0f172a;
}

[data-theme="light"] .comment-content {
    color: #475569;
}

[data-theme="light"] .comment-date {
    color: #94a3b8;
}

/* =============================================
   LIGHT MODE - HALAMAN PPDB
   ============================================= */

/* Hero PPDB */
[data-theme="light"] .hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

[data-theme="light"] .hero-section h1 {
    color: #0f172a;
}

[data-theme="light"] .hero-section p {
    color: #475569;
}

/* Statistik PPDB */
[data-theme="light"] .stats-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .stats-card:hover {
    border-color: #0891b2;
}

[data-theme="light"] .stats-number {
    color: #0891b2;
}

[data-theme="light"] .stats-label {
    color: #64748b;
}

/* Timeline PPDB (alur) */
[data-theme="light"] .timeline-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .timeline-date {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    color: #ffffff;
}

[data-theme="light"] .timeline-title {
    color: #0f172a;
}

[data-theme="light"] .timeline-desc {
    color: #64748b;
}

/* Card jurusan di PPDB */
[data-theme="light"] .jurusan-card-ppdb,
[data-theme="light"] .program-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .jurusan-card-ppdb:hover,
[data-theme="light"] .program-card:hover {
    border-color: #0891b2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Section form PPDB */
[data-theme="light"] .form-section {
    background: #f8fafc;
}

[data-theme="light"] .form-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .form-label {
    color: #1e293b;
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-select {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-select:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

/* FAQ (tanya jawab) */
[data-theme="light"] .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .faq-question {
    color: #1e293b;
}

[data-theme="light"] .faq-answer {
    color: #64748b;
}

/* Info kontak PPDB */
[data-theme="light"] .contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .contact-icon {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

[data-theme="light"] .contact-info h4 {
    color: #0f172a;
}

[data-theme="light"] .contact-info p {
    color: #64748b;
}

/* Tombol balik ke atas */
[data-theme="light"] .back-to-top {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

/* Judul-judul section */
[data-theme="light"] .section-title-alt {
    color: #0f172a;
}

[data-theme="light"] .section-desc {
    color: #64748b;
}

/* Badge-badge */
[data-theme="light"] .badge {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

/* Countdown (hitungan mundur) */
[data-theme="light"] .countdown-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .countdown-number {
    color: #0891b2;
}

[data-theme="light"] .countdown-label {
    color: #64748b;
}

/* Box info */
[data-theme="light"] .info-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .info-box:hover {
    border-color: #0891b2;
}

[data-theme="light"] .info-box-icon {
    color: #0891b2;
}

[data-theme="light"] .info-box-title {
    color: #0f172a;
}

[data-theme="light"] .info-box-desc {
    color: #64748b;
}
/* =============================================
   LIGHT MODE - PPDB HALAMAN (LENGKAP)
   ============================================= */

/* Shape background hero (disembunyiin pas mode terang) */
[data-theme="light"] .hero-bg-shapes .shape {
    opacity: 0.1;
}

[data-theme="light"] .shape-1 {
    background: #0891b2;
}

[data-theme="light"] .shape-2 {
    background: #7c3aed;
}

[data-theme="light"] .shape-3 {
    background: #06b6d4;
}

/* Judul hero PPDB */
[data-theme="light"] .hero-title {
    color: #0f172a;
}

[data-theme="light"] .hero-title .highlight {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subjudul hero */
[data-theme="light"] .hero-subtitle {
    color: #475569;
}

[data-theme="light"] .hero-subtitle strong {
    color: #0891b2;
}

/* Badge PPDB */
[data-theme="light"] .badge-ppdb {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.3);
    color: #0891b2;
}

[data-theme="light"] .badge-dot {
    background: #22c55e;
}

/* Statistik hero */
[data-theme="light"] .hero-stats .stat-item {
    background: transparent;
}

[data-theme="light"] .hero-stats .stat-number {
    color: #0891b2;
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-stats .stat-label {
    color: #64748b;
}

/* Card di hero */
[data-theme="light"] .hero-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-card span {
    color: #1e293b;
}

[data-theme="light"] .card-tjkt {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(8, 145, 178, 0.3) !important;
}

[data-theme="light"] .card-pplg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
}

[data-theme="light"] .card-dkv {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(249, 115, 22, 0.3) !important;
}

[data-theme="light"] .card-bd {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

/* Icon melayang */
[data-theme="light"] .float-icon {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Indikator scroll */
[data-theme="light"] .scroll-indicator {
    color: #64748b;
}

[data-theme="light"] .mouse {
    border-color: #94a3b8;
}

[data-theme="light"] .wheel {
    background: #64748b;
}

/* Section jurusan di PPDB */
[data-theme="light"] .jurusan-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

[data-theme="light"] .jurusan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .jurusan-card:hover {
    background: #ffffff;
    border-color: rgba(8, 145, 178, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .jurusan-card.featured {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(8, 145, 178, 0.3);
}

[data-theme="light"] .featured-badge {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
}

[data-theme="light"] .jurusan-card h3 {
    color: #0f172a;
}

[data-theme="light"] .jurusan-card p {
    color: #64748b;
}

[data-theme="light"] .jurusan-skills li {
    color: #475569;
}

[data-theme="light"] .job-prospect {
    color: #0891b2;
}

[data-theme="light"] .jurusan-footer {
    border-top-color: #e2e8f0;
}

/* Keunggulan Section PPDB */
[data-theme="light"] .keunggulan-section {
    background: #ffffff;
}

[data-theme="light"] .keunggulan-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .keunggulan-card:hover {
    background: #ffffff;
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .keunggulan-card h4 {
    color: #0f172a;
}

[data-theme="light"] .keunggulan-card p {
    color: #64748b;
}

/* Section jadwal */
[data-theme="light"] .jadwal-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

[data-theme="light"] .timeline::before {
    background: linear-gradient(180deg, #0891b2 0%, #7c3aed 100%);
}

[data-theme="light"] .timeline-marker {
    background: #ffffff;
    border-color: #0891b2;
    color: #0891b2;
}

[data-theme="light"] .timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    color: #ffffff;
}

[data-theme="light"] .timeline-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .timeline-item.active .timeline-content {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(8, 145, 178, 0.3);
}

[data-theme="light"] .timeline-badge {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

[data-theme="light"] .timeline-badge.special {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    color: #ffffff;
}

[data-theme="light"] .timeline-content h4 {
    color: #0f172a;
}

[data-theme="light"] .timeline-content p {
    color: #64748b;
}

[data-theme="light"] .timeline-content p em {
    color: #f97316;
}

/* Countdown di mode terang */
[data-theme="light"] .countdown {
    gap: 16px;
}

[data-theme="light"] .countdown-item {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

/* Section pendaftaran */
[data-theme="light"] .pendaftaran-section {
    background: #f8fafc;
}

[data-theme="light"] .method-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .method-card:hover {
    border-color: rgba(8, 145, 178, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .method-card h4 {
    color: #0f172a;
}

[data-theme="light"] .method-card p {
    color: #64748b;
}

[data-theme="light"] .operating-hours {
    color: #94a3b8;
}

/* Jalur Pendaftaran */
[data-theme="light"] .jalur-pendaftaran {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .jalur-pendaftaran h3 {
    color: #0f172a;
}

[data-theme="light"] .jalur-item {
    background: rgba(8, 145, 178, 0.05);
    border-color: rgba(8, 145, 178, 0.1);
}

[data-theme="light"] .jalur-item:hover {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.3);
}

[data-theme="light"] .jalur-item i {
    color: #0891b2;
}

[data-theme="light"] .jalur-item span {
    color: #0f172a;
}

[data-theme="light"] .jalur-item small {
    color: #64748b;
}

/* Section CTA PPDB */
[data-theme="light"] .cta-section .cta-bg {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
}

[data-theme="light"] .cta-section .cta-shape {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .cta-content h2 {
    color: #ffffff;
}

[data-theme="light"] .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer PPDB */
[data-theme="light"] .footer {
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

[data-theme="light"] .footer-brand p {
    color: #64748b;
}

[data-theme="light"] .footer-logo-text {
    color: #0f172a;
}

[data-theme="light"] .footer-social a,
[data-theme="light"] .social-link {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

[data-theme="light"] .footer-social a:hover,
[data-theme="light"] .social-link:hover {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    color: #ffffff;
}

[data-theme="light"] .footer-col h4,
[data-theme="light"] .footer-links h4,
[data-theme="light"] .footer-contact h4 {
    color: #0f172a;
}

[data-theme="light"] .footer-links a,
[data-theme="light"] .footer-col ul li a {
    color: #64748b;
}

[data-theme="light"] .footer-links a:hover,
[data-theme="light"] .footer-col ul li a:hover {
    color: #0891b2;
}

[data-theme="light"] .footer-contact li {
    color: #64748b;
}

[data-theme="light"] .footer-contact li i {
    color: #0891b2;
}

[data-theme="light"] .footer-bottom {
    border-top-color: #e2e8f0;
    background: transparent;
}

[data-theme="light"] .footer-bottom p {
    color: #94a3b8;
}

[data-theme="light"] .footer-bottom-links a {
    color: #94a3b8;
}

[data-theme="light"] .footer-bottom-links a:hover {
    color: #0891b2;
}

/* Badge & judul section */
[data-theme="light"] .section-badge {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.2);
    color: #0891b2;
}

[data-theme="light"] .section-title {
    color: #0f172a;
}

[data-theme="light"] .section-title span {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar PPDB di mode terang */
[data-theme="light"] .nav-logo .logo-text {
    color: #1e293b;
}

[data-theme="light"] .nav-logo .logo-text span {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .nav-links a {
    color: #475569;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
    color: #0f172a;
}

[data-theme="light"] .mobile-menu-btn {
    color: #1e293b;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Tombol-tombol di mode terang */
[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: #0f172a;
}

/* =============================================
   LIGHT MODE - BERITA DETAIL (LENGKAP)
   ============================================= */

/* Navbar Berita */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Badge kategori artikel */
[data-theme="light"] .article-category-badge {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.3);
    color: #0891b2;
}

/* Cuplikan artikel */
[data-theme="light"] .article-excerpt {
    color: #64748b;
}

/* Garis pemisah meta */
[data-theme="light"] .meta-divider {
    background: #e2e8f0;
}

/* Info penulis */
[data-theme="light"] .author-name {
    color: #0f172a;
}

[data-theme="light"] .author-role {
    color: #94a3b8;
}

/* Tombol share */
[data-theme="light"] .share-label {
    color: #64748b;
}

[data-theme="light"] .share-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

[data-theme="light"] .share-btn.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1DA1F2;
}

[data-theme="light"] .share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

[data-theme="light"] .share-btn.linkedin {
    background: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
}

[data-theme="light"] .share-btn.copy {
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
}

/* Isi utama artikel */
[data-theme="light"] .article-main {
    background: #ffffff;
}

/* Gambar utama */
[data-theme="light"] .featured-image-container {
    border-radius: 16px;
    overflow: hidden;
}

/* Postingan terkait */
[data-theme="light"] .related-posts {
    background: #f8fafc;
}

[data-theme="light"] .related-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .related-card:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .related-card h4 {
    color: #0f172a;
}

[data-theme="light"] .related-card p {
    color: #64748b;
}

/* Newsletter (langganan info) */
[data-theme="light"] .newsletter-section {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid rgba(8, 145, 178, 0.1);
}

[data-theme="light"] .newsletter-section h3 {
    color: #0f172a;
}

[data-theme="light"] .newsletter-section p {
    color: #64748b;
}

/* =============================================
   LIGHT MODE - BERITA DETAIL ELEMEN TAMBAHAN
   ============================================= */

/* Section gambar utama */
[data-theme="light"] .featured-image-section {
    background: #ffffff;
}

[data-theme="light"] .featured-image-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .featured-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

[data-theme="light"] .image-placeholder i {
    color: #0891b2;
}

[data-theme="light"] .image-placeholder span {
    color: #64748b;
}

[data-theme="light"] .image-caption {
    background: rgba(248, 250, 252, 0.95);
    color: #64748b;
}

/* Layout artikel */
[data-theme="light"] .article-layout {
    background: #ffffff;
}

/* Daftar isi */
[data-theme="light"] .toc-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .toc-header {
    background: rgba(8, 145, 178, 0.08);
    border-bottom-color: #e2e8f0;
}

[data-theme="light"] .toc-header span {
    color: #0f172a;
}

[data-theme="light"] .toc-toggle {
    color: #64748b;
}

[data-theme="light"] .toc-list a {
    color: #64748b;
}

[data-theme="light"] .toc-list a:hover,
[data-theme="light"] .toc-list a.active {
    color: #0891b2;
    background: rgba(8, 145, 178, 0.08);
}

/* Body artikel */
[data-theme="light"] .article-body {
    color: #475569;
}

[data-theme="light"] .article-body .lead {
    color: #334155;
}

[data-theme="light"] .drop-cap {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .article-body h2 {
    color: #0f172a;
}

[data-theme="light"] .heading-icon {
    background: rgba(8, 145, 178, 0.1);
}

[data-theme="light"] .heading-icon i {
    color: #0891b2;
}

[data-theme="light"] .article-body strong {
    color: #0891b2;
}

/* Quote yang di-highlight */
[data-theme="light"] .highlight-quote {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-left-color: #0891b2;
}

[data-theme="light"] .highlight-quote > i {
    color: #0891b2;
}

[data-theme="light"] .highlight-quote p {
    color: #334155;
}

[data-theme="light"] .highlight-quote cite {
    color: #0891b2;
}

/* Card fitur */
[data-theme="light"] .feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .feature-card:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-card h4 {
    color: #0f172a;
}

[data-theme="light"] .feature-card p {
    color: #64748b;
}

/* Timeline Berita */
[data-theme="light"] .process-timeline::before {
    background: linear-gradient(180deg, #0891b2 0%, #7c3aed 100%);
}

[data-theme="light"] .timeline-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .timeline-item:hover .timeline-content {
    border-color: rgba(8, 145, 178, 0.3);
}

[data-theme="light"] .timeline-content h4 {
    color: #0f172a;
}

[data-theme="light"] .timeline-content p {
    color: #64748b;
}

/* Checklist */
[data-theme="light"] .check-list li {
    border-bottom-color: #f1f5f9;
    color: #475569;
}

[data-theme="light"] .check-list li i {
    color: #22c55e;
}

/* Box statistik */
[data-theme="light"] .stats-box {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(8, 145, 178, 0.15);
}

[data-theme="light"] .stats-box .stat-number {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .stats-box .stat-label {
    color: #64748b;
}

/* Tag artikel */
[data-theme="light"] .article-tags {
    border-top-color: #e2e8f0;
}

[data-theme="light"] .tags-label {
    color: #64748b;
}

[data-theme="light"] .tag {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.2);
    color: #0891b2;
}

[data-theme="light"] .tag:hover {
    background: #0891b2;
    border-color: #0891b2;
    color: #ffffff;
}

/* Sidebar (info tambahan) */
[data-theme="light"] .article-sidebar {
    background: transparent;
}

[data-theme="light"] .sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .sidebar-card h3 {
    color: #0f172a;
}

/* Berita terkait */
[data-theme="light"] .related-news-section {
    background: #f8fafc;
}

[data-theme="light"] .news-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .news-card:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .news-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

[data-theme="light"] .news-image i {
    color: #0891b2;
}

[data-theme="light"] .news-category-badge {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
}

[data-theme="light"] .news-date {
    color: #94a3b8;
}

[data-theme="light"] .news-card h3 {
    color: #0f172a;
}

[data-theme="light"] .news-card p {
    color: #64748b;
}

[data-theme="light"] .read-more {
    color: #0891b2;
}

/* Item kontak */
[data-theme="light"] .contact-item {
    color: #64748b;
}

[data-theme="light"] .contact-item i {
    color: #0891b2;
}

/* Statistik partner */
[data-theme="light"] .partner-stat {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .partner-stat-number {
    color: #0891b2;
}

[data-theme="light"] .partner-stat-label {
    color: #64748b;
}

/* Logo partner */
[data-theme="light"] .partner-logo {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .partner-logo:hover {
    border-color: rgba(8, 145, 178, 0.3);
}

/* Feature icon fix untuk light mode */
[data-theme="light"] .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15)) !important;
}

[data-theme="light"] .feature-icon i {
    color: #3b82f6 !important;
}

[data-theme="light"] .feature-icon i.fas,
[data-theme="light"] .feature-icon i.fa,
[data-theme="light"] .feature-icon .fas,
[data-theme="light"] .feature-icon .fa {
    color: #3b82f6 !important;
}

[data-theme="light"] .feature-box {
    background: #fff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .feature-box h3 {
    color: #1e293b;
}

[data-theme="light"] .feature-box p {
    color: #64748b;
}

[data-theme="light"] .feature-link {
    color: #3b82f6;
}
