
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #FBF8F3;
  color: #1a202c; /* Dark slate text */
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus,
button:focus {
  outline: 3px solid #3182ce;
  outline-offset: 2px;
}

/* Utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* HEADER */
header {
  background-color: white;
  border-bottom: 1px solid #cbd5e0;
  position: sticky;
  top: 0;
  z-index: 1001 !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.kop-nav {
  background-color: #22724b;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: #2d3748;
  gap: 8px;
}
.logo img {
  height: 32px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  font-weight: 600;
  padding: 8px 4px;
  color: #2d3748;
  position: relative;
}
nav a:hover,
nav a:focus-visible {
  color: #4bc555;
}
nav a[aria-current="page"] {
  font-weight: 700;
  border-bottom: 2px solid #2f855a;
}
.dropdown {
  position: relative;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 1001;
}
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #2d3748;
  font-weight: 500;
  white-space: nowrap;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background-color: #c6f6d5;
  outline: none;
}
.nav-social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
}
.nav-social-media li {
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  color: #2d3748;
}
.nav-social-media li:hover {
  color: #4bc555;
}
.nav-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #2f855a;
  font-size: 28px;
}

.preview-beranda {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
}

.btn-preview-beranda {
  /* display: flex;
  align-items: center;
  gap: 8px;
  width: 100%; */
}

/* HERO */
section.hero {
  background-color: #f9f6ea;
  padding: 40px 20px 64px;
  position: relative;
  overflow: hidden;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 0 20px;
}
.hero-text {
  flex: 1 1 320px;
  max-width: 600px;
}
.hero-text h2 {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  color: #4a5568;
  margin-bottom: 8px;
  display: inline-block;
}
.hero-text h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 0px;
}
.hero-text p {
  font-weight: 400;
  color: #4a5568;
  max-width: 480px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.hero-signatures {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 500px;
  margin-top: 24px;
}
.signature-card {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: #4a5568;
}
.signature-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.signature-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: #1a202c;
  font-weight: 600;
}
.signature-info small {
  font-size: 0.8rem;
  font-weight: normal;
  padding-top: 2px;
}
.hero-image {
  flex: 1 1 220px;
  min-width: 280px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-image img {
  border-radius: 8px;
  max-height: 220px;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.hero-edit-button {
  width: 100px;
  text-align: center;
  margin: 0 auto;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #2d3748;
  border: 1px solid #2d3748;
  padding: 6px 12px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-edit-button:hover {
  background-color: #2d3748;
}

.hero-edit-button:hover button {
  color: #fff;
}


.hero-edit-button button {
  border: none;
  background: none;
}

/* INFO BOXES UNDER HERO */
.info-boxes {
  max-width: 1200px;
  margin: -48px auto 48px;
  display: flex;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.info-box {
  background-color: white;
  flex: 1 1 260px;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}
.info-box:hover,
.info-box:focus-within {
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
  outline: none;
}
.info-icon {
  color: #2f855a;
  font-size: 32px;
  min-width: 32px;
  min-height: 32px;
}
.info-text {
  font-weight: 600;
  font-size: 0.925rem;
  color: #2d3748;
}
.info-subtext {
  font-weight: 400;
  font-size: 0.825rem;
  color: #718096;
  margin-left: 48px; /* Align below text */
  max-width: 380px;
}

/* SLIDER SECTION */
section.slider {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  position: relative;
}
.slider-header {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2d3748;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
  will-change: transform;
}
/* Tetap gunakan class .slide seperti sebelumnya */
.slide {
  background: white;
  flex: 0 0 280px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  border: 1px solid #e2e8f0;
}

/* Judul */
.slide-title h3 {
  font-size: 1rem;
  margin: 0;
  color: #1a202c;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

/* Paragraf */
.slide-content p {
  font-size: 0.875rem;
  color: #4a5568;
  margin: 4px 0 0;
  line-height: 1.4;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #2f855a;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.slider-nav:hover,
.slider-nav:focus-visible {
  opacity: 1;
  outline: none;
}
.slider-prev {
  left: 8px;
}
.slider-next {
  right: 8px;
}

section.sambutan {
      max-width: 1200px;
      margin: 0 auto 64px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }
  .sambutan-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  .sambutan-img {
  width: 320px;
  height: 320px;
  position: relative;
}

.sambutan-img-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0.5;
  z-index: 1;
}

.sambutan-img-circle svg {
  width: 100%;
  height: 100%;
}

.sambutan-img-profile {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sambutan-img-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sambutan-content {
  width: 50%;
}

section.personil {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  
}

.personil-container {
  border: 0 solid #c3a275;
  border-top-width: 1px;
  padding: 50px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

/* Video Grid Slider */
.video-slider-wrapper {
  position: relative;
  overflow: hidden;
  /* margin: 0 50px; Space for navigation buttons */
}

.video-slider {
  overflow: hidden;
  position: relative;
}

.video-track {
  display: flex;
  transition: transform 0.2s ease;
  will-change: transform;
}

.personil-card {
  flex: none;
  width: 280px;
  min-width: 280px;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.personil-card:hover {
  transform: translateY(-5px);
}

.personil-img {
  width: 150px;
  height: 150px;
  background: #f0f0f0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  position: relative;
}

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

.video-overlay {
  display: none;
}

.video-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.video-description {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.card-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.card-actions button {
  padding: 6px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.edit-btn {
  background: #007bff;
  color: white;
}

.edit-btn:hover {
  background: #0056b3;
}

.delete-btn {
  background: #dc3545;
  color: white;
}

.delete-btn:hover {
  background: #c82333;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 15px;
  z-index: 88;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #c3a275;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #22724b;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-btn.prev {
  left: 4px;
}

.slider-btn.next {
  right: 4px;
}
      
/* VISI & MISI SECTION */
section.visi-misi {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 20px;
}
.visi-misi-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.visi-text {
  flex: 1 1 320px;
  max-width: 480px;
  color: #1a202c;
}
.visi-text h2 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.visi-text p {
  font-weight: 400;
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
section.info-terkini {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
  align-items: flex-start;
}

.info-terkini-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.info-terkini-header h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lihat-semua {
  font-size: 0.875rem;
  color: #2d3748;
  border: 1px solid #2d3748;
  padding: 6px 12px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.3s;
}
.lihat-semua:hover {
  background-color: #2d3748;
  color: #fff;
}

.info-terkini-main {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.info-terkini-content {
  flex: 1;
  max-width: 600px;
}

.info-terkini-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-date {
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 12px;
  display: block;
}

.info-description {
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-selengkapnya {
  background-color: #2f855a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}
.btn-selengkapnya:hover {
  background-color: #276749;
}

.info-terkini-image {
  width: 500px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.info-terkini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-terkini-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.info-terkini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-terkini-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.info-terkini-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
}

.info-terkini-item p {
  font-size: 0.875rem;
  margin: 0 0 4px;
  color: #4a5568;
}

.info-terkini-item .info-date {
  font-size: 0.75rem;
}

section.pengumuman {
      max-width: 1200px;
      margin: 0 auto 64px;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .pengumuman-header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 16px;
  }

  .pengumuman-header h2 {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #1a1a1a;
  }

  .lihat-semua {
      font-size: 0.875rem;
      color: #2d3748;
      border: 1px solid #2d3748;
      padding: 8px 16px;
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .lihat-semua:hover {
      background-color: #2d3748;
      color: white;
  }

  .pengumuman-wrapper {
      display: flex;
      gap: 48px;
      width: 100%;
  }

  .main-content {
      flex: 1;
  }

  /* Section Titles */
  .section-title {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 16px;
      color: #1a1a1a;
  }

  /* Pengumuman List */
  .pengumuman-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 48px;
  }

  .pengumuman-item {
      display: flex;
      gap: 12px;
      padding: 16px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
  }

  .pengumuman-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .pengumuman-item img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
  }

  .pengumuman-item-info {
      display: flex;
      flex-direction: column;
      flex: 1;
  }

  .pengumuman-item-info h4 {
      font-size: 0.9rem;
      font-weight: 600;
      margin: 0 0 8px;
      line-height: 1.4;
      color: #1a1a1a;
  }

  .pengumuman-item-info .info-date {
      font-size: 0.75rem;
      color: #718096;
      margin-bottom: 4px;
  }

  /* IKPD Terbaru */
  .ikpd-terbaru {
      margin-top: 48px;
  }

  .ikpd-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 16px;
  }

  .ikpd-header h2 {
      font-size: 1rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0;
  }

  .ikpd-highlight {
      display: flex;
      gap: 24px;
      margin-bottom: 24px;
  }

  .ikpd-highlight-image {
      flex: 2;
      position: relative;
      height: 300px;
      border-radius: 12px;
      overflow: hidden;
  }

  .ikpd-highlight-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .ikpd-highlight-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      color: #fff;
  }

  .ikpd-highlight-overlay .info-date {
      font-size: 0.875rem;
      opacity: 0.9;
      margin-bottom: 8px;
      display: block;
  }

  .ikpd-highlight-overlay h4 {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      line-height: 1.3;
  }

  .ikpd-highlight-overlay p {
      font-size: 0.875rem;
      margin: 0;
      opacity: 0.9;
      line-height: 1.4;
  }

  .ikpd-highlight .pengumuman-list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
      grid-template-columns: 1fr;
      margin-bottom: 0;
  }

  .ikpd-highlight .pengumuman-item {
      padding: 12px;
      background: #f8f9fa;
  }

  .ikpd-highlight .pengumuman-item:hover {
      background: #e9ecef;
  }

  .ikpd-highlight .pengumuman-item img {
      width: 60px;
      height: 60px;
  }

  /* Sidebar - STICKY POSITIONING */
  .sidebar-pengumuman {
      position: sticky;
      top: 20px; /* Jarak dari atas saat sticky */
      height: fit-content; /* Penting untuk sticky */
      display: flex;
      flex-direction: column;
      gap: 48px;
      width: 300px;
      flex-shrink: 0;
  }

  /* YouTube Embed */
  .youtube-box {
      position: relative;
      width: 100%;
  }

  .youtube-box img {
      width: 100%;
      height: 200px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  /* Event Gallery */
  .gallery-box {
      position: relative;
      width: 100%;
  }

  .gallery-box img {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .gallery-navigation {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      gap: 8px;
  }

  .gallery-navigation button {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid #cbd5e0;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .gallery-navigation button:hover {
      background: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  section.contact {
      max-width: 1200px;
      margin: 0 auto 64px;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .contact-wrapper {
    width: 100%;
    display: flex;
  }

  .map {
    width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
  width: 100%;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  margin-top: 15px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #aeaeae;
  color: #ffffff;
}

/* FOOTER */
footer.site-footer {
  background-color: rgba(0,0,0,0.85);
  color: #ffffff;
  padding: 48px 20px 24px;
  font-size: 0.875rem;
  line-height: 1.4;
}
footer.site-footer a {
  color: #a0aec0;
  text-decoration: none;
}
footer.site-footer a:hover,
footer.site-footer a:focus-visible {
  text-decoration: underline;
  outline: none;
  color: #e2e8f0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner-content {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.footer-logo {
  display: flex;
  font-weight: 600;
  align-items: center;
}
.footer-logo-img {
  width: 90px;
  height: 90px;
}
.footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-logo p {
  font-weight: 800;
  font-size: 18px;
  color: #FBF8F3;
  margin: 0;
}
.nav-social-media-footer {
  display: flex;
  gap: 12px;
}
.nav-social-media-footer li {
  list-style: none;
  cursor: pointer;
  font-size: 24px;
  color: #e2e8f0;
}
.nav-social-media-footer li:hover {
  color: #FBF8F3;
}
.nav-social-media-footer li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-social-media-footer li a span {
  font-size: 12px;
}
.footer-column h4 {
  margin-bottom: 12px;
  font-weight: 700;
  color: #e2e8f0;
  font-size: 1.05rem;
}
.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.875rem;
}
.footer-column li {
  margin-bottom: 10px;
}
/* Footer bottom text */
.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid #4a5568;
  padding-top: 16px;
  font-size: 0.75rem;
  text-align: center;
  color: #a0aec0;
}

/* Responsive layout */
@media (max-width: 767px) {
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    border-top: 1px solid #cbd5e0;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    padding: 8px 12px;
    z-index: 1100;
  }
  nav.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-social-media {
    display: none;
  }
  .hero-container {
    flex-direction: column;
    padding: 0 12px;
  }
  .hero-image {
    max-width: 100%;
    min-width: auto;
    margin-top: 24px;
  }
  .info-boxes {
    flex-direction: column;
    margin: 0 auto 48px;
  }
  section.visi-misi {
    flex-direction: column;
    gap: 32px;
  }
  .sambutan-container {
    flex-direction: column;
  }
  .sambutan-img-circle {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .sambutan-img-profile {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .sambutan-content {
    width: 100%;
  }
  .visi-text {
      flex: 1 1 200px;
  }
  .video-slider-wrapper {
    margin: 0 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    padding: 10px;
    font-size: 14px;
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

.personil-card {
    min-width: 250px;
}

.section-title {
    font-size: 1.5rem;
}
  .info-terkini-main {
    flex-direction: column-reverse;
  }
  .info-terkini-image {
    width: 100%;
  }
  .pengumuman-wrapper {
    flex-direction: column;
  }
  .pengumuman-wrapper {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .pengumuman-list {
    grid-template-columns: 1fr;
  }

  .ikpd-highlight {
    flex-direction: column;
  }

  .ikpd-highlight-overlay {
      position: inherit;
  }

  .ikpd-highlight-overlay h4 {
    font-size: 0.95rem;
  }

  .ikpd-highlight-overlay p {
    font-size: 0.8rem;
  }

  .lihat-semua-btn {
    float: none;
  }
  .youtube-box {
    width: 100%;
  }
  .youtube-box iframe {
    width: 100%;
  }
  .contact-wrapper {
    width: 100%;
    flex-direction: column;
  }
   .map,
  .contact-form {
    flex: 1 1 48%;
  }

  .sidebar-pengumuman {
      position: static;
      width: 100%;
  }
  .footer-brand {
    align-items: start;
    flex-direction: column;
  }
  .footer-logo-img {
    width: 60px;
    height: 60px;
  }
  .footer-logo p {
    font-size: 12px;
  }
  .nav-social-media-footer {
    flex-direction: column;
    padding: 0;
  }
  .nav-social-media-footer li {
    font-size: 16px;
  }
  .nav-social-media-footer li a {
  align-items: start;
  flex-direction: row;
  gap: 12px;
}
  .footer-inner-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 8px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
}

.form-group .description-hero {
  height: 100px; 
}

.sambutan-value {
  height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
}

.form-group input[type="file"] {
  padding: 8px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
}

.form-group input[type="file"]::file-selector-button {
  background-color: #22724b;
  color: white;
  border-radius: 6px;
  padding: 8px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    border-top: 1px solid #cbd5e0;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    padding: 8px 12px;
    z-index: 1100;
  }
  nav.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-social-media {
    display: none;
  }
  .search-icon {
    float: right;
  }
  .hero-container {
    padding: 0 20px;
  }
  .info-boxes {
    justify-content: center;
  }
  .sambutan-container {
    flex-direction: column;
  }
  .sambutan-content {
    width: 100%;
  }
  .sambutan-img-circle {
    top: 60%;
  }
  section.visi-misi {
    flex-direction: column;
  }
  .visi-text {
    flex: 1 1 100px;
    max-width: none;
  }

  .info-terkini-main {
    flex-direction: column-reverse;
  }
  .info-terkini-content {
    max-width: 100%;
  }

  .info-terkini-image {
    width: 100%;
  }

  .info-terkini-image img {
    width: 100%;
  }
  .pengumuman-wrapper {
    flex-direction: column;
  }

  .pengumuman-list {
    grid-template-columns: 1fr 1fr;
  }

  .ikpd-highlight {
          flex-direction: column;
          gap: 16px;
      }

      .ikpd-highlight-image {
          height: 200px;
      }

      .ikpd-header {
          flex-direction: column;
          gap: 16px;
          align-items: flex-start;
      }

      .ikpd-header h2 {
          font-size: 1.5rem;
      }

      .pengumuman-item {
          padding: 8px;
      }

      .pengumuman-item img {
          width: 60px;
          height: 45px;
      }

      .pengumuman-item-info h4 {
          font-size: 0.8rem;
      }
      .contact-wrapper {
    width: 100%;
    flex-direction: column;
  }

}
@media (min-width: 1024px) {
  .header-inner {
    max-width: 1300px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 0;
  }
  .hero-signatures {
    flex-direction: row;
  }
  nav {
    padding: 6px 10px;
    display: flex !important;
  }

  .hero-image img {
    max-height: 320px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .dropdown a {
    display: flex;
    align-items: center;
  }

  .info-terkini-header {
    align-items: flex-start;
    gap: 8px;
  }

  .info-terkini-content h3 {
    font-size: 1.25rem;
  }

  .info-description {
    font-size: 0.95rem;
  }

  .info-terkini-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-terkini-item {
    flex-direction: row;
  }

  .btn-selengkapnya {
    font-size: 0.875rem;
    padding: 8px 20px;
  }
  
}
.splide__slide {
        display: flex;
        align-items: center;
        flex: 0 0 calc((100% - 60px) / 3);
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e8e8e8;
    }

    /* Mobile Responsive - Tetap 3 item per slide */
    @media (max-width: 767px) {
        .splide__list {
            gap: 10px;
            padding: 0 8px;
        }

        .splide__slide {
            flex: 0 0 calc((100% - 20px) / 3);
        }

        .slide-link {
            flex-direction: column;
            gap: 8px;
            padding: 12px 8px;
            text-align: center;
        }

        .slide-icon {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }

        .slide-icon img {
            width: 30px !important;
            height: 30px !important;
        }

        .slide-content h2 {
            font-size: 10px;
            margin-bottom: 4px;
        }

        .slide-content p {
            font-size: 8px;
            line-height: 1.2;
        }

        .slider-container {
            padding: 20px 0;
        }
    }

    /* Tablet Responsive */
    @media (min-width: 768px) and (max-width: 1023px) {
        .splide__list {
            gap: 20px;
            padding: 0 12px;
        }

        .slide-link {
            gap: 15px;
            padding: 16px;
        }

        .slide-icon {
            width: 35px;
            height: 35px;
            font-size: 20px;
        }

        .slide-icon img {
            width: 35px !important;
            height: 35px !important;
        }

        .slide-content h2 {
            font-size: 12px;
        }

        .slide-content p {
            font-size: 10px;
        }
    }