/* =========================
   GLOBAL RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f9fbfd;
    color: #000;
    line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.sticky-active {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 75px;
}

.logo-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.menu a:hover {
    color: #007bff;
}

.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #0a3d62;
}

.dropdown-content a:hover {
    background: #f1f5f9;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.btn-pmb {
    background: #ffc107;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
}

.btn-pmb:hover {
    background: #ffb300;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('/images/hero.jpeg') no-repeat center/cover;
    color: #fff;
    padding: 100px 30px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-secondary,
.btn-secondary-1 {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: #ffc107;
    color: #000;
}

.btn-secondary:hover {
    background: #ffb300;
}

.btn-secondary-1 {
    background: #25d366;
    color: #fff;
}

.btn-secondary-1:hover {
    background: #1ebf5a;
}

/* =========================
   QUICK INFO
========================= */
.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 50px 30px;
    background: #f1f5f9;
}

/* ❌ Glass dihilangkan — solid card */
.news-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.news-card h3 {
    margin-bottom: 10px;
    color: #0a3d62;
}

.news-card a {
    text-decoration: none;
    font-weight: 600;
    color: #007bff;
}

.news-card a:hover {
    text-decoration: underline;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
    padding: 60px 30px;
    background: #fff;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 15px;
    color: #0a3d62;
}

.about-text p {
    text-align: justify;
    margin-bottom: 20px;
}

.tentang-btn {
    padding: 10px 20px;
    background: #ffc107;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.tentang-btn:hover {
    background: #ffb300;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* =========================
   GALLERY
========================= */
.gallery {
    padding: 60px 30px;
    background: #f1f5f9;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 30px;
    color: #0a3d62;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}

/* =========================
   PARTNERS
========================= */
.partners {
    padding: 60px 30px;
    background: #fff;
    text-align: center;
}

.partners h2 {
    margin-bottom: 30px;
    color: #0a3d62;
}

.logo-slider {
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scrollLogo 20s linear infinite;
}

.logo-track img {
    height: 60px;
}

@keyframes scrollLogo {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================
   NEWS SECTION
========================= */
.news {
    padding: 60px 30px;
    background: #f1f5f9;
}

.news h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a3d62;
}

.news-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card h4 {
    margin-bottom: 10px;
    color: #0a3d62;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0a3d62;
    color: #fff;
    padding: 50px 30px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #e6eef5;
    font-size: 14px;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #cfd8e3;
}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.whatsapp-icon {
    width: 30px;
}

.whatsapp-tooltip {
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-container {
        flex-direction: column;
    }
}

/* =========================
   FOOTER MODERN
========================= */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0a3d62, #04335a);
    color: #fff;
    padding: 80px 30px 30px;
    overflow: hidden;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    width: 85px;
    margin-bottom: 10px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #dce7f2;
}

/* Footer Menu */
.footer-menu h4,
.footer-social h4,
.kontak-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffd56b;
}

.footer-menu ul,
.jam-list {
    list-style: none;
    padding: 0;
}

.footer-menu ul li,
.jam-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-menu ul li a {
    color: #e6eef5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #ffd56b;
}

/* Jam Operasional */
.jam-operasional {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.jam-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.jam-list li strong {
    color: #ffd56b;
}

.jam-list .tutup strong {
    color: #ff6b6b;
}

.jam-note {
    margin-top: 12px;
    font-size: 13px;
    color: #cfd8e3;
}

.jam-note i {
    margin-right: 6px;
}

/* Social Icons */
.footer-social .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    background: #ffd56b;
    color: #000;
    transform: translateY(-3px);
}

/* Compass Emoji */
.footer-compass {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    opacity: 0.15;
    z-index: 1;
}

/* Waves */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
    background-repeat: repeat-x;
    background-size: contain;
    opacity: 0.25;
}

.wave1 {
    background-image: url('/images/wave1.png');
    animation: waveMove 18s linear infinite;
}

.wave2 {
    background-image: url('/images/wave2.png');
    bottom: 10px;
    animation: waveMoveReverse 25s linear infinite;
}

@keyframes waveMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes waveMoveReverse {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #cfd8e3;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-modern {
        padding: 60px 20px 20px;
    }

    .footer-compass {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }

    .jam-list li {
        flex-direction: column;
        align-items: flex-start;
    }
}

.navbar {
    background: linear-gradient(180deg, #0a3d62, #04335a);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.menu a {
    color: #00060a; /* ✅ typo fixed */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu a:hover {
    color: #f59e0b;
}

/* =========================
   MOBILE HEADER FIX
========================= */
@media (max-width: 768px) {

  /* HEADER */
  .navbar {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  /* LOGO */
  .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-title {
    font-size: 14px;
    line-height: 1.2;
  }

  /* HAMBURGER */
  .hamburger {
    display: block;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }

  /* MENU MOBILE */
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #061c2e;
    margin-top: 12px;
  }

  .menu.active {
    display: flex;
  }

  .menu a,
  .menu .dropbtn {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  /* DROPDOWN MOBILE */
  .dropdown-content {
    position: static;
    background: #0b3556;
    box-shadow: none;
  }

  /* HEADER RIGHT (JAM + TOMBOL) */
  .header-right {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .btn-pmb {
    padding: 8px 12px;
    font-size: 13px;
  }

}

.program-hero {
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 20px 50px;
    position: relative;
}

.program-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.program-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.page-hero {
  background: linear-gradient(135deg, #0a2a43, #0d3b66);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.9;
}

.page-section {
  background: #f4f6f9;
  padding: 60px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.profile-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.profile-card h2 {
  color: #0d3b66;
  margin-bottom: 15px;
  border-left: 5px solid #f4a100;
  padding-left: 15px;
}

.profile-card p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

.logo-wrap {
  text-align: center;
  margin: 25px 0;
}

.logo-wrap img {
  width: 160px;
}

.logo-meaning {
  list-style: none;
  padding: 0;
}

.logo-meaning li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .profile-card {
    padding: 20px;
  }
}

/* ===============================
   TENTANG KAMI + VIDEO
================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-text p {
  line-height: 1.8;
}

/* GRID 2 KOLOM */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-top: 30px;
}

/* ITEM LOGO */
.logo-item {
  display: flex;
  gap: 15px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* IKON */
.logo-item i {
  font-size: 22px;
  color: #0a2a43;
  margin-top: 5px;
}

/* JUDUL */
.logo-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #0a2a43;
}

/* PARAGRAF */
.logo-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

/* KHUSUS TATA WARNA */
.color-box {
  background: linear-gradient(135deg, #e6f2ff, #fef6e6);
  border-left: 5px solid #0749ff;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
  .logo-box img {
    max-width: 130px;
  }
}

/* ANIMASI SCROLL */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.logo-box {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.logo-box img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.profile-card {
  overflow: hidden;
}

.logo-box img {
  animation: zoomIn .6s ease;
}

@keyframes zoomIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.profile-text {
  text-align: justify;
  line-height: 1.8;
  font-size: 16px;
}

.color-meaning {
  background: #f5f9ff;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #0b3c5d;
  margin-top: 30px;
}

.color-meaning h3 {
  margin-bottom: 20px;
  color: #0b3c5d;
}

.color-paragraph {
  position: relative;
  padding: 15px 18px 15px 45px;
  border-radius: 10px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 16px;
}

/* Titik warna */
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  left: 18px;
  top: 22px;
}

/* WARNA PER PARAGRAF */
.blue-dark {
  background: rgba(11, 60, 93, 0.08);
}
.blue-dark .color-dot {
  background: #0b3c5d;
}

.blue-light {
  background: rgba(52, 152, 219, 0.10);
}
.blue-light .color-dot {
  background: #3498db;
}

.red {
  background: rgba(192, 57, 43, 0.10);
}
.red .color-dot {
  background: #c0392b;
}

.white {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}
.white .color-dot {
  background: #bdc3c7;
}

.yellow {
  background: rgba(241, 196, 15, 0.15);
}
.yellow .color-dot {
  background: #f1c40f;
}

/* =========================
   VISI MISI
========================= */
.hero-visimisi {
  position: relative;
  height: 320px;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  text-align: left;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.9;
}

.profile-vm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vm-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Nilai */
.profile-values {
    text-align: center;
    margin-bottom: 60px;
}

.values-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.values-list span {
    background: #0d3b66;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}

/* Sejarah */
.profile-history {
    display: flex;
    gap: 40px;
    align-items: center;
}

.history-image img {
    width: 100%;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-about,
    .profile-history {
        flex-direction: column;
    }
}

.value-card {
    background: #0720fa;
    color: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


  .vm-card {
    padding: 22px;
  }
}

.text-justify {
  text-align: justify;
  line-height: 1.9;
  color: #333;
}

.sejarah-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-top: 20px;
  align-items: start;
}

.sejarah-video iframe {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.profile-card {
  background: #fff;
  padding: 30px 34px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  margin-bottom: 35px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 14px;
  border-left: 4px solid #f59e0b;
  padding-left: 12px;
}

@media (max-width: 768px) {
  .sejarah-grid {
    grid-template-columns: 1fr;
  }

  .sejarah-video iframe {
    height: 220px;
  }
}

.vm-list {
  list-style: none;
  padding: 0;
  counter-reset: vm;
}

.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}

.vm-list .num::before {
  counter-increment: vm;
  content: counter(vm);
}

.vm-list .num {
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0b3c5d, #1e88e5);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.vm-list i {
  color: #0b3c5d;
  font-size: 16px;
  margin-top: 4px;
}

.list-numbered {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.list-numbered li {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.list-numbered .num {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0b3c5d, #1e88e5);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.list-numbered p {
  margin: 0;
  text-align: justify;
  line-height: 1.8;
  color: #333;
}

.org-chart {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.org-level.center {
  justify-content: center;
}

.org-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  position: relative;
}

.org-card.small {
  width: 200px;
}

.org-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0b2c49;
  margin-bottom: 15px;
}

.org-card h3,
.org-card h4 {
  color: #0b2c49;
  margin-bottom: 5px;
}

.org-card p {
  font-size: 14px;
  color: #555;
}

/* garis bagan */
.org-level::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background: #0b2c49;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

/* animasi */
.animate {
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   PROFILE PAGE – MOBILE FIRST
=============================== */

/* HERO */
.program-hero {
    padding: 60px 20px;
    text-align: center;
}

.program-hero h1 {
    font-size: 28px;
}

.program-hero p {
    font-size: 14px;
    opacity: 0.9;
}

/* SECTION */
.page-section {
    padding: 40px 15px;
}

.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

/* TEXT */
.text-justify {
    font-size: 14px;
    line-height: 1.8;
}

/* ===============================
   SEJARAH
=============================== */
.sejarah-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sejarah-video iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* ===============================
   LOGO
=============================== */
.logo-box {
    text-align: center;
    margin-bottom: 20px;
}

.logo-box img {
    max-width: 180px;
    width: 100%;
}

/* LOGO GRID */
.logo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.logo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f7f9fc;
    padding: 15px;
    border-radius: 12px;
}

.logo-item i {
    font-size: 22px;
    color: #0a66c2;
}

/* WARNA LOGO */
.color-paragraph {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* WARNA */
.blue-dark .color-dot { background: #0a2a66; }
.blue-light .color-dot { background: #2196f3; }
.red .color-dot { background: #e53935; }
.white .color-dot { background: #eee; border: 1px solid #ccc; }
.yellow .color-dot { background: #fbc02d; }

/* ===============================
   ANIMASI
=============================== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   DESKTOP
=============================== */
@media (min-width: 768px) {

    .program-hero h1 {
        font-size: 38px;
    }

    .sejarah-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .sejarah-video iframe {
        height: 280px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-item.full {
        grid-column: span 2;
    }
}

/* ===============================
   TATA WARNA – PREMIUM VERSION
=============================== */

/* Grid tata warna */
.logo-item.full {
    width: 100%;
}

/* Wrapper khusus tata warna */
.logo-item.full .color-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

/* Item warna */
.color-paragraph {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}

/* Kotak warna */
.color-dot {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Highlight background lembut */
.blue-dark {
    background: rgba(10, 42, 102, 0.08);
}
.blue-light {
    background: rgba(33, 150, 243, 0.10);
}
.red {
    background: rgba(229, 57, 53, 0.10);
}
.white {
    background: rgba(245, 245, 245, 1);
}
.yellow {
    background: rgba(251, 192, 45, 0.18);
}

/* Warna kotak */
.blue-dark .color-dot { background: #0a2a66; }
.blue-light .color-dot { background: #2196f3; }
.red .color-dot { background: #e53935; }
.white .color-dot { background: #ffffff; border: 1px solid #ccc; }
.yellow .color-dot { background: #fbc02d; }

/* ===============================
   DESKTOP – GRID 2 KOLOM
=============================== */
@media (min-width: 768px) {

    .logo-item.full .color-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .color-paragraph {
        font-size: 15px;
    }
}

/* ===============================
   FIX TATA WARNA – TEKS AMAN
=============================== */

.color-paragraph {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    background: #f7f9fc; /* fallback aman */
}

/* Kotak warna (indikator saja) */
.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-top: 2px;
}

/* Teks selalu aman */
.color-paragraph strong,
.color-paragraph {
    color: #222;
}

/* ===============================
   HIGHLIGHT LEMBUT
=============================== */
.blue-dark { background: rgba(10, 42, 102, 0.06); }
.blue-light { background: rgba(33, 150, 243, 0.08); }
.red { background: rgba(229, 57, 53, 0.08); }
.white { background: rgba(240, 240, 240, 1); }
.yellow { background: rgba(251, 192, 45, 0.15); }

/* Warna kotak */
.blue-dark .color-dot { background: #0a2a66; }
.blue-light .color-dot { background: #2196f3; }
.red .color-dot { background: #e53935; }
.white .color-dot { background: #ffffff; border: 1px solid #ccc; }
.yellow .color-dot { background: #fbc02d; }

/* ===============================
   GRID DESKTOP 2 KOLOM
=============================== */
@media (min-width: 768px) {
    .logo-item.full .color-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===============================
   TATA WARNA – FIX STRUKTURAL
=============================== */

.color-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

/* Satu item warna */
.color-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f7f9fc;
    align-items: flex-start;
}

/* Kotak warna */
.color-box {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Teks aman */
.color-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.color-text p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* WARNA */
.color-box.blue-dark { background: #0a2a66; }
.color-box.blue-light { background: #2196f3; }
.color-box.red { background: #e53935; }
.color-box.white { background: #ffffff; border: 1px solid #ccc; }
.color-box.yellow { background: #fbc02d; }

/* ===============================
   DESKTOP – 2 KOLOM
=============================== */
@media (min-width: 768px) {
    .color-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===============================
   FIX BORDER BIRU DI KOTAK WARNA
=============================== */

.color-box {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-clip: padding-box;
}

/* Khusus warna putih tetap pakai border */
.color-box.white {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
}

/* =======================
   KETARUNAAN PAGE
======================= */

.program-hero {
    background: linear-gradient(rgba(10,61,98,0.75), rgba(10,61,98,0.75)),
                url('/images/hero.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 30px;
}

.program-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.program-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.program-list {
    background: #f7f9fc;
    padding: 60px 30px;
}

.program-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.program-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    margin-bottom: 10px;
    color: #0a3d62;
}

.program-content p {
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Badge */
.badge-wrapper {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.badge {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.badge-kategori {
    background-color: #0a3d62;
}

.badge-jadwal {
    background-color: #1e7f5c;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #555;
}

.empty-state h4 {
    color: #0a3d62;
    margin-bottom: 8px;
}

.gallery-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    background: #eee;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.program-image img {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999; /* 🔧 naikkan */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    margin-top: 5%;
    position: relative;  /* 🔧 tambahkan */
    z-index: 1;          /* 🔧 tambahkan */
}

.close {
    position: fixed;    /* 🔧 ganti dari absolute */
    top: 18px;
    right: 18px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 10000;     /* 🔧 tambahkan */
}

.contact-hero {
    background: linear-gradient(rgba(10,61,98,0.75), rgba(10,61,98,0.75)),
                url('/images/hero.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 30px;
}

.contact-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    background: #f7f9fc;
    padding: 60px 30px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
    color: #0a3d62;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-map {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.success-msg {
    margin-top: 15px;
    color: green;
    font-weight: 600;
}

.error-msg {
    margin-top: 15px;
    color: red;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

/* =========================
   WAVE FOOTER ANIMATION
========================= */

.wave-container {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #0b3c5d;
}

.wave-container svg {
    position: absolute;
    top: -20px;
    left: 0;
    width: 200%;
    height: 120px;
    animation: waveMove 8s linear infinite;
}

.wave-container path {
    fill: #ffffff;
    opacity: 0.15;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        z-index: 10001;
    }

    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0b2d4a;
        display: none;
        flex-direction: column;
        padding: 20px;
        z-index: 10000;
        overflow-y: auto;
    }

    .menu.active {
        display: flex;
    }

    .menu a,
    .dropbtn {
        color: #fff;
        padding: 15px 10px;
        font-size: 16px;
        display: block;
        cursor: pointer;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        display: none;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 10px 0;
        font-size: 14px;
        color: #ddd;
    }

@media (max-width: 768px) {
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #clock {
    font-size: 11px;
    color: #fff;
    white-space: nowrap;
  }

  .btn-pmb {
    display: none;
  }
}

.program-container {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 24px;
}

.program-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.program-image {
    position: relative;
    height: 200px;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
}

.badge.madatukar { background: #0d6efd; }
.badge.softskill { background: #198754; }
.badge.kedisiplinan { background: #dc3545; }

.program-content {
    padding: 18px;
}

.program-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.program-content small {
    color: #6c757d;
    font-size: 13px;
}

.program-content p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

/* === MOBILE RESPONSIVE FIX === */
@media (max-width: 768px) {

  .hero {
    min-height: 85vh;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }

  .quick-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text p {
    text-align: justify;
    font-size: 14px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    transform: scale(0.9);
  }

}

@media (max-width: 500px) {

  .hero {
    min-height: 90vh;
    padding: 70px 20px 40px;
    background-position: center;
  }


  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.35;
  }

  .hero-content p {
    font-size: 13.5px;
    margin-top: 8px;
  }

  .hero-buttons a {
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 15px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 14px;
  }

  .navbar-brand img {
    height: 38px;
  }

  .menu-toggle {
    font-size: 22px;
  }
}

/* ===== HEADER MOBILE FIX ===== */
@media (max-width: 768px) {

  .navbar {
    padding: 8px 12px;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo-img {
    height: 38px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-line-1 {
    font-size: 12px;
    font-weight: 500;
  }

  .logo-line-2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .hamburger {
    font-size: 22px;
  }

  .nav-right {
    display: none;
  }

}

/* ===== FORCE CLOCK SHOW ===== */
#clock {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .nav-right {
    display: flex !important;
  }

  #clock {
    display: inline-block !important;
    font-size: 11px !important;
  }

  .btn-pmb {
    display: none !important;
  }
}

/* ===== MOBILE MENU STYLING ===== */
@media (max-width: 768px) {

  .navbar {
    transition: all 0.3s ease;
  }

  .navbar.sticky-active {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  }

  .menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    background: #0b1c2d;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a,
  .dropbtn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding-left: 12px;
  }

  .dropdown.active .dropdown-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 5px;
  }

  .dropdown-content a {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: none;
    color: #ddd;
  }

  .hamburger i {
    transition: transform 0.3s ease;
  }

  .hamburger.active i {
    transform: rotate(90deg);
  }
}

.logo-text {
  color: white;
}

.menu a {
  color: #ffffff;
}

.program-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px;
}

.program-hero-content {
  max-width: 600px;
}

.program-hero-content h1 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.program-hero-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.program-hero-content .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.7)
    ),
    url('img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-primary {
  background: #fbbf24;
  color: #111;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  min-height: 60vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.7)
    ),
    url('/images/hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero {
  background-position: center;
  background-size: cover;
}

/* ❌ Glass dihilangkan — solid info card */
.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ❌ Glass dihilangkan — solid card */
.solid-card {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.news-card,
.solid-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover,
.solid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.btn-primary,
.btn-outline {
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

section {
  padding: 60px 20px;
}

.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.quick-info {
  margin-top: -40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.about,
.gallery,
.partners,
.news {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    gap: 12px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .about-container {
    flex-direction: column;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 48px 16px;
  }
}

/* =========================
   HOME PAGE — FORCE SOLID CARD
   (Tidak mempengaruhi halaman lain)
========================= */
.home-page .news-card,
.home-page .info-card,
.home-page .solid-card {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
  opacity: 1 !important;
}
/* ================= DETAIL PAGE ================= */

.program-detail {
    padding: 60px 20px;
    background: #f5f7fa;
}

.detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.detail-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.detail-image {
    max-height: 500px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content {
    padding: 40px;
}

.detail-content h2 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.detail-date {
    color: #777;
    margin-bottom: 25px;
}

.detail-description {
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Tombol kembali */
.back-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #0b3d91;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #072c6b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .program-detail {
        padding: 40px 15px;
    }

    .detail-content {
        padding: 25px;
    }

    .detail-content h2 {
        font-size: 20px;
    }

    .detail-description {
        font-size: 14px;
    }
}
/* ===== FIX PAKSA DETAIL CENTER ===== */

.program-detail {
    display: flex !important;
    justify-content: center !important;
}

.detail-container {
    width: 100% !important;
    max-width: 900px !important;
}

.detail-card {
    width: 100% !important;
}
/* ================= FIX DETAIL CENTER ================= */

.program-detail {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.detail-container {
    width: 100%;
    max-width: 900px;
}

.detail-card {
    width: 100%;
}
/* ============================= */
/* FIX HAMBURGER & MOBILE MENU  */
/* ============================= */

.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,#0b3d60,#0e5c8d);
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* MOBILE */
@media (max-width: 991px) {

    .hamburger {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100%;
        background: #0b3d60;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: 20px;
        transition: 0.3s ease-in-out;
        z-index: 1100;
    }

    .menu a,
    .dropbtn {
        color: #fff;
        width: 100%;
        padding: 12px 0;
    }

    .menu.active {
        left: 0;
    }

    .dropdown-content {
        position: static;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        padding-left: 10px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-right {
        display: none;
    }
}
* {
    filter: none !important;
    opacity: 1 !important;
}
/* FIX HERO MOBILE GELAP */
@media (max-width: 768px) {

  .hero {
    background: url('/images/hero.jpeg') center/cover no-repeat !important;
  }

  .hero::before,
  .hero::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

}
@media (max-width: 768px) {
  .hero {
    filter: none !important;
    opacity: 1 !important;
  }
}
/* FORCE REMOVE DARK BACKGROUND MOBILE */
@media (max-width: 768px) {

  .hero {
    background-image: url('/images/hero.jpeg') !important;
    background-color: transparent !important;
    background-blend-mode: normal !important;
  }

}
/* FIX MOBILE MENU OVERLAP */
.navbar-collapse,
.offcanvas {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999 !important;
}
.hero {
  position: relative;
  z-index: 1;
}
/* HERO GLOBAL (dipakai semua halaman) */
.page-hero {
    position: relative;
    height: 350px;
    background: url('assets/img/hero-laut.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,40,80,0.85), rgba(0,80,150,0.7));
}

.page-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}
/* ================= HERO FIX PREMIUM ================= */
.hero {
    position: relative;
    min-height: 85vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}


/* Content */
.hero-content {
    position: relative;
    max-width: 900px;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f4b400;
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffcc33;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #0d3c70;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .hero {
        min-height: 75vh;
        padding: 110px 20px 40px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 320px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== FORCE HERO FIX ===== */
.program-hero {
    min-height: 60vh !important;
    height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.program-hero::before {
    display: none !important;
}

.program-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 768px) {
    .program-hero {
        min-height: 55vh !important;
        padding-top: 110px !important;
    }
}
/* ===============================
   HERO PREMIUM 2048 STYLE
================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: url("../images/hero.jpg") center/cover no-repeat;
}

/* Dark gradient overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: #fff;
}

/* Judul */
.hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Subjudul */
.hero-content p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Tombol */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background: #f4b400;
    color: #000;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244,180,0,0.4);
}

.btn-outline {
    border: 2px solid #fff;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Desktop */
@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 28px;
    }
}
/* =====================================
   ULTIMATE 2048 CAMPUS HERO
===================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: url("../images/pelabuhan.jpeg") center/cover no-repeat fixed;
    overflow: hidden;
}

/* Cinematic gradient overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 30, 60, 0.85),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}

/* Yellow premium accent line */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #f4b400, #ffcc33);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    color: #fff;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn-primary {
    background: linear-gradient(45deg, #f4b400, #ffcc33);
    color: #000;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(244,180,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(244,180,0,0.5);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.8);
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
    transition: 0.4s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Desktop */
@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 19px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 16px 32px;
    }
}

/* Fade animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(0, 50, 90, 0.85);
    border-bottom: 3px solid #f4b400;
}
.solid-card {
    border-radius: 16px;
    padding: 25px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.solid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
/* ===============================
   HERO MINIMAL BOLD 2048
================================ */

.hero {
    position: relative;
    height: 75vh; /* Tidak terlalu panjang */
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: url("../images/pelabuhan.jpeg") center/cover no-repeat;
    overflow: hidden;
}

/* Overlay gelap elegan */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 20, 40, 0.75),
        rgba(0, 0, 0, 0.85)
    );
    z-index: 1;
}

/* Accent line premium */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #f4b400;
    border-radius: 2px;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: #ffffff;
}

/* Bold minimal typography */
.hero-content h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Desktop scaling */
@media (min-width: 768px) {
    .hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 18px;
    }
}
/* ===============================
   GALLERY SLIDER 2048 VERSION
================================ */

.gallery {
    padding: 80px 20px;
    background: #f8fbff;
    text-align: center;
}

.gallery h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0c2d48;
}

.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: 100%;
    padding: 0 10px;
}

.gallery-item img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Button */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0c2d48;
    color: #fff;
    border: none;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-btn:hover {
    background: #f4b400;
    color: #000;
}

.gallery-btn.prev {
    left: 10px;
}

.gallery-btn.next {
    right: 10px;
}
/* =========================
   MOBILE MENU FIX FINAL
========================= */

@media (max-width: 991px) {

  .menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(180deg, #0d2c54, #123d6b);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .menu a,
  .menu .dropbtn {
    color: #fff;
    padding: 12px 0;
    font-weight: 500;
  }

  .menu.active {
    left: 0;
  }

  /* Dropdown mobile */
  .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 15px;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

}
.card-berita {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.card-berita h3 {
    color: #123b5c;
    font-weight: 600;
}
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.popup-content {
  position: relative;
  margin: 5% auto;
  width: 450px;
  max-width: 90%;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.promo-img {
  width: 100%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  cursor: pointer;
}

.btn-daftar {
  display: block;
  margin-top: 15px;
  padding: 12px;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.btn-daftar:hover {
  background: #e0a800;
}
.popup-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-daftar {
  flex: 1;
  padding: 12px;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

.btn-close {
  padding: 12px 16px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-close:hover {
  background: #c82333;
}
#language-switcher {
  position: fixed;
  bottom: 90px; /* naik di atas tombol WA */
  right: 20px;
  z-index: 99999;
}

.language-dropdown {
  z-index: 99999;
}
.lang-switch{
 position: fixed;
 bottom: 120px;
 right: 20px;
 z-index: 9999;
 display: flex;
 gap: 8px;
}
.lang-floating{
 position: fixed;
 bottom: 120px;
 right: 20px;
 z-index: 9999;
}

.lang-main{
 background:#0d6efd;
 color:white;
 border:none;
 width:50px;
 height:50px;
 border-radius:50%;
 cursor:pointer;
 font-size:20px;
 box-shadow:0 6px 18px rgba(0,0,0,.3);
}

.lang-menu{
 display:none;
 position:absolute;
 bottom:60px;
 right:0;
 background:white;
 border-radius:12px;
 box-shadow:0 10px 25px rgba(0,0,0,.2);
 overflow:hidden;
 animation:fadeIn .25s ease;
}

.lang-menu div{
 padding:10px 16px;
 cursor:pointer;
 white-space:nowrap;
}

.lang-menu div:hover{
 background:#f2f2f2;
}

.lang-menu.show{
 display:block;
}

@keyframes fadeIn{
 from{opacity:0;transform:translateY(10px)}
 to{opacity:1;transform:translateY(0)}
}
.success-animate {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    animation: fadeInScale 0.6s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
#previewContent{
    width:100%;
    height:100%;
    position:relative;
    z-index:1;
}

.preview-close{
    position:fixed;
    top:14px;
    right:16px;
    font-size:30px;
    cursor:pointer;
    z-index:100000;
    color:#fff;
    background:rgba(0,0,0,.6);
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}