* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  position: relative;
}

:root {
  --blue: #387596;
  --dark-blue: #23485d;
  --yellow: #f5c400;
  --white: #ffffff;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 380px; 
  font-size: 14px;
}

.topbar-left {
  display: flex;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.topbar a:hover,
.topbar span:hover,
.topbar i:hover {
  color: var(--yellow);
}

.topbar-right {
  display: flex;
  gap: 14px;
}

.topbar-right a {
  font-size: 14px;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
    text-align: center;
  }

  /* email & telp SEJAJAR */
  .topbar-left {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* icon sosial DI BAWAH */
  .topbar-right {
    justify-content: center;
    gap: 18px;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.nav-menu a i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform .3s;
}

.dropdown:hover a i {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

/* dropdown menu */
.dropdown ul {
  position: absolute;
  top: 100%;    
  left: 0;
  background: #fff;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  margin-top: 1px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transition: all 0.25s ease;
}

.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


.dropdown:hover ul {
  display: block;
}

.dropdown ul li a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
}

/* Update warna dasar & transisi */
.nav-menu a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  position: relative; /* Penting untuk posisi garis hover */
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Garis hover emas di bawah teks */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Mulai dari lebar 0 */
  height: 2px;
  background: linear-gradient(90deg, #f6e27a, #e3b341, #f6e27a);
  transition: width 0.3s ease;
}

/* Efek saat di-hover */
.nav-menu a:hover {
  color: #e3b341; /* Teks berubah jadi kecokelatan emas */
}

.nav-menu a:hover::after {
  width: 100%; /* Garis memanjang penuh */
}

/* Pastikan dropdown tetap punya warna emas saat menu utama di-hover */
.dropdown:hover > a {
  color: #e3b341;
}

.btn-daftar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;

  /* GOLD GRADIENT */
  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #f6e27a
  );
  background-size: 200% 200%;

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.6s ease;
}

.btn-daftar i {
  font-size: 15px;
}

/* ===== HOVER EFFECT ===== */
.btn-daftar:hover {
  transform: translateY(-4px);
  background-position: 100% 50%;

  box-shadow:
    0 1px 30px rgba(227, 179, 65, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  z-index: 2500;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;          
  max-width: 360px;    
  height: 100vh;
  background: linear-gradient(180deg, #2f6f8f, #255d78);
  color: #fff;
  padding: 40px 25px;
  transition: .35s ease;
  z-index: 3000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-overlay.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu > ul > li {
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 6px 0;
}

.mobile-menu a,
.mobile-menu span {
  position: relative;
  display: block;
  padding: 14px 12px 14px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* garis active */
.mobile-menu .active > a,
.mobile-menu .active > span {
  background: rgba(255,255,255,.08);
}

.mobile-menu .active > a::before,
.mobile-menu .active > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.mobile-menu ul ul {
  padding-left: 20px;
  margin-top: 5px;
}

/* submenu default tertutup */
.mobile-menu ul ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

/* submenu terbuka */
.mobile-menu li.active > ul {
  max-height: 500px; /* cukup gede buat isi */
}

.mobile-menu ul ul li a {
  font-size: 14px;
  opacity: .9;
  padding: 10px 0 10px 10px;
}

.mobile-menu li > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu li > span::after {
  content: "▾";
  font-size: 14px;
  transition: transform .3s;
}

/* kalau aktif */
.mobile-menu li.active > span::after {
  transform: rotate(180deg);
}

.mobile-btn {
  background: var(--yellow);
  color: #000 !important;
  text-align: center;
  border-radius: 25px;
  margin-top: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.judul-hero {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;

  /* GOLD GRADIENT */
  background: linear-gradient(
    120deg,
    #e4cd59,
    #e3b341,
    #f1d859
  );
  background-size: 200% 200%;

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.6s ease;
}

/* ===== HOVER EFFECT ===== */
.btn-hero:hover {
  transform: translateY(-4px);
  background-position: 100% 50%;

  box-shadow:
    0 1px 3px rgba(227, 179, 65, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-menu,
  .btn-daftar {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .judul-hero{
    font-size: 28px;
  }

}

/* ===== SECTION BERITA ===== */
.berita-section {
  padding: 80px 20px;
  background: url("img/bgberita.jpg") center/cover no-repeat;
}

.berita-container {
  max-width: 1200px;
  margin: auto;
}

.berita-header {
  text-align: center;
  margin-bottom: 50px;
}

.berita-header h2 {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 10px;
}

.berita-header p {
  color: #555;
  font-size: 16px;
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.berita-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.berita-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.berita-card:hover img {
  transform: scale(1.05);
}

.berita-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #777;
  padding: 15px 20px 0;
}

.berita-card h3 {
  font-size: 18px;
  padding: 10px 20px;
  color: #222;
}

.berita-card p {
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.berita-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 15px 20px 20px;
  font-weight: 600;
  text-decoration: none;

  /* GOLD TEXT */
  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #f6e27a
  );
  background-size: 200% 200%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition:
    transform 0.3s ease,
    background-position 0.6s ease;
}

/* ===== HOVER EFFECT ===== */
.berita-link:hover {
  transform: translateX(6px);
  background-position: 100% 50%;
  text-decoration: none;
}

/* ===== FOOTER ===== */
.berita-footer {
  text-align: center;
  margin-top: 50px;
}

.btn-lihat-berita {
  display: inline-flex; 
  align-items: center;
  background-color: #387596;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;

  transition:
    transform 0.3s ease;
}

.btn-lihat-berita:hover {
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .berita-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .berita-grid {
    grid-template-columns: 1fr;
  }

  .berita-card img {
    height: 280px;
  }
}

.berita-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-lihat-semua {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background-color:#387596;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-lihat-semua:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* ===== AGENDA SECTION ===== */
.agenda-section {
  padding: 80px 20px;
  background: linear-gradient(#f8f9fa, #f1f5f8);
}

.agenda-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.agenda-container h2 {
  font-size: 32px;
  color: #2f5f7f;
}

.agenda-subtitle {
  margin-top: 8px;
  color: #555;
}

.agenda-card {
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #f2c94c; /* outline emas */
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  text-align: left;
}

.agenda-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.agenda-date {
  font-weight: 600;
  color: #333;
}

.agenda-status {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

.agenda-status.ongoing {
  background: #fff4cc;
  color: #c99a00;
}

.agenda-status.finished {
  background: #eaeaea;
  color: #666;
}

.agenda-card h3 {
  margin: 20px 0 10px;
}

.agenda-remaining {
  color: #d9534f;
  font-size: 14px;
}

.agenda-progress {
  margin-top: 15px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.agenda-progress div {
  height: 100%;
  width: 0%;

  /* GOLD GRADIENT */
  background: linear-gradient(
    90deg,
    #f6e27a,
    #e3b341,
    #c89a2b,
    #f6e27a
  );
  background-size: 200% 100%;

  transition: width 0.6s ease;
}

.agenda-progress div {
  animation: goldMove 2.5s linear infinite;
}

@keyframes goldMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .agenda-top {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.counter-section {
  padding: 80px 20px;
  background: #fff;
}

.counter-container {
  max-width: 1100px;
  margin: auto;
  display: flex; 
  justify-content: center; 
  gap: 30px;
  flex-wrap: wrap; 
}

.counter-card {
  flex: 1;
  max-width: 350px; 
  min-width: 250px;
  text-align: center;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ===== ICON GOLD DEFAULT ===== */
.counter-card i {
  font-size: 40px;

  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #c89a2b
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: background-position 0.6s ease;
  background-size: 200% 200%;
}

/* ===== HOVER CARD ===== */
.counter-card:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 45px rgba(227,179,65,.25);
}

/* ===== HOVER ICON (GOLD MOVE) ===== */
.counter-card:hover i {
  background-position: 100% 50%;
}

.counter-card h3 {
  font-size: 36px;
  margin: 10px 0;
}

/* responsive */
@media (max-width: 700px) {
  .counter-container {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.faq-badge {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;

  /* GOLD STYLE */
  color: #ffffff;
  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #c89a2b
  );

  box-shadow:
    0 6px 16px rgba(227,179,65,.35),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.faq-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #555;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.faq-item span {
    text-align: left;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-left-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-icon {
  width: 12px;
  transition: transform 0.3s;
}

.faq-arrow {
  transition: transform 0.3s;
  font-size: 14px;
  color: #555;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 16px 0 20px;
  color: #444;
  font-size: 14px;
}

/* ACTIVE STATE */
.faq-item.active {
  background: #ffffff;
  color: #fff;
}

.faq-item.active .faq-question {
  background: #fbfbfc;
  color: #fff;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #fff;
}

.faq-item.active .faq-answer p {
  color: #51374f;
}

.faq-item.active .faq-question span {
  color: #387596;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* IMAGE */
.faq-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-right {
    order: 2;
  }

  .faq-left {
    order: 1;
  }
}

/* ===== CLOSING SECTION ===== */
.closing-section {
  background: linear-gradient(#f8f9fa, #f1f5f8);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.closing-container {
  max-width: 900px;
  margin: auto;
}

.closing-container h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #387596;
}

.closing-container p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
  color: #555;
}

.closing-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* ===== BASE BUTTON ===== */
.btn-closing {
  padding: 15px 36px;
  border-radius: 999px; /* super smooth pill */
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.6s ease,
    color 0.3s ease;
}

/* ===== PRIMARY GOLD ===== */
.btn-closing.primary {
  color: #3b2f00;

  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #c89a2b
  );
  background-size: 200% 200%;

}

.btn-closing.primary:hover {
  transform: translateY(-4px);
  background-position: 100% 50%;
}

.btn-closing.outline {
  color: #387596;
  background: transparent;
  border: 2px solid #387596;
}

.btn-closing.outline:hover {
  background: rgba(56, 117, 150, 0.08);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .closing-container h2 {
    font-size: 28px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #356f8f;
  color: #e5e7eb;
  padding-top: 70px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  margin-bottom: 16px;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  text-decoration: none;
}

.footer ul li {
  margin-bottom: 10px;
  text-decoration: none;
}

.footer ul li a {
  color: #e5e7eb;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

/* HOVER GESER KANAN (DESKTOP) */
.footer ul li a:hover {
  transform: translateX(6px);
  color: #facc15;
}

/* SOCIAL */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #facc15;
  color: #1f2937;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
  background: #274f65;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;          /* jarak icon & teks */
  margin: 6px 0;      /* jarak antar baris */
  font-size: 14px;
}

.contact-info i {
  width: 18px;        /* biar icon sejajar lurus */
  text-align: center;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    margin-left: 10px;
  }

  .footer-social {
    justify-content: left;
  }

  .footer ul li a:hover {
    transform: none;
  }
  .footer-bottom {
    text-align: center;
    font-size: 11px;
  }
}

/*HTML BEDA INI VISI MISI*/
/* ===== VISI MISI AYY ===== */
.ayy-visimisi {
  font-family: inherit;
}

/* HERO */
.ayy-visimisi-hero {
  background-color: #1f4f69;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.ayy-visimisi-hero a {
  color: #ffd600;
  text-decoration: none;
}

.sub-judul-ayy{
    color: #387596;
    font-size: 30px;
}

/* BADGE */
.ayy-badge {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;

  /* GOLD STYLE */
  color: #ffffff;
  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #c89a2b
  );

  box-shadow:
    0 6px 16px rgba(227,179,65,.35),
    inset 0 1px 0 rgba(255,255,255,.45);
}

/* VISI & TUJUAN (IMAGE BG) */
.ayy-visi,
.ayy-tujuan {
  background: url("img/bgberita.jpg") center/cover;
  text-align: center;
  padding: 80px 20px;
}

/* CARD */
.ayy-card {
  position: relative;
  background: #fff;
  max-width: 800px;
  margin: 25px auto 0;
  padding: 30px 30px 30px 36px; 
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* GOLD LINE LEFT */
.ayy-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 6px;
  border-radius: 6px;

  background: linear-gradient(
    180deg,
    #f6e27a,
    #e3b341,
    #c89a2b
  );
}

.ayy-card p {
  color: #444;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
}

/* MISI */
.ayy-misi {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.ayy-misi-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 25px;
  margin-top: 40px;
  justify-content: center; 
}

.ayy-misi-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  max-width: 320px;     
  margin: 0 auto;
  transition: transform .3s ease, box-shadow .3s ease;        
}

.ayy-misi-item:hover {
  transform: translateY(-8px); /* naik dikit */
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.ayy-misi-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  border-radius: 50%;
  font-weight: bold;
  color: #ffffff;
  /* GOLD BACKGROUND */
  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #c89a2b
  );

  box-shadow:
    0 4px 12px rgba(227,179,65,.35),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.ayy-misi-item p {
    color: #444;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
}

/* I CARE */
.ayy-icare {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  height: auto;
}

.ayy-icare-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.ayy-icare-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  margin-bottom: 20px;
  text-align: left;
}

.ayy-icare-item img {
  width: 15px;
  height: auto;
  object-fit: contain;
}

.ayy-subtitle{
    font-weight: 600;
    color: #444;
}

.list-i-care-subjudul{
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.list-i-care-isi{
    color: #444;
    font-size: 14px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .ayy-misi-grid {
    grid-template-columns: 1fr;
  }

  .ayy-icare-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}


/* ===== SEARCH BERITA ===== */
.berita-search {
  padding: 40px 20px;
  background: #fff;
}

.search-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 15px;
  align-items: center;

  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* INPUT SEARCH */
.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.search-box i {
  color: #999;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}

/* DROPDOWN */
.search-container select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  cursor: pointer;
}

/* BUTTON */
.btn-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* GOLD GRADIENT */
  background: linear-gradient(
    120deg,
    #f6e27a,
    #e3b341,
    #f6e27a
  );
  background-size: 200% 200%;

  color: #3b2f00;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;

  box-shadow:
    0 1px 2px rgba(227, 179, 65, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.6s ease;
}

.btn-search:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;

  box-shadow:
    0 2px 2px rgba(227, 179, 65, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .search-container {
    flex-wrap: wrap;
  }

  .search-box {
    flex: 100%;
  }

  .search-container select,
  .btn-search {
    flex: 1;
  }
}

@media (max-width: 500px) {
  .search-container {
    gap: 10px;
  }

  .btn-search {
    justify-content: center;
  }
}

/* ===== PROMO LIGHTBOX ===== */
.promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Jeda supaya tidak nempel pinggir layar di HP */
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* Sedikit lebih gelap agar fokus */
  backdrop-filter: blur(4px); /* Efek blur estetik pada background */
}

.promo-content {
  position: relative;
  width: 100%;
  max-width: 500px; /* Ukuran ideal untuk banner promo vertikal */
  max-height: 90vh; /* Agar tidak terpotong layar atas/bawah */
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  
  /* Animasi muncul */
  animation: zoomIn 0.3s ease-out;
}

.promo-link {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-link img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain; /* Menjaga gambar tetap utuh tanpa terpotong */
  display: block;
}

/* CLOSE BUTTON */
.promo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.promo-close:hover {
  background: #ff4747;
  transform: scale(1.1);
  border-color: transparent;
}

/* Animasi sederhana */
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.wa-floating {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  z-index: 9999;
  text-decoration: none;

  transition: transform .3s ease, box-shadow .3s ease;
}

.wa-floating:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

@media (max-width: 600px) {
  .wa-floating {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 18px;
    bottom: 18px;
  }
}

.wa-footer {
  color: #fff;
  text-decoration: none;
  transition: color .3s ease;
}

.wa-footer:hover {
  color: var(--yellow);
}

.contact-info p:hover i.fa-whatsapp {
  color: var(--yellow);
  transition: color .3s ease;
}


.artikel-search {
  display: flex;
  max-width: 500px;
  margin: 30px auto 40px;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.artikel-search input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
}

.artikel-search button {
  border: none;
  padding: 0 20px;
  background: #1f4f69;
  color: white;
  cursor: pointer;
}

.pagination-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* css strukutr organisasi */
/* ===== STRUKTUR ORGANISASI ===== */
.ayy-struktur {
  padding: 80px 20px;
  background: #f9f9f9; /* Warna beda dikit biar ada pemisah section */
  text-align: center;
}

.ayy-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ayy-img-wrapper {
  position: relative;
  margin-top: 40px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #fff;
  padding: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.ayy-img-wrapper:hover {
  transform: scale(1.02);
}

.ayy-img-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Overlay saat hover gambar */
.img-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(31, 79, 105, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ayy-img-wrapper:hover .img-overlay {
  opacity: 1;
}

.img-overlay i { font-size: 30px; margin-bottom: 10px; }

/* ===== MODAL STYLE ===== */
.ayy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1100px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {transform: scale(0.7)} 
  to {transform: scale(1)}
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 20px 0;
}

/* Responsif Mobile */
@media (max-width: 768px) {
  .sub-judul-ayy { font-size: 22px; }
  .modal-content { width: 95%; margin-top: 100px; }
}