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

/* Hero Section Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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 */
:root {
    /* Primary Colors (60% - Main areas) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #E9ECEF;
    
    /* Text Colors (High contrast) */
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #333333;
    
    /* Accent Colors (Interactive elements) */
    --accent-primary: #003366;
    --accent-secondary: #66B2FF;
    
    /* Secondary Colors (Supporting elements) */
    --secondary-primary: #003366;
    --secondary-accent: #66B2FF;
    
    /* CTA Button Colors */
    --cta-primary: #4B0082;
    --cta-text: #FFFFFF;
    
    /* Functional Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    
    /* Glass and Shadow Effects */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 51, 102, 0.18);
    --shadow: rgba(0, 51, 102, 0.15);
    --clay-shadow-dark: rgba(0, 51, 102, 0.15);
    --clay-shadow-light: rgba(255, 255, 255, 0.8);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003366 0%, #66B2FF 100%);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #E9ECEF 100%);
    --clay-gradient: linear-gradient(145deg, #FFFFFF 0%, #F8F9FA 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(--cta-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(--cta-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(--cta-primary);
}

.nav-link:hover {
    color: var(--cta-text);
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 
        6px 6px 12px var(--clay-shadow-dark),
        -6px -6px 12px var(--clay-shadow-light);
}

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

.nav-link.active::after,
.nav-link:hover::after {
    width: 50%;
    background: var(--cta-primary);
}





.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: none;
    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);
    position: relative;
    z-index: 1001;
    margin-right: 0;
}

.menu-toggle:hover {
    color: var(--cta-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(--cta-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(--cta-primary);
    margin-bottom: 0.3rem;
    text-align: center;
}

.mobile-menu .btn-mobile {
    background: var(--bg-secondary);
    color: var(--cta-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(--cta-primary);
}

.mobile-menu .btn-mobile:hover {
    background: var(--cta-primary);
    color: var(--cta-text);
    /* 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(--cta-text);
}

.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(--cta-primary);
    color: var(--cta-text);
    width: 100%;
    padding: 0.8rem;
    margin: 0;
}

.mobile-menu .btn-mobile:hover {
    background: var(--accent-secondary);
}

/* 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(--cta-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(--cta-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(--cta-primary);
    color: var(--cta-text);
    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(--cta-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(75, 0, 130, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--cta-primary), transparent, var(--cta-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: var(--cta-text);
    background: var(--accent-secondary);
    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 - Elegant Bone White */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 50%, #f0ebe3 100%);
    padding: 5rem 0 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(210, 180, 140, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Header */
.hero-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

/* Typing Animation Keyframes */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #1e3a8a; }
}

@keyframes blinkTagline {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #8b5a3c; }
}

@keyframes fadeInTyping {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Hero Section Animation Classes */
.hero-badge {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.hero-school-name {
    /* Initial state for typing animation */
    opacity: 0;
}

.hero-tagline {
    /* Initial state for typing animation */
    opacity: 0;
}

.hero-description {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero-text {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.feature-item:nth-child(1) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.feature-item:nth-child(2) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s both;
}

.feature-item:nth-child(3) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.6s both;
}

.hero-cta {
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s both;
}

.hero-gallery {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.gallery-card {
    animation: fadeInScale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

/* Initial state for animated elements */
.hero-badge,
.hero-school-name,
.hero-tagline,
.hero-description,
.hero-text,
.feature-item,
.hero-cta,
.hero-gallery,
.gallery-card {
    opacity: 0;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(44, 24, 16, 0.1);
    background: linear-gradient(135deg, #2c1810 0%, #5d4037 50%, #8d6e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-school-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: #8b5a3c;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(139, 90, 60, 0.2);
    background: linear-gradient(135deg, #8b5a3c 0%, #a0522d 50%, #cd853f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.hero-tagline::before {
    content: '"';
    position: absolute;
    left: -0.3em;
    top: -0.1em;
    font-size: 1.2em;
    opacity: 0.6;
}

.hero-tagline::after {
    content: '"';
    position: absolute;
    right: -0.3em;
    bottom: -0.1em;
    font-size: 1.2em;
    opacity: 0.6;
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Description (Left Side) */
.hero-description {
    padding-right: 2rem;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-text {
    font-size: 1.1rem;
    color: #5d4037;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: #8d6e63;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.5;
    margin: 0;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #8d6e63;
    color: #8d6e63;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #8d6e63;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(141, 110, 99, 0.4);
}

/* Hero Gallery (Right Side) */
.hero-gallery {
    position: relative;
}

.gallery-card {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 139, 0.15),
        0 8px 16px rgba(0, 0, 139, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 139, 0.05);
    border: 1px solid rgba(0, 0, 139, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.02) translateZ(0);
    box-shadow: 
        0 30px 60px rgba(0, 0, 139, 0.25),
        0 15px 25px rgba(0, 0, 139, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 139, 0.08);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.gallery-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00008B;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 139, 0.2);
}

.gallery-header p {
    font-size: 0.9rem;
    color: #00008B;
    margin: 0.3rem 0 0 0;
    opacity: 0.8;
}

.gallery-nav {
    display: flex;
    gap: 0.5rem;
}

.gallery-prev,
.gallery-next {
    width: 36px;
    height: 36px;
    border: none;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    color: #00008B;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 
        0 4px 8px rgba(0, 0, 139, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 139, 0.1);
    font-weight: 600;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: linear-gradient(145deg, #00008B, #1a1a8b);
    color: white;
    transform: scale(1.05) translateY(-1px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 139, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide.active .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.gallery-caption p {
    font-size: 0.9rem;
    margin: 0;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

/* Gallery Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, #d0d0d0, #f0f0f0);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 4px rgba(0, 0, 139, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(0, 0, 139, 0.1);
}

.gallery-indicator.active {
    background: linear-gradient(145deg, #00008B, #1a1a8b);
    transform: scale(1.2);
    box-shadow: 
        0 3px 6px rgba(0, 0, 139, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}

.gallery-indicator:hover {
    background: linear-gradient(145deg, #4040a0, #6060b0);
    transform: scale(1.1);
    box-shadow: 
        0 2px 5px rgba(0, 0, 139, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -1px 1px rgba(0, 0, 139, 0.15);
}

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

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: var(--cta-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 Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 500ms ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.slide-transition {
    transition: transform 700ms ease-in-out, opacity 500ms ease-in-out;
}

/* Hero Overlay for Text Contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Hero Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 4;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

@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: 5;
    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(--cta-primary);
    -webkit-text-fill-color: var(--cta-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(--cta-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(--cta-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(--cta-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(--cta-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-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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;
}

.jalur-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* Claymorphism button 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);
}

.jalur-btn:hover {
    transform: translateY(-2px);
    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 Accordion Styles */
.program-accordion {
    margin-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

/* Accordion Performance Optimizations */
.accordion-toggle,
.accordion-content {
    transform: translateZ(0);
    will-change: transform, max-height, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.accordion-toggle {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text-contrast-medium);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    /* Claymorphism button 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);
}

.accordion-toggle:hover {
    background: var(--surface-tertiary);
    border-color: var(--cta-primary);
    color: var(--cta-primary);
    transform: translateY(-1px);
    /* Claymorphism hover 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);
}

.accordion-toggle.active {
    background: var(--cta-primary);
    color: white;
    border-color: var(--cta-primary);
    /* Claymorphism active effect */
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.2),
        inset -4px -4px 8px rgba(255, 255, 255, 0.1);
}

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

.accordion-toggle.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.3s ease,
                padding 0.3s ease;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-content.active {
    opacity: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.accordion-body {
    padding: 1rem 0 0.5rem;
    background: var(--glass-bg);
    border-radius: 0 0 12px 12px;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-top: none;
    transform: translateZ(0);
    will-change: transform;
}

.accordion-body h5 {
    color: var(--cta-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding: 0 1rem;
    letter-spacing: -0.01em;
}

.accordion-body ul {
    list-style: none;
    padding: 0 1rem 1rem;
    margin: 0;
}

.accordion-body li {
    color: var(--text-contrast-medium);
}


    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    letter-spacing: 0.005em;
}

.accordion-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.accordion-body li:last-child {
    margin-bottom: 0;
}

/* Cost Accordion Specific Styles */
.cost-accordion {
    margin-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.cost-accordion .accordion-toggle {
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cost-accordion .accordion-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--glass-bg) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #DAA520;
}

.cost-accordion .accordion-toggle.active {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border-color: #DAA520;
}

.cost-items {
    display: grid;
    gap: 1rem;
    padding: 0 1rem 1rem;
}

.cost-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 
        2px 2px 6px var(--clay-shadow-dark),
        -2px -2px 6px var(--clay-shadow-light);
}

.cost-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        4px 4px 12px var(--clay-shadow-dark),
        -4px -4px 12px var(--clay-shadow-light);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Mobile Accordion Optimizations */
@media (max-width: 768px) {
    .accordion-toggle {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .accordion-content {
        transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                    opacity 0.25s ease,
                    padding 0.25s ease;
    }
    
    .accordion-body {
        padding: 0.8rem 0 0.4rem;
    }
    
    .accordion-body ul {
        padding: 0 0.8rem 0.8rem;
    }
    
    .cost-items {
        gap: 0.8rem;
        padding: 0 0.8rem 0.8rem;
    }
}

.cost-item h6 {
    color: var(--text-contrast-high);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.cost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.cost-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    transform: translateY(-1px);
    box-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.25),
        inset 1px 1px 3px rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
}

.cost-btn i {
    font-size: 0.75rem;
}

/* Cost Accordion Responsive Design */
@media (max-width: 768px) {
    .cost-items {
        gap: 0.8rem;
        padding: 0 0.8rem 0.8rem;
    }
    
    .cost-item {
        padding: 0.8rem;
    }
    
    .cost-item h6 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .cost-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .cost-accordion .accordion-body {
        padding: 0.8rem 0 0.4rem;
    }
    
    .cost-accordion .accordion-body h5 {
        font-size: 0.9rem;
        padding: 0 0.8rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .cost-items {
        gap: 0.6rem;
        padding: 0 0.6rem 0.6rem;
    }
    
    .cost-item {
        padding: 0.6rem;
    }
    
    .cost-item h6 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .cost-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.3rem;
        border-radius: 6px;
    }
    
    .cost-btn i {
        font-size: 0.65rem;
    }
    
    .cost-accordion .accordion-toggle {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .cost-accordion .accordion-body {
        padding: 0.6rem 0 0.3rem;
    }
    
    .cost-accordion .accordion-body h5 {
        font-size: 0.85rem;
        padding: 0 0.6rem;
        margin-bottom: 0.5rem;
    }
}

/* 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(--cta-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(--cta-primary);
}

.requirement-item i {
    color: var(--cta-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;
}



/* 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(--cta-primary);
}

.jalur-title {
    color: var(--cta-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cta-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(--cta-primary);
}

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

.payment-note strong {
    color: var(--cta-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(--cta-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(--cta-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.skema-toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--cta-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(--cta-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;
    }
}





/* 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(--cta-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(--cta-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(--cta-primary);
    transform: scale(1.2);
}

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

/* Media queries untuk accordion */
@media (max-width: 1024px) {
    .accordion-toggle {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .accordion-body {
        padding: 0.9rem 0 0.4rem;
    }
    
    .accordion-body h5 {
        font-size: 0.95rem;
        padding: 0 0.9rem;
    }
    
    .accordion-body ul {
        padding: 0 0.9rem 0.9rem;
    }
    
    .accordion-body li {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .accordion-toggle {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .accordion-body {
        padding: 0.8rem 0 0.3rem;
    }
    
    .accordion-body h5 {
        font-size: 0.9rem;
        padding: 0 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .accordion-body ul {
        padding: 0 0.8rem 0.8rem;
    }
    
    .accordion-body li {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }
    
    .accordion-content.active {
        max-height: 700px;
    }
}

@media (max-width: 480px) {
    .accordion-toggle {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .accordion-body {
        padding: 0.7rem 0 0.2rem;
    }
    
    .accordion-body h5 {
        font-size: 0.85rem;
        padding: 0 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .accordion-body ul {
        padding: 0 0.7rem 0.7rem;
    }
    
    .accordion-body li {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
        padding-left: 1rem;
    }
    
    .accordion-body li::before {
        font-size: 0.8rem;
    }
    
    .accordion-content.active {
        max-height: 800px;
    }
}

/* 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(--cta-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(--cta-primary);
    color: #F5F5DC;
    border: 2px solid var(--cta-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(--cta-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(--cta-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;
    }
    
    .accordion-toggle {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .accordion-body {
        padding: 0.8rem 0 0.4rem;
    }
    
    .accordion-body h5 {
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    .accordion-body ul {
        padding: 0 0.8rem 0.8rem;
    }
    
    .accordion-body li {
        font-size: 0.8rem;
    }
    
    .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;
    }
    

    
    .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));
    }
    

    
    .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;
    }
    
    .accordion-toggle {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .accordion-body {
        padding: 0.7rem 0 0.3rem;
    }
    
    .accordion-body h5 {
        font-size: 0.85rem;
        padding: 0 0.7rem;
    }
    
    .accordion-body ul {
        padding: 0 0.7rem 0.7rem;
    }
    
    .accordion-body li {
        font-size: 0.75rem;
        padding-left: 1rem;
    }
    
    .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;
    }
    

    

    
    .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;
    }
    

    
    /* Hero Slider Mobile Responsive */
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 1rem;
    }
    
    .hero-next {
        right: 1rem;
    }
    
    .hero-indicators {
        bottom: 1.5rem;
        gap: 0.6rem;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
}



.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(--cta-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;
    }
    

}

/* 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;
    }
}

/* Hero Section Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 3rem;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-school-name {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.6rem;
    }
    
    /* Typing animation handled by JavaScript */
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-school-name {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    /* Typing animation handled by JavaScript */
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        padding-right: 0;
        order: 2;
    }
    
    .hero-gallery {
        order: 1;
    }
    
    .gallery-slider {
        height: 250px;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 1.5rem;
    }
    
    .hero-header {
        margin-bottom: 2rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-school-name {
        font-size: 2rem;
    }
    
    /* Cost Accordion Responsive */
    .cost-items {
        gap: 0.8rem;
        padding: 0 0.8rem 0.8rem;
    }
    
    .cost-item {
        padding: 0.8rem;
    }
    
    .cost-item h6 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .cost-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .cost-accordion .accordion-body {
        padding: 0.8rem 0 0.4rem;
    }
    
    .cost-accordion .accordion-toggle {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Cost Accordion Tablet Responsive */
@media (max-width: 768px) {
    .cost-items {
        gap: 0.7rem;
        padding: 0 0.7rem 0.7rem;
    }
    
    .cost-item {
        padding: 0.7rem;
    }
    
    .cost-item h6 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .cost-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    
    .cost-accordion .accordion-body {
        padding: 0.7rem 0 0.3rem;
    }
    
    .cost-accordion .accordion-body h5 {
        font-size: 0.9rem;
        padding: 0 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .cost-accordion .accordion-toggle {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 0.01em;
    }
    
    /* Typing animation handled by JavaScript */
    
    .hero-tagline::before,
    .hero-tagline::after {
        font-size: 1em;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-layout {
        gap: 2rem;
    }
    
    .gallery-card {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .gallery-slider {
        height: 200px;
    }
    
    .gallery-header h3 {
        font-size: 1.1rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Reduce animation complexity on mobile for better performance */
    .feature-item:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
    }
    
    .btn-outline:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
    }
    
    .gallery-card:hover {
        transform: translateY(-3px) scale(1.01) translateZ(0);
        box-shadow: 
            0 20px 40px rgba(0, 0, 139, 0.2),
            0 10px 20px rgba(0, 0, 139, 0.15),
            inset 0 2px 4px rgba(255, 255, 255, 0.9),
            inset 0 -2px 4px rgba(0, 0, 139, 0.08);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero-school-name,
    .hero-tagline,
    .hero-description,
    .hero-text,
    .feature-item,
    .hero-cta,
    .hero-gallery,
    .gallery-card {
        animation: none;
        opacity: 1;
    }
    
    /* Remove typing animation effects for accessibility */
    .hero-school-name,
    .hero-tagline {
        overflow: visible;
        white-space: normal;
        border-right: none;
        width: auto;
    }
    
    .feature-item,
    .btn-outline,
    .gallery-card {
        transition: none;
    }
    
    .feature-item:hover,
    .btn-outline:hover,
    .gallery-card:hover {
        transform: none;
        box-shadow: none;
    }
}


