/* =============================================
   PERKANTAS KEFAMENANU - MAIN CSS
   Modern Christian Design | Blue & White
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --blue-primary: #1a56db;
  --blue-dark: #1e3a8a;
  --blue-deeper: #0f2460;
  --blue-light: #3b82f6;
  --blue-soft: #dbeafe;
  --blue-muted: #eff6ff;
  --gold: #f59e0b;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 3px rgba(26,86,219,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(26,86,219,0.12), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(26,86,219,0.15), 0 4px 6px rgba(0,0,0,0.07);
  --shadow-xl: 0 20px 60px rgba(26,86,219,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* =============================================
   NAVBAR
============================================= */
.navbar-perkantas {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,86,219,0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-perkantas.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}

.navbar-perkantas .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.navbar-brand-text h1 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
}

.navbar-brand-text span {
  font-size: 0.7rem;
  color: var(--blue-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.navbar-menu a {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--blue-primary);
  background: var(--blue-muted);
}

.navbar-menu .dropdown {
  position: relative;
}

.navbar-menu .dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  padding: 0.5rem;
}

.navbar-menu .dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
}

.dropdown-menu-custom a:hover {
  background: var(--blue-muted);
  color: var(--blue-primary);
}

.btn-login {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(26,86,219,0.3);
}

.btn-login:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-deeper)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,86,219,0.4) !important;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SLIDER
============================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 72px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,36,96,0.75) 0%,
    rgba(26,86,219,0.45) 50%,
    rgba(15,36,96,0.6) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
}

.slide-badge {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fcd34d;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  max-width: 800px;
}

.slide-desc {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.slide-cross {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* =============================================
   SECTIONS GENERAL
============================================= */
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.section-blue { background: linear-gradient(135deg, var(--blue-deeper), var(--blue-dark)); color: white; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--blue-muted);
  color: var(--blue-primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* =============================================
   CARDS
============================================= */
.card-perkantas {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,86,219,0.06);
  transition: var(--transition);
  overflow: hidden;
}

.card-perkantas:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26,86,219,0.12);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-perkantas:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-body-perkantas {
  padding: 1.5rem;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.card-title-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.card-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   PROFIL KETUA SECTION
============================================= */
.ketua-section {
  background: linear-gradient(135deg, var(--blue-muted) 0%, white 50%, var(--blue-muted) 100%);
}

.ketua-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.ketua-foto-wrap {
  position: relative;
}

.ketua-foto {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.ketua-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.ketua-nama {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.ketua-sambutan {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--blue-primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visi-box, .misi-box {
  background: var(--blue-muted);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.visi-box h4, .misi-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visi-box p, .misi-box p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =============================================
   BANNER ULANG TAHUN
============================================= */
.ultah-banner-section {
  background: linear-gradient(135deg, #0f2460 0%, #1a56db 50%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.ultah-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(245,158,11,0.1) 0%, transparent 60%);
}

.ultah-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.ultah-card::before {
  content: '✝';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ultah-org {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ultah-ucapan {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.ultah-judul {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ultah-foto {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 30px rgba(245,158,11,0.3);
  margin: 0 auto 1rem;
  display: block;
}

.ultah-nama {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.ultah-org2 {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ultah-ayat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.ultah-ayat p {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.ultah-ayat cite {
  font-size: 0.78rem;
  color: #fcd34d;
  font-weight: 600;
}

/* Logo & link website di banner ultah */
.ultah-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ultah-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  padding: 3px;
}

.ultah-website-link {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.ultah-website-link:hover { color: #fcd34d; }

/* Tombol download & share WA */
.ultah-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn-ultah-download,
.btn-ultah-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-ultah-download {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ultah-download:hover {
  background: rgba(255,255,255,0.28);
  color: white;
}

.btn-ultah-wa {
  background: #25d366;
  color: white;
  border: 1px solid #1ebe5d;
}
.btn-ultah-wa:hover {
  background: #1fba5a;
  color: white;
}

/* =============================================
   RENUNGAN & BERITA LIST
============================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* =============================================
   GALERI
============================================= */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.galeri-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.galeri-item:hover img { transform: scale(1.08); }

.galeri-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,36,96,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.galeri-item:hover .galeri-overlay { opacity: 1; }

.galeri-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-thumb:hover img { transform: scale(1.05); }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,86,219,0.35);
  transition: var(--transition);
}

.video-thumb:hover .video-play-btn {
  background: rgba(26,86,219,0.55);
}

.play-circle {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-primary);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.video-thumb:hover .play-circle {
  transform: scale(1.1);
}

/* =============================================
   PENGURUS SLIDER
============================================= */
.pengurus-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.pengurus-track::-webkit-scrollbar { display: none; }

.pengurus-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,86,219,0.06);
  transition: var(--transition);
}

.pengurus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pengurus-foto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--blue-soft);
  box-shadow: var(--shadow-sm);
}

.pengurus-nama {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
}

.pengurus-jabatan {
  font-size: 0.75rem;
  color: var(--blue-primary);
  font-weight: 500;
}

/* =============================================
   VISITOR COUNTER
============================================= */
.counter-section {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue-dark));
  padding: 4rem 0;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.counter-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
}

.counter-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* =============================================
   MAP
============================================= */
.map-section { padding: 4rem 0 0; }

#map {
  height: 450px;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

/* =============================================
   INFORMASI LIST
============================================= */
.info-list { display: flex; flex-direction: column; gap: 0.75rem; }

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,86,219,0.06);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: rgba(26,86,219,0.15);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-detail { flex: 1; }

.info-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}

.info-date {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.info-download {
  font-size: 1.1rem;
  color: var(--blue-primary);
}

/* =============================================
   KONTAK
============================================= */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.kontak-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.kontak-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--blue-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.kontak-info-item h5 {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.kontak-info-item p {
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
}

.form-perkantas .form-control {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.form-perkantas .form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  outline: none;
}

.form-perkantas label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
  display: block;
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary-perkantas {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3);
  font-family: 'Poppins', sans-serif;
}

.btn-primary-perkantas:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.4);
  color: white;
}

.btn-outline-perkantas {
  background: transparent;
  color: var(--blue-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--blue-primary);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.btn-outline-perkantas:hover {
  background: var(--blue-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-sm-perkantas {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--blue-deeper);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.footer-logo { width: 44px; height: 44px; object-fit: contain; }

.footer-org-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.footer-social a:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--blue-light);
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.footer-contact-item i {
  color: var(--blue-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* =============================================
   PAGE HEADER (inner pages)
============================================= */
.page-header {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 100%);
  padding: 5rem 0 3rem;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.breadcrumb-perkantas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.breadcrumb-perkantas a { color: white; }
.breadcrumb-perkantas span { opacity: 0.5; }

/* =============================================
   DETAIL PAGE
============================================= */
.detail-content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-600);
}

.detail-content h2, .detail-content h3 {
  color: var(--blue-dark);
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.detail-content p { margin-bottom: 1rem; }
.detail-content img { border-radius: var(--radius-md); margin: 1rem 0; }
.detail-content blockquote {
  border-left: 4px solid var(--blue-primary);
  padding: 1rem 1.5rem;
  background: var(--blue-muted);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--blue-dark);
  margin: 1.5rem 0;
}

/* =============================================
   ADMIN - SIDEBAR
============================================= */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--gray-50);
  width: 100%;
  flex: 1;
}

.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, var(--blue-deeper) 0%, var(--blue-dark) 100%);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
  scrollbar-width: none;
}

.admin-sidebar::-webkit-scrollbar { display: none; }

.sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sidebar-brand-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.sidebar-brand-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.sidebar-nav { padding: 1rem 0; }

.sidebar-label {
  padding: 0.75rem 1.25rem 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  margin: 0.1rem 0.75rem;
  border-radius: var(--radius-sm);
}

.sidebar-nav a i {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(255,255,255,0.1);
  color: white;
}

.sidebar-nav a.active {
  background: rgba(59,130,246,0.3);
  color: #93c5fd;
}

/* =============================================
   ADMIN - MAIN CONTENT
============================================= */
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.admin-page-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-soft);
}

.admin-username {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}

.admin-role-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  background: var(--blue-muted);
  color: var(--blue-primary);
  font-weight: 600;
}

.admin-content {
  padding: 2rem 1.5rem;
  flex: 1;
}

/* Admin cards / stat */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-icon.blue { background: var(--blue-muted); color: var(--blue-primary); }
.stat-icon.green { background: #dcfce7; color: #16a34a; }
.stat-icon.orange { background: #fef3c7; color: #d97706; }
.stat-icon.purple { background: #f3e8ff; color: #7c3aed; }

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Admin table */
.admin-table-wrap {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

/* Semua tabel di dalam admin-table-wrap bisa scroll horizontal */
.admin-table-wrap > table.admin-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.admin-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.admin-table-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-table-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--gray-50);
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }

/* Admin form */
.admin-form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  width: 100%;
  box-sizing: border-box;
}

.admin-form-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group .form-control {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background: white;
  color: var(--gray-800);
}

.form-group .form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  outline: none;
}

.form-group select.form-control {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Badges */
.badge-perkantas {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-published { background: #dcfce7; color: #16a34a; }
.badge-draft { background: var(--gray-100); color: var(--gray-600); }
.badge-superadmin { background: #fef3c7; color: #d97706; }
.badge-admin { background: var(--blue-muted); color: var(--blue-primary); }
.badge-kontributor { background: #f3e8ff; color: #7c3aed; }

/* Action buttons */
.action-btns { display: flex; gap: 0.5rem; align-items: center; }

.btn-action {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-edit { background: var(--blue-muted); color: var(--blue-primary); }
.btn-edit:hover { background: var(--blue-primary); color: white; }
.btn-delete { background: #fee2e2; color: #dc2626; }
.btn-delete:hover { background: #dc2626; color: white; }
.btn-view { background: #f3e8ff; color: #7c3aed; }
.btn-view:hover { background: #7c3aed; color: white; }

/* =============================================
   LOGIN PAGE
============================================= */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 60%, var(--blue-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.08) 0%, transparent 50%);
}

.login-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.login-logo h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.login-logo p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   UTILITY
============================================= */
.text-blue { color: var(--blue-primary); }
.text-dark-blue { color: var(--blue-dark); }
.bg-blue-muted { background: var(--blue-muted); }
.fw-semibold { font-weight: 600; }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ketua-card { grid-template-columns: 1fr; }
  .ketua-foto-wrap { max-width: 280px; margin: 0 auto; }
  .kontak-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem; box-shadow: var(--shadow-md); gap: 0; }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .navbar-toggler { display: flex; }
  .hero-slider { height: 75vh; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn.prev { left: 15px; }
  .slider-btn.next { right: 15px; }
  .section { padding: 3.5rem 0; }
  .post-grid, .berita-grid, .galeri-grid { grid-template-columns: 1fr; }
  .visi-misi-grid { grid-template-columns: 1fr; }
  .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .ketua-card { padding: 1.5rem; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .admin-form-card { padding: 1.25rem; }
  .login-card { padding: 2rem 1.5rem; }
}
