:root {
  --primary: #065f46;
  --primary-hover: #047857;
  --primary-dark: #022c22;
  --primary-light: #ecfdf5;
  --primary-accent: #10b981;
  --merah: #dc2626;
  --merah-dark: #991b1b;
  --merah-light: #fef2f2;
  --bg-subtle: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --max-w: 1200px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Backward Compatibility Aliases */
  --gray-bg: #f8fafc;
  --border: #e2e8f0;
  --text: #0f172a;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff;
}

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

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

a:hover {
  color: var(--primary-hover);
}

.container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header-top-bar {
  background-color: var(--primary-dark);
  color: #a7f3d0;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ffffff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.top-tagline {
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 640px) {
  .top-tagline { display: none; }
  .header-top-container { justify-content: center; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link, nav.main-nav a {
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  transition: var(--transition);
  display: inline-block;
}

.nav-link:hover, nav.main-nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
  text-decoration: none;
}

.nav-link.active, nav.main-nav a.active {
  background: var(--primary);
  color: #ffffff !important;
  text-decoration: none;
}

.nav-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle-btn:hover {
  background: var(--bg-subtle);
  color: var(--primary);
}

.site-main {
  flex: 1;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(2, 44, 34, 0.92), rgba(6, 95, 70, 0.88)),
              var(--primary-dark) center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.2), transparent 60%);
  pointer-events: none;
}

.hero-content, .hero .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ecfdf5;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #d1fae5;
  margin: 0 0 32px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 680px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--merah);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--merah-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
  text-decoration: none;
}

.btn-secondary {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(6, 95, 70, 0.35);
}

.btn-secondary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(6, 95, 70, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  box-shadow: none;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary-dark) !important;
  border-color: #ffffff;
}

/* Quick Stats Bar */
.stats-bar {
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  margin-top: -36px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
  }
  .stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SECTIONS & SECTION TITLES
   ========================================================================== */
section {
  padding: 56px 0;
}

section.alt, section.section-alt {
  background-color: var(--bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   PAGE HEADER BAND (Inner Pages)
   ========================================================================== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 75%);
  color: #ffffff;
  padding: 56px 0 44px;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.page-header-content, .page-header .container {
  position: relative;
  z-index: 2;
}

.page-eyebrow, .page-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a7f3d0;
  margin-bottom: 10px;
}

.page-header h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.page-header .lead-sub {
  font-size: 1.05rem;
  max-width: 680px;
  color: #d1fae5;
  margin: 0 0 18px;
}

.merah-putih-stripe, .ribbon-rule {
  height: 5px;
  background: linear-gradient(90deg, #dc2626 0 50%, #ffffff 50% 100%);
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-verified .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--merah);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.35);
}

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 95, 70, 0.2);
}

.card img, .card-img-wrap img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--bg-subtle);
}

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

.card-body, .card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 10px;
}

.badge-pengumuman {
  background: var(--merah-light);
  color: var(--merah-dark);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--primary-dark);
  line-height: 1.4;
}

.card .meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 16px;
  flex: 1;
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  margin-top: auto;
}

.card-link:hover {
  gap: 10px;
  color: var(--primary-hover);
}

/* ==========================================================================
   PROFILES & ABOUT PAGE
   ========================================================================== */
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

@media (max-width: 880px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

.prose {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
}

.prose p {
  margin: 0 0 18px;
}

.prose .lead {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--primary-dark);
  border-left: 4px solid var(--merah);
  padding-left: 18px;
  margin-bottom: 24px;
}

.facts-card {
  position: sticky;
  top: 96px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

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

.facts-card h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 8px;
}

.fact {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
}

.fact:last-of-type {
  border-bottom: none;
}

.fact .fact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.fact .fact-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.fact .fact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 2px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   STRUKTUR ORGANISASI
   ========================================================================== */
.org-group {
  margin-bottom: 44px;
}

.org-group h2, .org-section-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 20px;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.org-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}

.org-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.org-card, .org-person {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-card:hover, .org-person:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.avatar-wrap {
  margin-bottom: 14px;
}

.avatar, .org-person .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 auto 12px;
}

.nama, .org-nama {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.jabatan, .org-jabatan {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
  padding: 2px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
}

.org-ket {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   GALERI
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
  text-decoration: none;
}

.galeri-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.galeri-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.galeri-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  background: var(--bg-subtle);
  display: block;
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeri-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #ffffff;
}

.galeri-item:hover img, .galeri-grid a:hover img {
  transform: scale(1.06);
}

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

.galeri-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

/* ==========================================================================
   KONTAK
   ========================================================================== */
.kontak-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}

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

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.contact-detail p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.wa-card {
  background: linear-gradient(135deg, #065f46, #047857);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wa-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.wa-card p {
  color: #d1fae5;
  margin: 0 0 20px;
  font-size: 0.96rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.pagination .current {
  background: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 56px 0 24px;
  font-size: 0.9rem;
  margin-top: 40px;
}

footer.site-footer a {
  color: #cbd5e1;
}

footer.site-footer a:hover {
  color: #34d399;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo {
  height: 38px;
  width: auto;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}

.footer-tagline {
  color: #94a3b8;
  margin: 0 0 16px;
  line-height: 1.5;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #34d399;
  font-weight: 600;
}

.footer-title {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.f-icon {
  color: #34d399;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-btn.wa-btn:hover {
  background: #25d366;
}

.footer-bottom, .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   RESPONSIVE MENU MOBILE (Breakpoint 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-toggle-btn {
    display: flex;
  }

  nav.main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 16px 24px;
    gap: 8px;
    align-items: stretch;
  }

  nav.main-nav.nav-open {
    display: flex;
  }

  .nav-link, nav.main-nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .site-header .container, .nav-container {
    position: relative;
  }
}
