/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-contrast-high);
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1em;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* CSS Variables for New Color Palette - 60-30-10 Rule */
:root {
    /* Primary Colors (60% - Main areas) */
    --bg-primary: #FBDB93;
    --bg-secondary: #F5D085;
    --bg-tertiary: #F0C577;
    
    /* Text Colors (High contrast 4.5:1) */
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #333333;
    
    /* Accent Colors (10% - Interactive elements) */
    --accent-primary: #641B2E;
    --accent-secondary: #7A2238;
    
    /* Secondary Colors (30% - Supporting elements) */
    --secondary-primary: #8A2D3B;
    --secondary-accent: #BE5B50;
    
    /* Functional Colors */
    --success: #641B2E;
    --warning: #BE5B50;
    --error: #8A2D3B;
    
    /* Glass and Shadow Effects */
    --glass-bg: rgba(251, 219, 147, 0.9);
    --glass-border: rgba(100, 27, 46, 0.18);
    --shadow: rgba(100, 27, 46, 0.3);
    --clay-shadow-dark: rgba(100, 27, 46, 0.25);
    --clay-shadow-light: rgba(255, 255, 255, 0.6);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #641B2E 0%, #8A2D3B 100%);
    --gradient-hero: linear-gradient(135deg, #FBDB93 0%, #F5D085 50%, #F0C577 100%);
    --clay-gradient: linear-gradient(145deg, #FBDB93 0%, #F5D085 100%);
    
    /* High Contrast Text */
    --text-contrast-high: #000000;
    --text-contrast-medium: #000000;
}



body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

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

/* Header Styles - Claymorphism */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: var(--clay-gradient);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.8rem;
    /* Claymorphism shadow effect - thick and soft */
    box-shadow: 
        12px 12px 24px var(--clay-shadow-dark),
        -12px -12px 24px var(--clay-shadow-light),
        inset 2px 2px 4px var(--clay-shadow-light),
        inset -2px -2px 4px var(--clay-shadow-dark);
    border: 2px solid var(--secondary-primary);
}

@media (max-width: 768px) {
    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0 0 24px 24px;
        padding: 0.5rem 0.5rem;
        /* Claymorphism shadow for mobile */
        box-shadow: 
            0 12px 24px var(--clay-shadow-dark),
            0 -4px 8px var(--clay-shadow-light),
            inset 0 2px 4px var(--clay-shadow-light),
            inset 0 -2px 4px var(--clay-shadow-dark);
        overflow: visible;
    }
    
    .nav {
        padding: 0.6rem 0.5rem;
        position: relative; /* Memastikan posisi relatif untuk penempatan elemen di dalamnya */
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-mobile {
        position: relative;
        right: 0;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .header {
        top: 0.75rem;
        width: 98%;
    }
}

.header .container {
    width: 100%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    width: 100%;
    border-radius: 20px;
    background: var(--clay-gradient);
    /* Claymorphism inner shadow for depth */
    box-shadow: 
        inset 3px 3px 6px var(--clay-shadow-dark),
        inset -3px -3px 6px var(--clay-shadow-light);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-contrast-high);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .nav-brand {
        flex: 1;
    }
    
    .nav-brand .brand-text {
        font-size: 0.85rem;
    }
    
    .nav-brand .nav-logo {
        height: 32px;
    }
}

.nav-brand .nav-logo {
    height: 40px;
    width: auto;
}

.nav-brand .brand-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-brand i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-contrast-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 16px;
    letter-spacing: 0.005em;
    /* Claymorphism subtle effect */
    box-shadow: 
        4px 4px 8px var(--clay-shadow-dark),
        -4px -4px 8px var(--clay-shadow-light),
        inset 1px 1px 2px var(--clay-shadow-light);
    background: var(--clay-gradient);
}

.nav-link.active {
    color: var(--accent-primary);
    font-weight: 600;
    /* Claymorphism pressed effect for active state */
    box-shadow: 
        inset 4px 4px 8px var(--clay-shadow-dark),
        inset -4px -4px 8px var(--clay-shadow-light);
    background: var(--bg-secondary);
    transform: translateY(1px);
    border: 1px solid var(--accent-primary);
}

.nav-link:hover {
    color: var(--text-contrast-high);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0.7;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 50%;
}





.nav-mobile {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-right: 0.5rem; /* Menambahkan margin kanan pada container tombol */
    }
    
    .menu-toggle {
        display: flex !important;
        margin-left: 0.5rem;
        z-index: 1001;
    }
}

.menu-toggle {
    background: var(--clay-gradient);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    /* Claymorphism effect */
    box-shadow: 
        6px 6px 12px var(--clay-shadow-dark),
        -6px -6px 12px var(--clay-shadow-light),
        inset 2px 2px 4px var(--clay-shadow-light),
        inset -2px -2px 4px var(--clay-shadow-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
    margin-right: 0;
}

.menu-toggle:hover {
    color: var(--accent-primary);
    /* Claymorphism pressed effect on hover */
    box-shadow: 
        3px 3px 6px var(--clay-shadow-dark),
        -3px -3px 6px var(--clay-shadow-light),
        inset 3px 3px 6px var(--clay-shadow-dark),
        inset -3px -3px 6px var(--clay-shadow-light);
    transform: translateY(1px) scale(0.98);
}

.menu-toggle:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-toggle.active {
    color: var(--accent-primary);
    /* Pressed effect when active */
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.2),
        inset -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Animasi ikon menu saat aktif */
#menuToggle.active i {
    transform: rotate(90deg);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    animation: floatIn 0.4s ease-out;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Styling untuk mobile menu yang mengambang di kanan layar - Neumorphism */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 60px; /* Posisi di bawah header */
        right: 10px;
        width: 180px;
        z-index: 999;
        border-radius: 16px;
        background: var(--bg-secondary);
        padding: 1rem 0.8rem;
        /* Neumorphism effect */
        box-shadow: 
            8px 8px 16px rgba(0, 0, 0, 0.2),
            -8px -8px 16px rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu .nav-link {
    text-align: center;
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    /* Neumorphism effect for mobile menu items */
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.15),
        -3px -3px 6px rgba(255, 255, 255, 0.05);
}
    
    .mobile-menu .nav-link i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

.mobile-menu {
    display: none;
    height: auto;
    flex-direction: column; /* Layout vertikal */
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.7rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    width: 100%;
    margin: 0.3rem 0;
    background: var(--bg-secondary);
    /* Neumorphism effect for mobile menu items */
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.15),
        -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.mobile-menu .nav-link i {
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-bottom: 0.3rem;
    text-align: center;
}

.mobile-menu .btn-mobile {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    /* Neumorphism effect for button */
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.mobile-menu .btn-mobile i {
    color: var(--accent-primary);
}

.mobile-menu .btn-mobile:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    /* Pressed effect on hover */
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.2),
        inset -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.mobile-menu .btn-mobile:hover i {
    color: var(--text-primary);
}

.mobile-menu .nav-link:hover, 
.mobile-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu .btn-mobile {
    background: var(--accent-primary);
    color: #F5F5DC;
    width: 100%;
    padding: 0.8rem;
    margin: 0;
}

.mobile-menu .btn-mobile:hover {
    background: rgba(0, 212, 255, 0.3);
}

/* Menu toggle styling sudah didefinisikan di atas */

.mobile-menu .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    width: 100%;
    margin: 0;
}

.mobile-menu .btn-mobile {
    background: var(--accent-primary);
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
}

.mobile-menu .nav-link i {
    font-size: 1.2rem;
    display: inline-block;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.mobile-menu .btn-mobile {
    color: var(--accent-primary);
    font-weight: bold;
    background: rgba(0, 212, 255, 0.15);
    width: 100%;
    padding: 0.8rem;
}

.mobile-menu .btn-mobile i {
    animation: iconPulse 1.5s infinite ease-in-out;
}

/* Button Styles - Claymorphism */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: var(--clay-gradient);
    /* Claymorphism shadow effect */
    box-shadow: 
        8px 8px 16px var(--clay-shadow-dark),
        -8px -8px 16px var(--clay-shadow-light),
        inset 2px 2px 4px var(--clay-shadow-light),
        inset -2px -2px 4px var(--clay-shadow-dark);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #F5F5DC;
    padding: 0.8rem 1.6rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--accent-primary);
    position: relative;
    letter-spacing: 0.01em;
    /* Claymorphism effect for primary button */
    box-shadow: 
        10px 10px 20px var(--clay-shadow-dark),
        -10px -10px 20px var(--clay-shadow-light),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3),
        inset -3px -3px 6px rgba(100, 27, 46, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--accent-primary), transparent, var(--accent-primary));
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-primary i {
    animation: iconPulse 1.5s infinite ease-in-out;
}

.btn-primary:hover {
    color: #F5F5DC;
    background: var(--gradient-primary);
    transform: translateY(2px) scale(0.98);
    /* Claymorphism pressed effect on hover */
    box-shadow: 
        5px 5px 10px var(--clay-shadow-dark),
        -5px -5px 10px var(--clay-shadow-light),
        inset 5px 5px 10px var(--clay-shadow-dark),
        inset -5px -5px 10px var(--clay-shadow-light);
}

.btn-large {
    padding: 1.2rem 2.4rem;
    font-size: 1.1rem;
    border-radius: 24px;
    /* Enhanced Claymorphism for large buttons */
    box-shadow: 
        12px 12px 24px var(--clay-shadow-dark),
        -12px -12px 24px var(--clay-shadow-light),
        inset 4px 4px 8px rgba(255, 255, 255, 0.1),
        inset -4px -4px 8px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background: #25d366;
    color: black;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    animation: iconPulse 1.5s infinite ease-in-out;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Hero Section - Claymorphism */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 5rem;
    /* Claymorphism background effect */
    box-shadow: 
        inset 20px 20px 40px var(--clay-shadow-dark),
        inset -20px -20px 40px var(--clay-shadow-light);
}

/* Typing Animation */
.typing-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: var(--accent-primary);
}

.cursor.typing-done {
    animation: none;
    opacity: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 7rem; /* Mengurangi padding atas pada tampilan mobile */
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 6rem; /* Lebih sedikit padding untuk layar sangat kecil */
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23FFFFFF" fill-opacity="0.1" d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"%3E%3C/path%3E%3C/svg%3E') repeat;
    z-index: 1;
    animation: animateBackground 60s linear infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23FFFFFF" fill-opacity="0.05" d="M30 40c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm50 30c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm-30-30c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5zm-50 50c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5zm80-80c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5zm-80 0c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5zm80 30c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5z"%3E%3C/path%3E%3C/svg%3E') repeat;
    z-index: 2;
    animation: animateBackground 40s linear infinite reverse;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes animateBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-25%, -25%); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

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

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 1rem; /* Meningkatkan margin bawah untuk jarak yang lebih baik */
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.school-title {
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease-out 0.3s both;
}

@media (max-width: 768px) {
    .school-title {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .school-title {
        margin-bottom: 1rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Menambahkan bayangan untuk meningkatkan keterbacaan */
    letter-spacing: -0.5px; /* Sedikit mengurangi jarak antar huruf untuk keterbacaan lebih baik */
}

.typing-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    font-weight: 800;
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
    animation: blink 0.7s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
    line-height: 1.7; /* Meningkatkan line height untuk keterbacaan lebih baik */
    font-weight: 500; /* Sedikit lebih tebal untuk kontras lebih baik */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Bayangan tipis untuk meningkatkan keterbacaan */
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease-out 0.8s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 4px 15px var(--shadow); /* Menambahkan bayangan untuk meningkatkan kontras */
    font-weight: 500; /* Membuat teks sedikit lebih tebal */
}

@media (max-width: 768px) {
    .hero-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .highlight-item {
        width: 90%;
        justify-content: center;
    }
}

.highlight-item {
    color: var(--text-primary); /* Memastikan warna teks memiliki kontras yang baik */
}

.highlight-item:nth-child(1) {
    animation: fadeSlideUp 0.8s ease-out 0.9s forwards;
}

.highlight-item:nth-child(2) {
    animation: fadeSlideUp 0.8s ease-out 1.0s forwards;
}

.highlight-item:nth-child(3) {
    animation: fadeSlideUp 0.8s ease-out 1.1s forwards;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.highlight-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.hero-cta {
    animation: fadeSlideUp 0.8s ease-out 1s both;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding-bottom: 7rem; /* Menambah padding bawah untuk menghindari tumpang tindih dengan menu mobile */
    }
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-contrast-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.005em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    border: 2px solid var(--secondary-primary);
    padding: 2.5rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 1s ease-out;
    /* Claymorphism card effect with new palette */
    box-shadow: 
        15px 15px 30px var(--clay-shadow-dark),
        -15px -15px 30px var(--clay-shadow-light),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3),
        inset -3px -3px 6px rgba(100, 27, 46, 0.1);
}

.feature-card:hover {
    transform: translateY(3px) scale(0.98);
    /* Claymorphism pressed effect on hover */
    box-shadow: 
        8px 8px 16px var(--clay-shadow-dark),
        -8px -8px 16px var(--clay-shadow-light),
        inset 8px 8px 16px var(--clay-shadow-dark),
        inset -8px -8px 16px var(--clay-shadow-light);
    border-color: var(--accent-primary);
    background: var(--bg-tertiary);
    background: var(--bg-tertiary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Claymorphism icon effect */
    box-shadow: 
        8px 8px 16px var(--clay-shadow-dark),
        -8px -8px 16px var(--clay-shadow-light),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2),
        inset -2px -2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(3deg);
    /* Claymorphism pressed icon effect */
    box-shadow: 
        4px 4px 8px var(--clay-shadow-dark),
        -4px -4px 8px var(--clay-shadow-light),
        inset 4px 4px 8px var(--clay-shadow-dark),
        inset -4px -4px 8px var(--clay-shadow-light);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-contrast-high);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-contrast-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
}

/* Testimonial Quote */
.testimonial-quote {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-quote blockquote {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-contrast-medium);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2.5rem;
    background: var(--clay-gradient);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 400;
    /* Claymorphism testimonial effect */
    box-shadow: 
        12px 12px 24px var(--clay-shadow-dark),
        -12px -12px 24px var(--clay-shadow-light),
        inset 3px 3px 6px var(--clay-shadow-light),
        inset -3px -3px 6px var(--clay-shadow-dark);
}

.testimonial-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-primary);
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-family: serif;
}

/* Programs & Jalur */
.programs-section, .jalur-section {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-contrast-high);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.programs-grid, .jalur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card, .jalur-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    border: 2px solid var(--secondary-primary);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 1s ease-out;
    /* Claymorphism card effect with new palette */
    box-shadow: 
        12px 12px 24px var(--clay-shadow-dark),
        -12px -12px 24px var(--clay-shadow-light),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3),
        inset -3px -3px 6px rgba(100, 27, 46, 0.1);
}

.program-card:hover, .jalur-card:hover {
    transform: translateY(2px) scale(0.98);
    /* Claymorphism pressed effect on hover */
    box-shadow: 
        6px 6px 12px var(--clay-shadow-dark),
        -6px -6px 12px var(--clay-shadow-light),
        inset 6px 6px 12px var(--clay-shadow-dark),
        inset -6px -6px 12px var(--clay-shadow-light);
    border-color: var(--accent-primary);
}

.program-icon, .jalur-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Claymorphism icon effect */
    box-shadow: 
        6px 6px 12px var(--clay-shadow-dark),
        -6px -6px 12px var(--clay-shadow-light),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2),
        inset -2px -2px 4px rgba(0, 0, 0, 0.2);
}

.program-card h4, .jalur-card h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-contrast-high);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.program-card p, .jalur-card p {
    color: var(--text-contrast-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
}

.jalur-benefit {
    background: var(--success);
    color: var(--text-contrast-high);
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.005em;
    line-height: 1.4;
    /* Claymorphism benefit badge effect */
    box-shadow: 
        4px 4px 8px var(--clay-shadow-dark),
        -4px -4px 8px var(--clay-shadow-light),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3),
        inset -1px -1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Image Slider */
.image-slider-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}



/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slide Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
    border-color: var(--accent-primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Requirements */
.requirements-section {
    margin-top: 4rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-primary);
}

.requirement-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.requirements-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--warning);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
}

.requirements-note i {
    font-size: 1.2rem;
}

/* Biaya Section */
.biaya-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.biaya-content {
    display: none;
}

.biaya-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.biaya-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.info-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.biaya-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
}

.biaya-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.biaya-table th,
.biaya-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.biaya-table th {
    background: var(--gradient-primary);
    color: #F5F5DC;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.biaya-table tr:hover {
    background: var(--bg-tertiary);
}

/* Jalur Section Styles */
.jalur-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    border-left: 5px solid var(--accent-primary);
}

.jalur-title {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.program-section {
    margin-bottom: 2rem;
}

.program-section:last-child {
    margin-bottom: 0;
}

.program-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    text-align: center;
}

/* Termin Section */
.termin-section {
    margin-top: 3rem;
}

.payment-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.payment-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-note strong {
    color: var(--accent-primary);
}

.termin-section h4 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.termin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.termin-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.termin-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
    border-color: var(--accent-primary);
}

.termin-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.termin-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.termin-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Skema Pembayaran Section */
.skema-pembayaran-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.skema-pembayaran-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Skema Toggle Buttons */
.skema-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.skema-toggle-btn {
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.skema-toggle-btn:hover {
    background: var(--surface-tertiary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.skema-toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 5px 20px var(--shadow);
}

/* Skema Content */
.skema-content {
    display: none;
}

.skema-content.active {
    display: block;
}

/* Program Toggle Buttons */
.program-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.program-toggle-btn {
    padding: 0.6rem 1rem;
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.program-toggle-btn:hover {
    background: var(--surface-tertiary);
    border-color: var(--accent-secondary);
    transform: translateY(-1px);
}

.program-toggle-btn.active {
    background: var(--accent-secondary);
    color: white;
    border-color: var(--accent-secondary);
    box-shadow: 0 3px 10px var(--shadow);
}

/* Program Content */
.program-content {
    display: none;
}

.program-content.active {
    display: block;
}

.program-content h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Termin Table */
.termin-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.termin-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.termin-table th {
    background: var(--gradient-primary);
    color: #F5F5DC;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--glass-border);
}

.termin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
}

.termin-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.termin-table tr:last-child td {
    border-bottom: none;
}

/* Skema Note */
.skema-note {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-primary);
    margin-top: 2rem;
}

.skema-note h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.skema-note ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.skema-note li {
    margin-bottom: 0.5rem;
}

.skema-note strong {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .skema-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .skema-toggle-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .program-toggle {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .program-toggle-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .termin-table th,
    .termin-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .skema-pembayaran-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .termin-table th,
    .termin-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.75rem;
    }
    
    .skema-pembayaran-section h4 {
        font-size: 1.2rem;
    }
    
    .program-content h5 {
        font-size: 1rem;
    }
}

/* Biaya Notes */
.biaya-notes {
    margin-top: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
}

.biaya-notes h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.biaya-notes ul {
    list-style: none;
    padding: 0;
}

.biaya-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.biaya-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Bidik Misi */
.bidik-misi-content {
    display: flex;
    justify-content: center;
}

.bidik-misi-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    transition: all 0.3s ease;
}

.bidik-misi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--success);
}

.bidik-misi-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.bidik-misi-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.bidik-misi-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.bidik-misi-requirements {
    text-align: left;
    margin-bottom: 2rem;
}

.bidik-misi-requirements h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.bidik-misi-requirements ul {
    list-style: none;
    padding: 0;
}

.bidik-misi-requirements li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.bidik-misi-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Testimonial */
.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    margin-top: 2rem;
}

.testimonial-slider {
    display: flex;
    width: 100%;
    max-width: 1000px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin: 0 auto;
    flex-wrap: nowrap;
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    word-break: break-word;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--accent-primary);
}

.testimonial-content {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
}

.testimonial-quote {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.testimonial-quote i {
    color: var(--accent-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
    text-overflow: ellipsis;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-info h4 {
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    opacity: 0.5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    opacity: 1;
    background: var(--accent-primary);
    transform: scale(1.2);
}

.nav-dot:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Media queries untuk testimonial */
@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 90vw;
        padding: 0.5rem 0;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .testimonial-quote i {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        max-width: 100%;
        padding: 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        min-width: calc(100% - 2rem);
    }
    
    .testimonial-quote {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .testimonial-quote i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .testimonial-rating i {
        font-size: 1.2rem;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--accent-primary);
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--accent-primary);
    color: #F5F5DC;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 8px 25px rgba(100, 27, 46, 0.3);
    animation: ctaHighlight 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(100, 27, 46, 0.4);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    animation: ctaRipple 3s infinite ease-out;
}

@keyframes ctaRipple {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    30% {
        opacity: 0.3;
        transform: scale(0.7);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Animasi ikon CTA */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/* Animasi highlight untuk tombol CTA */
@keyframes ctaHighlight {
    0% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.5), 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.8), 0 0 25px rgba(0, 212, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.5), 0 0 10px rgba(0, 212, 255, 0.3);
    }
}

.cta-button i {
    animation: iconPulse 1.5s infinite ease-in-out;
}

.btn-whatsapp i {
    animation: iconRotate 2s infinite linear;
}

.hero-cta .btn-primary i {
    animation: iconBounce 1.5s infinite ease-in-out;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--secondary-primary);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-brand i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent-primary);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 153, 204, 0.4);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
/* Laptop 14 inch (1366x768) */
@media (max-width: 1366px) and (max-height: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0.5rem 1rem;
    }
    
    .nav-brand .brand-text {
        font-size: 0.9rem;
    }
    
    .nav-link {
        margin: 0 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto 2rem;
    }
    
    .hero-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .features-grid,
    .programs-grid,
    .jalur-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .feature-card,
    .program-card,
    .jalur-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3,
    .program-card h3,
    .jalur-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p,
    .program-card p,
    .jalur-card p {
        font-size: 0.95rem;
    }
    
    .steps-container {
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .step-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .step-card p {
        font-size: 0.95rem;
    }
    
    .testimonial-slider {
        max-width: 90%;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.2rem;
    }
    
    .biaya-card {
        padding: 1.5rem;
    }
    
    .biaya-card h3 {
        font-size: 1.3rem;
    }
    
    .biaya-price {
        font-size: 1.8rem;
    }
    
    .termin-grid {
        gap: 1.5rem;
    }
    
    .termin-card h4 {
        font-size: 1.1rem;
    }
    
    .termin-price {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-card p {
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        right: 1.5rem;
        bottom: 4.5rem;
    }
}

/* Laptop kecil dan tablet landscape (1024px - 1365px) */
@media (max-width: 1365px) and (min-width: 1025px), (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .highlight-item {
        min-width: 200px;
    }
    
    .features-grid,
    .programs-grid,
    .jalur-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .biaya-toggle {
        flex-wrap: wrap;
    }
    
    .biaya-info {
        flex-direction: column;
        align-items: center;
    }
    
    .termin-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .testimonial-slider {
        max-width: 95%;
    }
    
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        gap: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
        width: auto;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 95%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid,
    .programs-grid,
    .jalur-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .testimonial-slider {
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .mobile-menu {
        top: calc(1rem + 100px); /* Posisi sedikit lebih dekat pada layar kecil */
        right: 5px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid,
    .programs-grid,
    .jalur-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .program-card,
    .jalur-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3,
    .program-card h3,
    .jalur-card h3 {
        font-size: 1.2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .biaya-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .biaya-info {
        flex-direction: column;
        align-items: center;
    }
    
    .biaya-card {
        padding: 1.2rem;
    }
    
    .biaya-card h3 {
        font-size: 1.2rem;
    }
    
    .biaya-price {
        font-size: 1.6rem;
    }
    
    .termin-grid {
        grid-template-columns: 1fr;
    }
    
    .termin-card {
        padding: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 0.8rem;
    }
    
    .btn-large {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links,
    .footer-contact,
    .footer-social {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 4rem; /* Menambah padding bawah untuk menu mobile */
    }
    
    .hero {
        padding-top: 5rem; /* Mengurangi padding atas pada tampilan mobile */
        padding-bottom: 5rem; /* Menambah padding bawah untuk menu mobile */
    }
    
    section:last-of-type {
        padding-bottom: 5rem; /* Menambah padding bawah pada section terakhir */
    }
    
    .header {
        top: 0.5rem;
        background: var(--glass-bg);
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-highlights {
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card,
    .program-card,
    .jalur-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .biaya-table {
        font-size: 0.8rem;
    }
    
    .biaya-table th,
    .biaya-table td {
        padding: 0.5rem;
    }
}



.nav-logo {
    height: 40px; /* Adjust as needed */
    width: auto;
}



/* Watermark styling for dark mode (default) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("LOGOMUSASI_BULAT-nr.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 45%; /* Optimized size for better balance */
    opacity: 0.12; /* Increased opacity for better visibility */
    z-index: -1;
    pointer-events: none; /* Allow clicks to pass through */
    filter: contrast(1.4) brightness(1.1) saturate(1.2); /* Enhanced filters for clarity */
    mix-blend-mode: soft-light; /* Better blending mode for visibility */
    transition: opacity 0.3s ease, filter 0.3s ease;
}



/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.faq-question:hover {
    background: var(--bg-tertiary);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-question i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-tertiary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Video Section Styles */
.video-section {
    margin-top: 3rem;
    text-align: center;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-tertiary);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-item h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Single Video Section */
.single-video-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.single-video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-secondary);
    box-shadow: 0 8px 24px var(--shadow);
    margin-bottom: 1.5rem;
}

.single-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-description {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.video-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Video Responsive Design */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .video-item h4 {
        font-size: 1rem;
    }
    
    .video-description {
        padding: 1rem;
    }
    
    .video-description p {
        font-size: 0.9rem;
    }
    
    /* Image Slider Responsive */
    .image-slider-container {
        margin: 1.5rem 1rem 2rem 1rem;
        max-width: 100%;
    }
    
    .slider-wrapper {
        height: 300px;
    }
    

    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Jalur Section Responsive */
    .jalur-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .jalur-title {
        font-size: 1.3rem;
    }
    
    .program-title {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .biaya-table {
        font-size: 0.75rem;
    }
    
    .biaya-table th,
    .biaya-table td {
        padding: 0.4rem 0.2rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .image-slider-container {
        max-width: 900px;
    }
    
    .slider-wrapper {
        height: 600px;
    }
}

/* Medium Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .image-slider-container {
        max-width: 750px;
    }
    
    .slider-wrapper {
        height: 550px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .image-slider-container {
        max-width: 650px;
        margin: 1.5rem auto 2.5rem auto;
    }
    
    .slider-wrapper {
        height: 450px;
    }
    

    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .image-slider-container {
        margin: 1rem 0.5rem 1.5rem 0.5rem;
        border-radius: 12px;
    }
    
    .slider-wrapper {
        height: 250px;
    }
    

    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
    
    .slider-indicators {
        bottom: 10px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}


