/* =====================================================================
   DINAS KESEHATAN PROVINSI NTB — GLOBAL STYLES
   Sections: hdr- (header/navbar), hero- (hero banner), ftr- (footer)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --brand-teal-bright: #14aab5;
  --brand-teal: #0e8a95;
  --brand-teal-deep: #0b6d78;
  --accent-lime: #cddc39;
  --accent-lime-dark: #b9c72a;
  --accent-red: #d1382b;
  --text-dark: #1c1e21;
  --text-gray: #6b7280;
  --text-light-gray: #a9b0b8;
  --white: #ffffff;

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.5;
  background: var(--white);
}

ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--brand-teal-bright);
  outline-offset: 2px;
}

/* =====================================================================
   HEADER — hdr-
   ===================================================================== */

.hdr-wrapper { position: relative; z-index: 100; }

/* --- Top info bar --- */
.hdr-topbar {
  background: var(--brand-teal-bright);
  color: var(--white);
  font-size: 0.85rem;
}

.hdr-topbar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hdr-topbar-welcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.hdr-topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hdr-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition);
}

.hdr-topbar-item:hover { opacity: 0.8; }

/* --- Main navbar --- */
.hdr-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hdr-navbar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hdr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hdr-brand-logo {
  height: 48px;
  width: auto;
}

.hdr-brand-logo-sm { height: 44px; }

.hdr-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 6px;
  white-space: nowrap;
}

.hdr-brand-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hdr-brand-text span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-teal);
}

/* --- Nav links --- */
.hdr-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.hdr-nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hdr-nav-item { position: relative; }

.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 2px;
  transition: color var(--transition);
}

.hdr-nav-trigger { background: none; }

.hdr-nav-link i { font-size: 0.7rem; transition: transform var(--transition); }

.hdr-nav-item:hover > .hdr-nav-link,
.hdr-nav-link:hover,
.hdr-nav-item.hdr-open > .hdr-nav-link {
  color: var(--brand-teal);
}

.hdr-nav-item.hdr-open > .hdr-nav-link i,
.hdr-nav-item:hover > .hdr-nav-link i {
  transform: rotate(180deg);
}

/* --- Dropdowns (desktop) --- */
.hdr-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}

.hdr-has-dropdown:hover > .hdr-dropdown,
.hdr-has-dropdown.hdr-open > .hdr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hdr-dropdown li { position: relative; }

.hdr-dropdown a,
.hdr-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-align: left;
}

.hdr-dropdown a:hover,
.hdr-submenu-trigger:hover,
.hdr-has-submenu.hdr-open > .hdr-submenu-trigger {
  background: rgba(14, 138, 149, 0.08);
  color: var(--brand-teal);
}

.hdr-submenu-trigger i { font-size: 0.7rem; }

/* --- Sub-submenus (flyout) --- */
.hdr-submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 60;
}

.hdr-has-submenu:hover > .hdr-submenu,
.hdr-has-submenu.hdr-open > .hdr-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* --- Actions --- */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hdr-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.05rem;
  transition: background var(--transition);
}

.hdr-search-btn:hover { background: rgba(0, 0, 0, 0.05); }

.hdr-cta-btn {
  background: var(--accent-lime);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.hdr-cta-btn:hover {
  background: var(--accent-lime-dark);
  transform: translateY(-1px);
}

/* --- Mobile toggle --- */
.hdr-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.hdr-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hdr-toggle.hdr-toggle-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-toggle.hdr-toggle-active span:nth-child(2) { opacity: 0; }
.hdr-toggle.hdr-toggle-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO — hero-
   ===================================================================== */

.hero-wrapper { position: relative; }

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
  z-index: 1;
}

.hero-slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.35) 100%);
}

.hero-decor-hash {
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22rem;
  color: var(--accent-red);
  opacity: 0.9;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text { max-width: 640px; }

.hero-eyebrow {
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 0.5px;
}

.hero-title {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-subtitle {
  margin: 6px 0 24px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light-gray);
  letter-spacing: 0.5px;
}

.hero-profile {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-profile-badge {
  background: var(--accent-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.hero-profile-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-left: 4px;
}

.hero-figure {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  display: none;
}

.hero-figure-ring {
  position: absolute;
  inset: -14px;
  border: 3px dashed var(--brand-teal-bright);
  border-radius: 50%;
}

.hero-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e5e5;
}

/* --- Arrows / dots --- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  z-index: 3;
  transition: background var(--transition);
}

.hero-arrow:hover { background: var(--white); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(28, 30, 33, 0.25);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.hero-dot-active {
  background: var(--brand-teal);
  width: 26px;
  border-radius: var(--radius-pill);
}

/* =====================================================================
   FOOTER — ftr-
   ===================================================================== */

.ftr-wrapper {
  position: relative;
  background: var(--brand-teal-deep);
  color: var(--white);
  margin-top: 60px;
  overflow: hidden;
}

.ftr-shape {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: var(--ftr-shape-height, 90px);
  background: var(--white);
  transform: skewY(-2.2deg);
  transform-origin: top left;
  z-index: 1;
}

.ftr-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: calc(var(--ftr-shape-height, 90px) + 20px) 24px 50px;
}

.ftr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.ftr-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.4;
}

.ftr-subheading {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 28px 0 14px;
}

.ftr-address {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Column 1: contact / social / stats --- */
.ftr-social {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.ftr-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}

.ftr-social-link:hover {
  background: var(--accent-lime);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.ftr-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 32px;
}

.ftr-stat-item { display: flex; flex-direction: column; }

.ftr-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.ftr-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

/* --- Column 2: survey --- */
.ftr-survey-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.ftr-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.ftr-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ftr-radio-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.ftr-radio-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
  transform: scale(0);
  transition: transform var(--transition);
}

.ftr-radio input:checked + .ftr-radio-mark {
  border-color: var(--white);
  background: rgba(20, 170, 181, 0.9);
}

.ftr-radio input:checked + .ftr-radio-mark::after { transform: scale(1); }

.ftr-radio input:focus-visible + .ftr-radio-mark {
  outline: 2px solid var(--accent-lime);
  outline-offset: 2px;
}

.ftr-submit-btn {
  margin-top: 8px;
  background: var(--accent-lime);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 30px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}

.ftr-submit-btn:hover {
  background: var(--accent-lime-dark);
  transform: translateY(-1px);
}

.ftr-survey-feedback {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-lime);
  min-height: 1em;
}

/* --- Column 3: map --- */
.ftr-map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 210px;
  background: #e5e5e5;
}

.ftr-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.9);
}

.ftr-map-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.ftr-map-link:hover { transform: translateY(-1px); }

/* --- Column 4: SIMASKOT --- */
.ftr-qr {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 16px;
}

.ftr-qr-img { width: 100%; height: 100%; object-fit: contain; }

.ftr-simaskot-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
  max-width: 260px;
}

.ftr-simaskot-btn {
  display: inline-block;
  background: var(--accent-lime);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}

.ftr-simaskot-btn:hover {
  background: var(--accent-lime-dark);
  transform: translateY(-1px);
}

/* --- Floating buttons --- */
.ftr-a11y-btn,
.ftr-totop-btn {
  position: fixed;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  z-index: 200;
  transition: transform var(--transition), opacity var(--transition);
}

.ftr-a11y-btn {
  left: 24px;
  background: #2f6fed;
  color: var(--white);
}

.ftr-totop-btn {
  right: 24px;
  background: var(--white);
  color: var(--brand-teal);
  border: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
}

.ftr-totop-btn.ftr-totop-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ftr-totop-btn i {
  position: relative;
  z-index: 2;
}

.ftr-totop-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 1;
}

.ftr-totop-track {
  fill: none;
  stroke: rgba(11, 109, 120, 0.15);
  stroke-width: 3;
}

.ftr-totop-fill {
  fill: none;
  stroke: var(--brand-teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 0.15s ease-out;
}

.ftr-a11y-btn:hover,
.ftr-totop-btn:hover { transform: translateY(-3px); }

/* =====================================================================
   QUICK ACCESS — qa- (Agenda / Galeri cards)
   ===================================================================== */

.qa-section {
  background: var(--brand-teal-bright);
  padding: 56px 24px;
}

.qa-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  margin-bottom: 60px;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.qa-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.qa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.qa-icon {
  flex-shrink: 0;
  font-size: 2.2rem;
  line-height: 1;
  color: #3b4a63;
  margin-top: 2px;
}

.qa-icon img {
    width: 100px;
}

.qa-title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.qa-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .qa-section { padding: 40px 16px; }
  .qa-grid { grid-template-columns: 1fr; gap: 18px; }
  .qa-card { padding: 22px 22px; }
  .qa-icon { font-size: 1.9rem; }
}

/* =====================================================================
   BLOG — blog- (Postingan Terkini)
   ===================================================================== */

.blog-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--brand-teal-bright) 0%, #9fdcd3 45%, #eef8f6 85%);
  padding: 70px 24px 90px;
}

.blog-decor-dots {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 190px;
  height: 190px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 2.5px, transparent 2.5px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(135deg, #000 40%, transparent 85%);
  mask-image: linear-gradient(135deg, #000 40%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.blog-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
}

.blog-eyebrow {
  margin: 0 0 6px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2f5fda;
}

.blog-heading {
  margin: 0 0 40px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

/* --- Media (photo + overlays) --- */
.blog-card-media {
  position: relative;
  height: 190px;
  background-color: #8fb9b3;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 14px 16px;
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 60, 65, 0.35) 0%, rgba(10, 40, 50, 0.15) 35%, rgba(5, 20, 30, 0.55) 100%);
}

.blog-card-logo {
  position: relative;
  z-index: 2;
  height: 30px;
  width: auto;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.blog-card-date {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  background: #1f3a5f;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.blog-card-media-title {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.blog-card-media-title span {
  background: #e3ff4d;
  color: #16233b;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 8px;
}

/* --- Body --- */
.blog-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2f5fda;
}

.blog-card-cat-line {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #2f5fda;
}

.blog-card-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Footer bar --- */
.blog-card-footer {
  background: var(--brand-teal-deep);
  color: var(--white);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 991.98px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-decor-dots { display: none; }
}

@media (max-width: 767.98px) {
  .blog-section { padding: 50px 16px 60px; }
  .blog-heading { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* =====================================================================
   PPID — ppid- (Informasi Publik)
   ===================================================================== */

.ppid-section {
  background: var(--white);
  padding: 80px 24px;
}

.ppid-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.ppid-eyebrow {
  margin: 0 0 6px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2f5fda;
}

.ppid-heading {
  margin: 0 0 48px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ppid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ppid-item {
  text-align: center;
  padding: 0 12px;
}

.ppid-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
}

.ppid-item-blue .ppid-icon { background: #4a7fea; }
.ppid-item-green .ppid-icon { background: #3ecf9d; }
.ppid-item-orange .ppid-icon { background: #f0b429; }
.ppid-item-red .ppid-icon { background: #dd5468; }

.ppid-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ppid-desc {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.ppid-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap var(--transition);
}

.ppid-link i { font-size: 0.8rem; transition: transform var(--transition); }
.ppid-link:hover i { transform: translateX(3px); }

.ppid-item-blue .ppid-link { color: #4a7fea; }
.ppid-item-green .ppid-link { color: #3ecf9d; }
.ppid-item-orange .ppid-link { color: #f0b429; }
.ppid-item-red .ppid-link { color: #dd5468; }

@media (max-width: 991.98px) {
  .ppid-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}

@media (max-width: 767.98px) {
  .ppid-section { padding: 56px 16px; }
  .ppid-heading { font-size: 1.6rem; }
  .ppid-grid { grid-template-columns: 1fr; row-gap: 36px; }
}

/* =====================================================================
   LINK TERKAIT — link- (infinite logo carousel)
   ===================================================================== */

.link-section {
  background: var(--white);
  padding: 70px 0 90px;
}

.link-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.link-heading {
  margin: 0 0 44px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.link-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.link-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  will-change: transform;
}

.link-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0.15);
  opacity: 0.9;
  transition: transform var(--transition), opacity var(--transition), filter var(--transition);
}

.link-item:hover {
  transform: translateY(-4px);
  opacity: 1;
  filter: grayscale(0);
}

.link-item img {
  height: 130px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 767.98px) {
  .link-section { padding: 50px 0 60px; }
  .link-heading { font-size: 1.6rem; margin-bottom: 32px; }
  .link-track { gap: 28px; }
  .link-item img { height: 100px; }
}

/* =====================================================================
   PAGE BANNER — pgb- (inner-page title banner, e.g. page.html)
   ===================================================================== */

.pgb-section {
  position: relative;
  background-color: var(--brand-teal);
  background-size: cover;
  background-position: center;
  padding: 90px 24px;
  text-align: center;
  overflow: hidden;
}

.pgb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 90, 98, 0.35) 0%, rgba(6, 70, 78, 0.15) 100%);
}

.pgb-inner {
  position: relative;
  z-index: 2;
}

.pgb-title {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}

.pgb-breadcrumb {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.pgb-breadcrumb a { color: var(--white); }
.pgb-breadcrumb a:hover { text-decoration: underline; }
.pgb-breadcrumb i { font-size: 0.6rem; margin: 0 6px; vertical-align: middle; }

.pgb-title-article {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.9rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
}

/* =====================================================================
   PAGE CONTENT — pgc- (document listing card)
   ===================================================================== */

.pgc-section {
  background: linear-gradient(180deg, #eaf3fb 0%, #bfe9e2 55%, #ffffff 100%);
  padding: 56px 24px 90px;
}

.pgc-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pgc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 44px 48px 48px;
}

.pgc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 0.85rem;
  color: var(--text-light-gray);
}

.pgc-title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #5b6472;
}

.pgc-subtitle {
  margin: 0 0 28px;
  text-align: center;
  font-size: 1rem;
  color: #5b6472;
}

.pgc-intro {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: #5b6472;
  line-height: 1.7;
}

.pgc-doc-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}

.pgc-doc-header {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b6472;
  margin-bottom: 18px;
}

.pgc-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pgc-doc-name {
  font-size: 0.95rem;
  color: #5b6472;
}

.pgc-doc-btn {
  flex-shrink: 0;
  background: #f0a825;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}

.pgc-doc-btn:hover {
  background: #d99416;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .pgb-section { padding: 64px 16px; }
  .pgb-title { font-size: 1.7rem; }

  .pgc-section { padding: 40px 16px 60px; }
  .pgc-card { padding: 32px 22px 36px; }
  .pgc-title { font-size: 1.25rem; }

  .pgc-doc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pgc-doc-btn { width: 100%; text-align: center; }
}

/* =====================================================================
   BLOG DETAIL — blogd- (article page)
   ===================================================================== */

.blogd-section {
  background: var(--white);
  padding: 56px 24px 90px;
}

.blogd-inner {
  max-width: 900px;
  margin: 0 auto;
}

.blogd-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 40px 44px 44px;
}

.blogd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blogd-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
}

.blogd-meta-item:first-child {
  color: #2f5fda;
  letter-spacing: 0.5px;
}

.blogd-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 30px;
}

.blogd-image img {
  width: 100%;
  /*height: 380px;*/
  object-fit: cover;
}

.blogd-body p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.85;
  color: #444b54;
}

.blogd-body p:last-child { margin-bottom: 0; }

.blogd-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blogd-share-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 4px;
}

.blogd-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef5f4;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.blogd-share-btn:hover {
  background: var(--brand-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.blogd-related {
  margin-top: 60px;
}

.blogd-related .blog-heading {
  margin-bottom: 32px;
}

@media (max-width: 767.98px) {
  .blogd-section { padding: 40px 16px 60px; }
  .blogd-card { padding: 28px 22px 32px; }
  .blogd-image img { height: 220px; }
  .blogd-meta { gap: 14px 18px; }
  .blogd-related { margin-top: 44px; }
}

/* =====================================================================
   TEAM — team- (Struktur Organisasi listing)
   ===================================================================== */

.team-section {
  background: var(--white);
  padding: 60px 24px 90px;
}

.team-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.team-lead {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #eef5f4;
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 56px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-lead:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-lead-photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.team-lead-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-lead-eyebrow {
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2f5fda;
}

.team-lead-name {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.team-lead-desc {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 640px;
}

.team-lead-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.team-lead-link i { font-size: 0.8rem; transition: transform var(--transition); }
.team-lead:hover .team-lead-link i { transform: translateX(3px); }

.team-grid-heading {
  margin: 0 0 28px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
}

.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card-name {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.team-card-role {
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.5;
  min-height: 2.4em;
}

.team-card-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-card-social span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef5f4;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

@media (max-width: 991.98px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .team-section { padding: 40px 16px 60px; }

  .team-lead {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 20px;
  }

  .team-lead-desc { max-width: none; }

  .team-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =====================================================================
   TEAM DETAIL — teamd- (individual profile page)
   ===================================================================== */

.teamd-section {
  background: var(--white);
  padding: 56px 24px 90px;
}

.teamd-inner {
  max-width: 900px;
  margin: 0 auto;
}

.teamd-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 40px 44px 44px;
}

.teamd-profile {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.teamd-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #eef5f4;
  box-shadow: var(--shadow-sm);
}

.teamd-photo img { width: 100%; height: 100%; object-fit: cover; }

.teamd-role {
  margin: 0 0 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2f5fda;
}

.teamd-name {
  margin: 0 0 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.teamd-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.teamd-contact li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.teamd-section-title {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.teamd-body p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444b54;
}

.teamd-body p:last-child { margin-bottom: 0; }

.teamd-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.teamd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teamd-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.teamd-list-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-teal-bright);
  margin-top: 6px;
}

.teamd-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.teamd-list li strong {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.teamd-list li span {
  font-size: 0.82rem;
  color: var(--text-gray);
}

.teamd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.teamd-back:hover { text-decoration: underline; }

@media (max-width: 767.98px) {
  .teamd-section { padding: 40px 16px 60px; }
  .teamd-card { padding: 28px 22px 32px; }

  .teamd-profile {
    flex-direction: column;
    text-align: center;
  }

  .teamd-contact { justify-content: center; }

  .teamd-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =====================================================================
   CONTACT — contact- (Kontak Kami page)
   ===================================================================== */

.contact-section {
  background: var(--white);
  padding: 60px 24px 90px;
}

.contact-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* --- Info cards --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-teal-bright);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.contact-info-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-info-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- Form + map columns --- */
.contact-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 36px 38px;
}

.contact-form-heading {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-form-desc {
  margin: 0 0 26px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--brand-teal-bright);
}

.contact-form-group textarea { resize: vertical; }

.contact-form-submit {
  background: var(--accent-lime);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}

.contact-form-submit:hover {
  background: var(--accent-lime-dark);
  transform: translateY(-1px);
}

.contact-form-feedback {
  margin: 12px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-teal);
  min-height: 1em;
}

/* --- Map card --- */
.contact-map-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.contact-map { height: 260px; background: #e5e5e5; }
.contact-map-frame { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

.contact-map-info { padding: 24px 26px; }

.contact-map-info h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-map-info p {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.contact-map-link:hover { text-decoration: underline; }

@media (max-width: 991.98px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-columns { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .contact-section { padding: 40px 16px 60px; }
  .contact-form-card { padding: 26px 22px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   GALLERY — gal- (Galeri page: masonry grid + filters)
   ===================================================================== */

.gal-section {
  background: var(--white);
  padding: 56px 24px 90px;
}

.gal-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.gal-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.gal-filter-btn {
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--text-gray);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.gal-filter-btn:hover { border-color: var(--brand-teal-bright); color: var(--brand-teal); }

.gal-filter-active {
  background: var(--brand-teal-bright);
  border-color: var(--brand-teal-bright);
  color: var(--white);
}

.gal-filter-active:hover { color: var(--white); }

.gal-grid {
  columns: 3 220px;
  column-gap: 20px;
}

.gal-item {
  position: relative;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gal-item:hover img { transform: scale(1.06); }

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 45, 0) 40%, rgba(8, 30, 35, 0.82) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gal-item:hover .gal-item-overlay { opacity: 1; }

.gal-item-overlay i {
  color: var(--white);
  font-size: 1.3rem;
}

.gal-item-caption {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.gal-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 2;
  transition: transform var(--transition), background var(--transition);
}

.gal-item:hover .gal-item-play {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}

.gal-item[hidden] { display: none; }

@media (max-width: 767.98px) {
  .gal-section { padding: 40px 16px 60px; }
  .gal-grid { columns: 2 160px; column-gap: 14px; }
  .gal-item { margin-bottom: 14px; }
  .gal-filters { gap: 8px; }
  .gal-filter-btn { padding: 8px 18px; font-size: 0.82rem; }
}

/* =====================================================================
   GALLERY LIGHTBOX — gallb-
   ===================================================================== */

.gallb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.gallb-overlay.gallb-open {
  opacity: 1;
  visibility: visible;
}

.gallb-content {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallb-content img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}

.gallb-caption {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.gallb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}

.gallb-close:hover { background: rgba(255, 255, 255, 0.25); }

.gallb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.gallb-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.gallb-arrow-prev { left: 24px; }
.gallb-arrow-next { right: 24px; }

@media (max-width: 767.98px) {
  .gallb-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .gallb-arrow { width: 40px; height: 40px; }
  .gallb-arrow-prev { left: 10px; }
  .gallb-arrow-next { right: 10px; }
}

/* =====================================================================
   RESPONSIVE — TABLET (<=991.98px)
   ===================================================================== */
@media (max-width: 991.98px) {

  .hdr-toggle { display: flex; }

  .hdr-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86%);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 24px 24px;
    box-shadow: var(--shadow-md);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 90;
  }

  .hdr-menu.hdr-menu-open { right: 0; }

  .hdr-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .hdr-nav-link {
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .hdr-dropdown,
  .hdr-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 12px;
    width: 100%;
    min-width: 0;
  }

  .hdr-has-dropdown.hdr-open > .hdr-dropdown,
  .hdr-has-submenu.hdr-open > .hdr-submenu {
    display: block;
  }

  .hdr-actions {
    margin-top: 20px;
    justify-content: space-between;
  }

  .hero-title { font-size: 2.8rem; }
  .hero-decor-hash { font-size: 16rem; }

  .ftr-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
}

/* =====================================================================
   RESPONSIVE — MOBILE (<=767.98px)
   ===================================================================== */
@media (max-width: 767.98px) {

  .hdr-topbar-inner { padding: 8px 16px; }
  .hdr-topbar-welcome span { display: none; }
  .hdr-topbar-contact { gap: 14px; }
  .hdr-topbar-item span { display: none; }

  .hdr-navbar-inner { padding: 10px 16px; }
  .hdr-brand-logo { height: 38px; }
  .hdr-brand-logo-sm { height: 34px; }
  .hdr-brand-text { display: none; }

  .hero-slide { min-height: 520px; }
  .hero-content { padding: 32px 16px; }
  .hero-eyebrow { font-size: 1.1rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 18px; }
  .hero-profile-badge { font-size: 0.8rem; padding: 7px 14px; }
  .hero-decor-hash { font-size: 11rem; right: -20px; bottom: -30px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 0.95rem; }

  .ftr-wrapper { --ftr-shape-height: 60px; }
  .ftr-inner { padding-left: 16px; padding-right: 16px; padding-bottom: 40px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 44px; }
  .ftr-stats { grid-template-columns: repeat(2, 1fr); }

  .hero-arrow {
    top: 16px;
    transform: none;
  }
  .hero-arrow-prev { left: 16px; }
  .hero-arrow-next { right: 16px; }

  .ftr-a11y-btn, .ftr-totop-btn { width: 42px; height: 42px; font-size: 1rem; bottom: 16px; }
  .ftr-a11y-btn { left: 16px; }
  .ftr-totop-btn { right: 16px; }
}

/* =====================================================================
   RESPONSIVE — SHOW FIGURE PHOTO ON LARGER SCREENS
   ===================================================================== */
@media (min-width: 992px) {
  .hero-figure { display: block; }
}

/* ============================================================
   BERITA CAROUSEL — scoped to #beritaCarousel only
   ------------------------------------------------------------
   Restyles Bootstrap's carousel (used for the main image in
   berita-detail.php) to match the site's .blogd-image sizing,
   rounded corners, and teal accent. Every rule below is scoped
   under the #beritaCarousel id, so it cannot leak into or
   conflict with any other carousel on the site (e.g. .hero-section).

   Depends on CSS variables already defined in style.css:
   --radius-md, --brand-teal, --shadow-sm, --transition.
   Since this partial is only ever rendered inside pages that
   already load style.css, those variables are in scope — no
   need to redeclare them here. Fallback values are included
   after each var() just in case this file is ever used standalone.

   REQUIRES: Bootstrap's JS bundle (for data-bs-ride / carousel
   controls to work) — this project currently only loads
   Bootstrap's CSS. Add this once, e.g. right before script.js:
     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
   ============================================================ */

#beritaCarousel {
  position: relative;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0, 0, 0, 0.08));
}

#beritaCarousel .carousel-inner {
  border-radius: inherit;
}

/* --- Slide images: match .blogd-image's fixed-height crop --- */
#beritaCarousel .carousel-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* --- Indicators (dots): pill-style active state --- */
#beritaCarousel .carousel-indicators {
  margin-bottom: 14px;
  gap: 6px;
}

#beritaCarousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  opacity: 1;
  transition:
    width var(--transition, 0.25s ease),
    background-color var(--transition, 0.25s ease);
}

#beritaCarousel .carousel-indicators .active {
  width: 26px;
  background-color: var(--brand-teal, #0e8a95);
}

/* --- Prev / Next arrow buttons --- */
#beritaCarousel .carousel-control-prev,
#beritaCarousel .carousel-control-next {
  width: 60px;
  opacity: 0;
  transition: opacity var(--transition, 0.25s ease);
}

#beritaCarousel:hover .carousel-control-prev,
#beritaCarousel:hover .carousel-control-next,
#beritaCarousel:focus-within .carousel-control-prev,
#beritaCarousel:focus-within .carousel-control-next {
  opacity: 1;
}

#beritaCarousel .carousel-control-prev-icon,
#beritaCarousel .carousel-control-next-icon {
  background-color: rgba(8, 30, 35, 0.45);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background-size: 50%;
  transition: background-color var(--transition, 0.25s ease);
}

#beritaCarousel .carousel-control-prev-icon:hover,
#beritaCarousel .carousel-control-next-icon:hover {
  background-color: var(--brand-teal, #0e8a95);
}

/* --- Mobile: smaller crop height, controls always visible (no hover on touch) --- */
@media (max-width: 767.98px) {
  #beritaCarousel .carousel-item img {
    height: 220px;
  }

  #beritaCarousel .carousel-control-prev,
  #beritaCarousel .carousel-control-next {
    opacity: 1;
  }

  #beritaCarousel .carousel-control-prev-icon,
  #beritaCarousel .carousel-control-next-icon {
    width: 34px;
    height: 34px;
  }
}


/* =====================================================================
   GALLERY — gal- (Galeri page: masonry grid + filters)
   ===================================================================== */
 
.gal-section {
  background: var(--white);
  padding: 56px 24px 90px;
}
 
.gal-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}
 
.gal-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
 
.gal-filter-btn {
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--text-gray);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
 
.gal-filter-btn:hover { border-color: var(--brand-teal-bright); color: var(--brand-teal); }
 
.gal-filter-active {
  background: var(--brand-teal-bright);
  border-color: var(--brand-teal-bright);
  color: var(--white);
}
 
.gal-filter-active:hover { color: var(--white); }
 
.gal-grid {
  columns: 3 220px;
  column-gap: 20px;
}
 
.gal-item {
  position: relative;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
 
.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
 
.gal-item:hover img { transform: scale(1.06); }
 
.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 45, 0) 40%, rgba(8, 30, 35, 0.82) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
 
.gal-item:hover .gal-item-overlay { opacity: 1; }
 
.gal-item-overlay i {
  color: var(--white);
  font-size: 1.3rem;
}
 
.gal-item-caption {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
 
.gal-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 2;
  transition: transform var(--transition), background var(--transition);
}
 
.gal-item:hover .gal-item-play {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}
 
.gal-item[hidden] { display: none; }
 
@media (max-width: 767.98px) {
  .gal-section { padding: 40px 16px 60px; }
  .gal-grid { columns: 2 160px; column-gap: 14px; }
  .gal-item { margin-bottom: 14px; }
  .gal-filters { gap: 8px; }
  .gal-filter-btn { padding: 8px 18px; font-size: 0.82rem; }
}
 
/* =====================================================================
   GALLERY LIGHTBOX — gallb-
   ===================================================================== */
 
.gallb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
 
.gallb-overlay.gallb-open {
  opacity: 1;
  visibility: visible;
}
 
.gallb-content {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
 
.gallb-content img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}
 
.gallb-caption {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
 
.gallb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
 
.gallb-close:hover { background: rgba(255, 255, 255, 0.25); }
 
.gallb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
}
 
.gallb-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.gallb-arrow-prev { left: 24px; }
.gallb-arrow-next { right: 24px; }
 
@media (max-width: 767.98px) {
  .gallb-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .gallb-arrow { width: 40px; height: 40px; }
  .gallb-arrow-prev { left: 10px; }
  .gallb-arrow-next { right: 10px; }
}
 
/* =====================================================================
   GALERI (PHP) — galeri- / lb-
   Matches galeri.php exactly: album grid (list mode) + photo grid
   within an album (detail mode), both using the same card markup.
   Lightbox JS (lbOpen/lbClose/lbMove/lbRender) is already inline in
   the PHP template — this only supplies the visual styling.
   ===================================================================== */
 
.galeri-section {
  background: var(--white);
  padding: 56px 24px 90px;
}
 
.galeri-section .container {
  max-width: var(--container-width);
}
 
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
 
.galeri-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
 
.galeri-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
 
.galeri-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eef5f4;
}
 
.galeri-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.galeri-card:hover .galeri-card-img img {
  transform: scale(1.06);
}
 
.galeri-card-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 30, 35, 0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
 
.galeri-card-count i { font-size: 0.7rem; }
 
.galeri-card-body {
  padding: 16px 18px;
}
 
.galeri-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
.galeri-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-gray);
  font-size: 0.95rem;
}
 
.galeri-empty i { font-size: 1.2rem; }
 
@media (max-width: 991.98px) {
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 767.98px) {
  .galeri-section { padding: 40px 16px 60px; }
  .galeri-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .galeri-card-img { height: 130px; }
  .galeri-card-body { padding: 12px 14px; }
  .galeri-card-title { font-size: 0.85rem; }
}
 
/* --- Lightbox (id="lbBackdrop") --- */
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}
 
.lb-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
 
.lb-wrap {
  max-width: min(900px, 88vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
 
.lb-img {
  max-width: 100%;
  max-height: 68vh;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}
 
.lb-caption {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}
 
.lb-galeri-name {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}
 
.lb-counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
}
 
.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
 
.lb-close:hover { background: rgba(255, 255, 255, 0.25); }
 
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
 
.lb-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lb-nav.prev { left: 24px; }
.lb-nav.next { right: 24px; }
 
@media (max-width: 767.98px) {
  .lb-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 1.3rem; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-nav.prev { left: 10px; }
  .lb-nav.next { right: 10px; }
  .lb-img { max-height: 60vh; }
}

/* ============================================================
   CUSTOM PAGINATION STYLING
   ============================================================ */
.custom-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem; /* Margin top sesuai permintaan */
  margin-bottom: 1.5rem;
}

.custom-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  align-items: center;
}

.custom-pagination .page-item {
  display: inline-block;
}

.custom-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

/* Hover State */
.custom-pagination .page-link:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
  color: var(--brand-teal-deep);
}

/* Active State */
.custom-pagination .page-item.active .page-link {
  background-color: var(--brand-teal-deep); /* Sesuaikan dengan warna tema */
  border-color: var(--brand-teal-deep);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
  cursor: default;
}

/* Disabled State */
.custom-pagination .page-item.disabled .page-link {
  color: #bbb;
  background-color: #fafafa;
  border-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   FOOTER BOTTOM / COPYRIGHT BAR
   ============================================================ */
.ftr-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Garis pemisah tipis sesuai gambar */
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.ftr-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.ftr-copyright {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ftr-bottom {
    padding: 18px 0;
  }
  
  .ftr-copyright {
    font-size: 13px;
    text-align: center;
    width: 100%;
  }
}

.btn-primary {
    background-color: var(--brand-teal-deep) !important;
    border-color: var(--brand-teal-deep) !important;
    color: #ffffff !important;
    transition: all 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--brand-teal-deep) !important;
    border-color: var(--brand-teal-deep) !important;
    filter: brightness(0.9);
    opacity: 0.95;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Card Container Styling */
        .dt-custom-wrapper {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            padding: 20px;
            border: 1px solid #f0f2f5;
        }
        
        
        /* Action Buttons */
        .btn-table-action {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            text-decoration: none !important;
            transition: all 0.25s ease;
            background-color: var(--brand-teal-bright);
            color: #ffffff !important;
            border: 1px solid var(--brand-teal-bright);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        .btn-table-action:hover {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            color: #ffffff !important;
        }

        /* DataTables UI Customizations */
        .dataTables_wrapper .dataTables_filter input {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 6px 12px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .dataTables_wrapper .dataTables_filter input:focus {
            border-color: var(--brand-teal-bright);
            box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.15);
        }

        .dataTables_wrapper .dataTables_length select {
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 5px 10px;
        }
        
         .alumni-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
  }

  .alumni-form-card h4 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
  }

  .alumni-form-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--brand-teal-bright);
    border-radius: 4px;
  }

  .alumni-form-card .form-control {
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s ease;
  }

  .alumni-form-card .form-control:focus {
    border-color: var(--brand-teal-bright);
    box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.15);
    background-color: #ffffff;
  }

  .alumni-form-card select.form-control {
    cursor: pointer;
  }

  .alumni-form-card textarea.form-control {
    min-height: 90px;
    resize: vertical;
  }

  .btn-submit-alumni {
    background-color: var(--brand-teal-bright) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
  }

  .btn-submit-alumni:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    filter: brightness(0.95);
  }

  @media (max-width: 768px) {
    .alumni-form-card {
      padding: 22px 18px;
    }
  }