/**
 * Gaya Halaman PPDB - SMK TI Bali Global Badung
 * Desain Modern, Bersih, Profesional
 */

/* =============================================
   VARIABEL CSS
   ============================================= */
:root {
    /* Warna Utama */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    /* Warna Aksen - Cyan */
    --accent-400: #22d3ee;
    --accent-500: #06b6d4;
    --accent-600: #0891b2;
    
    /* Sekunder - Ungu */
    --secondary-400: #a78bfa;
    --secondary-500: #8b5cf6;
    --secondary-600: #7c3aed;
    
    /* Sukses - Hijau */
    --success-400: #4ade80;
    --success-500: #22c55e;
    
    /* Peringatan - Oranye */
    --warning-400: #fb923c;
    --warning-500: #f97316;
    
    /* Netral */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;
    
    /* Gradien */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-500) 0%, var(--primary-500) 100%);
    --gradient-dark: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
    
    /* Tipografi */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Bayangan */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    
    /* Transisi */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & DASAR
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--gray-950);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Kontainer */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   BACKGROUND PARTIKEL
   ============================================= */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* =============================================
   NAVIGASI
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-base);
    background: transparent !important;
    box-shadow: none !important;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg) !important;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.logo img,
.logo .logo-img {
    height: 40px;
    width: auto;
}

.logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.9rem;
}

.logo .logo-text span {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    transition: var(--transition-fast);
    position: relative;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-links a:not(.btn-cta):hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:not(.btn-cta):not(.dropdown-trigger)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-base);
}

.nav-links a:not(.btn-cta):not(.dropdown-trigger):hover::after {
    width: 60%;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    color: white !important;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-600);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-600);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-500);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    text-align: left !important;
}

.badge-ppdb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--accent-400);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Tombol-tombol */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

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

/* Visual hero (hiasan biar gak kosong) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.hero-card {
    position: absolute;
    width: 180px;
    height: 220px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition-slow);
    cursor: pointer;
}

.hero-card i {
    font-size: 3rem;
}

.hero-card span {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-tjkt {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-color: rgba(34, 211, 238, 0.3);
    z-index: 4;
}

.card-tjkt i { color: var(--accent-400); }

.card-pplg {
    top: 30px;
    left: 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    z-index: 3;
}

.card-pplg i { color: var(--success-400); }

.card-dkv {
    top: 60px;
    left: 120px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-color: rgba(249, 115, 22, 0.3);
    z-index: 2;
}

.card-dkv i { color: var(--warning-400); }

.card-bd {
    top: 90px;
    left: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    z-index: 1;
}

.card-bd i { color: var(--secondary-400); }

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10 !important;
    box-shadow: var(--shadow-2xl);
}

/* Icon melayang */
.floating-icons {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-400);
    animation: float 6s ease-in-out infinite;
}

.icon-1 { top: 20px; right: 0; animation-delay: 0s; }
.icon-2 { bottom: 80px; right: -30px; animation-delay: 1.5s; }
.icon-3 { top: 100px; left: -40px; animation-delay: 3s; }
.icon-4 { bottom: 20px; left: 0; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Indikator scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 13px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================
    STYLE UMUM BUAT SEMUA SECTION
   ============================================= */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray-400);
}

/* =============================================
   JURUSAN SECTION
   ============================================= */
.jurusan-section {
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.jurusan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.jurusan-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px 24px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.jurusan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

.jurusan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-xl);
}

.jurusan-card:hover::before {
    opacity: 1;
}

.jurusan-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.jurusan-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.jurusan-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.jurusan-icon.tjkt {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(34, 211, 238, 0.05) 100%);
    color: var(--accent-400);
}

.jurusan-icon.pplg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--success-400);
}

.jurusan-icon.dkv {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--warning-400);
}

.jurusan-icon.bd {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--secondary-400);
}

.jurusan-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
}

.jurusan-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

.jurusan-skills {
    list-style: none;
    margin-bottom: 20px;
}

.jurusan-skills li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.jurusan-skills li i {
    color: var(--success-400);
    font-size: 0.7rem;
}

.jurusan-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.job-prospect {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--primary-400);
}

/* =============================================
   KEUNGGULAN SECTION
   ============================================= */
.keunggulan-section {
    background: var(--gray-900);
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.keunggulan-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
}

.keunggulan-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.keunggulan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.keunggulan-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.keunggulan-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* =============================================
   JADWAL SECTION
   ============================================= */
.jadwal-section {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-500) 0%, var(--secondary-500) 100%);
}

.timeline-item {
    position: relative;
    padding: 24px 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 24px;
    width: 32px;
    height: 32px;
    background: var(--gray-800);
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-400);
    z-index: 1;
}

.timeline-item.active .timeline-marker {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.timeline-content {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-left: 20px;
}

.timeline-item.active .timeline-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 12px;
}

.timeline-badge.special {
    background: var(--gradient-primary);
    color: white;
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.timeline-content p em {
    font-size: 0.8rem;
    color: var(--warning-400);
}

/* Countdown (hitungan mundur) */
.countdown {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.countdown-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-400);
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   PENDAFTARAN SECTION
   ============================================= */
.pendaftaran-section {
    background: var(--gray-950);
}

.pendaftaran-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.method-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
}

.method-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-xl);
}

.method-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.method-icon.online {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary-400);
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--success-400);
}

.method-icon.offline {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--warning-400);
}

.method-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.method-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.7;
}

.method-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-base);
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.method-btn.wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.method-btn.wa:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.method-btn.map {
    background: linear-gradient(135deg, var(--warning-400) 0%, #ea580c 100%);
}

.method-btn.map:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.operating-hours {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Jalur Pendaftaran */
.jalur-pendaftaran {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.jalur-pendaftaran h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.jalur-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.jalur-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    transition: var(--transition-base);
}

.jalur-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.jalur-item i {
    font-size: 1.5rem;
    color: var(--primary-400);
}

.jalur-item span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.jalur-item small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-600);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--gray-900);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-400);
}

.footer-contact li i {
    color: var(--primary-400);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-400);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 50px;
    height: auto;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* Footer Col */
.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary-400);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Matiin animasi di HP biar lebih ringan */
@media (max-width: 768px) {
    /* Matiin semua animasi hero di HP */
    .hero-content,
    .hero-visual,
    .hero-card,
    .float-icon,
    .badge-dot,
    .scroll-indicator,
    .shape {
        animation: none !important;
    }
    
    /* Sembunyiin animasi yang berat di HP */
    .hero-visual,
    .hero-card-stack,
    .floating-icons,
    .scroll-indicator,
    .hero-bg-shapes .shape {
        display: none !important;
    }
    
    /* Keep background shapes but simplified */
    .hero-bg-shapes {
        opacity: 0.3;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .jurusan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .keunggulan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pendaftaran-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Navbar PPDB versi HP (tampilan modern) */
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        padding: 0 16px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img,
    .logo .logo-img {
        height: 36px;
    }
    
    .logo .logo-text {
        font-size: 0.8rem;
    }
    
    .logo .logo-text span {
        font-size: 0.95rem;
    }
    
    /* Tombol menu HP (gaya modern) */
    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        cursor: pointer;
        z-index: 1001;
        transition: var(--transition-base);
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-400);
    }
    
    .mobile-menu-btn i {
        font-size: 1.25rem;
        transition: var(--transition-base);
    }
    
    .mobile-menu-btn.active {
        background: var(--primary-500);
        border-color: var(--primary-500);
    }
    
    .mobile-menu-btn.active i {
        color: white;
    }
    
    /* NOTE: Style nav-link versi HP pindah ke navbar-submenu.css */

    /* Hero versi HP */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .badge-ppdb {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .jurusan-grid {
        grid-template-columns: 1fr;
    }
    
    .keunggulan-grid {
        grid-template-columns: 1fr;
    }
    
    .pendaftaran-methods {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -30px;
        width: 28px;
        height: 28px;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .jalur-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 0 40px;
    }
    
    .hero-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 1.25rem;
    }
    
    /* Better container padding */
    .hero-container,
    .container {
        padding: 0 16px;
    }
}
