* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* ===== STICKY HEADER ===== */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
}

/* ===== TOP NAVBAR ===== */
.top-navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0 !important;
}

.top-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.logo-wrapper img {
  height: 50px;
  width: auto;
}

.school-text {
  text-align: left;
}

.school-text small {
  font-size: 11px;
  color: #555;
  display: block;
  line-height: 1.2;
}

.school-text h6 {
  font-weight: 700;
  color: #1b5e20;
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.contact-item i {
  color: #1b5e20;
  font-size: 16px;
}

.instagram-icon {
  display: flex;
  align-items: center;
}

.instagram-icon a {
  color: #1b5e20;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
}

.instagram-icon a:hover {
  color: #fff;
  background: #e1306c;
  transform: translateY(-2px);
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
  background: #1b5e20;
  padding: 16px 0 !important;
}

.main-navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

/* Nav menu desktop */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffc107;
}

/* Nav underline animation */
.nav-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #ffc107;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-menu li:hover::after,
.nav-menu li.active::after {
  width: 100%;
}

.tagline {
  color: #c8e6c9;
  font-size: 14px;
  font-style: italic;
  white-space: nowrap;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none !important;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn-warning {
  background: #ffc107;
  color: #1b5e20;
}

.btn-warning:hover {
  background: #e0a800;
  color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: #1b5e20;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: #1b5e20;
}

.btn-light:hover {
  background: #f8f9fa;
  color: #1b5e20;
  transform: translateY(-2px);
}

.btn-hero {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  min-width: 200px;
}

.btn-hero-outline {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  min-width: 200px;
}

.cta-primary {
  background: #ffc107;
  color: #1b5e20;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
}

.cta-secondary {
  background: #fff;
  color: #1b5e20;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  border: 2px solid #fff;
}

.cta-secondary:hover {
  background: transparent;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 60vh;
  background: url("../assets/img/bghero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

.badge-hero {
  background: #ffc107;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1b5e20;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
  text-align: center;
}

.highlight {
  color: #ffc107;
  font-style: italic;
  font-size: 24px;
}

.hero-content p {
  margin: 15px 0;
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-hero,
.btn-hero-outline {
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  max-width: 250px;
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 0;
  scroll-margin-top: 80px;
}

/* ===== SAMBUTAN SECTION ===== */
.sambutan-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fdf6e3 0%, #ffffff 50%);
}

.sambutan-section .row {
  flex-direction: column;
}

.sambutan-image-wrapper {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sambutan-image {
  border-radius: 18px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.sambutan-image-wrapper::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 40%;
  background: #1b5e20;
  bottom: -20px;
  right: -20px;
  border-radius: 18px;
  z-index: 1;
}

.sambutan-text {
  padding-left: 0;
}

.section-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.badge-line {
  width: 44px;
  height: 4px;
  background: #f4c400;
  border-radius: 8px;
}

.section-badge small {
  font-weight: 700;
  letter-spacing: 1px;
  color: #f4c400;
  font-size: 12px;
}

.sambutan-title {
  font-size: 24px;
  font-weight: 700;
  color: #0b1b4d;
  margin-bottom: 16px;
}

.sambutan-paragraph {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 16px;
}

/* VISI MISI HIDDEN */
.visi-misi-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.visi-title {
  font-size: 24px;
  font-weight: 700;
  color: #0b1b4d;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* SAAT AKTIF */
.visi-misi-wrapper.show {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 20px;
}

/* BUTTON */
.read-more-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #1b5e20;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more-btn span {
  transition: transform 0.3s ease;
}

.read-more-btn.active span {
  transform: rotate(90deg);
}

.sambutan-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a1f44;
}

.sambutan-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 600;
  color: #1b5e20;
  text-decoration: none;
}

.read-more span {
  transition: transform 0.3s ease;
}

.read-more:hover span {
  transform: translateX(5px);
}

/* ===== KOMPETENSI SECTION ===== */
.kompetensi-section {
  padding: 60px 0;
  background: #f8fafc;
}

.kompetensi-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0a1f44;
  text-align: center;
  margin-bottom: 10px;
}

.kompetensi-subtitle {
  color: #666;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 15px;
}

/* CARD */
.kompetensi-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.kompetensi-card:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #d9fdd3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 24px;
  color: #1b5e20;
}

.kompetensi-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a1f44;
  font-size: 18px;
}

.kompetensi-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.kompetensi-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #1b5e20;
  text-decoration: none;
}

/* ===== BERITA SECTION ===== */
.berita-section {
  padding: 60px 0;
  background: #f9fafb;
}

.berita-header {
  text-align: center;
  margin-bottom: 20px;
}

.berita-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 5px;
}

.berita-header p {
  color: #555;
  font-size: 14px;
  margin: 0;
  margin-bottom: 20px;
}

.berita-nav {
  display: none;
}

.berita-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.berita-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.berita-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.berita-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.berita-card:hover img {
  transform: scale(1.05);
}

.berita-body {
  padding: 20px;
}

.berita-body .date {
  color: #1b5e20;
  font-size: 13px;
}

.berita-body h5 {
  font-weight: 700;
  margin: 10px 0;
  color: #0a1f44;
  font-size: 16px;
}

.berita-body p {
  font-size: 14px;
  color: #555;
}

.berita-body a {
  font-weight: 600;
  color: #1b5e20;
  text-decoration: none;
}

.footer-section {
  background: linear-gradient(135deg, #020024, #0a1f44);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-section-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #ffc107;
  border-radius: 2px;
}

.footer-about-box,
.footer-menu-box,
.footer-contact-box {
  margin-bottom: 30px;
}

/* About Section */
.footer-description-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b0b7c3;
  margin-bottom: 25px;
}

.footer-social-wrapper {
  margin-top: 20px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-social-link i {
  font-size: 1.25rem;
  color: #ffc107;
}

.footer-social-text {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Menu Section */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list-item {
  margin-bottom: 12px;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b0b7c3;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-nav-link:hover {
  color: #ffc107;
  padding-left: 5px;
}

.footer-link-icon {
  font-size: 0.8rem;
  color: #ffc107;
}

.footer-nav-link span {
  flex: 1;
}

/* Contact Section */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  font-size: 1.1rem;
  color: #ffc107;
}

.footer-contact-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b7c3;
}

.footer-contact-num p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b7c3;
}

/* Footer Bottom */
.footer-bottom-section {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #8a94a6;
}

/* ===== ANIMATION UX ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* navbar underline animation */
.nav-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 4px;
  background: #ffc107;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-menu li:hover::after,
.nav-menu li.active::after {
  width: 100%;
}

/* ========== MOBILE SLIDE MENU ========== */
/* Mobile menu container */
.mobile-menu-container {
  display: none;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu panel (slide dari kanan) */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #1b5e20; /* Warna hijau */
  z-index: 999;
  padding: 80px 25px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu-panel.active {
  right: 0;
}

/* Mobile menu items */
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  margin-bottom: 15px;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover {
  color: #ffc107;
  padding-left: 10px;
}

.mobile-nav-link.active {
  color: #ffc107;
}

/* Contact info di dalam mobile menu */
.mobile-contact-info {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: white;
  font-size: 14px;
}

.mobile-contact-item i {
  color: #ffc107;
  font-size: 18px;
  min-width: 24px;
}

/* Instagram di mobile menu */
.mobile-instagram {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  margin-top: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  justify-content: center;
}

.mobile-instagram:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-instagram i {
  color: white;
  font-size: 22px;
}

.mobile-instagram span {
  font-size: 15px;
  font-weight: 500;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.map-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.map-subtitle {
  color: #6c757d;
  font-size: 15px;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ========== TABLET (768px and up) ========== */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.05rem;
  }

  /* TOP NAVBAR TABLET */
  .top-navbar .container-fluid {
    padding: 0 20px;
  }

  .top-navbar {
    padding: 10px 0;
  }

  .logo-wrapper {
    min-width: 240px;
  }

  .contact-wrapper {
    gap: 20px;
  }

  .contact-info {
    gap: 15px;
  }

  /* NAVBAR TABLET */
  .nav-menu {
    gap: 25px;
  }

  /* HERO */
  .hero-section {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .highlight {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn-hero,
  .btn-hero-outline {
    width: auto;
  }

  /* SECTIONS */
  section {
    padding: 80px 0;
    scroll-margin-top: 100px;
  }

  /* SAMBUTAN */
  .sambutan-section {
    padding: 80px 0;
  }

  .sambutan-section .row {
    flex-direction: row;
    align-items: center;
  }

  .sambutan-image-wrapper::after {
    width: 50%;
    bottom: -30px;
    right: -30px;
  }

  .sambutan-text {
    padding-left: 30px;
  }

  .sambutan-title {
    font-size: 28px;
  }

  /* KOMPETENSI */
  .kompetensi-section {
    padding: 80px 0;
  }

  .kompetensi-card {
    height: 100%;
    padding: 25px 20px;
  }

  .kompetensi-title {
    font-size: 28px;
  }

  .kompetensi-subtitle {
    font-size: 15px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box i {
    font-size: 26px;
  }

  /* BERITA */
  .berita-section {
    padding: 80px 0;
  }

  .berita-nav {
    display: flex;
    gap: 10px;
  }

  .berita-scroll {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 24px;
  }

  .berita-scroll .berita-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
  }

  .berita-card img {
    height: 200px;
  }

  .berita-nav button {
    background: #1b5e20;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .berita-nav button:hover {
    background: #f4c400;
    color: #000;
  }

  /* FOOTER */
  .footer-section {
    padding: 90px 0 60px;
  }

  .footer-section-title {
    font-size: 1.5rem;
  }

  .footer-description-text,
  .footer-nav-link,
  .footer-contact-text p {
    font-size: 1rem;
  }

  .footer-social-link {
    padding: 12px 25px;
  }

  .footer-social-text {
    font-size: 1rem;
  }

  .footer-contact-icon {
    width: 45px;
    height: 45px;
  }

  .footer-contact-icon i {
    font-size: 1.2rem;
  }

  .footer-copyright p {
    font-size: 0.95rem;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  /* TOP NAVBAR MOBILE */

  .mobile-menu-container {
    display: block;
  }

  .top-navbar .container-fluid {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 0 15px;
  }

  .logo-wrapper {
    width: auto;
    justify-content: flex-start;
    min-width: auto;
  }

  /* Sembunyikan contact info di top navbar mobile */
  .contact-wrapper {
    display: none !important;
  }

  /* Perbaiki ukuran logo mobile */
  .logo-wrapper img {
    height: 40px;
  }

  .school-text small {
    font-size: 10px;
  }

  .school-text h6 {
    font-size: 14px;
  }

  /* NAVBAR MOBILE */
  .main-navbar .container-fluid {
    padding: 0 15px;
    justify-content: space-between;
  }

  /* Hamburger Modern */
  .hamburger-modern {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    margin-left: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .hamburger-modern span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  /* Hover effect */
  .hamburger-modern:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    transform: scale(1.05);
  }

  .hamburger-modern:hover span {
    background: #ffc107;
  }

  /* Active state (X animation) */
  .hamburger-modern.active {
    background: #ffc107;
    border-color: #ffc107;
  }

  .hamburger-modern.active span {
    background: #1b5e20;
  }

  .hamburger-modern.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    width: 22px;
  }

  .hamburger-modern.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .hamburger-modern.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    width: 22px;
  }

  /* Navigation Menu di kiri */
  .nav-menu {
    order: 1;
  }

  /* Tampilkan mobile menu container */
  .mobile-menu-container {
    display: block;
  }

  /* Sembunyikan nav menu desktop di mobile */
  .nav-menu {
    display: none !important;
  }

  /* Sembunyikan tagline di mobile */
  .tagline {
    display: none !important;
  }

  /* Perbaiki layout untuk mobile */
  .main-navbar .container-fluid {
    display: flex;
    align-items: center;
  }

  /* SAMBUTAN MOBILE */
  .sambutan-image-wrapper::after {
    width: 50%;
    bottom: -30px;
    right: -9px;
  }

  .footer-section {
    padding: 50px 0 30px;
    text-align: center;
  }

  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-about-box,
  .footer-menu-box,
  .footer-contact-box {
    margin-bottom: 40px;
  }

  .footer-section-title {
    text-align: center;
  }

  .footer-social-link {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-contact-icon {
    width: 35px;
    height: 35px;
  }

  .footer-contact-icon i {
    font-size: 1rem;
  }
}

/* ========== DESKTOP (992px and up) ========== */
@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.75rem;
  }
  p {
    font-size: 1.1rem;
  }

  /* TOP NAVBAR DESKTOP */
  .top-navbar .container-fluid {
    padding: 0 40px;
  }

  .main-navbar .container-fluid {
    padding: 0 40px;
  }

  .contact-wrapper {
    gap: 30px;
  }

  .contact-info {
    gap: 25px;
  }

  /* HAMBURGER HIDDEN DI DESKTOP */
  .hamburger {
    display: none !important;
  }

  /* Tampilkan nav menu di desktop */
  .nav-menu {
    display: flex !important;
  }

  /* Tampilkan tagline di desktop */
  .tagline {
    display: block !important;
  }

  /* HERO */
  .hero-section {
    height: 85vh;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 60px;
    margin-top: 20px;
  }

  .highlight {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 16px;
    margin-top: 20px;
  }

  .badge-hero {
    position: relative;
  }

  .hero-buttons {
    margin-top: 30px;
    gap: 15px;
  }

  .btn-hero,
  .btn-hero-outline {
    padding: 10px 25px;
  }

  /* SECTIONS */
  section {
    padding: 110px 0;
    scroll-margin-top: 140px;
  }

  /* SAMBUTAN */
  .sambutan-section {
    padding: 120px 0;
  }

  .sambutan-image-wrapper {
    display: inline-block;
  }

  .sambutan-image-wrapper::after {
    width: 50%;
    height: 40%;
    bottom: -50px;
    right: -64px;
    border-radius: 28px;
  }

  .sambutan-text {
    padding-left: 20px;
    margin-left: 64px;
    max-width: 560px;
  }

  .sambutan-title {
    font-size: 32px;
  }

  .sambutan-text h2 {
    font-size: 34px;
  }

  .visi-title {
    font-size: 30px;
  }

  /* KOMPETENSI */
  .kompetensi-section {
    padding: 110px 0;
  }

  .kompetensi-title {
    font-size: 32px;
  }

  .kompetensi-card {
    padding: 30px 25px;
  }

  .icon-box {
    width: 80px;
    height: 75px;
  }

  .icon-box i {
    font-size: 28px;
  }

  .kompetensi-card h5 {
    font-size: 20px;
  }

  /* BERITA */
  .berita-section {
    padding: 110px 0 130px;
  }

  .berita-header {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .berita-header h2 {
    font-size: 32px;
  }

  .berita-header p {
    margin: 0;
  }

  .berita-scroll .berita-card {
    min-width: 340px;
    max-width: 340px;
  }

  .berita-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .berita-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }

  .berita-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  /* FOOTER */
  .footer {
    padding: 90px 0 60px;
  }
}

/* ========== LARGE DESKTOP (1200px and up) ========== */
@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-menu {
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 64px;
  }
}
