/* ==========================================================================
   DAFTAR ISI (TABLE OF CONTENTS)
   ==========================================================================
   01. VARIABEL WARNA & TEMA (Root)
   02. RESET & PENGATURAN DASAR (Base Styles)
   03. TIPOGRAFI & UTILITAS (Container, Judul Section)
   04. TOPBAR (Info Cuaca & Tanggal)
   05. HEADER & NAVIGASI MENU (Navbar & Dropdown)
   06. HERO SECTION (Slider Utama)
   07. SECTION: SEKAPUR SIRIH (Welcome & Editorial)
   08. SECTION: BERITA (Berita Utama & List Berita)
   09. SECTION: PIMPINAN (Struktur Organisasi)
   10. FOOTER & ANIMASI GELOMBANG
   11. KOMPONEN TAMBAHAN (Tombol Kembali ke Atas)
   12. RESPONSIVE / MEDIA QUERIES (Tampilan Mobile & Tablet)
   ========================================================================== */


/* ==========================================================================
   01. VARIABEL WARNA & TEMA (Root)
   ========================================================================== */
:root {
  --blue-dark: #003B73;
  --blue-deep: #00467f;
  --blue: #0057A8;
  --blue-light: #EAF4FF;
  --blue-soft: #F4F8FC;
  --white: #fff;
  --text: #172B4D;
  --muted: #667085;
  --border: #DCE5EF;
  --shadow: 0 8px 30px rgba(0,59,115,.08);
}


/* ==========================================================================
   02. RESET & PENGATURAN DASAR (Base Styles)
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}


/* ==========================================================================
   03. TIPOGRAFI & UTILITAS (Container, Judul Section)
   ========================================================================== */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.section {
  padding: 82px 0;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.section-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin: 9px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  font-size: .88rem;
  white-space: nowrap;
}

.text-link i {
  margin-left: 6px;
  transition: .2s;
}

.text-link:hover i {
  transform: translateX(4px);
}


/* ==========================================================================
   04. TOPBAR (Info Cuaca & Tanggal)
   ========================================================================== */
.topbar {
  background: var(--blue-dark);
  color: #dcecff;
  font-size: .73rem;
}

.topbar-row {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 0;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.topbar-info i {
  margin-right: 5px;
}

.topbar-separator {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.35);
}


/* ==========================================================================
   05. HEADER & NAVIGASI MENU (Navbar & Dropdown)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,59,115,.03);
}

.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 310px;
}

.brand-logo {
  width: 48px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: .78rem;
  line-height: 1.35;
  color: var(--blue-dark);
  letter-spacing: .01em;
}

.brand-sub {
  display: block;
  font-family: Inter, sans-serif;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 600;
  margin-top: 2px;
}

.nav {
  margin-left: auto;
}

.nav-list {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 29px 8px 28px;
  color: #284361;
  font-size: .69rem;
  letter-spacing: .025em;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--blue);
}

.nav-link i {
  font-size: .58rem;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 218px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 0 0 8px 8px;
  list-style: none;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 9px 11px;
  border-radius: 5px;
  color: var(--muted);
  font-size: .81rem;
}

.dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  background: var(--blue-dark);
  color: #fff;
  border: 0;
  border-radius: 5px;
}


/* ==========================================================================
   06. HERO SECTION (Slider Utama)
   ========================================================================== */
.hero {
  position: relative;
  height: clamp(420px, 58vw, 540px);
  background: var(--blue-dark);
  overflow: hidden;
}

.hero-track {
  height: 100%;
  display: flex;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: center/cover no-repeat;
}

.hero-slide:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 20px;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-logo {
  width: 75px; 
  height: auto;
  margin: 0 auto 18px auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
  animation: logoFadeDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes logoFadeDown {
  0% { opacity: 0; transform: translateY(-40px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-label {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(0, 0, 0, 0.3); 
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  border-radius: 4px;
}

.hero h1 {
  font-family: Poppins, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.14;
  margin: 17px 0;
}

.hero p {
  max-width: 620px;
  font-size: 1.03rem;
  color: #eaf4ff;
  margin: 0 auto 28px;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: 46px;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: rgba(0,0,0,.3);
  font-size: 1rem;
  transition: .2s;
}

.carousel-arrow:hover {
  background: #fff;
  color: var(--text);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.dots {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  border: 0;
  padding: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  transition: .2s;
}

.dot.active {
  background: #fff;
  transform: scale(1.35);
}


/* ==========================================================================
   07. SECTION: SEKAPUR SIRIH (Welcome & Editorial)
   ========================================================================== */
.welcome {
  background: var(--blue-soft);
}

.editorial-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
  margin: -20px -10px; 
}

.editorial-track {
  display: flex;
}

.editorial-slide {
  min-width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 59, 115, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 50px 60px;
}

.welcome-image-wrapper {
  flex: 0 0 280px;
  position: relative;
}

.welcome-image {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  z-index: 2;
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--blue);
  border-radius: 12px;
  z-index: -1;
  transition: 0.3s ease;
}

.editorial-slide:hover .welcome-image::before {
  top: 10px;
  left: -10px;
  background-color: rgba(0, 87, 168, 0.03);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.welcome-image:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(transparent, rgba(0, 59, 115, 0.8));
  pointer-events: none;
}

.photo-status {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-dark);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.welcome-copy .eyebrow {
  margin-bottom: 8px;
}

.welcome-copy h3 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem); 
  line-height: 1.25;
  margin: 0 0 4px;
  color: var(--blue-dark);
}

.position {
  color: var(--blue);
  font-size: clamp(0.8rem, 1vw, 1rem); 
  font-weight: 800;
  margin: 0 0 20px;
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 8px;
  display: inline-block;
}

.welcome-copy p {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem); 
  line-height: 1.7;
  margin: 0;
}

.welcome-copy p:last-of-type {
  font-style: italic;
}

.welcome-copy p:last-of-type::before {
  content: '\201C';
  color: var(--blue);
  font-size: 1.3em;
  font-weight: 900;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -0.2em;
}

.welcome-copy p:last-of-type::after {
  content: '\201D';
  color: var(--blue);
  font-size: 1.3em;
  font-weight: 900;
  line-height: 0;
  margin-left: 4px;
  vertical-align: -0.2em;
}

.editorial-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.outline-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--blue);
  border: 1px solid var(--border);
  background: #fff;
  transition: 0.3s;
}

.outline-button:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.editorial-dots {
  position: static;
  transform: none;
  margin-left: 12px;
}

.editorial-dots .dot {
  background: #c1d0df;
}

.editorial-dots .dot.active {
  background: var(--blue);
}


/* ==========================================================================
   08. SECTION: BERITA (Berita Utama & Slider Modern)
   ========================================================================== */
.featured-article {
  position: relative;
  width: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end; 
  box-shadow: 0 15px 40px rgba(0, 59, 115, 0.12);
  background: var(--blue-dark); 
}

.featured-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s ease;
  z-index: 1;
}

.featured-article:hover .featured-photo {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 33, 69, 0.95) 0%, rgba(0, 59, 115, 0.4) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.featured-copy {
  position: relative;
  z-index: 3;
  padding: 50px;
  color: #fff;
  max-width: 850px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.featured-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured-date {
  font-size: 0.85rem;
  color: #eaf4ff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-copy h3 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.featured-copy p {
  font-size: 1.05rem;
  color: #c9ddf1;
  line-height: 1.6;
  margin: 0 0 25px;
  max-width: 90%;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.modern-btn:hover {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.modern-btn:hover i {
  transform: translateX(4px);
}

/* Berita Terbaru */
.news-wrap {
  position: relative;
  overflow: hidden;
  padding: 15px 0 35px;
  margin: 0 -15px; 
}

.news-track {
  display: flex;
  gap: 0 !important; 
}

.news-card {
  flex: 0 0 calc(33.33333% - 30px);
  margin: 0 15px; 
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 5px 20px rgba(0, 59, 115, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 59, 115, 0.12);
  border-color: rgba(0, 87, 168, 0.2);
}

.news-thumb-wrap {
  position: relative;
  width: 100% !important;
  flex: 0 0 auto !important; 
  aspect-ratio: 16 / 10 !important;
  display: block !important;
  overflow: hidden;
}

.news-thumb {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.6s ease;
}

.news-card:hover .news-thumb {
  transform: scale(1.08); 
}

.news-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  background: var(--blue-dark);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.news-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
}

.news-meta-small {
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.news-meta-small i {
  color: var(--blue);
  margin-right: 4px;
}

.news-body h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--text);
  transition: color 0.3s ease;
}

.news-card:hover .news-body h3 {
  color: var(--blue); 
}

.news-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.news-readmore {
  margin-top: auto; 
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--blue);
}

.news-card:hover .news-readmore i {
  transform: translateX(4px); 
}

.news-controls {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.news-controls .outline-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--blue);
  border: 1px solid var(--border);
  background: #fff;
  transition: 0.3s;
}

.news-controls .outline-button:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}


/* ==========================================================================
   09. SECTION: PIMPINAN (Modern Glassmorphism Layout)
   ========================================================================== */
.leaders {
  background: linear-gradient(180deg, var(--blue-soft) 0%, #fff 100%);
  padding-bottom: 70px;
}

.leaders-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px; 
  margin: -20px 0 -40px;
}

.leaders-track {
  display: flex;
  gap: 20px;
}

.leader-card {
  min-width: calc((100% - 60px) / 4);
  position: relative;
  height: 440px; 
  border-radius: 24px;
  overflow: hidden;
  border: none; 
  box-shadow: 0 10px 30px rgba(0, 59, 115, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  cursor: grab;
}

.leader-card:hover {
  transform: translateY(-12px); 
  box-shadow: 0 20px 40px rgba(0, 59, 115, 0.15);
}

.leader-card:active {
  cursor: grabbing;
}

.leader-image {
  position: absolute;
  inset: 0; 
  width: 100%;
  height: 100%;
  background: var(--blue-light);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; 
  transition: transform 0.7s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.08); 
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 33, 69, 0.7) 0%, rgba(0, 59, 115, 0) 50%);
  pointer-events: none;
}

.leader-card .photo-status {
  top: 15px; 
  bottom: auto;
  left: 15px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px; 
  z-index: 3;
}

.info-glass {
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 10px; 
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  height: 110px;           
  width: 100%;
}

.leader-card:hover .info-glass {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.8);
}

.info-glass h3 {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--text);
  font-weight: 700;
}

.info-glass p {
  color: var(--blue);
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
}

.leaders-controls {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.leaders-controls .outline-button {
  width: 46px;
  height: 46px;
  border-width: 2px; 
}


/* ==========================================================================
   10. FOOTER & ANIMASI GELOMBANG
   ========================================================================== */
footer {
  position: relative;
  background: var(--blue-dark);
  color: #dcecff;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.footer-wave {
  position: relative;
  height: 86px;
  background: var(--blue-soft);
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.footer-wave svg {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 200%;
  height: 100%;
  display: block;
  will-change: transform;
}

.footer-wave .wave-back {
  opacity: .36;
  animation: footerWaveMove 24s linear infinite;
}

.footer-wave .wave-mid {
  opacity: .58;
  animation: footerWaveReverse 19s linear infinite;
}

.footer-wave .wave-front {
  opacity: 1;
  animation: footerWaveMove 14s linear infinite;
}

.footer-wave:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 5px;
  background: var(--blue-dark);
  z-index: 5;
}

@keyframes footerWaveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes footerWaveReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 58px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.footer-brand {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.footer-brand-sub {
  font-weight: 500;
  font-size: 0.85rem;
  color: #c9ddf1;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  margin: 0;
  color: #c9ddf1;
}

.footer-heading {
  font-family: Poppins, sans-serif;
  font-size: 0.79rem;
  color: #fff;
  letter-spacing: 0.09em;
  margin: 0 0 18px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #c9ddf1;
  font-size: 0.82rem;
  line-height: 1.6;
}

.contact-list i {
  color: #79b5ff;
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.stats-box {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-item i {
  font-size: 1.4rem;
  color: #79b5ff;
  background: rgba(121, 181, 255, 0.15);
  padding: 10px;
  border-radius: 8px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.68rem;
  color: #a4c7e8;
  font-weight: 500;
}

.map {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 8px;
  margin-bottom: 12px;
}

.map-link {
  display: inline-block;
  font-size: 0.71rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.07em;
  transition: 0.3s;
}

.map-link i {
  margin-left: 4px;
}

.map-link:hover {
  color: #79b5ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 45px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #bfd6ea;
  font-size: 0.72rem;
}


/* ==========================================================================
   11. KOMPONEN TAMBAHAN (Tombol Kembali ke Atas)
   ========================================================================== */
.to-top {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ==========================================================================
   12. RESPONSIVE / MEDIA QUERIES (Tampilan Mobile & Tablet)
   Kumpulan Seluruh Aturan Responsif yang Bebas Bentrok
   ========================================================================== */

/* --- Tablet Lebar & Layar Menengah (max-width: 1199px) --- */
@media (max-width: 1199px) {
  .brand { min-width: 285px; }
  .nav-link { padding-left: 6px; padding-right: 6px; font-size: .64rem; }
  .leader-card { min-width: calc((100% - 40px) / 3); }
}

/* --- Tablet Portrait (max-width: 991px) --- */
@media (max-width: 991px) {
  /* Header & Nav */
  .header-row { min-height: 72px; }
  .brand { min-width: 0; }
  .brand-logo { width: 42px; height: 50px; }
  .brand-name { font-size: .68rem; max-width: 310px; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(330px, 88vw);
    background: #fff; box-shadow: -10px 0 30px rgba(0,59,115,.15);
    transform: translateX(102%); transition: .3s; padding: 82px 24px 30px; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { display: block; }
  .nav-link { width: 100%; justify-content: space-between; padding: 13px 0; font-size: .78rem; border-bottom: 1px solid var(--border); }
  .dropdown { display: none; position: static; width: auto; padding: 4px 0; border: 0; box-shadow: none; }
  .nav-item.open .dropdown { display: block; }
  .nav-item:hover .dropdown { display: none; }
  .dropdown a { padding: 8px 13px; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .menu-toggle.active { background: #fff; color: var(--blue-dark); }

  /* Hero */
  .hero { height: 460px; }

  /* Sekapur Sirih */
  .editorial-slide { gap: 30px; padding: 40px; }
  .welcome-image-wrapper { flex: 0 0 220px; }
  .welcome-image::before { top: 10px; left: -15px; }

  /* Berita */
  .featured-article { min-height: 420px; }
  .featured-copy { padding: 40px; }
  .news-card { flex: 0 0 calc(50% - 30px); }

  /* Pimpinan */
  .leader-card { height: 400px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; max-width: 500px; }
  .footer-wave { height: 76px; }
  .footer-content { padding-top: 38px; }
}

/* --- Mobile Standard (max-width: 767px) --- */
@media (max-width: 767px) {
  /* Global & Topbar */
  .container { width: min(100% - 30px, 1180px); }
  .topbar-row { min-height: 38px; padding: 6px 0; align-items: flex-start; flex-direction: column; gap: 2px; }
  .topbar-info { font-size: .62rem; gap: 7px; flex-wrap: wrap; white-space: normal; }
  .topbar-separator { display: none; }

  /* Header */
  .brand-logo { width: 36px; height: 44px; }
  .brand-name { font-size: .62rem; max-width: 230px; }
  .brand-sub { font-size: .55rem; }

  /* Hero */
  .hero { height: 430px; }
  .hero-content { padding-bottom: 18px; }
  .hero-logo { width: 60px; margin-bottom: 12px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: .84rem; }
  .hero-prev { left: 11px; }
  .hero-next { right: 11px; }
  .carousel-arrow { height: 39px; width: 39px; }
  .dots { bottom: 17px; }

  /* Section Global */
  .section { padding: 62px 0; }
  .section-head { margin-bottom: 25px; }
  .section-head .text-link { display: none; }

  /* Sekapur Sirih */
  .editorial-track { align-items: flex-start; }
  .editorial-slide { display: block; padding: 30px 25px; height: fit-content; align-self: flex-start; }
  .welcome-image-wrapper { display: block; width: 100%; max-width: 100%; margin: 0 0 20px 0; }
  .welcome-image { aspect-ratio: 4 / 6; width: 100%; height: auto; }
  .welcome-image img { object-position: center; }
  .welcome-image::before { display: block; top: 10px; left: -10px; border-width: 2px; }
  .editorial-slide:hover .welcome-image::before { top: 6px; left: -6px; }
  .photo-status { bottom: 8px; left: 8px; right: 8px; text-align: center; font-size: 0.5rem; padding: 4px 6px; }
  .welcome-copy { display: block; width: 100%; text-align: left; padding: 0; min-height: 0; }
  .welcome-copy .eyebrow { display: inline-flex; font-size: 0.65rem; margin-bottom: 8px; }
  .welcome-copy h3 { font-size: 1.25rem; margin-bottom: 2px; }
  .position { font-size: 0.8rem; margin-top: 4px; margin-bottom: 12px; padding-bottom: 6px; }
  .welcome-copy p { font-size: 0.85rem; line-height: 1.6; }
  .editorial-controls { justify-content: flex-start; width: 100%; margin-top: 15px; }
  .outline-button { width: 32px; height: 32px; font-size: 0.75rem; }

  /* Berita Utama */
  .featured-article { min-height: 400px; border-radius: 16px; }
  .featured-copy { padding: 30px 20px; }
  .featured-copy h3 { font-size: 1.5rem; }
  .featured-copy p { font-size: 0.9rem; max-width: 100%; }
  .featured-meta { flex-wrap: wrap; }

  /* Berita Terbaru (Slider Cards) */
  .news-card { flex: 0 0 calc(100% - 30px); margin: 0 15px; }
  .news-controls { justify-content: flex-start; }

  /* Pimpinan */
  .leaders-wrap { padding: 20px 30px 40px; }
  .leader-card { min-width: calc(100% - 20px); height: auto; aspect-ratio: 4 / 6; }
  .leaders-controls { justify-content: flex-start; margin-top: 25px; }

  /* Footer */
  .footer-grid { display: flex; flex-direction: column; gap: 35px; }
  .footer-grid > div { margin-bottom: 0; } 
  .footer-logo-wrap { align-items: flex-start; }
  .footer-brand { font-size: 0.9rem; }
  .footer-wave { height: 60px; }
  .footer-content { padding-top: 32px; }
  .footer-bottom { flex-direction: column; text-align: left; line-height: 1.8; }
  .footer-bottom span { display: block; }
}

/* --- Mobile Kecil (max-width: 575px) --- */
@media (max-width: 575px) {
  .hero { height: 410px; }
  .hero-label { font-size: .57rem; }
  .hero h1 { font-size: 2.05rem; }
  .hero p { font-size: .84rem; }
  .section-title { font-size: 1.55rem; }
  .footer-wave { height: 54px; }
}