/* FILE: public/css/main.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

:root {
  --bg-dark: #040814;
  --accent-neon: #00e5ff;
  --accent-glow: rgba(0, 229, 255, 0.4);
  --glass-bg: rgba(15, 25, 45, 0.4);
  --glass-border: rgba(0, 229, 255, 0.2);
  --text-light: #ffffff;
  --text-muted: #94a3b8;
}

/* Base Reset & Smooth Scrolling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ================= SMART ROUTING SMOOTH SCROLL ================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset dari sticky header agar navigasi pas ke Section */
}

/* Proteksi z-index agar blob animation tidak menghalangi klik pada elemen */
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* ================= GLOBAL UTILITIES ================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ================= BLOB BACKGROUND ANIMATION ================= */
body::before, body::after {
  content: ''; position: fixed; width: 45vw; height: 45vw; min-width: 350px; min-height: 350px; z-index: 0;
  filter: blur(100px); animation: blobBounce 20s infinite alternate ease-in-out; pointer-events: none;
}
body::before {
  top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(0,229,255,0.2) 0%, transparent 65%);
}
body::after {
  bottom: -10%; right: -10%; animation-duration: 25s; animation-direction: alternate-reverse;
  background: radial-gradient(circle, rgba(0,85,255,0.2) 0%, transparent 65%);
}

@keyframes blobBounce {
  0% { transform: translate(0, 0) scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { transform: translate(5vw, 5vw) scale(1.1); border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { transform: translate(-5vw, 10vw) scale(0.9); border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
  100% { transform: translate(0, 0) scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* ================= SUPER UI ELEMENTS (Glass, Clay, Holo, Neu) ================= */

/* 1. Ultra Glassmorphism Card */
.glass-card { 
  background: linear-gradient(145deg, rgba(15, 25, 45, 0.6), rgba(5, 10, 20, 0.8)); 
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); 
  border: 1px solid var(--glass-border); border-top: 1px solid rgba(255,255,255,0.2); border-left: 1px solid rgba(255,255,255,0.1); 
  box-shadow: 0 15px 35px 0 rgba(0,0,0,0.6), inset 1px 1px 2px rgba(255,255,255,0.1); 
  border-radius: 20px; padding: 2rem; transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.glass-card:hover { transform: translateY(-8px); border-color: var(--accent-neon); box-shadow: 0 20px 50px var(--accent-glow); }

/* 2. Enhanced Claymorphism Badge */
.clay-badge { 
  background: #0b1329; color: var(--accent-neon); border-radius: 30px; padding: 10px 22px; 
  box-shadow: 6px 6px 12px rgba(0,0,0,0.8), -6px -6px 12px rgba(255,255,255,0.04), inset 2px 2px 4px rgba(255,255,255,0.08), inset -2px -2px 4px rgba(0,0,0,0.4); 
  border: 1px solid rgba(0, 229, 255, 0.1); font-weight: 700; letter-spacing: 1.5px; display: inline-block; transition: 0.3s;
}
.clay-badge:hover { color: #fff; text-shadow: 0 0 10px var(--accent-neon); }

/* 3. Holographic UI Button */
.holo-btn { 
  background: linear-gradient(135deg, rgba(0,229,255,0.1) 0%, rgba(0,102,255,0.3) 50%, rgba(0,229,255,0.1) 100%); 
  background-size: 200% auto; animation: holoFlow 3s infinite linear;
  border: 1px solid var(--accent-neon); color: #ffffff !important; padding: 14px 30px; border-radius: 30px; cursor: pointer; font-weight: 700; 
  box-shadow: 0 0 15px var(--accent-glow), inset 0 0 10px rgba(0,229,255,0.3); text-shadow: 0 0 8px rgba(0,229,255,0.6); 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); text-decoration: none; display: inline-block; text-align: center; 
}
@keyframes holoFlow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.holo-btn:hover { background: var(--accent-neon); color: var(--bg-dark) !important; text-shadow: none; box-shadow: 0 0 25px var(--accent-neon), 0 0 50px var(--accent-glow); transform: scale(1.05); }

/* 4. Neu-Glassmorphism Button */
.glass-btn { background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-top: 1px solid rgba(255,255,255,0.3); color: #ffffff !important; padding: 14px 30px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); display: inline-block; }
.glass-btn:hover { background: rgba(255,255,255,0.08); border-color: #ffffff; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 15px rgba(255,255,255,0.2); }

/* Form Inputs */
.neo-input { width: 100%; background: rgba(0,0,0,0.4); border: 1px solid var(--glass-border); color: white; padding: 14px 18px; border-radius: 12px; margin-bottom: 15px; transition: 0.3s; box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5); }
.neo-input:focus { outline: none; border-color: var(--accent-neon); box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5), 0 0 15px rgba(0,229,255,0.3); }
select.neo-input option { background: var(--bg-dark); color: white; }

/* ================= HEADER (Aesthetic & Responsive) ================= */
header { background: rgba(4, 8, 20, 0.75); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 5px 25px rgba(0,0,0,0.5); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.logo-container { display: flex; align-items: center; gap: 10px; z-index: 1001; transition: 0.3s; }
.logo-container:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 15px; align-items: center; transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.nav-item { position: relative; cursor: pointer; }
.nav-item > a { color: var(--text-light); text-decoration: none; font-weight: 500; transition: 0.3s; padding: 8px 15px; border-radius: 8px; display: block;}
.nav-item > a:hover, .nav-item.active > a { background: rgba(0,229,255,0.08); color: var(--accent-neon); text-shadow: 0 0 10px var(--accent-glow); box-shadow: inset 0 0 10px rgba(0,229,255,0.1); }
.mega-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 240px; background: rgba(5, 10, 20, 0.95); backdrop-filter: blur(25px); padding: 15px; border-radius: 20px; border: 1px solid var(--glass-border); border-top: 3px solid var(--accent-neon); flex-direction: column; gap: 5px; box-shadow: 0 25px 50px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(0,229,255,0.1); z-index: 999; transition: 0.3s; opacity: 0; visibility: hidden; }
.mega-menu a { color: var(--text-muted); text-decoration: none; padding: 12px 15px; border-radius: 10px; transition: 0.3s; display: block; font-size: 0.95rem; font-weight: 500;}
.mega-menu a:hover { background: rgba(0,229,255,0.1); color: var(--text-light); padding-left: 20px; border-left: 3px solid var(--accent-neon); }
.nav-item:hover .mega-menu { display: flex; opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu-toggle { display: none; cursor: pointer; z-index: 1001; }

/* ================= FOOTER ================= */
.custom-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
.footer-credit-link { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-weight: 500; }
.footer-credit-link:hover { color: var(--accent-neon); text-shadow: 0 0 10px var(--accent-glow); }

/* ================= SCROLL TO TOP BUTTON ================= */
.scroll-to-top { position: fixed; bottom: 40px; right: 40px; width: 60px; height: 60px; border-radius: 50%; background-color: #ea869a; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 9999; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 10px 20px rgba(234, 134, 154, 0.4); border: none; }
.scroll-to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-to-top:hover { background-color: #d67085; transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 25px rgba(234, 134, 154, 0.6); }
.scroll-to-top svg { width: 32px; height: 32px; fill: #ffffff; transition: 0.3s; }


/* ================= RESTORED: FILOSOFI LOGO & WARNA (UNTUK GRID TENTANG.HTML) ================= */
.filosofi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.filosofi-card { background: linear-gradient(145deg, rgba(20, 30, 55, 0.5), rgba(5, 10, 20, 0.7)); border: 1px solid rgba(255,255,255,0.05); border-radius: 25px; padding: 40px 30px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.3); backdrop-filter: blur(15px); transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden;}
.filosofi-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50%; height: 3px; background: var(--accent-neon); border-radius: 0 0 10px 10px; opacity: 0; transition: 0.4s; }
.filosofi-card:hover { transform: translateY(-10px); border-color: rgba(0,229,255,0.3); box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 20px rgba(0,229,255,0.1); }
.filosofi-card:hover::before { opacity: 1; width: 100%; }

/* Icon Box digunakan bersama oleh Grid (Tentang) & Slider (Index) */
.filo-icon-box { width: 80px; height: 80px; margin: 0 auto 20px; background: rgba(0, 229, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,229,255,0.1); transition: 0.4s; }
.filo-icon-box svg { width: 40px; height: 40px; fill: var(--text-muted); transition: 0.4s; }
.filosofi-card:hover .filo-icon-box, .filosofi-slide-card.active .filo-icon-box { background: rgba(0, 229, 255, 0.15); box-shadow: inset 0 0 20px rgba(0,229,255,0.3), 0 0 20px rgba(0,229,255,0.2); border-color: var(--accent-neon); transform: scale(1.1); }
.filosofi-card:hover .filo-icon-box svg, .filosofi-slide-card.active .filo-icon-box svg { fill: var(--accent-neon); filter: drop-shadow(0 0 8px var(--accent-glow)); }

.filosofi-card h3 { font-size: 1.5rem; color: white; margin-bottom: 15px; font-weight: 800; letter-spacing: 1px; }
.filo-arti { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; font-weight: 500; transition: 0.3s; }
.filosofi-card:hover .filo-arti { color: var(--accent-neon); }
.filo-makna { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; transition: 0.3s; }
.filosofi-card:hover .filo-makna { color: var(--text-light); }

.warna-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 25px; margin-top: 40px; }
.warna-card { display: flex; align-items: center; gap: 20px; background: rgba(10, 15, 30, 0.6); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 20px; backdrop-filter: blur(10px); transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.warna-card:hover { transform: translateX(10px); border-color: rgba(255,255,255,0.2); background: rgba(15, 25, 45, 0.8); }
.warna-swatch { width: 60px; height: 60px; border-radius: 15px; flex-shrink: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.warna-card:hover .warna-swatch { transform: scale(1.1) rotate(-5deg); }
.warna-info h3 { color: white; font-size: 1.2rem; margin-bottom: 5px; }
.warna-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }


/* ================= NEW SUPER UI: FILOSOFI LOGO (CAROUSEL COVER FLOW UTK INDEX.HTML) ================= */
.filosofi-slider-wrapper { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; margin-top: 40px; overflow: hidden; }
.filosofi-slider-track { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 50px 20vw; -ms-overflow-style: none; scrollbar-width: none; width: 100%; align-items: center; }
.filosofi-slider-track::-webkit-scrollbar { display: none; }

.filosofi-slide-card { 
  flex: 0 0 320px; 
  scroll-snap-align: center; 
  background: linear-gradient(145deg, rgba(20, 30, 55, 0.6), rgba(5, 10, 20, 0.8)); 
  border: 1px solid rgba(255,255,255,0.05); 
  border-radius: 25px; padding: 40px 30px; text-align: center; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); backdrop-filter: blur(15px); 
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
  opacity: 0.4; transform: scale(0.85); 
  position: relative; overflow: hidden;
}
.filosofi-slide-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50%; height: 3px; background: var(--accent-neon); border-radius: 0 0 10px 10px; opacity: 0; transition: 0.4s; }

/* The Center (Active) Card in the Cover Flow */
.filosofi-slide-card.active { 
  opacity: 1; 
  transform: scale(1.05); 
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 25px rgba(0,229,255,0.15); 
  border-color: rgba(0,229,255,0.4); 
  z-index: 2; 
}
.filosofi-slide-card.active::before { opacity: 1; width: 100%; }

.filosofi-slide-card h3 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 15px; font-weight: 800; letter-spacing: 1px; transition: 0.3s; }
.filosofi-slide-card.active h3 { color: white; }
.filosofi-slide-card.active .filo-arti { color: var(--accent-neon); }
.filosofi-slide-card .filo-makna { opacity: 0.5; }
.filosofi-slide-card.active .filo-makna { opacity: 1; color: var(--text-light); }

/* Slider Navigation Buttons */
.slider-nav-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(10,15,30,0.8); border: 1px solid rgba(255,255,255,0.1); color: var(--text-light); cursor: pointer; position: absolute; z-index: 10; display: flex; justify-content: center; align-items: center; transition: 0.3s; backdrop-filter: blur(10px); }
.slider-nav-btn:hover { background: var(--accent-neon); color: var(--bg-dark); border-color: var(--accent-neon); box-shadow: 0 0 20px var(--accent-glow); transform: scale(1.1); }
.slider-nav-btn svg { width: 24px; height: 24px; fill: currentColor; }
.slider-nav-btn.prev { left: 20px; }
.slider-nav-btn.next { right: 20px; }

/* ================= NEW SUPER UI: FILOSOFI WARNA (INTERACTIVE PILLS) ================= */
.warna-ui-container { max-width: 900px; margin: 0 auto; padding-top: 20px; }
.warna-pills-wrapper { display: flex; gap: 15px; overflow-x: auto; padding: 10px 5px; margin-bottom: 40px; scrollbar-width: none; -ms-overflow-style: none; justify-content: center; }
.warna-pills-wrapper::-webkit-scrollbar { display: none; }
.warna-pill { display: flex; align-items: center; gap: 10px; padding: 12px 25px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; cursor: pointer; white-space: nowrap; transition: 0.3s; font-weight: 600; color: var(--text-muted); }
.warna-pill:hover { background: rgba(255,255,255,0.05); color: white; transform: translateY(-3px); }
.warna-pill.active { background: rgba(0,229,255,0.1); border-color: var(--accent-neon); color: white; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.warna-pill-dot { width: 14px; height: 14px; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }

.warna-detail-box { background: linear-gradient(145deg, rgba(15, 25, 45, 0.8), rgba(5, 10, 20, 0.9)); border: 1px solid rgba(255,255,255,0.1); border-radius: 25px; padding: 40px; display: flex; gap: 30px; align-items: center; box-shadow: 0 20px 40px rgba(0,0,0,0.5); backdrop-filter: blur(20px); transition: 0.4s; opacity: 0; transform: translateY(20px); }
.warna-detail-box.show { opacity: 1; transform: translateY(0); }
.warna-detail-swatch { width: 100px; height: 100px; border-radius: 25px; flex-shrink: 0; box-shadow: 0 10px 25px rgba(0,0,0,0.6), inset 0 2px 10px rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); transition: background-color 0.4s; }
.warna-detail-text h3 { color: white; font-size: 1.8rem; margin-bottom: 5px; display: flex; align-items: center; gap: 15px; }
.warna-detail-text h3 span { font-size: 1rem; color: var(--text-muted); font-weight: normal; background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 8px; }
.warna-detail-text p { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; }


/* ================= TIMELINE SEJARAH CSS ================= */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; padding: 40px 0; }
.timeline::after { content: ''; position: absolute; width: 4px; background: linear-gradient(to bottom, transparent, var(--accent-neon), #0066ff, transparent); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 2px; box-shadow: 0 0 10px var(--accent-neon); }
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-item::after { content: ''; position: absolute; width: 24px; height: 24px; right: -12px; background-color: var(--bg-dark); border: 4px solid var(--accent-neon); top: 35px; border-radius: 50%; z-index: 1; box-shadow: 0 0 15px var(--accent-glow), inset 0 0 5px var(--accent-neon); transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.timeline-item.right::after { left: -12px; }
.timeline-item:hover::after { background-color: var(--accent-neon); transform: scale(1.3); box-shadow: 0 0 20px var(--accent-neon); }
.timeline-content { padding: 25px; background: linear-gradient(145deg, rgba(15, 25, 45, 0.6), rgba(5, 10, 20, 0.8)); backdrop-filter: blur(25px); border: 1px solid var(--glass-border); border-top: 1px solid rgba(255,255,255,0.1); border-radius: 20px; position: relative; box-shadow: 0 15px 35px rgba(0,0,0,0.5); transition: 0.4s; }
.timeline-content:hover { transform: translateY(-8px); border-color: var(--accent-neon); box-shadow: 0 20px 50px var(--accent-glow); }
.timeline-year { background: linear-gradient(90deg, rgba(0, 229, 255, 0.15) 0%, transparent 100%); padding: 6px 18px; border-radius: 20px; font-size: 0.9rem; font-weight: 800; color: var(--accent-neon); display: inline-block; margin-bottom: 15px; border-left: 3px solid var(--accent-neon); letter-spacing: 1px; }
.timeline-title { color: var(--text-light); font-size: 1.4rem; margin-bottom: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.timeline-body { display: flex; align-items: center; gap: 15px; }
.timeline-logo { width: 75px; height: 75px; object-fit: contain; background: rgba(0,0,0,0.5); padding: 10px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 0 10px rgba(0,0,0,0.5); transition: 0.3s; }
.timeline-item:hover .timeline-logo { transform: scale(1.05); filter: drop-shadow(0 0 10px var(--accent-glow)); }
.timeline-leaders p { margin: 5px 0; font-size: 0.95rem; color: var(--text-light); }
.timeline-leaders span { color: var(--text-muted); font-size: 0.8rem; display: inline-block; width: 60px; text-transform: uppercase; font-weight: bold; }

/* ================= OUR TEAM (DEVELOPER CREDITS) CSS ================= */
.team-cat-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 70px 0 40px; }
.team-cat-icon { background: rgba(0, 229, 255, 0.1); border: 1px solid var(--accent-neon); border-radius: 12px; padding: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px var(--accent-glow); }
.team-cat-icon svg { width: 28px; height: 28px; fill: var(--accent-neon); }
.team-cat-title { font-size: 2.2rem; font-weight: 800; color: white; border-bottom: 3px solid var(--accent-neon); padding-bottom: 8px; }

.team-grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 30px;}
.team-card { background: rgba(15, 25, 45, 0.8); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 35px 20px; text-align: center; transition: 0.4s; position: relative; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.6); backdrop-filter: blur(10px); }
.team-card:hover { transform: translateY(-10px); border-color: rgba(0, 229, 255, 0.3); box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15); }
.team-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background: radial-gradient(circle at top, rgba(0,229,255,0.05), transparent 60%); pointer-events:none; }
.team-avatar-wrapper { width: 130px; height: 130px; margin: 0 auto 20px; border-radius: 50%; padding: 4px; background: linear-gradient(135deg, var(--accent-neon), #0066ff); position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.team-avatar { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--bg-dark); background: #000; }
.team-name { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 8px; }
.team-role { color: #3b82f6; font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; }
.team-dept { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 25px; }
.team-social-box { display: flex; justify-content: center; gap: 15px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.team-social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: 0.3s; border: 1px solid transparent; }
.team-social-icon svg { width: 18px; height: 18px; fill: var(--text-light); transition: 0.3s; }
.team-social-icon:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; transform: scale(1.15); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4); }

/* ================= RESTORED: INDEX / BERANDA & TENTANG CSS ================= */
.hero-section { min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; padding: 0 20px; }
.script-font { font-family: 'Dancing Script', cursive; color: var(--accent-neon); font-size: 1.6em; font-weight: 700; text-shadow: 0 0 25px var(--accent-glow); display: inline-block; transform: rotate(-3deg); margin-left: 10px; }
.btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.sambutan-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: stretch; margin-top: 30px; }
.sambutan-logo-box { background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 35px; padding: 50px; display: flex; justify-content: center; align-items: center; position: relative; box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 20px 50px rgba(0,0,0,0.3); aspect-ratio: 1/1; }
.sambutan-logo-box img { width: 85%; filter: drop-shadow(0 10px 25px rgba(0,229,255,0.3)); transition: 0.5s ease; }
.sambutan-logo-box:hover img { transform: scale(1.05); filter: drop-shadow(0 15px 35px rgba(0,229,255,0.6)); }
.badge-periode-modern { position: absolute; bottom: -20px; background: rgba(10,15,30,0.95); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 15px 30px; border-radius: 15px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 20px rgba(0,229,255,0.1); }
.sambutan-text-box { display: flex; flex-direction: column; justify-content: center; }

/* VISI MISI */
.visi-box-modern { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; padding: 50px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.4); position: relative; overflow: hidden; margin-bottom: 40px;}
.visi-box-modern::before { content: ''; position: absolute; top:0; left:50%; transform:translateX(-50%); width: 100px; height: 4px; background: var(--accent-neon); border-radius: 0 0 10px 10px; }
.misi-interactive-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; }
.misi-sidebar { display: flex; flex-direction: column; gap: 10px; }
.misi-tab-btn { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 18px 25px; border-radius: 15px; text-align: left; color: var(--text-muted); cursor: pointer; font-size: 1.05rem; transition: all 0.3s ease; font-weight: 500; display: flex; align-items: center; justify-content: space-between; }
.misi-tab-btn:hover { background: rgba(255,255,255,0.05); color: white; }
.misi-tab-btn.active { background: rgba(0,229,255,0.08); border-color: var(--accent-neon); color: white; border-left: 5px solid var(--accent-neon); font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.misi-content-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 25px; padding: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.3); display: flex; flex-direction: column; justify-content: center; min-height: 250px; }

/* BIG QUOTE SECTION (RESTORED) */
.big-quote-section { background: radial-gradient(circle at center, rgba(15,25,45,0.8) 0%, var(--bg-dark) 70%); padding: 120px 20px; text-align: center; position: relative; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); }
.big-quote-text { font-size: 2.5rem; line-height: 1.5; font-style: italic; max-width: 1000px; margin: 0 auto 40px; color: var(--text-light); }
.big-quote-text span { color: var(--accent-neon); font-weight: 700; font-style: normal;}
.quote-marks { position: absolute; font-size: 15rem; color: rgba(255,255,255,0.03); font-family: serif; line-height: 1; z-index: -1; }
.quote-marks.left { top: 20px; left: 5%; }
.quote-marks.right { bottom: -40px; right: 5%; transform: rotate(180deg); }

/* TENTANG KAMI & STRUKTUR */
.leader-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-top: 3px solid var(--accent-neon); border-radius: 25px; padding: 35px 20px; text-align: center; transition: 0.4s ease; box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.leader-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,229,255,0.15); border-color: var(--accent-neon); }
.leader-photo { width: 130px; height: 130px; margin: 0 auto 25px; border-radius: 50%; background: #111a2e; border: 4px solid var(--accent-neon); background-size: cover; background-position: center; position: relative; box-shadow: 0 0 30px rgba(0,229,255,0.3); }
.dept-container { margin-bottom: 50px; background: rgba(255,255,255,0.015); padding: 40px 30px; border-radius: 25px; border: 1px solid var(--glass-border); box-shadow: inset 0 0 20px rgba(0,0,0,0.5); }
.dept-header { font-size: 1.6rem; color: var(--accent-neon); margin-bottom: 30px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; letter-spacing: 1px; }

/* INFORMASI / TABS / CALENDAR */
.tab-nav { display: flex; gap: 15px; overflow-x: auto; margin-bottom: 50px; justify-content: center; padding-bottom: 5px; }
.tab-btn { background: rgba(10, 15, 30, 0.8); border: 1px solid var(--glass-border); color: var(--text-muted); padding: 14px 28px; border-radius: 30px; cursor: pointer; font-weight: bold; transition: all 0.3s; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.tab-btn.active { background: linear-gradient(135deg, rgba(0,229,255,0.1) 0%, transparent 100%); color: var(--accent-neon); border-color: var(--accent-neon); box-shadow: 0 0 20px var(--accent-glow); }
.tab-content { display: none; animation: fadeInTab 0.5s ease forwards; } .tab-content.active { display: block; }
@keyframes fadeInTab { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* CALENDAR UI */
.calendar-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 35px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; font-size: 1.3rem; font-weight: bold; color: var(--accent-neon); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; text-align: center; }
.calendar-day-name { font-size: 0.85rem; color: var(--text-muted); padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: bold; }
.calendar-day { padding: 15px 5px; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid transparent; cursor: pointer; transition: 0.3s; position: relative; font-weight: 500; }
.calendar-day:hover { background: rgba(0,229,255,0.1); border-color: rgba(0,229,255,0.3); }
.calendar-day.has-event::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: var(--accent-neon); border-radius: 50%; box-shadow: 0 0 8px var(--accent-neon); }
.calendar-day.active { background: var(--accent-neon); color: #000; font-weight: 900; box-shadow: 0 5px 15px var(--accent-glow); border-color: var(--accent-neon); }
.agenda-list { background: rgba(5, 10, 20, 0.6); backdrop-filter: blur(15px); padding: 25px; border-radius: 20px; border: 1px solid var(--glass-border); min-height: 350px; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); }
.agenda-item { background: var(--glass-bg); border-left: 4px solid var(--accent-neon); padding: 18px; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* GALLERY & MODAL */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.gallery-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: #0a0f1c; border: 1px solid var(--glass-border); cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); opacity: 0.8; }
.gallery-card:hover .gallery-img { opacity: 1; transform: scale(1.08); }
.gallery-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px 20px; background: linear-gradient(to top, rgba(2,5,12,0.95) 0%, rgba(2,5,12,0.6) 60%, transparent 100%); }

.modal-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); z-index: 10000; display: none; justify-content: center; align-items: center; padding: 20px; }
.modal-overlay.active { display: flex; animation: fadeInTab 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.modal-content-box { background: var(--bg-dark); border: 1px solid var(--glass-border); border-radius: 25px; width: 100%; max-width: 650px; max-height: 90vh; overflow-y: auto; position: relative; padding: 0; z-index: 10001; box-shadow: 0 25px 50px rgba(0,0,0,0.8); }
.modal-close { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10002; transition: 0.3s; }
.modal-close:hover { background: var(--accent-neon); color: #000; }

/* ================= ADMIN PANEL CMS ================= */
.admin-layout { display: flex; min-height: 100vh; background: #02040a; z-index: 100; position: relative;}
.admin-sidebar { width: 280px; background: rgba(4, 7, 15, 0.95); border-right: 1px solid var(--glass-border); padding: 25px 20px; display: flex; flex-direction: column; z-index: 101; box-shadow: 5px 0 20px rgba(0,0,0,0.5); }
.admin-nav { display: flex; flex-direction: column; gap: 8px; margin-top: 25px; }
.admin-nav button { background: transparent; border: none; color: var(--text-muted); padding: 14px 18px; border-radius: 12px; text-align: left; cursor: pointer; transition: 0.3s; display: block; width: 100%; font-weight: 500; }
.admin-nav button:hover { background: rgba(255,255,255,0.03); color: var(--text-light); }
.admin-nav button.active { background: linear-gradient(90deg, rgba(0,229,255,0.1) 0%, transparent 100%); border-left: 4px solid var(--accent-neon); color: var(--accent-neon); font-weight: 700; }
.admin-main { flex: 1; padding: 40px; overflow-y: auto; height: 100vh; position: relative; z-index: 100;}
.admin-table { width: 100%; border-collapse: collapse; min-width: 700px; margin-top: 15px; background: rgba(255,255,255,0.01); border-radius: 15px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); text-align: left; }
.admin-table th { background: rgba(0,0,0,0.6); color: var(--accent-neon); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; }
.admin-section { display: none; animation: fadeInTab 0.4s ease; }
.admin-section.active { display: block; }
.action-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 8px 15px; border-radius: 8px; cursor: pointer; font-size: 0.85rem; margin-right: 5px; transition: 0.3s; font-weight: 500;}
.action-btn.delete { background: rgba(255, 77, 77, 0.1); border-color: #ff4d4d; color: #ff4d4d; }
.action-btn.delete:hover { background: #ff4d4d; color: #fff; }
.action-btn.view { background: rgba(0, 229, 255, 0.1); border-color: var(--accent-neon); color: var(--accent-neon); }
.action-btn.view:hover { background: var(--accent-neon); color: #000; }
.pimpinan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.toast { position: fixed; bottom: -100px; right: 25px; background: var(--accent-neon); color: #000; padding: 18px 30px; border-radius: 12px; font-weight: 800; z-index: 9999; transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 10px 30px rgba(0,229,255,0.4); font-size: 1.05rem; }
.toast.show { bottom: 25px; }

/* ================= RESPONSIVE MEDIA QUERIES (MOBILE) ================= */
@media(max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .calendar-wrapper { grid-template-columns: 1fr; gap: 20px; }
  .menu-toggle { display: block; }
  
  /* SUPER UPGRADE: Smooth Menu Mobile */
  .nav-links { position: fixed; top: 0; right: -100%; width: 80vw; height: 100vh; background: rgba(4, 8, 20, 0.98); backdrop-filter: blur(30px); flex-direction: column; padding-top: 100px; padding-left: 30px; align-items: flex-start; border-left: 1px solid rgba(255,255,255,0.1); }
  .nav-links.active { right: 0; box-shadow: -15px 0 40px rgba(0,0,0,0.6); }
  .nav-item { width: 100%; }
  .nav-item > a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-item:hover .mega-menu { display: none; }
  .nav-item.mobile-expand .mega-menu { display: flex; position: static; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--accent-neon); background: transparent; padding: 10px 0 10px 20px; opacity: 1; visibility: visible; }
  
  /* Responsive Admin */
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--glass-border); padding: 15px 20px; }
  .admin-nav { flex-direction: row; overflow-x: auto; white-space: nowrap; padding-bottom: 10px; margin-top: 15px; }
  .admin-nav button { border-left: none; border-bottom: 3px solid transparent; width: auto; padding: 10px 15px; }
  .admin-nav button.active { border-left: none; border-bottom: 3px solid var(--accent-neon); background: linear-gradient(0deg, rgba(0,229,255,0.1) 0%, transparent 100%); }
  .pimpinan-grid { grid-template-columns: 1fr; }
  .admin-main { padding: 20px; }
  
  /* Responsive Beranda Adjustments */
  .hero-section h1 { font-size: 2.8rem !important; }
  .script-font { font-size: 1.3em; display: block; margin-top: 10px; margin-left: 0; }
  .sambutan-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .sambutan-split { grid-template-columns: 1fr; gap: 60px; }
  .misi-interactive-wrapper { grid-template-columns: 1fr; }
  .big-quote-text { font-size: 1.6rem; }
  
  /* Responsive Footer */
  .custom-footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .custom-footer-grid > div:nth-child(1) { grid-column: 1 / -1; margin-bottom: 10px; }

  /* Responsive Timeline Sejarah */
  .timeline::after { left: 31px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
  .timeline-item.right { left: 0; }
  .timeline-item::after, .timeline-item.right::after { left: 21px; }
  
  /* Responsive Scroll To Top */
  .scroll-to-top { bottom: 25px; right: 25px; width: 50px; height: 50px; }
  .scroll-to-top svg { width: 26px; height: 26px; }

  /* Responsive Slider & Pills */
  .filosofi-slider-track { padding: 40px 10vw; gap: 15px;}
  .filosofi-slide-card { flex: 0 0 280px; padding: 30px 20px; }
  .slider-nav-btn { width: 40px; height: 40px; }
  .slider-nav-btn.prev { left: 10px; }
  .slider-nav-btn.next { right: 10px; }

  .warna-pills-wrapper { justify-content: flex-start; } /* Allow swipe on mobile */
  .warna-detail-box { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px; }
  .warna-detail-text h3 { justify-content: center; flex-direction: column; gap: 5px; }
}
