/* ============================================
   IT CLUB SMKN 2 BANJAR - Global Stylesheet
   ============================================ */

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

:root {
  --bg-primary: #0b1120;
  --bg-secondary: #111827;
  --bg-card: rgba(30, 41, 59, 0.6);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --text-primary: #ffffff;
  --text-subtitle: #94a3b8;
  --accent: #0ea5e9;
  --accent-hover: #38bdf8;
  --accent-glow: rgba(14, 165, 233, 0.3);
  --accent-gradient: linear-gradient(135deg, #0ea5e9, #06b6d4);
  --border-glass: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-main: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 4%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 2.5rem;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--bg-primary);
  font-family: var(--font-heading);
}

.nav-logo-text h1 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-logo-text span {
  font-size: 10px;
  color: var(--text-subtitle);
  letter-spacing: 1px;
}

/* Logo Image */
.nav-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.hero-logo-img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.3));
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-subtitle);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-search {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-subtitle);
  transition: all var(--transition);
  background: transparent;
}

.nav-search:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.btn-join {
  padding: 9px 20px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge span {
  font-weight: 600;
}

.hero-title-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-subtitle);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 15px;
  color: var(--text-subtitle);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-subtitle);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--border-glass);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Image / Logo */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
}

.hero-logo-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

.hero-logo-ring:nth-child(2) {
  inset: 20px;
  border-color: rgba(14, 165, 233, 0.15);
  animation-delay: 0.5s;
}

.hero-logo-ring:nth-child(3) {
  inset: 40px;
  border-color: rgba(14, 165, 233, 0.08);
  animation-delay: 1s;
}

.hero-atom {
  position: absolute;
  inset: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-atom-center {
  text-align: center;
}

.hero-atom-center .atom-text {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-atom-center .atom-sub {
  font-size: 13px;
  color: var(--text-subtitle);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* ---------- Program Section ---------- */
.programs {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-subtitle);
  max-width: 520px;
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  cursor: pointer;
}

.program-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all var(--transition);
}

.program-card:hover .program-card-icon {
  background: rgba(14, 165, 233, 0.2);
  transform: scale(1.1);
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.program-card p {
  font-size: 13px;
  color: var(--text-subtitle);
  font-style: italic;
}

/* ---------- Stats Section ---------- */
.stats {
  padding: 80px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.stat-item:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-subtitle);
  font-weight: 500;
}

/* ---------- Activities & CTA ---------- */
.activities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
}

.activity-item:last-child {
  margin-bottom: 0;
}

.activity-item:hover {
  background: rgba(14, 165, 233, 0.06);
  border-color: rgba(14, 165, 233, 0.2);
}

.activity-name {
  font-weight: 600;
  font-size: 15px;
}

.activity-date {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  background: rgba(14, 165, 233, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
}

.activity-count {
  font-size: 13px;
  color: var(--text-subtitle);
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-subtitle);
  transition: all var(--transition);
  cursor: pointer;
}

.quick-link:hover {
  color: var(--text-primary);
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.06);
}

.quick-link-icon {
  width: 36px;
  height: 36px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 16px;
  color: var(--text-subtitle);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  font-size: 16px;
  padding: 16px 40px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-glass);
  margin-top: 40px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--bg-primary);
  font-family: var(--font-heading);
}

.footer-text {
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.6;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-subtitle);
  transition: all var(--transition);
}

.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(14, 165, 233, 0.1);
}

.footer-hashtag {
  text-align: center;
  font-size: 13px;
  color: var(--text-subtitle);
  letter-spacing: 1px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

/* ============================================
   INNER PAGES - About & Program
   ============================================ */

/* ---------- Page Header ---------- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header-desc {
  font-size: 16px;
  color: var(--text-subtitle);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ---------- About Sections ---------- */
.about-section {
  padding: 40px 0 60px;
}

.about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.about-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.about-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.about-card p {
  font-size: 15px;
  color: var(--text-subtitle);
  line-height: 1.8;
}

.about-misi-list {
  list-style: none;
  counter-reset: misi-counter;
}

.about-misi-list li {
  counter-increment: misi-counter;
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-subtitle);
  line-height: 1.7;
}

.about-misi-list li::before {
  content: counter(misi-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

/* ---------- Tagline Grid ---------- */
.tagline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tagline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tagline-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tagline-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(14, 165, 233, 0.08);
  line-height: 1;
}

.tagline-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tagline-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.tagline-sub {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.tagline-card > p:last-child {
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.8;
}

/* ---------- About Logo Section ---------- */
.about-logo-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-logo-text .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-logo-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.philosophy-item:hover {
  border-color: rgba(14, 165, 233, 0.2);
}

.philosophy-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.philosophy-item p {
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.7;
}

.philosophy-item strong {
  color: var(--text-primary);
}

/* ---------- Timeline (Sejarah) ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(14, 165, 233, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  z-index: 1;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.timeline-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateX(4px);
}

.timeline-year {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(14, 165, 233, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-card p {
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.8;
}

/* ============================================
   PROGRAM DETAIL PAGE
   ============================================ */

.program-detail-section {
  padding: 20px 0 80px;
}

.division-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all var(--transition);
}

.division-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.division-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(14, 165, 233, 0.03);
}

.division-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.division-number {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.division-card-label h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.division-tagline {
  font-size: 14px;
  color: var(--text-subtitle);
  font-style: italic;
}

.division-card-body {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.division-desc p {
  font-size: 15px;
  color: var(--text-subtitle);
  line-height: 1.8;
}

.division-syllabus h4,
.division-projects h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.division-syllabus ul,
.division-projects ul {
  list-style: none;
}

.division-syllabus li,
.division-projects li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-subtitle);
  line-height: 1.6;
}

.division-syllabus li::before,
.division-projects li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================
   ACTIVITY PAGE
   ============================================ */
.activity-page-section {
  padding: 40px 0 60px;
}

/* Event Cards */
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.event-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.event-card.event-featured {
  border-color: rgba(14, 165, 233, 0.25);
}

.event-card.event-highlight {
  border-color: rgba(14, 165, 233, 0.3);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.event-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent);
}

.event-badge-online {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.event-badge-big {
  background: rgba(14, 165, 233, 0.25);
  color: var(--accent);
}

.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 80px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.event-month {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info {
  flex: 1;
}

.event-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-info p {
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.event-meta span {
  font-size: 12px;
  color: var(--text-subtitle);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Routine Activities */
.routine-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.routine-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.routine-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.routine-card-special {
  border-color: rgba(14, 165, 233, 0.2);
}

.routine-day {
  text-align: center;
  padding: 20px 16px;
  background: rgba(14, 165, 233, 0.08);
  border-bottom: 1px solid var(--border-glass);
}

.routine-day-letter {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.routine-day-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.routine-content {
  padding: 16px;
}

.routine-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
}

.routine-item:last-child {
  border-bottom: none;
}

.routine-time {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.routine-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.routine-desc {
  display: block;
  font-size: 12px;
  color: var(--text-subtitle);
  line-height: 1.5;
}

/* ============================================
   ACHIEVEMENT PAGE
   ============================================ */
.achieve-section {
  padding: 40px 0 60px;
}

/* Achievement Stats */
.achieve-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.achieve-stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.achieve-stat-item:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.achieve-stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.achieve-stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.achieve-stat-label {
  font-size: 13px;
  color: var(--text-subtitle);
  font-weight: 500;
}

/* Quote Banner */
.quote-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quote-icon {
  font-size: 60px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
}

.quote-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quote-banner p {
  font-size: 15px;
  color: var(--text-subtitle);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* Achievement Categories */
.achieve-category {
  margin-bottom: 48px;
}

.achieve-category:last-child {
  margin-bottom: 0;
}

.achieve-category-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.achieve-category-icon {
  font-size: 24px;
}

.achieve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.achieve-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.achieve-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-3px);
}

.achieve-card-rank {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.achieve-card-rank.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a1a1a;
}

.achieve-card-rank.silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: #1a1a1a;
}

.achieve-card-rank.bronze {
  background: linear-gradient(135deg, #d97706, #92400e);
  color: #fff;
}

.achieve-card-info {
  flex: 1;
}

.achieve-card-event {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.achieve-card-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.achieve-card-info p {
  font-size: 13px;
  color: var(--text-subtitle);
  line-height: 1.6;
}

/* ---------- Add Achievement Button ---------- */
.btn-add-achievement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-main);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 24px;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-add-achievement:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 32px rgba(14, 165, 233, 0.5); }
}

/* ---------- Modal Overlay ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 0;
  transform: translateY(20px) scale(0.97);
  transition: all 0.3s ease;
}

.modal-overlay.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-glass);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  background: transparent;
  color: var(--text-subtitle);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
}

/* ---------- Modal Form ---------- */
.modal-form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: block;
}

.modal-form .form-group input,
.modal-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  transition: all var(--transition);
  outline: none;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.modal-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.modal-form .form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- File Upload Area ---------- */
.file-upload-area {
  border: 2px dashed var(--border-glass);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}

.file-upload-area:hover {
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.03);
}

.file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  color: var(--text-subtitle);
  text-align: center;
  gap: 8px;
}

.file-upload-placeholder svg {
  opacity: 0.5;
}

.file-upload-placeholder span {
  font-size: 14px;
  font-weight: 500;
}

.file-upload-placeholder small {
  font-size: 12px;
  opacity: 0.6;
}

.file-upload-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.file-upload-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  object-fit: contain;
}

.file-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition);
}

.file-remove-btn:hover {
  background: #ef4444;
  transform: scale(1.1);
}

/* ---------- Modal Error ---------- */
.modal-error {
  display: none;
  font-size: 13px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
}

/* ---------- Certificate Preview Modal ---------- */
.modal-cert-card {
  max-width: 720px;
}

.modal-cert-body {
  padding: 24px 32px 32px;
  text-align: center;
}

.modal-cert-body img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  object-fit: contain;
}

/* ---------- View Certificate Button ---------- */
.btn-view-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--accent);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-view-cert:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-1px);
}

/* ---------- PDF Preview in Upload ---------- */
.file-preview-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
}

.file-preview-pdf span {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  word-break: break-all;
  max-width: 180px;
}

/* ---------- PDF Action Buttons ---------- */
.achieve-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.btn-pdf-view {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  text-decoration: none;
}

.btn-pdf-view:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.btn-pdf-download {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  text-decoration: none;
}

.btn-pdf-download:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: #10b981;
}

/* ---------- Achievement Page Responsive ---------- */
@media (max-width: 768px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .modal-card {
    max-height: 95vh;
  }

  .modal-header {
    padding: 20px 24px;
  }

  .modal-form {
    padding: 24px;
  }

  .modal-cert-body {
    padding: 16px;
  }

  .btn-add-achievement {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .modal-header h3 {
    font-size: 17px;
  }

  .file-upload-placeholder {
    padding: 24px 16px;
  }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  padding: 40px 0 60px;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-subtitle);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(14, 165, 233, 0.3);
}

.gallery-filter-btn.active {
  color: var(--bg-primary);
  background: var(--accent-gradient);
  border-color: transparent;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0.6) 50%, transparent 100%);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.15);
  border-radius: 50px;
  margin-bottom: 8px;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 12px;
  color: var(--text-subtitle);
}

/* ============================================
   MEMBER PAGE
   ============================================ */
.member-section {
  padding: 40px 0 60px;
}

/* Pengurus Cards */
.pengurus-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.pengurus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.pengurus-row-3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pengurus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.pengurus-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.pengurus-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-color: rgba(14, 165, 233, 0.2);
}

.pengurus-avatar {
  margin-bottom: 16px;
}

.pengurus-avatar-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  background: rgba(14, 165, 233, 0.1);
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.pengurus-info {
  text-align: center;
}

.pengurus-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pengurus-info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pengurus-class {
  font-size: 13px;
  color: var(--text-subtitle);
  margin-bottom: 10px;
}

.pengurus-desc {
  font-size: 13px;
  color: var(--text-subtitle);
  line-height: 1.6;
}

.pengurus-name {
  font-size: 13px;
  color: var(--text-subtitle);
  margin-top: 2px;
  margin-bottom: 4px;
}

/* ---------- Modern Pengurus Cards ---------- */
.pengurus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pengurus-card-modern {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.pengurus-card-modern:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pengurus-card-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 0;
}

.pengurus-avatar-modern {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
  margin-bottom: 12px;
}

.pengurus-avatar-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-secondary);
}

.pengurus-role-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pengurus-card-body {
  padding: 16px 24px;
  text-align: center;
}

.pengurus-card-body .pengurus-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.pengurus-card-body .pengurus-class {
  font-size: 13px;
  color: var(--text-subtitle);
  margin: 0 0 14px;
}

.pengurus-card-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 20px 20px;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-subtitle);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.3);
}

.social-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.social-email:hover {
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.social-instagram:hover {
  background: rgba(225, 48, 108, 0.12);
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

.social-tiktok:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.social-portfolio:hover {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.social-linkedin:hover {
  background: rgba(10, 102, 194, 0.15);
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.4);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
}

/* Pengurus Grid Responsive */
@media (max-width: 1024px) {
  .pengurus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pengurus-grid {
    grid-template-columns: 1fr;
  }

  .pengurus-card-actions {
    flex-direction: column;
  }
}

/* Member Table */
.member-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.member-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.member-table thead {
  background: rgba(14, 165, 233, 0.08);
}

.member-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-glass);
  white-space: nowrap;
}

.member-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-subtitle);
}

.member-table tbody tr {
  transition: background var(--transition);
}

.member-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.04);
}

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

.member-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.member-status.active {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.member-status.new {
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent);
}

/* Member Summary */
.member-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.member-summary-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.member-summary-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-3px);
}

.member-summary-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.member-summary-label {
  font-size: 13px;
  color: var(--text-subtitle);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 40px 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  font-size: 14px;
  color: var(--text-subtitle);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%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;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

/* Form Notification */
.form-notification {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid;
}

.form-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.form-notification-success {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

.form-notification-error {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-info-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-wrapper > p {
  font-size: 14px;
  color: var(--text-subtitle);
  margin-bottom: 28px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
}

.contact-info-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13px;
  color: var(--text-subtitle);
  line-height: 1.6;
}

/* Contact Social */
.contact-social {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  color: var(--text-subtitle);
  font-size: 13px;
  transition: all var(--transition);
}

.contact-social-link:hover {
  color: var(--accent);
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.06);
}

/* Contact Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.contact-map-placeholder {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-map-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.contact-map-placeholder h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-map-placeholder p {
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.login-container {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Background orbs */
.login-bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.login-bg-orb-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
}

.login-bg-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
}

/* Login Card */
.login-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.login-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.login-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--bg-primary);
  font-family: var(--font-heading);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.login-card-header h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-card-header p {
  font-size: 14px;
  color: var(--text-subtitle);
}

/* Login Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form .form-group input {
  width: 100%;
}

.login-password-wrapper {
  position: relative;
}

.login-password-wrapper input {
  width: 100%;
  padding-right: 48px;
}

.login-toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-subtitle);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.login-toggle-password:hover {
  color: var(--accent);
}

/* Login Options Row */
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-subtitle);
  cursor: pointer;
  user-select: none;
}

.login-remember input[type="checkbox"] {
  display: none;
}

.login-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-glass);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.login-remember input[type="checkbox"]:checked + .login-checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.login-remember input[type="checkbox"]:checked + .login-checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.login-remember:hover .login-checkbox-custom {
  border-color: var(--accent);
}

.login-forgot {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  transition: color var(--transition);
}

.login-forgot:hover {
  color: var(--accent-hover);
}

/* Login Submit Button */
.btn-login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 32px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-main);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}

.btn-login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-login-submit:active {
  transform: translateY(0);
}

/* Divider */
.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}

.login-divider span {
  font-size: 12px;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer text */
.login-footer {
  text-align: center;
}

.login-footer p {
  font-size: 14px;
  color: var(--text-subtitle);
}

.login-footer a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}

.login-footer a:hover {
  color: var(--accent-hover);
}

/* Back to Home Link */
.login-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-subtitle);
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  transition: all var(--transition);
  z-index: 1;
}

.login-back-home:hover {
  color: var(--accent);
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.06);
}

/* Toast Notification */
.login-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.login-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.login-toast.error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.login-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  flex-shrink: 0;
}

.login-toast.error .login-toast-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.login-toast-text {
  display: flex;
  flex-direction: column;
}

.login-toast-text strong {
  font-size: 14px;
  font-weight: 700;
}

.login-toast-text span {
  font-size: 12px;
  color: var(--text-subtitle);
}

/* Navbar Login Button (on non-login pages) */
.btn-login-nav {
  padding: 8px 18px;
  background: transparent;
  color: var(--text-subtitle);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-login-nav:hover,
.btn-login-nav.active {
  color: var(--accent);
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.08);
}

/* Navbar User & Logout */
.nav-user-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  padding: 6px 14px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50px;
}

.nav-user-name::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-logout {
  padding: 7px 16px;
  background: transparent;
  color: var(--text-subtitle);
  font-weight: 600;
  font-size: 12px;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-main);
  letter-spacing: 0.3px;
}

.btn-logout:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}

#navSession {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Login Page Responsive */
@media (max-width: 480px) {
  .login-card {
    padding: 32px 24px;
  }

  .login-card-header h2 {
    font-size: 22px;
  }

  .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---------- Google Sign-In Button ---------- */
.btn-google-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-main);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-google-signin:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-google-signin:active {
  transform: translateY(0);
}

.btn-google-signin svg {
  flex-shrink: 0;
}

/* ============================================
   REGISTER PAGE
   ============================================ */
.register-container {
  max-width: 480px;
}

.register-card {
  padding: 44px 40px;
}

.register-form .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  transition: all var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%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;
}

.register-form .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.register-form .form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.register-terms {
  font-size: 13px;
  line-height: 1.6;
  gap: 10px;
}

.register-error {
  display: none;
  font-size: 13px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
}

/* Register Responsive */
@media (max-width: 480px) {
  .register-card {
    padding: 32px 24px;
  }

  .register-terms {
    font-size: 12px;
  }
}

/* ---------- Responsive for Inner Pages ---------- */
@media (max-width: 1024px) {
  .division-card-body {
    grid-template-columns: 1fr 1fr;
  }

  .division-card-body .division-desc {
    grid-column: 1 / -1;
  }

  .about-logo-section {
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .page-header-title {
    font-size: 36px;
  }

  .about-grid-2 {
    grid-template-columns: 1fr;
  }

  .tagline-grid {
    grid-template-columns: 1fr;
  }

  .about-logo-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .timeline {
    padding-left: 32px;
  }

  .division-card-header {
    padding: 24px;
  }

  .division-card-body {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .division-card-body .division-desc {
    grid-column: auto;
  }

  /* Activity */
  .event-card {
    flex-direction: column;
    gap: 16px;
  }

  .event-date-box {
    flex-direction: row;
    gap: 8px;
    min-width: auto;
    height: auto;
    padding: 10px 16px;
  }

  .routine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Achievement */
  .achieve-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .achieve-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  /* Member */
  .pengurus-top,
  .pengurus-row {
    grid-template-columns: 1fr;
  }

  .pengurus-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 120px 0 40px;
  }

  .page-header-title {
    font-size: 28px;
  }

  .about-card {
    padding: 28px;
  }

  .about-logo-section {
    padding: 24px 20px;
  }

  .division-card-header {
    flex-direction: column;
    text-align: center;
  }

  .division-card-body {
    padding: 20px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h2 {
    font-size: 56px;
  }

  .hero-logo-wrapper {
    width: 300px;
    height: 300px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 0.88rem;
  }

  .nav-logo {
    margin-right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    padding: 0 20px;
  }

  .nav-logo {
    margin-right: auto;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(11, 17, 32, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border-glass);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-glass);
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-join {
    padding: 8px 16px;
    font-size: 12px;
  }

  #navSession {
    gap: 6px;
  }

  .nav-user-name {
    font-size: 12px;
    padding: 5px 10px;
  }

  .btn-logout {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h2 {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 22px;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 280px;
  }

  .hero-logo-wrapper {
    width: 260px;
    height: 260px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .nav-logo-text h1 {
    font-size: 11px;
  }

  .nav-logo-text span {
    font-size: 9px;
  }

  .nav-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  /* Activity 480px */
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .event-meta {
    flex-direction: column;
    gap: 8px;
  }

  /* Achievement 480px */
  .achieve-stats-row {
    grid-template-columns: 1fr;
  }

  .quote-banner {
    padding: 40px 24px;
  }

  .quote-banner h2 {
    font-size: 24px;
  }

  /* Gallery 480px */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-filter {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Member 480px */
  .pengurus-row-3 {
    grid-template-columns: 1fr;
  }

  .member-summary {
    grid-template-columns: 1fr 1fr;
  }

  .member-table-wrapper {
    font-size: 12px;
  }

  .member-table th,
  .member-table td {
    padding: 10px 12px;
  }

  /* Contact 480px */
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 24px;
  }

  .contact-info-wrapper > p {
    margin-bottom: 20px;
  }
}
