/* ===== MODERN LUXURY DESIGN - SMA BINAKASIH ===== */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat', sans-serif;
    src: url('./static/Montserrat-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat', sans-serif;
    src: url('./static/Montserrat-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat', sans-serif;
    src: url('./static/Montserrat-ExtraBold.ttf');
    font-weight: 800;
}

:root {
    /* Colors */
    --primary: #1a2b5f;
    --secondary: #d4af37;
    --accent: #2c4a9e;
    --dark: #0a0e1a;
    --light: #f8f9fa;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a2b5f 0%, #2c4a9e 50%, #4a6fa5 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0c14b 50%, #d4af37 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 43, 95, 0.95) 0%, rgba(44, 74, 158, 0.85) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== GLASSMORPHISM & MODERN EFFECTS ===== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(26, 43, 95, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Background Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    50% {
        transform: translateY(-100vh) translateX(50px) scale(1.5);
        opacity: 0.3;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-200vh) translateX(-50px) scale(0.5);
        opacity: 0;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
}

/* ===== LOADING SCREEN WITH LUXURY ANIMATION ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.logo-loader {
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
    }

    50% {
        filter: drop-shadow(0 10px 50px rgba(212, 175, 55, 0.8));
    }
}

.loader p {
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ===== MODERN NAVBAR WITH GLASSMORPHISM ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    background: transparent;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar.scrolled::before {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    transform: rotate(360deg) scale(1.05);
}

.logo-text {
    font-family: 'Times New Roman', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    position: relative;
    padding: 10px 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 10px;
    opacity: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.nav-link.active {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item-dropdown .nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 15px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    color: var(--secondary);
    padding-left: 22px;
    transform: translateX(3px);
}

.dropdown-link i {
    color: var(--secondary);
    font-size: 14px;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.dropdown-link span {
    flex: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--white);
    border: 2px solid var(--secondary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.theme-toggle:hover::before {
    width: 200%;
    height: 200%;
}

.theme-toggle:hover {
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

.theme-toggle i {
    position: relative;
    z-index: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
    border: 2px solid var(--secondary);
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.mobile-toggle:hover span {
    background: var(--secondary);
}

/* Navbar scroll animation */
@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: navSlideDown 0.5s ease-out;
}

/* ===== HERO SECTION WITH ADVANCED EFFECTS ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 95, 0.85) 0%, rgba(44, 74, 158, 0.75) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroParticleFloat 20s infinite ease-in-out;
}

@keyframes heroParticleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 0.6;
    }

    90% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1100px;
    padding: 0 20px;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    }
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    animation: subtitleSlide 1.5s ease-out 0.3s both;
}

@keyframes subtitleSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 18px;
    margin: 0 auto 40px;
    max-width: 700px;
    line-height: 1.8;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    animation: descriptionFade 1.5s ease-out 0.6s both;
}

@keyframes descriptionFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsPop 1.5s ease-out 0.9s both;
}

@keyframes buttonsPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.video-sound-toggle {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-sound-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.video-sound-toggle.active {
    background: var(--gradient-gold);
    color: var(--primary);
    border-color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 32px;
    animation: scrollBounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===== LOADING PARTICLES ===== */
.loading-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: loadingParticleRise 4s infinite ease-in-out;
}

@keyframes loadingParticleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ===== CURSOR TRAIL EFFECT ===== */
.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gradient-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ===== RIPPLE EFFECT ===== */
.ripple-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9997;
    animation: rippleExpand 1s ease-out;
}

@keyframes rippleExpand {
    from {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

/* ===== STATS SECTION WITH GLASSMORPHISM ===== */
.stats-section {
    background: var(--white);
    padding: 100px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--gradient-primary);
    padding: 50px 35px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    top: -100%;
    right: -100%;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(360deg);
}

.stat-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 500;
}

/* ===== PROFIL SECTION ===== */
.profil {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.profil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.profil .container {
    position: relative;
    z-index: 1;
}

.profil .section-title,
.profil .section-subtitle {
    color: var(--white);
}

/* Profil Banner */
.profil-banner {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.profil-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-gold);
}

.profil-banner-content {
    text-align: center;
}

.profil-badge {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
    border: 5px solid var(--secondary);
}

.profil-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.profil-banner h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.profil-identity {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.identity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.identity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.identity-item i {
    font-size: 28px;
    color: var(--secondary);
}

.identity-item span {
    font-size: 14px;
    color: var(--text);
}

.identity-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* Description */
.profil-description {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.description-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary);
}

.description-header i {
    font-size: 40px;
    color: var(--secondary);
}

.description-header h3 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 800;
    margin: 0;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
    font-weight: 500;
}

.profil-description p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Features Grid */
.profil-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--secondary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-card h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.feature-card strong {
    color: var(--secondary);
    font-weight: 700;
}

/* ===== PROGRAM SECTION ===== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.program-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: scale(0.9);
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.08), transparent);
    transition: var(--transition);
}

.program-card.visible {
    opacity: 1;
    transform: scale(1);
}

.program-card:hover {
    border-color: var(--secondary);
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.program-card:hover::after {
    height: 100%;
}

.program-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 40px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.program-card:hover .program-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.program-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.program-features {
    list-style: none;
}

.program-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.program-features li:hover {
    padding-left: 10px;
    color: var(--primary);
}

.program-features i {
    color: var(--secondary);
    font-size: 18px;
}

/* ===== PRESTASI SECTION ===== */
.prestasi {
    background: var(--light);
}

.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.prestasi-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--secondary);
}

.prestasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.prestasi-card:hover::before {
    left: 100%;
}

.prestasi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.prestasi-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prestasi-badge.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.prestasi-badge.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
}

.prestasi-badge.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
}

.prestasi-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.prestasi-card:hover .prestasi-icon {
    transform: scale(1.1) rotate(360deg);
}

.prestasi-card h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestasi-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.prestasi-category {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.prestasi-year {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

/* ===== FASILITAS SECTION ===== */
.fasilitas .container .section-header .section-title {
    color: var(--secondary);
}

.fasilitas .container .section-header .section-subtitle {
    color: var(--light);
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.fasilitas-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.85);
    position: relative;
    overflow: hidden;
}

.fasilitas-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    border-radius: 50%;
}

.fasilitas-card.visible {
    opacity: 1;
    transform: scale(1);
}

.fasilitas-card:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.fasilitas-card:hover::before {
    width: 500px;
    height: 500px;
}

.fasilitas-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.fasilitas-card:hover .fasilitas-image {
    transform: scale(1.2) rotate(15deg);
    box-shadow: var(--shadow-glow);
}

.fasilitas-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.fasilitas-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 120px 0;
    background: var(--light);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.video-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.video-text h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.video-text p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.video-features {
    list-style: none;
}

.video-features li {
    padding: 15px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 17px;
    font-weight: 500;
    transition: var(--transition);
}

.video-features li:hover {
    padding-left: 15px;
    color: var(--primary);
}

.video-features i {
    color: var(--secondary);
    font-size: 24px;
}

.video-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.profile-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--primary);
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 14, 26, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-card:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-card:nth-child(6) {
    animation-delay: 0.6s;
}

.blog-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 70px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog-card:hover .blog-placeholder::after {
    left: 100%;
}

.blog-card:hover .blog-placeholder {
    transform: scale(1.05);
}

.blog-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-placeholder img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    }
}

.blog-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-meta span:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.blog-meta i {
    color: var(--secondary);
    font-size: 14px;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 800;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-content h3 {
    color: var(--secondary);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blog-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.blog-link:hover::before {
    left: 0;
}

.blog-link:hover {
    color: var(--white);
    gap: 18px;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.blog-link i {
    transition: transform 0.4s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.blog-loading i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.blog-loading p {
    font-size: 18px;
    font-weight: 600;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.gallery-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* ===== PENDAFTARAN SECTION ===== */
.pendaftaran {
    background: var(--light);
}

.pendaftaran-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.pendaftaran-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.info-card h3 i {
    color: var(--secondary);
    font-size: 28px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 15px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card ul li:hover {
    padding-left: 15px;
    color: var(--primary);
}

.pendaftaran-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pendaftaran-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
    border-radius: 25px 25px 0 0;
}

.pendaftaran-form h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 800;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* ===== NEW PENDAFTARAN STYLES ===== */
.jadwal-pendaftaran {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.jadwal-title {
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.jalur-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 6px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.jalur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.jalur-prestasi {
    border-left-color: #ffd700;
}

.jalur-gelombang1 {
    border-left-color: #4CAF50;
}

.jalur-gelombang2 {
    border-left-color: #2196F3;
}

.jalur-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.jalur-header h4 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jalur-periode {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.jalur-content {
    padding: 20px 0;
}

.jadwal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.jadwal-label {
    color: var(--text-light);
    font-weight: 500;
}

.jadwal-date {
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
}

.diskon-banner {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.diskon-banner i {
    font-size: 28px;
}

.diskon-banner strong {
    font-size: 16px;
    line-height: 1.5;
}

.note-info {
    background: #e3f2fd;
    border: 2px solid #2196F3;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    color: #0d47a1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-info i {
    font-size: 20px;
}

.persyaratan-section {
    margin: 40px 0;
}

.persyaratan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.persyaratan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.persyaratan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.persyaratan-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary);
}

.persyaratan-header i {
    font-size: 32px;
    color: var(--secondary);
}

.persyaratan-header h3 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.persyaratan-list {
    padding-left: 25px;
    margin: 0;
}

.persyaratan-list li {
    padding: 12px 0;
    line-height: 1.8;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.persyaratan-list li:last-child {
    border-bottom: none;
}

.persyaratan-list strong {
    color: var(--secondary);
    font-weight: 700;
}

/* ===== PPDB BUTTON SECTION ===== */
.ppdb-button-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2b5f 100%);
    padding: 80px 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.ppdb-button-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ppdb-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ppdb-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ppdb-icon i {
    font-size: 50px;
    color: var(--white);
}

.ppdb-content h3 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ppdb-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-ppdb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-ppdb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    border-color: var(--white);
}

.btn-ppdb i {
    font-size: 24px;
}

.ppdb-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.ppdb-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.ppdb-info-item i {
    font-size: 24px;
    color: var(--secondary);
}

/* ===== MODERN FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2b5f 50%, #2c4a9e 100%);
    color: var(--white);
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    width: 100% !important;
    min-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Footer Container Override */
.footer .container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Ensure no body/html margins affect footer */
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* Force footer to be truly full width */
.footer {
    box-sizing: border-box !important;
}

.footer * {
    box-sizing: border-box !important;
}

/* Wave Animation */
.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: waveMove 15s linear infinite;
}

.wave-2 {
    animation: waveMove 20s linear infinite reverse;
    opacity: 0.5;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Floating Particles */
.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.footer-particles .particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 20s infinite ease-in-out;
}

.footer-particles .particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.footer-particles .particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.footer-particles .particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

.footer-particles .particle:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 70%;
    animation-delay: 15s;
}

.footer-particles .particle:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    animation-delay: 7s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.5;
    }
}

/* Footer Content Wrapper */
.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top - Brand Section */
.footer-top {
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-brand {
    max-width: 700px;
    margin: 0 auto;
}

.footer-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-logo:hover {
    transform: translateY(-10px) rotate(5deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.4);
    border-color: var(--secondary);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Social Media Section */
.footer-social {
    margin-top: 40px;
}

.footer-social h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 22px;
    border: 2px solid transparent;
}

.social-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.social-link:hover .social-tooltip {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.5);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.5);
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.social-link.email:hover {
    background: var(--gradient-gold);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col h4 i {
    font-size: 24px;
}

/* Contact List */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.footer-contact li:hover {
    padding-left: 10px;
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    transition: var(--transition);
}

.footer-contact li:hover .contact-icon {
    background: var(--gradient-gold);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info strong {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a i {
    color: var(--secondary);
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    padding-left: 25px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.map-link:hover {
    background: var(--gradient-gold);
    color: var(--primary);
    transform: translateX(5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright strong {
    color: var(--secondary);
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* ===== LAZY LOAD IMAGES ===== */
.lazy-load {
    opacity: 0;
    transition: opacity 0.6s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ===== CHAR ANIMATION ===== */
.char-animate {
    display: inline-block;
    opacity: 0;
    animation: charFadeIn 0.5s forwards;
}

@keyframes charFadeIn {
    to {
        opacity: 1;
    }
}

/* ===== BOARDING SCHOOL SECTION ===== */

.boarding-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.boarding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.boarding-section .container {
    position: relative;
    z-index: 1;
}

.boarding-section .section-header {
    margin-bottom: 60px;
}

.boarding-section .section-title,
.boarding-section .section-subtitle {
    color: #fff;
}

.boarding-intro {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.boarding-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.boarding-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.boarding-icon-large i {
    font-size: 48px;
    color: #fff;
}

.boarding-intro-content h3 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.boarding-intro-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.boarding-intro-content p strong {
    color: #667eea;
    font-weight: 700;
}

.tni-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
    padding: 25px 40px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.tni-badge i {
    font-size: 48px;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.tni-badge-content {
    text-align: left;
}

.tni-badge-content h4 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tni-badge-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin: 0;
}

.boarding-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.boarding-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.boarding-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.boarding-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.boarding-feature-icon i {
    font-size: 36px;
    color: #fff;
}

.boarding-feature-card h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.boarding-feature-card>p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}

.boarding-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.boarding-list li {
    padding: 12px 0;
    color: #4a5568;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.boarding-list li:last-child {
    border-bottom: none;
}

.boarding-list i {
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

/* TNI Training Section */
.tni-training {
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(26, 71, 42, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tni-training::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tni-training-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.tni-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.tni-icon i {
    font-size: 42px;
    color: #1a472a;
}

.tni-training-header h3 {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tni-training-header p {
    font-size: 18px;
    color: #e0e0e0;
}

.tni-training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.tni-training-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.tni-training-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.tni-training-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(26, 71, 42, 0.3);
}

.tni-training-icon i {
    font-size: 32px;
    color: #ffd700;
}

.tni-training-item h4 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 12px;
    font-weight: 700;
}

.tni-training-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* Daily Schedule */
.boarding-schedule {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.schedule-title {
    font-size: 32px;
    color: #2d3748;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.schedule-item {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
    border-left-color: #764ba2;
}

.schedule-time {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.schedule-activity {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d3748;
    font-size: 16px;
    font-weight: 500;
}

.schedule-activity i {
    font-size: 20px;
    color: #764ba2;
}

/* Boarding Benefits */
.boarding-benefits {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.benefits-title {
    font-size: 32px;
    color: #2d3748;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-note {
    text-align: center;
    font-size: 16px;
    color: #4a5568;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0e6ff 100%);
    padding: 20px 30px;
    border-radius: 12px;
    margin: 0 auto 40px;
    max-width: 800px;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.6;
}

.benefits-note i {
    color: #667eea;
    font-size: 20px;
    flex-shrink: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.benefit-item i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 42px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 17px;
    }

    .section-title {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .video-content {
        gap: 50px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Program & Fasilitas */
    .program-grid,
    .fasilitas-grid,
    .prestasi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo {
        gap: 8px;
    }

    .logo-img {
        height: 38px;
    }

    .logo-title {
        font-size: 14px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        border-radius: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 20px;
        border-radius: 0;
        width: 100%;
        text-align: left;
        background: transparent;
    }

    .nav-link::before,
    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
        color: var(--secondary);
        transform: none;
        box-shadow: none;
    }

    .nav-link.active {
        border-left: 4px solid var(--secondary);
    }

    /* Dropdown Mobile */
    .nav-item-dropdown {
        border-bottom: none;
    }

    .nav-item-dropdown .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-item-dropdown .nav-link i {
        transition: transform 0.3s ease;
    }

    .nav-item-dropdown.active .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(102, 126, 234, 0.05);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-link {
        padding: 12px 20px 12px 40px;
        font-size: 15px;
        border-radius: 0;
    }

    .dropdown-link::before {
        display: none;
    }

    .dropdown-link:hover {
        background: rgba(212, 175, 55, 0.1);
        padding-left: 45px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Hero */
    .hero {
        height: 80vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 90%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 35px;
        font-size: 15px;
    }

    .video-sound-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 30px;
        right: 30px;
    }

    .scroll-indicator {
        font-size: 28px;
        bottom: 30px;
    }

    /* Sections */
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    section {
        padding: 70px 0;
    }

    /* Stats */
    .stats-section {
        padding: 50px 0;
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-content h3 {
        font-size: 36px;
    }

    .stat-content p {
        font-size: 15px;
    }

    /* Cards */
    .profil-content,
    .program-grid,
    .fasilitas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .profil-card,
    .program-card,
    .fasilitas-card {
        padding: 35px 25px;
    }

    .profil-icon,
    .program-icon,
    .fasilitas-image {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .profil-card h3,
    .program-card h3,
    .fasilitas-card h3 {
        font-size: 22px;
    }

    /* Video Section */
    .video-section {
        padding: 60px 0;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .video-text h2 {
        font-size: 28px;
    }

    .video-text p {
        font-size: 15px;
    }

    .video-features li {
        font-size: 15px;
        padding: 12px 0;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* Pendaftaran */
    .pendaftaran-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pendaftaran-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .info-card ul li {
        font-size: 14px;
        padding: 10px 0;
    }

    .pendaftaran-form {
        padding: 35px 25px;
    }

    .pendaftaran-form h3 {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    /* New Pendaftaran Responsive */
    .jadwal-pendaftaran {
        padding: 30px 20px;
    }

    .jadwal-title {
        font-size: 26px;
        flex-direction: column;
    }

    .jalur-card {
        padding: 25px 20px;
    }

    .jalur-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .jalur-header h4 {
        font-size: 20px;
    }

    .jadwal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .persyaratan-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .persyaratan-card {
        padding: 25px 20px;
    }

    .persyaratan-header h3 {
        font-size: 18px;
    }

    /* PPDB Button Responsive */
    .ppdb-button-section {
        padding: 60px 25px;
    }

    .ppdb-icon {
        width: 80px;
        height: 80px;
    }

    .ppdb-icon i {
        font-size: 40px;
    }

    .ppdb-content h3 {
        font-size: 28px;
    }

    .ppdb-content p {
        font-size: 16px;
    }

    .btn-ppdb {
        padding: 18px 35px;
        font-size: 16px;
    }

    .ppdb-info {
        gap: 25px;
    }

    .ppdb-info-item {
        font-size: 14px;
    }

    /* Slider */
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .prestasi-card {
        min-width: 280px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Boarding Section */
    .boarding-intro {
        padding: 35px 25px;
    }

    .boarding-intro-content h3 {
        font-size: 26px;
    }

    .boarding-intro-content p {
        font-size: 16px;
    }

    .tni-badge {
        flex-direction: column;
        padding: 25px 30px;
        text-align: center;
    }

    .tni-badge i {
        font-size: 42px;
    }

    .tni-badge-content {
        text-align: center;
    }

    .tni-badge-content h4 {
        font-size: 20px;
    }

    .tni-badge-content p {
        font-size: 14px;
    }

    .boarding-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .boarding-feature-card {
        padding: 35px 25px;
    }

    .tni-training {
        padding: 35px 25px;
    }

    .tni-training-header h3 {
        font-size: 26px;
    }

    .tni-training-header p {
        font-size: 16px;
    }

    .tni-training-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .boarding-schedule {
        padding: 35px 25px;
    }

    .schedule-title {
        font-size: 26px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .boarding-benefits {
        padding: 35px 25px;
    }

    .benefits-title {
        font-size: 26px;
    }

    .benefits-note {
        font-size: 15px;
        padding: 18px 25px;
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-content {
        padding: 30px 25px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    /* Footer */
    .footer-waves {
        height: 100px;
    }

    .footer-top {
        padding: 70px 0 35px;
    }

    .footer-logo {
        width: 90px;
        height: 90px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-tagline {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-social h4 {
        font-size: 16px;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .footer-contact li {
        padding: 15px 0;
        gap: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .contact-info strong {
        font-size: 13px;
    }

    .contact-info span {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 10px 15px;
    }

    .map-container iframe {
        height: 180px;
    }

    .map-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-bottom-links {
        font-size: 13px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
    }

    .logo {
        gap: 6px;
    }

    .logo-img {
        height: 35px;
    }

    .logo-title {
        font-size: 12px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 30px 20px;
        gap: 10px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .mobile-toggle {
        width: 35px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 2.5px;
    }

    /* Hero */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
        gap: 8px;
    }

    .video-sound-toggle {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-indicator {
        font-size: 24px;
        bottom: 20px;
    }

    /* Sections */
    .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .section-title::after {
        width: 80px;
        height: 4px;
        bottom: -12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    section {
        padding: 50px 0;
    }

    /* Stats */
    .stats-section {
        padding: 40px 0;
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .stat-content h3 {
        font-size: 32px;
    }

    .stat-content p {
        font-size: 14px;
    }

    /* Cards */
    .profil-card,
    .program-card,
    .fasilitas-card,
    .prestasi-card {
        padding: 30px 20px;
    }

    .profil-icon,
    .program-icon,
    .fasilitas-image,
    .prestasi-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .profil-card h3,
    .program-card h3,
    .fasilitas-card h3,
    .prestasi-card h3 {
        font-size: 15px;
        margin-bottom: 15px;
        min-height: auto;
    }

    .profil-card p,
    .program-card p,
    .fasilitas-card p,
    .prestasi-card p {
        font-size: 13px;
    }

    .prestasi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prestasi-badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .program-features li {
        font-size: 13px;
        padding: 8px 0;
    }

    /* Video */
    .video-section {
        padding: 50px 0;
    }

    .video-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .video-text p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .video-features li {
        font-size: 14px;
        padding: 10px 0;
        gap: 12px;
    }

    .video-features i {
        font-size: 18px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* Slider */
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 5px;
    }

    .slider-btn.next {
        right: 5px;
    }

    .prestasi-card {
        min-width: 240px;
        padding: 30px 20px;
    }

    .prestasi-image {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .prestasi-card h3 {
        font-size: 18px;
    }

    .prestasi-card p {
        font-size: 14px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-placeholder {
        padding: 40px 20px;
    }

    .gallery-placeholder i {
        font-size: 50px;
    }

    .gallery-placeholder p {
        font-size: 14px;
    }

    /* Boarding Section Mobile */
    .boarding-icon-large {
        width: 80px;
        height: 80px;
    }

    .boarding-icon-large i {
        font-size: 36px;
    }

    .boarding-intro-content h3 {
        font-size: 22px;
    }

    .boarding-intro-content p {
        font-size: 15px;
    }

    .tni-badge {
        padding: 20px 25px;
        gap: 15px;
    }

    .tni-badge i {
        font-size: 36px;
    }

    .tni-badge-content h4 {
        font-size: 18px;
    }

    .tni-badge-content p {
        font-size: 13px;
    }

    .boarding-feature-card {
        padding: 30px 20px;
    }

    .boarding-feature-icon {
        width: 70px;
        height: 70px;
    }

    .boarding-feature-icon i {
        font-size: 30px;
    }

    .boarding-feature-card h3 {
        font-size: 20px;
    }

    .tni-icon {
        width: 75px;
        height: 75px;
    }

    .tni-icon i {
        font-size: 36px;
    }

    .tni-training {
        padding: 30px 20px;
    }

    .tni-training-header h3 {
        font-size: 22px;
    }

    .tni-training-header p {
        font-size: 14px;
    }

    .tni-training-item {
        padding: 25px 20px;
    }

    .tni-training-icon {
        width: 60px;
        height: 60px;
    }

    .tni-training-icon i {
        font-size: 28px;
    }

    .tni-training-item h4 {
        font-size: 18px;
    }

    .tni-training-item p {
        font-size: 14px;
    }

    .schedule-title,
    .benefits-title {
        font-size: 22px;
    }

    .benefits-note {
        font-size: 14px;
        padding: 15px 20px;
    }

    .schedule-item {
        padding: 15px;
    }

    .schedule-time {
        font-size: 13px;
    }

    .schedule-activity {
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 25px 15px;
    }

    .benefit-item i {
        font-size: 32px;
    }

    .benefit-item h4 {
        font-size: 18px;
    }

    /* Blog */
    .blog-content {
        padding: 25px;
    }

    .blog-content h3 {
        font-size: 19px;
    }

    /* Pendaftaran */
    .pendaftaran-form {
        padding: 30px 20px;
    }

    .pendaftaran-form h3 {
        font-size: 24px;
    }

    .form-group input,
    .form-group select {
        padding: 15px 18px;
        font-size: 15px;
    }

    /* New Pendaftaran Mobile */
    .jadwal-pendaftaran {
        padding: 25px 15px;
    }

    .jadwal-title {
        font-size: 22px;
    }

    .jalur-card {
        padding: 20px 15px;
    }

    .jalur-header h4 {
        font-size: 18px;
    }

    .jalur-periode {
        font-size: 12px;
        padding: 6px 15px;
    }

    .diskon-banner {
        padding: 15px;
        font-size: 14px;
    }

    .persyaratan-card {
        padding: 20px 15px;
    }

    .persyaratan-header i {
        font-size: 24px;
    }

    .persyaratan-header h3 {
        font-size: 16px;
    }

    .persyaratan-list li {
        font-size: 14px;
        padding: 10px 0;
    }

    /* PPDB Button Mobile */
    .ppdb-button-section {
        padding: 50px 20px;
    }

    .ppdb-icon {
        width: 70px;
        height: 70px;
    }

    .ppdb-icon i {
        font-size: 35px;
    }

    .ppdb-content h3 {
        font-size: 24px;
    }

    .ppdb-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-ppdb {
        padding: 16px 25px;
        font-size: 14px;
        gap: 10px;
    }

    .btn-ppdb i {
        font-size: 18px;
    }

    .ppdb-info {
        flex-direction: column;
        gap: 15px;
    }

    .ppdb-info-item {
        font-size: 13px;
    }

    .ppdb-info-item i {
        font-size: 20px;
    }

    /* Footer */
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-logo {
        width: 90px;
        height: 90px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-tagline {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .footer-description {
        font-size: 14px;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 0;
    }

    .footer-col h4 {
        font-size: 17px;
    }

    .footer-contact li {
        padding: 15px 0;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .contact-info strong {
        font-size: 13px;
    }

    .contact-info span {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-bottom-links {
        font-size: 13px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    .footer-waves {
        height: 100px;
    }
}

/* ===== DARK MODE SUPPORT ===== */
body.dark-mode {
    background: var(--dark);
    color: #e0e0e0;
}

body.dark-mode .navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
}

body.dark-mode .nav-link {
    color: #e0e0e0;
}

body.dark-mode .profil-card,
body.dark-mode .program-card,
body.dark-mode .fasilitas-card,
body.dark-mode .blog-card,
body.dark-mode .info-card,
body.dark-mode .pendaftaran-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

body.dark-mode .section-title,
body.dark-mode .profil-card h3,
body.dark-mode .program-card h3,
body.dark-mode .fasilitas-card h3,
body.dark-mode .blog-content h3 {
    color: var(--secondary);
}

body.dark-mode .boarding-intro,
body.dark-mode .boarding-feature-card,
body.dark-mode .boarding-schedule,
body.dark-mode .boarding-benefits {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

body.dark-mode .boarding-intro-content h3,
body.dark-mode .boarding-feature-card h3,
body.dark-mode .schedule-title,
body.dark-mode .benefits-title,
body.dark-mode .benefit-item h4 {
    color: var(--secondary);
}

body.dark-mode .boarding-intro-content p,
body.dark-mode .boarding-feature-card>p,
body.dark-mode .boarding-list li,
body.dark-mode .schedule-activity,
body.dark-mode .benefit-item p,
body.dark-mode .benefits-note {
    color: #cbd5e0;
}

body.dark-mode .benefits-note {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-left-color: #a78bfa;
}

body.dark-mode .schedule-item {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .benefit-item {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .tni-badge {
    background: linear-gradient(135deg, #0f2818 0%, #1a3d0f 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

body.dark-mode .tni-training {
    background: linear-gradient(135deg, #0f2818 0%, #1a3d0f 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

body.dark-mode .tni-training-item {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .tni-training-item h4 {
    color: #ffd700;
}

body.dark-mode .tni-training-item p {
    color: #cbd5e0;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .hero-buttons,
    .video-sound-toggle,
    .scroll-indicator,
    .slider-btn,
    .theme-toggle,
    .mobile-toggle,
    .cursor-trail,
    .ripple-effect,
    .scroll-progress,
    .loading-screen {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
}


/* ===== FALLBACK: Ensure content is visible if JS fails ===== */
@media (prefers-reduced-motion: reduce) {

    .profil-card,
    .program-card,
    .fasilitas-card,
    .blog-card {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Fallback after 3 seconds if .visible class not added */
.profil-card,
.program-card,
.fasilitas-card,
.blog-card {
    animation: fallbackFadeIn 0.6s ease 3s forwards;
}

@keyframes fallbackFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* Developer Credit */
.copyright-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.developer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.developer-credit i {
    color: var(--secondary);
    font-size: 14px;
}

.developer-credit strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive for developer credit */
@media (max-width: 768px) {
    .copyright-wrapper {
        gap: 6px;
    }

    .developer-credit {
        font-size: 12px;
    }

    .developer-credit i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .copyright-wrapper {
        gap: 5px;
    }

    .developer-credit {
        font-size: 11px;
        flex-direction: column;
        gap: 3px;
    }
}


/* ===== POST DETAIL PAGE ===== */
.post-detail-section {
    padding: 140px 0 80px;
    background: var(--light);
    min-height: 100vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span:last-child {
    color: var(--text-light);
    font-weight: 600;
}

.post-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.post-content {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.post-header {
    margin-bottom: 40px;
}

.post-category {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
}

.post-title {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.post-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--secondary);
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
}

.post-body h2,
.post-body h3,
.post-body h4 {
    color: var(--primary);
    margin: 30px 0 20px;
    font-weight: 700;
}

.post-body h2 {
    font-size: 32px;
}

.post-body h3 {
    font-size: 26px;
}

.post-body h4 {
    font-size: 22px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 12px;
}

.post-body strong {
    color: var(--primary);
    font-weight: 700;
}

.post-body a {
    color: var(--secondary);
    text-decoration: underline;
}

.post-body a:hover {
    color: var(--primary);
}

.post-share {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.post-share h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #145dbf;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0c85d0;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1da851;
}

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
    padding: 15px;
    border-radius: 12px;
}

.related-post-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.related-post-content h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
}

.related-post-date {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .post-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .post-detail-section {
        padding: 120px 0 60px;
    }

    .post-content {
        padding: 30px 25px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body h3 {
        font-size: 20px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}


/* ===== BLOG ADVANCED ANIMATIONS ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.blog-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover::after {
    opacity: 1;
}

/* Floating animation for blog cards */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.blog-card:hover {
    animation: float 3s ease-in-out infinite;
}

/* Glowing effect on category badge */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
    }
}

.blog-category {
    animation: glow 2s ease-in-out infinite;
}

/* Ripple effect on blog link */
.blog-link {
    position: relative;
    overflow: hidden;
}

.blog-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.blog-link:hover::after {
    width: 300px;
    height: 300px;
}

/* Gradient text animation for blog title */
.blog-content h3 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.blog-card:hover .blog-content h3 {
    animation: gradientShift 1.5s ease infinite;
}

/* Smooth reveal animation for blog meta */
.blog-meta span {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.blog-card.visible .blog-meta span:nth-child(1) {
    animation-delay: 0.3s;
}

.blog-card.visible .blog-meta span:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Particle effect on hover */
.blog-card {
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.blog-card:hover::before {
    width: 500px;
    height: 500px;
}

/* Responsive animations */
@media (max-width: 768px) {
    .blog-card:hover {
        transform: translateY(-10px) scale(1.01);
        animation: none;
    }

    .blog-card::after,
    .blog-link::after {
        display: none;
    }
}


/* ===== VISI MISI SECTION ===== */
.visi-misi-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

/* Visi Card */
.visi-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.visi-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.visi-header {
    text-align: center;
    padding: 40px 40px 20px;
    position: relative;
    z-index: 1;
}

.visi-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.visi-content {
    background: var(--white);
    padding: 50px;
    border-radius: 30px 30px 0 0;
    position: relative;
    margin-top: 20px;
}

.quote-icon {
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 30px;
    left: 30px;
}

.quote-icon-right {
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.visi-text {
    font-size: 24px;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    padding: 30px 60px;
    position: relative;
    z-index: 1;
}

/* Misi Card */
.misi-card {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.misi-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.misi-header {
    text-align: center;
    padding: 40px 40px 20px;
    position: relative;
    z-index: 1;
}

.misi-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.misi-content {
    background: var(--white);
    padding: 50px;
    border-radius: 30px 30px 0 0;
    margin-top: 20px;
}

.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: misi-counter;
}

.misi-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.02) 100%);
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.misi-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.misi-list li:hover::before {
    left: 100%;
}

.misi-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
    border-left-color: #4CAF50;
}

.misi-list li:last-child {
    margin-bottom: 0;
}

.misi-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.misi-list li:hover .misi-number {
    transform: scale(1.2) rotate(360deg);
}

.misi-text {
    flex: 1;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 500;
}

.misi-text em {
    color: var(--secondary);
    font-style: italic;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {

    .visi-badge,
    .misi-badge {
        font-size: 24px;
        padding: 12px 40px;
    }

    .visi-text {
        font-size: 18px;
        padding: 20px 30px;
    }

    .visi-content,
    .misi-content {
        padding: 30px 25px;
    }

    .quote-icon,
    .quote-icon-right {
        font-size: 30px;
    }

    .misi-list li {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .misi-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .misi-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .visi-badge,
    .misi-badge {
        font-size: 20px;
        padding: 10px 30px;
        letter-spacing: 2px;
    }

    .visi-text {
        font-size: 16px;
        padding: 15px 20px;
    }

    .misi-text {
        font-size: 14px;
    }
}


/* ===== KATA SAMBUTAN SECTION ===== */
.sambutan {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.sambutan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="sambutan-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sambutan-pattern)"/></svg>');
    opacity: 0.5;
}

.sambutan .container {
    position: relative;
    z-index: 1;
}

.sambutan .container .section-header .section-title {
    color: var(--secondary);
}

.sambutan .container .section-header .section-subtitle {
    color: var(--light);
}

.sambutan-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.sambutan-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-gold);
}

/* Photo Section */
.sambutan-photo {
    text-align: center;
}

.photo-frame {
    width: 280px;
    height: 350px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 5px solid var(--secondary);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-frame:hover img {
    transform: scale(1.1);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white);
}

.kepala-sekolah-info {
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
}

.kepala-sekolah-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.kepala-sekolah-info p {
    font-size: 16px;
    color: var(--text-light);
    margin: 5px 0;
}

.kepala-sekolah-info .periode {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 10px;
}

/* Text Section */
.sambutan-text {
    position: relative;
}

.sambutan-quote {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    z-index: 0;
}

.sambutan-quote-right {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    z-index: 0;
}

.sambutan-body {
    position: relative;
    z-index: 1;
}

.sambutan-body p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
    text-align: justify;
}

.sambutan-body .greeting {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
}

.sambutan-body .closing {
    font-size: 18px;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 30px;
}

.sambutan-body strong {
    color: var(--secondary);
    font-weight: 700;
}

.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid var(--secondary);
    text-align: right;
}

.signature-name {
    font-size: 22px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-school {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .sambutan-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .photo-frame {
        width: 250px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .sambutan-content {
        padding: 30px 25px;
    }

    .photo-frame {
        width: 220px;
        height: 280px;
    }

    .kepala-sekolah-info h3 {
        font-size: 20px;
    }

    .sambutan-body p {
        font-size: 15px;
    }

    .sambutan-quote,
    .sambutan-quote-right {
        font-size: 60px;
    }

    .signature-name {
        font-size: 18px;
    }

    .signature-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sambutan-content {
        padding: 25px 20px;
    }

    .photo-frame {
        width: 200px;
        height: 250px;
    }

    .sambutan-body p {
        font-size: 14px;
        text-align: left;
    }

    .sambutan-quote,
    .sambutan-quote-right {
        display: none;
    }
}


/* ===== BERITA PAGE ===== */
.berita-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.berita-header {
    text-align: center;
    margin-bottom: 50px;
}

.berita-header h1 {
    font-size: 48px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.berita-header p {
    font-size: 20px;
    color: var(--text-light);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.filter-btn:not(.active):hover {
    background: var(--cat-color, var(--secondary));
    color: var(--white);
}

/* No Posts */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
}

.no-posts i {
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 30px;
}

.no-posts h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.no-posts p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-btn:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pagination-number:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.pagination-number.active {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .berita-header h1 {
        font-size: 32px;
    }

    .berita-header p {
        font-size: 16px;
    }

    .category-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
}