/* ============================================
   BKN - Badan Kepegawaian Negara
   Website Stylesheet
   badankepegawaian.org
   ============================================ */

:root {
  --pink: #C8175C;
  --pink-dark: #a01048;
  --blue: #2196C4;
  --blue-light: #29ABE2;
  --blue-dark: #1565a0;
  --gray-100: #F7F8FA;
  --gray-200: #EEF0F4;
  --gray-300: #D8DDE6;
  --gray-500: #8A929E;
  --gray-700: #4A5568;
  --gray-900: #1A202C;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-900);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(200,23,92,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-subtitle { color: var(--gray-700); max-width: 620px; }
.section-header { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--gray-900);
  color: var(--gray-300);
  font-size: 0.78rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: var(--gray-300); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 52px; width: auto; }
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-size: 1rem;
  color: var(--pink);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.logo-text span {
  display: block;
  font-size: 0.68rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
  background: rgba(200,23,92,0.07);
}
.btn-nav {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
}
.btn-nav:hover { background: var(--pink-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 50%, #0d2a47 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/gedung.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-accent {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,23,92,0.25), transparent 70%);
}
.hero-accent-2 {
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,196,0.2), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,23,92,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.hero-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--blue-light); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.hero-image-side { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.15);
}
.hero-img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13,42,71,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-img-overlay img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.hero-overlay-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.hero-overlay-title { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ============================================
   SERVICES / LAYANAN
   ============================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-100); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200,23,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-card h3 { font-size: 1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; color: var(--gray-700); margin: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  margin-top: 16px;
}
.service-link:hover { color: var(--pink-dark); gap: 8px; }

/* ============================================
   NEWS / BERITA
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.news-featured {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-featured:hover { box-shadow: var(--shadow-md); }
.news-featured-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.news-featured-body { padding: 24px; }
.news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200,23,92,0.09);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 10px;
}
.news-featured h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.4; }
.news-featured h3 a { color: inherit; }
.news-featured h3 a:hover { color: var(--pink); }
.news-featured p { color: var(--gray-700); font-size: 0.9rem; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 16px;
}
.news-meta span { display: flex; align-items: center; gap: 4px; }

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-small {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  transition: var(--transition);
  align-items: flex-start;
}
.news-small:hover { box-shadow: var(--shadow-sm); }
.news-small-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.news-small-body {}
.news-small h4 { font-size: 0.86rem; line-height: 1.4; margin-bottom: 6px; }
.news-small h4 a { color: inherit; }
.news-small h4 a:hover { color: var(--pink); }
.news-small .news-meta { margin-top: 4px; }

.news-view-all {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 100%);
  padding: 60px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number span { color: var(--blue-light); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 72px 0;
  text-align: center;
  background: var(--gray-100);
}
.cta-inner {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 20px;
  padding: 56px 40px;
  color: var(--white);
}
.cta-inner h2 { color: var(--white); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--pink);
}
.btn-white:hover { background: var(--gray-100); color: var(--pink); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 48px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo-text strong { display: block; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.footer-logo-text span { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--pink); color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.84rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 100%);
  padding: 56px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/gedung.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 640px; margin-top: 12px; }

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-section { padding: 64px 0; }
.content-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 48px; align-items: start; }
.content-main {}
.content-sidebar {}

.prose h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
  color: var(--gray-900);
  position: relative;
  padding-left: 16px;
}
.prose h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  height: 1em;
  width: 4px;
  background: var(--pink);
  border-radius: 2px;
}
.prose h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.prose p { font-size: 0.96rem; color: var(--gray-700); margin-bottom: 16px; }
.prose ul, .prose ol {
  margin: 16px 0 20px 20px;
  list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li { color: var(--gray-700); font-size: 0.96rem; margin-bottom: 8px; }
.prose strong { color: var(--gray-900); }
.prose blockquote {
  border-left: 4px solid var(--pink);
  padding: 16px 20px;
  background: rgba(200,23,92,0.04);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--gray-700);
}
.prose img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow-sm); }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-news-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-news-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-900);
}
.sidebar-news-title a { color: inherit; }
.sidebar-news-title a:hover { color: var(--pink); }
.sidebar-news-date { font-size: 0.72rem; color: var(--gray-500); margin-top: 4px; }

.info-box {
  background: rgba(33,150,196,0.06);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.info-box strong { color: var(--blue-dark); }
.info-box p { color: var(--gray-700); font-size: 0.9rem; margin: 4px 0 0; }

/* ============================================
   NEWS PAGE
   ============================================ */
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 10px; }
.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--pink); }
.news-card p { font-size: 0.84rem; color: var(--gray-700); }
.news-card .news-meta { margin-top: 14px; }

/* ============================================
   PROFIL PAGE
   ============================================ */
.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.vm-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.vm-card-visi {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
}
.vm-card-misi {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}
.vm-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 14px;
}
.vm-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 16px; }
.vm-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.vm-card ul { color: rgba(255,255,255,0.85); font-size: 0.9rem; list-style: disc; padding-left: 20px; }
.vm-card li { margin-bottom: 8px; }

.nilai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nilai-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.nilai-card:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }
.nilai-icon { font-size: 2rem; margin-bottom: 12px; }
.nilai-card h4 { color: var(--pink); margin-bottom: 8px; }
.nilai-card p { font-size: 0.82rem; color: var(--gray-700); margin: 0; }

.leader-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.leader-photo {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.leader-info {}
.leader-position {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 6px;
}
.leader-name { font-size: 1.6rem; margin-bottom: 4px; }
.leader-degree { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 16px; }
.leader-bio { font-size: 0.9rem; color: var(--gray-700); }

/* ============================================
   CONTACT / KONTAK
   ============================================ */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.kontak-info {}
.kontak-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.kontak-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,23,92,0.08);
  color: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.kontak-item-title { font-weight: 700; margin-bottom: 4px; font-size: 0.92rem; }
.kontak-item-desc { font-size: 0.88rem; color: var(--gray-700); }

.kontak-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.kontak-form-wrap h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(200,23,92,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   LAYANAN PAGE
   ============================================ */
.layanan-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.layanan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.layanan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,23,92,0.2); }
.layanan-card-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(200,23,92,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.layanan-icon { font-size: 2rem; margin-bottom: 14px; }
.layanan-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.layanan-card p { font-size: 0.86rem; color: var(--gray-700); margin: 0; }
.layanan-card ul {
  list-style: none;
  margin-top: 14px;
}
.layanan-card ul li {
  font-size: 0.84rem;
  color: var(--gray-700);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.layanan-card ul li::before {
  content: '→';
  color: var(--pink);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ARTICLE DETAIL
   ============================================ */
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.article-category {
  background: rgba(200,23,92,0.09);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
}
.article-meta-item {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-featured-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 32px;
}
.article-share span { font-weight: 700; font-size: 0.88rem; color: var(--gray-700); }
.share-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
  background: var(--white);
}
.share-btn:hover { border-color: var(--pink); color: var(--pink); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nilai-grid { grid-template-columns: repeat(2, 1fr); }
  .news-list-grid { grid-template-columns: repeat(2, 1fr); }
  .layanan-hero-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .visi-misi-grid { grid-template-columns: 1fr; }
  .leader-card { flex-direction: column; }
  .leader-photo { width: 100%; max-width: 300px; height: 200px; }
  .news-list-grid { grid-template-columns: 1fr; }
  .layanan-hero-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); font-size: 0.85rem; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 16px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nilai-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 36px 24px; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
}
