.table-responsive {
    width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}
.table-responsive > table {
    min-width: 1100px;
}
/* Responsive peserta table: tombol aksi tidak berhimpitan dan tabel bisa digeser */
.action-btns {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 0;
}
.action-btn {
    padding: 8px 12px;
    min-width: unset;
    font-size: 13px;
    white-space: nowrap;
    margin-bottom: 0;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 8px;
}
.table-responsive > table {
    min-width: 900px;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* Horizontal action buttons for peserta table */
.action-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}
/* SILK - Cendekia Muslim Institute - Complete CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-900: #064E3B; --primary-800: #065F46; --primary-700: #047857;
    --primary-600: #059669; --primary-500: #10B981; --primary-400: #34D399;
    --primary-300: #6EE7B7; --primary-200: #A7F3D0; --primary-100: #D1FAE5; --primary-50: #ECFDF5;
    --gold-600: #B45309; --gold-500: #D97706; --gold-400: #F59E0B; --gold-300: #FBBF24;
    --red-500: #EF4444; --red-100: #FEE2E2;
    --blue-500: #3B82F6; --blue-100: #DBEAFE;
    --purple-500: #8B5CF6; --purple-100: #EDE9FE;
    --neutral-900: #111827; --neutral-800: #1F2937; --neutral-700: #374151;
    --neutral-600: #4B5563; --neutral-500: #6B7280; --neutral-400: #9CA3AF;
    --neutral-300: #D1D5DB; --neutral-200: #E5E7EB; --neutral-100: #F3F4F6; --neutral-50: #F9FAFB;
    --white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-xl: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--neutral-800); line-height: 1.6; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar { background: linear-gradient(135deg, var(--primary-800), var(--primary-700)); padding: 8px 0; font-size: 13px; color: var(--white); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 15px; }
.top-bar-right a { color: var(--white); transition: color 0.3s; }
.top-bar-right a:hover { color: var(--gold-300); }

/* Header */
.header { background: var(--white); box-shadow: var(--shadow-md); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 50px; height: 50px; border-radius: 12px; object-fit: contain; }
.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-600), var(--primary-800)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; font-weight: 700; }
.logo-text h1 { font-size: 18px; font-weight: 700; color: var(--primary-800); line-height: 1.2; }
.logo-text span { font-size: 11px; color: var(--neutral-500); text-transform: uppercase; letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu a { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--neutral-700); border-radius: 8px; transition: all 0.3s; }
.nav-menu a:hover { background: var(--primary-50); color: var(--primary-700); }
.nav-menu a.active { background: var(--primary-600); color: var(--white); }
.header-buttons { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: var(--radius-md); border: none; cursor: pointer; transition: all 0.3s; font-family: var(--font-main); }
.btn-primary { background: linear-gradient(135deg, var(--primary-600), var(--primary-700)); color: var(--white); box-shadow: 0 4px 14px rgba(5,150,105,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5,150,105,0.5); }
.btn-outline { background: transparent; color: var(--primary-700); border: 2px solid var(--primary-600); }
.btn-outline:hover { background: var(--primary-600); color: var(--white); }
.btn-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--white); box-shadow: 0 4px 14px rgba(217,119,6,0.4); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--gold-600); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--red-500); color: var(--white); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; color: var(--primary-700); cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--primary-700) 100%); position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }
.hero-text { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); }
.hero-badge i { color: var(--gold-300); }
.hero-title { font-size: 44px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-title span { color: var(--gold-300); }
.hero-subtitle { font-size: 16px; opacity: 0.9; margin-bottom: 30px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.stat-item { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 20px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.15); }
.stat-number { font-size: 28px; font-weight: 800; color: var(--gold-300); }
.stat-label { font-size: 13px; opacity: 0.9; margin-top: 5px; }
.hero-image { position: relative; }
.hero-float-card { position: absolute; background: var(--white); padding: 16px 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: float 3s ease-in-out infinite; }
.hero-float-card.card-1 { top: 20px; right: 20px; }
.hero-float-card.card-2 { bottom: 40px; left: 20px; animation-delay: 1s; }
.float-icon { width: 48px; height: 48px; background: var(--primary-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-600); font-size: 20px; }
.float-text h4 { font-size: 14px; font-weight: 700; color: var(--neutral-800); }
.float-text p { font-size: 12px; color: var(--neutral-500); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Features Bar */
.features-bar { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--neutral-200); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 15px; padding: 20px; background: var(--neutral-50); border-radius: var(--radius-lg); transition: all 0.3s; }
.feature-item:hover { background: var(--primary-50); transform: translateY(-5px); }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-600), var(--primary-700)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; flex-shrink: 0; }
.feature-text h3 { font-size: 15px; font-weight: 700; color: var(--neutral-800); margin-bottom: 4px; }
.feature-text p { font-size: 12px; color: var(--neutral-500); }

/* Sections */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-100); color: var(--primary-700); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.section-title { font-size: 36px; font-weight: 800; color: var(--neutral-900); margin-bottom: 16px; line-height: 1.3; }
.section-title span { color: var(--primary-600); }
.section-desc { font-size: 16px; color: var(--neutral-600); line-height: 1.7; }

/* Programs */
.programs { background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%); }
.programs-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 14px 28px; font-size: 14px; font-weight: 600; border: 2px solid var(--neutral-200); background: var(--white); border-radius: var(--radius-md); cursor: pointer; transition: all 0.3s; color: var(--neutral-600); font-family: var(--font-main); }
.tab-btn:hover { border-color: var(--primary-400); color: var(--primary-600); }
.tab-btn.active { background: var(--primary-600); border-color: var(--primary-600); color: var(--white); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.3s; border: 1px solid var(--neutral-100); }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.program-image { height: 160px; background: linear-gradient(135deg, var(--primary-600), var(--primary-800)); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.program-image i { font-size: 56px; color: rgba(255,255,255,0.3); position: relative; z-index: 1; }
.program-badge { position: absolute; top: 14px; left: 14px; background: var(--gold-400); color: var(--neutral-900); padding: 5px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; z-index: 2; }
.program-content { padding: 20px; }
.program-title { font-size: 17px; font-weight: 700; color: var(--neutral-900); margin-bottom: 10px; line-height: 1.3; }
.program-desc { font-size: 13px; color: var(--neutral-600); margin-bottom: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.program-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--neutral-100); }
.program-price { font-size: 12px; color: var(--neutral-500); }
.program-price strong { display: block; font-size: 16px; color: var(--primary-700); font-weight: 700; }

/* Advantages */
.advantages { background: var(--white); }
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.advantage-card { text-align: center; padding: 32px 20px; background: var(--neutral-50); border-radius: var(--radius-xl); transition: all 0.3s; border: 2px solid transparent; }
.advantage-card:hover { background: var(--white); border-color: var(--primary-200); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.advantage-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-100), var(--primary-200)); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--primary-700); }
.advantage-card:hover .advantage-icon { background: linear-gradient(135deg, var(--primary-600), var(--primary-700)); color: var(--white); }
.advantage-title { font-size: 15px; font-weight: 700; color: var(--neutral-900); margin-bottom: 10px; }
.advantage-desc { font-size: 13px; color: var(--neutral-600); line-height: 1.5; }

/* Info Section */
.info-section { background: linear-gradient(135deg, var(--primary-800), var(--primary-700)); position: relative; overflow: hidden; }
.info-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.info-section .section-header { position: relative; z-index: 1; }
.info-section .section-badge { background: rgba(255,255,255,0.15); color: var(--white); }
.info-section .section-title { color: var(--white); }
.info-section .section-title span { color: var(--gold-300); }
.info-section .section-desc { color: rgba(255,255,255,0.8); }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; position: relative; z-index: 1; }
.info-card { background: var(--white); border-radius: var(--radius-xl); padding: 30px; }
.info-card h3 { font-size: 18px; font-weight: 700; color: var(--neutral-900); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.info-card h3 i { color: var(--primary-600); }
.schedule-list { display: flex; flex-direction: column; gap: 12px; }
.schedule-item { display: flex; justify-content: space-between; padding: 12px 16px; background: var(--neutral-50); border-radius: var(--radius-md); }
.schedule-item .day { font-weight: 600; color: var(--neutral-800); }
.schedule-item .time { color: var(--primary-600); font-weight: 600; }
.notes-list { display: flex; flex-direction: column; gap: 10px; }
.notes-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--neutral-700); }
.notes-list li i { color: var(--primary-500); margin-top: 4px; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta .container { position: relative; z-index: 1; }
.cta-title { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-desc { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--neutral-900); color: var(--neutral-300); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--neutral-700); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--primary-500), var(--primary-600)); }
.footer-brand .logo-text h1 { color: var(--white); }
.footer-brand .logo-text span { color: var(--neutral-400); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-legal { font-size: 12px; color: var(--neutral-500); margin-bottom: 16px; padding: 12px; background: var(--neutral-800); border-radius: var(--radius-md); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: var(--neutral-800); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--neutral-400); transition: all 0.3s; }
.footer-social a:hover { background: var(--primary-600); color: var(--white); }
.footer-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--neutral-400); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-400); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.footer-contact-item i { color: var(--primary-400); margin-top: 4px; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; color: var(--neutral-500); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.whatsapp-float a { display: flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); padding: 14px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float a:hover { transform: translateY(-3px); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float i { font-size: 20px; }

/* Auth Pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-800), var(--primary-600)); padding: 40px 20px; position: relative; }
.auth-page::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.auth-container { width: 100%; max-width: 480px; position: relative; z-index: 1; }
.auth-card { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-xl); }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header .logo { justify-content: center; margin-bottom: 20px; }
.auth-header h2 { font-size: 24px; font-weight: 700; color: var(--neutral-900); margin-bottom: 8px; }
.auth-header p { font-size: 14px; color: var(--neutral-500); }
.auth-footer { text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--neutral-200); }
.auth-footer p { font-size: 14px; color: var(--neutral-600); }
.auth-footer a { color: var(--primary-600); font-weight: 600; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--neutral-700); margin-bottom: 8px; }
.form-group label span { color: var(--red-500); }
.form-control { width: 100%; padding: 12px 16px; font-size: 14px; border: 2px solid var(--neutral-200); border-radius: var(--radius-md); transition: all 0.3s; font-family: var(--font-main); }
.form-control:focus { outline: none; border-color: var(--primary-500); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); }
.form-control::placeholder { color: var(--neutral-400); }
.form-control.error { border-color: var(--red-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-group { position: relative; }
.input-group i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--neutral-400); }
.input-group .form-control { padding-left: 42px; }
.form-text { font-size: 12px; color: var(--neutral-500); margin-top: 6px; }
.form-text.error { color: var(--red-500); }
.form-check { display: flex; align-items: center; gap: 10px; }
.form-check input { width: 18px; height: 18px; accent-color: var(--primary-600); }
.form-check label { font-size: 14px; color: var(--neutral-600); }

/* Dashboard */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar { width: 260px; background: var(--neutral-900); color: var(--white); position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.sidebar-header { padding: 20px; border-bottom: 1px solid var(--neutral-700); }
.sidebar-header .logo-img { width: 40px; height: 40px; }
.sidebar-header .logo-icon { width: 40px; height: 40px; font-size: 14px; }
.sidebar-header .logo-text h1 { font-size: 16px; color: var(--white); }
.sidebar-menu { padding: 20px 0; }
.menu-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--neutral-500); padding: 0 20px; margin-bottom: 10px; margin-top: 20px; letter-spacing: 1px; }
.menu-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: var(--neutral-400); transition: all 0.3s; font-size: 14px; }
.menu-item:hover { background: var(--neutral-800); color: var(--white); }
.menu-item.active { background: var(--primary-600); color: var(--white); }
.menu-item i { width: 20px; text-align: center; }
.menu-item .badge { margin-left: auto; background: var(--red-500); color: var(--white); font-size: 10px; padding: 2px 8px; border-radius: 10px; }
.main-content { flex: 1; margin-left: 260px; background: var(--neutral-100); min-height: 100vh; }
.dashboard-header { background: var(--white); padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 50; }
.dashboard-header h1 { font-size: 20px; font-weight: 700; color: var(--neutral-900); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.notification-btn { position: relative; width: 40px; height: 40px; background: var(--neutral-100); border: none; border-radius: var(--radius-md); color: var(--neutral-600); cursor: pointer; transition: all 0.3s; }
.notification-btn:hover { background: var(--primary-100); color: var(--primary-600); }
.notification-btn .dot { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; background: var(--red-500); border-radius: 50%; }
.user-dropdown { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: var(--neutral-50); border-radius: var(--radius-md); cursor: pointer; }
.user-avatar { width: 36px; height: 36px; background: var(--primary-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-600); font-weight: 700; font-size: 14px; }
.user-info h4 { font-size: 14px; font-weight: 600; color: var(--neutral-800); }
.user-info p { font-size: 11px; color: var(--neutral-500); }
.dashboard-content { padding: 30px; }

/* Stats Cards */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: var(--white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.stat-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.stat-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-card-icon.green { background: var(--primary-100); color: var(--primary-600); }
.stat-card-icon.blue { background: var(--blue-100); color: var(--blue-500); }
.stat-card-icon.gold { background: rgba(251,191,36,0.2); color: var(--gold-500); }
.stat-card-icon.purple { background: var(--purple-100); color: var(--purple-500); }
.stat-card-value { font-size: 28px; font-weight: 800; color: var(--neutral-900); }
.stat-card-label { font-size: 14px; color: var(--neutral-500); margin-top: 4px; }

/* Cards & Tables */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--neutral-200); display: flex; justify-content: space-between; align-items: center; }
.card-header h3 { font-size: 16px; font-weight: 700; color: var(--neutral-900); display: flex; align-items: center; gap: 10px; }
.card-header h3 i { color: var(--primary-600); }
.card-body { padding: 24px; }
.table-responsive { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--neutral-200); }
.table th { background: var(--neutral-50); font-size: 12px; font-weight: 700; color: var(--neutral-600); text-transform: uppercase; letter-spacing: 0.5px; }
.table td { font-size: 14px; color: var(--neutral-700); }
.table tbody tr:hover { background: var(--neutral-50); }
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.status-badge.pending { background: rgba(251,191,36,0.2); color: var(--gold-600); }
.status-badge.approved { background: var(--primary-100); color: var(--primary-700); }
.status-badge.rejected { background: var(--red-100); color: var(--red-500); }
.action-btns { display: flex; gap: 8px; }
.action-btn { width: 32px; height: 32px; border: none; border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.action-btn.view { background: var(--blue-100); color: var(--blue-500); }
.action-btn.edit { background: var(--primary-100); color: var(--primary-600); }
.action-btn.delete { background: var(--red-100); color: var(--red-500); }
.action-btn:hover { transform: scale(1.1); }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: var(--white);
    margin: 60px auto;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    max-width: 480px;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.modal .close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 28px;
    color: var(--neutral-400);
    cursor: pointer;
    font-weight: bold;
}
.modal h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-700);
}
.modal .form-group { margin-bottom: 18px; }
.modal .form-control { width: 100%; padding: 10px 14px; font-size: 14px; border: 2px solid var(--neutral-200); border-radius: var(--radius-md); margin-top: 6px; }
.modal .form-control:focus { border-color: var(--primary-500); outline: none; }
.modal .btn { margin-top: 10px; }
.modal p { font-size: 15px; margin-bottom: 8px; }

/* Alerts */
.alert { padding: 16px 20px; border-radius: var(--radius-md); margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; }
.alert i { font-size: 18px; margin-top: 2px; }
.alert-success { background: var(--primary-100); color: var(--primary-800); }
.alert-error { background: var(--red-100); color: var(--red-500); }
.alert-warning { background: rgba(251,191,36,0.2); color: var(--gold-600); }
.alert-info { background: var(--blue-100); color: var(--blue-500); }

/* Instructors Section */
.instructors { background: linear-gradient(135deg, var(--primary-800), var(--primary-700)); position: relative; overflow: hidden; }
.instructors::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.instructors .section-header { position: relative; z-index: 1; }
.instructors .section-badge { background: rgba(255,255,255,0.15); color: var(--white); }
.instructors .section-title { color: var(--white); }
.instructors .section-title span { color: var(--gold-300); }
.instructors .section-desc { color: rgba(255,255,255,0.8); }
.instructors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; position: relative; z-index: 1; }
.instructor-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; text-align: center; transition: all 0.3s; }
.instructor-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.instructor-avatar { width: 100%; height: 200px; background: linear-gradient(135deg, var(--primary-200), var(--primary-300)); display: flex; align-items: center; justify-content: center; }
.instructor-avatar i { font-size: 80px; color: var(--primary-600); }
.instructor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.instructor-info { padding: 24px; }
.instructor-name { font-size: 18px; font-weight: 700; color: var(--neutral-900); margin-bottom: 6px; }
.instructor-role { font-size: 13px; color: var(--primary-600); font-weight: 600; margin-bottom: 12px; }
.instructor-bio { font-size: 13px; color: var(--neutral-600); line-height: 1.5; }

/* Testimonials Section */
.testimonials { background: var(--neutral-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.testimonial-rating { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-rating i { color: var(--gold-400); font-size: 16px; }
.testimonial-text { font-size: 15px; color: var(--neutral-700); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; background: var(--primary-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-600); font-weight: 700; font-size: 18px; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--neutral-900); }
.testimonial-course { font-size: 13px; color: var(--neutral-500); }

/* Program Features List */
.program-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.program-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--neutral-700); }
.program-features li i { color: var(--primary-500); font-size: 14px; }

/* Responsive */
@media (max-width: 1200px) { 
    .stats-grid { grid-template-columns: repeat(2, 1fr); } 
    .instructors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { display: none; }
    .hero-buttons { justify-content: center; }
    .features-grid, .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); }
    .nav-menu.active { display: flex; }
    .header-buttons { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { min-height: auto; }
    .hero-title { font-size: 28px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 22px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 26px; }
    .features-grid, .programs-grid, .advantages-grid, .instructors-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 26px; }
    .auth-card { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .dashboard-content { padding: 16px; }
}
