/* ============ APPSI JAMBI - Ultra Modern Stylesheet ============ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Ultra-modern sophisticated palette */
  --primary: #047857; /* Deep emerald */
  --primary-dark: #064E3B;
  --primary-light: #10B981;
  --primary-glow: rgba(16, 185, 129, 0.4);
  
  --secondary: #ECFDF5;
  --accent: #E11D48;
  
  --dark: #09090b;
  --gray-900: #18181b;
  --gray-800: #27272a;
  --gray-700: #3f3f46;
  --gray-600: #52525b;
  --gray-500: #71717a;
  --gray-400: #a1a1aa;
  --gray-300: #d4d4d8;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --white: #ffffff;
  
  --bg-color: #fafafa;
  --surface: #ffffff;
  --surface-hover: #f4f4f5;
  --border-color: rgba(0, 0, 0, 0.06);
  
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  
  /* Next-gen soft shadows (Glassmorphism inspired) */
  --shadow-sm: 0 4px 18px rgba(15,23,42,0.04);
  --shadow: 0 14px 38px rgba(15,23,42,0.08);
  --shadow-lg: 0 18px 44px rgba(15,23,42,0.12);
  --shadow-glow: 0 10px 24px rgba(4,120,87,0.18);
  
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 1.35rem; /* Following appsi.id style */
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

[data-theme="dark"] {
  --dark: #fafafa;
  --gray-900: #f4f4f5;
  --gray-800: #e4e4e7;
  --gray-700: #d4d4d8;
  --gray-600: #a1a1aa;
  --gray-500: #71717a;
  --gray-400: #52525b;
  --gray-300: #3f3f46;
  --gray-200: #27272a;
  --gray-100: #18181b;
  --white: #09090b;
  
  --bg-color: #09090b;
  --surface: #121214;
  --surface-hover: #18181b;
  --border-color: rgba(255, 255, 255, 0.08);
  
  --primary: #10B981;
  --primary-dark: #34d399; /* Lighter variant for dark mode visibility */
  --secondary: #064E3B;
  --shadow: 0 12px 32px -8px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 64px -12px rgba(0,0,0,.5);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; font-size: 16px; }
body { 
    font-family: var(--font-sans); 
    color: var(--dark); 
    background-color: var(--bg-color); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; 
}

/* Typography */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; }
h1 { font-size: 3.5rem; letter-spacing: -0.04em; }
h2 { font-size: 2.5rem; letter-spacing: -0.03em; }
h3 { font-size: 1.75rem; letter-spacing: -0.02em; }
p { color: var(--gray-600); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ============ BACKGROUND BLOBS ============ */
.bg-blobs {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    overflow: hidden; z-index: 0; pointer-events: none;
}
.blob {
    position: absolute; filter: blur(90px); opacity: 0.4;
    border-radius: 50%; animation: float 20s infinite alternate ease-in-out;
}
.blob-1 { width: 500px; height: 500px; background: var(--primary-glow); top: -200px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(16, 185, 129, 0.2); bottom: -100px; left: -100px; animation-delay: -10s; }
[data-theme="dark"] .blob { opacity: 0.15; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
    100% { transform: translate(50px, -50px) scale(0.9); }
}

/* ============ NAVBAR ============ */
.navbar { 
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; 
    background: transparent; transition: var(--transition); 
    padding: 20px 0;
}
.navbar.scrolled { 
    padding: 10px 0;
    background: rgba(var(--surface-rgb, 255,255,255), 0.7); 
    backdrop-filter: blur(24px); 
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
[data-theme="dark"] .navbar.scrolled { background: rgba(18,18,20,0.7); }

.navbar-inner { 
    display: flex; align-items: center; justify-content: space-between; 
    height: 60px; max-width: 1200px; margin: 0 auto; padding: 0 24px; 
}
.navbar-brand { display: flex; align-items: center; gap: 14px; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--dark); letter-spacing: -0.02em; }
.navbar-brand .logo-box {
    width: 42px; height: 42px; background: var(--gradient);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: var(--transition-bounce);
}
.navbar-brand:hover .logo-box { transform: scale(1.05) rotate(-5deg); }
.navbar-brand span { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand .brand-sub { font-size: 0.65rem; font-weight: 600; color: var(--gray-500); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; font-family: var(--font-sans); }
[data-theme="dark"] .navbar-brand .brand-sub { color: #ffffff !important; opacity: 0.8; }

.nav-menu { display: flex; align-items: center; gap: 8px; list-style: none; background: rgba(var(--surface-rgb, 255,255,255), 0.5); padding: 6px; border-radius: var(--radius-full); border: 1px solid var(--border-color); backdrop-filter: blur(4px); }
[data-theme="dark"] .nav-menu { background: rgba(24,24,27,0.5); }
.navbar.scrolled .nav-menu { background: transparent; border-color: transparent; }

.nav-menu a { 
    padding: 8px 18px; font-size: 0.875rem; font-weight: 600; color: var(--gray-600); 
    border-radius: var(--radius-full); position: relative; transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--dark); background: var(--surface-hover); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { 
    position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%) translateY(10px) scale(0.95); 
    min-width: 240px; background: var(--surface); border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-lg); padding: 8px; border: 1px solid var(--border-color);
    opacity: 0; visibility: hidden; transition: var(--transition-bounce); z-index: 100; 
    transform-origin: top center;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.nav-dropdown-menu::before { content:''; position:absolute; top:-6px; left:50%; transform:translateX(-50%) rotate(45deg); width:12px; height:12px; background:var(--surface); border-top:1px solid var(--border-color); border-left:1px solid var(--border-color); }
.nav-dropdown-menu a { display: flex; align-items: center; padding: 10px 16px; font-size: 0.85rem; border-radius: var(--radius); border-radius: 10px; color: var(--gray-700); }
.nav-dropdown-menu a:hover { background: var(--surface-hover); color: var(--primary); transform: translateX(4px); }

.action-buttons { display: flex; align-items: center; gap: 10px; }
.dark-toggle { 
    cursor: pointer; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color); 
    background: var(--surface); color: var(--dark); font-size: 1rem; 
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-bounce);
}
.dark-toggle:hover { transform: scale(1.1); box-shadow: var(--shadow-sm); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark); cursor: pointer; }

/* ============ HERO SECTION ============ */
.hero-section { margin-top: 100px; position: relative; padding: 60px 0 100px; }
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: var(--secondary); color: var(--primary-dark); font-size: 0.85rem; font-weight: 700;
    border-radius: var(--radius-full); margin-bottom: 24px; border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 12px rgba(16,185,129,0.1);
}
[data-theme="dark"] .hero-badge { color: #ffffff; }
.hero-content h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 24px; 
    background: linear-gradient(to right, var(--dark), var(--gray-500));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
[data-theme="dark"] .hero-content h1 { background: linear-gradient(to right, #fff, #a1a1aa); -webkit-background-clip: text; }
.hero-content p { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 40px; line-height: 1.7; font-weight: 400; max-width: 600px; margin-inline: auto; }
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
    padding: 14px 28px; font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; 
    border-radius: var(--radius-full); border: none; cursor: pointer; 
    transition: var(--transition-bounce); text-decoration: none; position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0; transition: var(--transition); pointer-events: none;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary { 
    background: var(--dark); color: var(--white); 
    box-shadow: 0 8px 24px -6px rgba(0,0,0,0.2); 
}
[data-theme="dark"] .btn-primary { background: #fff; color: #000; box-shadow: 0 8px 24px -6px rgba(255,255,255,0.2); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px -8px rgba(0,0,0,0.3); }

.btn-outline { border: 1.5px solid var(--border-color); color: var(--dark); background: var(--surface); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--dark); background: var(--surface-hover); transform: translateY(-3px) scale(1.02); }

.btn-accent { background: var(--primary); color: #fff; box-shadow: 0 8px 24px -6px var(--primary-glow); }
.btn-accent:hover { background: var(--primary-dark); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px -8px var(--primary-glow); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-inline: auto; }
.section-header h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.03em; }
.section-header p { font-size: 1.1rem; color: var(--gray-600); }
.section-badge { 
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; 
    background: var(--surface); border: 1px solid var(--border-color); color: var(--gray-700); 
    font-size: 0.8rem; font-weight: 700; border-radius: var(--radius-full); margin-bottom: 20px; 
    text-transform: uppercase; letter-spacing: 0.05em; box-shadow: var(--shadow-sm);
}

/* ============ HIGH-END BENTO CARDS ============ */
.card { 
    background: var(--surface); border-radius: var(--radius-xl); 
    border: 1px solid var(--border-color); transition: var(--transition-bounce); 
    overflow: hidden; position: relative; z-index: 1; display: flex; flex-direction: column;
}
.card::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.8), transparent 70%);
    opacity: 0; transition: var(--transition);
}
[data-theme="dark"] .card::before { background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 70%); }
.card:hover { 
    transform: translateY(-8px) scale(1.01); 
    box-shadow: var(--shadow-lg); border-color: rgba(16, 185, 129, 0.3);
}
.card:hover::before { opacity: 1; }

.card-img { width: 100%; height: 240px; object-fit: cover; transition: var(--transition-slow); }
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrapper { overflow: hidden; position: relative; }

.card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); letter-spacing: -0.01em; }
.card-title a:hover { color: var(--primary); }
.card-text { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; color: var(--gray-500); font-weight: 500; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-color); }
.card-badge { 
    position: absolute; top: 16px; left: 16px; z-index: 10;
    padding: 6px 14px; background: var(--primary); color: var(--white); 
    font-size: 0.75rem; font-weight: 700; border-radius: 6px; 
    box-shadow: var(--shadow-sm); text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============ GRIDS ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bento-grid { 
    display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(150px, auto); gap: 24px; 
}
.bento-item { background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition-bounce); position: relative; overflow: hidden; }
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary-light); }

/* ============ STATS COUNTER ============ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { 
    background: var(--surface); padding: 40px 30px; border-radius: var(--radius-lg); 
    text-align: center; border: 1px solid var(--border-color); transition: var(--transition-bounce);
    position: relative; overflow: hidden;
}
.stat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.stat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.stat-card:hover::after { transform: scaleX(1); }
.stat-icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--primary); background: var(--secondary); width: 80px; height: 80px; display: inline-flex; align-items: center; justify-content: center; border-radius: 20px; transform: rotate(-5deg); transition: var(--transition-bounce); }
.stat-card:hover .stat-icon { transform: rotate(0) scale(1.1); }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
.stat-label { font-size: 0.9rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============ CHAIRMAN SECTION ============ */
.chairman-card { 
    display: flex; align-items: center; gap: 60px; background: var(--surface); 
    border-radius: var(--radius-xl); padding: 60px; box-shadow: var(--shadow-lg); 
    border: 1px solid var(--border-color); position: relative; overflow: hidden;
}
.chairman-card::before {
    content:''; position: absolute; top: 0; right: 0; width: 400px; height: 400px;
    background: var(--primary-glow); filter: blur(100px); opacity: 0.2; z-index: 0;
}
.chairman-img-wrap { position: relative; z-index: 1; flex-shrink: 0; }
.chairman-img { width: 320px; height: 400px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg); }
.chairman-badge { position: absolute; bottom: -20px; right: -20px; background: var(--surface); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border-color); }
.chairman-content { position: relative; z-index: 1; }
.chairman-content h3 { font-size: 2.5rem; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.02em; }
.chairman-content .position { color: var(--primary); font-size: 1.1rem; font-weight: 600; margin-bottom: 30px; display: inline-block; padding: 6px 16px; background: var(--secondary); border-radius: var(--radius-full); }
.chairman-content blockquote { 
    font-size: 1.25rem; color: var(--gray-700); line-height: 1.8; 
    border-left: 4px solid var(--primary); padding-left: 24px; margin: 0 0 30px; font-weight: 500;
}

/* ============ PAGE HEADER ============ */
.page-header { 
    padding: 160px 0 80px; position: relative; overflow: hidden; 
    text-align: center; background: transparent;
}
.page-header::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(circle at center top, var(--secondary) 0%, transparent 70%);
}
[data-theme="dark"] .page-header::before { background: radial-gradient(circle at center top, rgba(16,185,129,0.1) 0%, transparent 70%); }
.page-header h1 { color: var(--dark); font-size: 3.5rem; letter-spacing: -0.03em; margin-bottom: 16px; }
.page-header .breadcrumb { display: inline-flex; align-items: center; gap: 12px; padding: 8px 24px; background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 600; color: var(--gray-500); box-shadow: var(--shadow-sm); }
.page-header .breadcrumb a { color: var(--dark); }
.page-header .breadcrumb a:hover { color: var(--primary); }

/* ============ FOOTER ============ */
.footer { background: var(--surface); border-top: 1px solid var(--border-color); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer::before { content:''; position:absolute; top:0; left:0; width:100%; height:1px; background:linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer h4 { color: var(--dark); font-size: 1.1rem; margin-bottom: 24px; font-weight: 700; }
.footer-about p { font-size: 0.95rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 24px; max-width: 400px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { font-size: 0.95rem; color: var(--gray-600); font-weight: 500; }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-contact li { display: flex; gap: 16px; margin-bottom: 16px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; }
.footer-contact i { color: var(--primary); font-size: 1.1rem; margin-top: 4px; }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.9rem; color: var(--gray-500); font-weight: 500; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { 
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; border: 1px solid var(--border-color); color: var(--dark); 
    font-size: 1.1rem; transition: var(--transition-bounce); background: var(--surface);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px var(--primary-glow); }

/* ============ FORMS ============ */
.form-group { margin-bottom: 24px; text-align: left; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 8px; }
.form-control { 
    width: 100%; padding: 14px 20px; border: 1px solid var(--border-color); 
    border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.95rem; 
    transition: var(--transition); background: var(--surface); color: var(--dark); 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow), inset 0 2px 4px rgba(0,0,0,0.02); }
textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.6; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ============ TABLES ============ */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-color); background: var(--surface); box-shadow: var(--shadow-sm); }
.table { width: 100%; border-collapse: collapse; }
.table th { background: var(--surface-hover); padding: 16px 24px; text-align: left; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--gray-500); letter-spacing: 0.05em; border-bottom: 1px solid var(--border-color); }
.table td { padding: 16px 24px; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; color: var(--gray-700); }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--surface-hover); }

/* ============ ALERTS ============ */
.alert { padding: 16px 24px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 500; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; border: 1px solid; }
.alert-success { background: var(--secondary); color: var(--primary-dark); border-color: rgba(16,185,129,0.2); box-shadow: 0 4px 12px rgba(16,185,129,0.05); }
.alert-error { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.alert-info { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
[data-theme="dark"] .alert-success { background: rgba(16,185,129,0.1); color: #34d399; }
[data-theme="dark"] .alert-error { background: rgba(225,29,72,0.1); color: #fb7185; }

/* ============ FAQ ACCORDION ============ */
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius-lg); margin-bottom: 16px; overflow: hidden; transition: var(--transition); background: var(--surface); }
.faq-item:hover { border-color: var(--gray-400); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 8px 24px var(--primary-glow); transform: scale(1.01); z-index: 10; position: relative; }
.faq-question { padding: 24px 30px; font-weight: 700; font-size: 1.1rem; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { color: var(--gray-400); transition: var(--transition-bounce); font-size: 0.9rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; }
.faq-item.active .faq-answer { padding: 0 30px 24px; max-height: 1000px; opacity: 1; }
.faq-answer p { color: var(--gray-600); font-size: 1rem; line-height: 1.8; }

/* ============ PROGRESS BAR ============ */
.progress { height: 10px; background: var(--surface-hover); border-radius: var(--radius-full); overflow: hidden; border: 1px solid var(--border-color); }
.progress-bar { height: 100%; background: var(--gradient); border-radius: var(--radius-full); transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.progress-bar::after { content:''; position:absolute; top:0; left:0; bottom:0; right:0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: shimmer 2s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ============ BADGES / TAGS ============ */
.badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; border-radius: var(--radius-full); letter-spacing: 0.05em; text-transform: uppercase; }
.badge-success { background: var(--secondary); color: var(--primary-dark); border: 1px solid rgba(16,185,129,0.2); }
.badge-warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.badge-danger { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }
.badge-info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-primary { background: var(--dark); color: #fff; }
[data-theme="dark"] .badge-primary { background: #fff; color: #000; }

/* ============ MODAL ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal { background: var(--surface); border-radius: var(--radius-xl); padding: 40px; max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; transform: scale(0.9) translateY(20px); transition: var(--transition-bounce); box-shadow: 0 40px 80px rgba(0,0,0,0.2); border: 1px solid var(--border-color); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }

/* ============ BACK TO TOP ============ */
.back-to-top { 
    position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px; 
    background: var(--surface); color: var(--dark); border: 1px solid var(--border-color); 
    border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 999; 
    opacity: 0; visibility: hidden; transition: var(--transition-bounce); 
    box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; 
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); background: var(--dark); color: #fff; }
[data-theme="dark"] .back-to-top:hover { background: #fff; color: #000; }

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .chairman-card { flex-direction: column; text-align: center; padding: 40px 30px; }
  .chairman-img-wrap { margin-bottom: 20px; }
  .chairman-content blockquote { border-left: none; padding: 0; font-size: 1.15rem; }
  .chairman-content blockquote::before { content:'"'; font-size:3rem; color:var(--primary); display:block; height:30px; line-height:1; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 80px; font-size: 14px; }
  .navbar-inner { height: 70px; position: relative; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #ffffff !important; flex-direction: column; padding: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-top: 1px solid var(--border-color); border-radius: 0 0 24px 24px; z-index: 9999; backdrop-filter: none; align-items: stretch; gap: 4px; }
  [data-theme="dark"] .nav-menu { background: var(--surface) !important; }
  .nav-menu.active { display: flex; animation: fadeInUp 0.3s ease; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 12px 16px; border-radius: 12px; }
  .nav-dropdown-menu { position: static !important; box-shadow: none !important; opacity: 1 !important; visibility: visible !important; transform: none !important; padding: 10px 0 0 16px !important; display: none !important; border: none !important; background: transparent !important; height: auto !important; }
  .nav-dropdown-menu::before { display: none !important; }
  .nav-dropdown-menu a { display: block !important; width: 100% !important; padding: 12px 16px !important; margin-bottom: 8px !important; border-radius: 12px !important; font-weight: 600 !important; font-size: 0.9rem !important; color: var(--dark) !important; background: var(--surface-hover) !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .nav-dropdown.active .nav-dropdown-menu { display: flex !important; flex-direction: column !important; }
  .mobile-toggle { display: block; }
  .action-buttons { gap: 16px; }
  
  .hero-section { padding: 40px 0 60px; margin-top: 80px; }
  .hero-content h1 { font-size: 2.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .bento-grid { display: flex !important; flex-direction: column !important; gap: 24px; }
  .bento-item { grid-column: 1 / -1 !important; grid-row: auto !important; width: 100% !important; }
  .card-img-wrapper { height: 200px !important; }
  .heroSwiper { height: 400px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .stat-icon { width: 60px; height: 60px; font-size: 1.8rem; }
  .stat-number { font-size: 2rem; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 2rem; }
  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Utils */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ============ PAGINATION ============ */
.pagination { display: flex; justify-content: center; list-style: none; gap: 8px; margin-top: 24px; flex-wrap: wrap; padding: 0; }
.pagination li { margin: 0; }
.pagination li a, .pagination li span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius-full); background: var(--surface); border: 1px solid var(--border-color); color: var(--gray-600); font-weight: 600; font-size: 0.95rem; transition: var(--transition-bounce); }
.pagination li a:hover { border-color: var(--primary); color: var(--primary); background: var(--surface-hover); transform: translateY(-2px); }
.pagination li.active a, .pagination li.active span { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px var(--primary-glow); }
[data-theme="dark"] .pagination li.active a, [data-theme="dark"] .pagination li.active span { background: var(--primary); color: #000; box-shadow: 0 4px 12px rgba(16,185,129,0.2); }
