/* ==================== RESET & GLOBAL ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  /* agar overlay bisa absolute */
}

/* Overlay hitam transparan di seluruh halaman */


/* ==================== BAHASA ==================== */
.language-switcher {
  position: absolute;
  top: -15px;
  right: -170px;
  z-index: 10000;
  background: rgba(46, 45, 45, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.language-switcher.show {
  opacity: 1;
}

.language-switcher .current-lang {
  color: #333 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.language-switcher .dropdown-icon {
  color: #fff !important;
}

.language-switcher:hover {
  background: rgba(255, 255, 255, 10);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.language-switcher .current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.language-switcher .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.language-switcher .dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s;
}

.language-switcher.active .dropdown-icon {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 400px;
  overflow-y: auto;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: #f8f8f8;
}

.language-option.selected {
  background: #e3f2fd;
  color: #1976d2;
}

.language-option .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.language-option span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.translate-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.translate-loading.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .language-switcher {
    top: 150px;
    right: 65px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
  }

  .language-switcher .current-lang {
    color: #333 !important;
    text-shadow: none;
  }

  .language-switcher .dropdown-icon {
    color: #333 !important;
  }

  .language-dropdown {
    right: -10px;
  }

  /* When the mobile menu overlay is opened, align items to top and
         make the language switcher flow directly above the first link */
  .nav-links.active {
    justify-content: flex-start;
    /* place items from top instead of centered */
    padding-top: 70px;
    /* give space for logo/header */
  }

  .nav-links.active .language-switcher {
    position: relative;
    /* keep it in the flow */
    top: 0;
    right: 0;
    align-self: center;
    /* center horizontally above first link (Beranda) */
    margin-bottom: 12px;
    /* gap between switcher and first nav item */
    opacity: 1;
    visibility: visible;
    z-index: 1100;
    transform: none;
    background: rgba(255, 255, 255, 0.98);
  }

  /* make dropdown centered under the switcher (which sits above Beranda) */
  .nav-links.active .language-switcher .language-dropdown {
    position: absolute;
    /* absolute relative to switcher */
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    top: 100%;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .nav-links.active .language-switcher .language-dropdown.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* when nav overlay (side menu) is open, let the switcher flow and center above the first link */
  .nav-links.active .language-switcher {
    position: relative;
    /* no longer absolute so it sits in flow */
    top: 0;
    right: 0;
    align-self: center;
    /* center horizontally in column layout */
    margin-bottom: 14px;
    /* small gap above first nav link (Beranda) */
    opacity: 1;
    /* ensure visible in overlay */
    visibility: visible;
    z-index: 1100;
    /* sit above overlay content */
    transform: none;
    /* reset any transforms */
    background: rgba(255, 255, 255, 0.95);
  }
}




/* ==================== LOGO ==================== */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 200px;
  opacity: 0;
  transition: all 1.5s ease-in-out;
  z-index: 1000;
}

/* Saat logo tampil pertama kali */
.logo.show {
  opacity: 1;
}

/* Setelah logo bergerak ke kiri atas */
.logo.moved {
  top: -10px;
  left: 100px;
  transform: translate(0, 0) scale(0.5);
}

/* ==================== NAVBAR ==================== */
nav {
  position: absolute;
  top: 70px;
  right: 200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease;
}

nav.show {
  opacity: 1;
}

nav a {
  margin-left: 70px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

nav a:hover {
  color: #1565C0;
}

nav a.active {
  color: #FFD700;
  /* contoh: warna emas untuk link aktif */

}




/* ==================== RESPONSIVE NAVBAR ==================== */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #000000;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle.active {
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
}

@media (max-width: 1010px) {
  nav {
    top: 25px;
    right: 20px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
  }


  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 18px 0;
    font-size: 20px;
    color: #fff;
    text-shadow: none;
  }

  /* === LOGO MOBILE === */
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 160px;
    opacity: 0;
    transition: all 1.5s ease-in-out;
    z-index: 100;
  }

  .logo.show {
    opacity: 1;
  }

  .logo.moved {
    top: -25px;
    /* lebih ke atas */
    left: -16px;
    /* agak ke kiri */
    transform: translate(0, 0) scale(0.55);
  }
}

/* Gaya ikon menu di mobile */
.menu-toggle i {
  transition: transform 0.3s ease;
}

/* Saat aktif (jadi X), bisa beri sedikit efek animasi */
.menu-toggle.active i {
  transform: rotate(180deg);
}





/* =========================================================
   STYLE KHUSUS BERDASARKAN HALAMAN
   ========================================================= */

/* ============ HALAMAN HOME ============ */
body.home nav a {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

body.home .logo {
  filter: none;
  /* logo tetap warna asli */
}

/* ============ HALAMAN LAIN (INNER PAGE) ============ */
body.inner nav a {
  color: #333;
  /* warna teks hitam */
  text-shadow: none;
}

body.inner nav a.active {
  color: #1565C0;
  /* contoh: warna emas untuk link aktif */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}


body.inner .language-switcher .current-lang {
  color: #333 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

body.inner nav a:hover {
  color: #1565C0;
}

body.inner .overlay {
  display: none;
  /* matikan overlay hitam transparan */
}

body.inner .menu-toggle {
  color: #000;
}

body.inner .menu-toggle.active {
  color: #ffffff;
}

body.inner .nav-links.active a {
  color: #fff !important;
}

body.inner .nav-links.active a:hover {
  color: #1565C0 !important;
}

/* =========================================================
   ANIMASI UNIVERSAL (LOGO ? NAVBAR ? KONTEN)
   ========================================================= */

/* Semua konten disembunyikan dulu */
body.home section,
body.inner section {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

/* Setelah logo selesai animasi */
body.home.show-content section,
body.inner.show-content section {
  opacity: 1;
  pointer-events: all;
}

body.home.show-content nav,
body.inner.show-content nav {
  opacity: 1;
}



/* ===== HERO VIDEO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  /* Ubah dari fixed height ke auto */
  overflow: hidden;
  margin-top: 150px;
  background: #000;
}

.hero-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Aspect ratio 16:9 - sesuaikan dengan ratio video Anda */
  height: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Kembali ke cover agar full tanpa hitam */
}

/* ===== RESPONSIVE (Mobile & Tablet) ===== */
@media (max-width: 1200px) {
  .hero-section {
    margin-top: 130px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    margin-top: 130px;
  }

  .hero-video-container {
    padding-bottom: 56.25%;
    /* Tetap maintain aspect ratio */
  }
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 130px;
  }

  .hero-video-container {
    padding-bottom: 56.25%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin-top: 130px;
  }

  .hero-video-container {
    padding-bottom: 56.25%;
  }
}

/* ==================== BANNER SECTION ==================== */
/* wrapper putih agar banner-section terpisah dari background body */
.banner-wrapper {
  width: 100%;
  background-color: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.banner-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.banner-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.banner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-box.large {
  height: 520px;
}

.banner-box.small {
  height: 250px;
}

.banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  z-index: 1;
}

.banner-box.large::before {
  height: 75%;
}

.banner-box.small::before {
  height: 65%;
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: white;
  z-index: 2;
  text-align: left;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-box.large .banner-content {
  height: 25%;
}

.banner-box.small .banner-content {
  height: 35%;
  padding: 20px;
}

.banner-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 600;
  color: #ff6b6b;
  letter-spacing: 1.2px;
  line-height: 1.3;
}

.banner-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(18px, 2.6vw, 34px);
  font-weight: 700;
  color: #222;
  line-height: 1.25;
}



.banner-box.small .banner-heading {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .banner-wrapper {
    padding: 60px 0;
  }

  .banner-container {
    flex-direction: column;
    width: 90%;
    gap: 20px;
  }

  .banner-left,
  .banner-right {
    width: 100%;
  }

  .banner-box.large {
    height: 300px;
  }

  .banner-box.small {
    height: 250px;
  }

  .banner-content {
    padding: 20px;
  }

  .banner-sub {
    font-size: 12px;
  }

  .banner-heading {
    font-size: 18px;
  }

  .banner-box.small .banner-heading {
    font-size: 18px;
  }
}




/* ===================== CHOOSE & ENJOY SECTION ===================== */
.choose-section {
  width: 100%;
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
  color: #1565C0;
  overflow: hidden;
}

.choose-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Title & Description ---------- */
.choose-title {
  font-family: 'Montserrat', cursive;
  font-size: 54px;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.choose-desc {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #000000;
  line-height: 1.7;
}

/* ---------- Slider Wrapper ---------- */
.choose-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.choose-slider {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

/* ---------- Slide Item ---------- */
.choose-slide {
  flex: 0 0 33.333%;
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  min-height: 480px;
  align-items: center;
  justify-content: flex-start;
}

/* ---------- Image Container - FIXED ---------- */
.choose-slide img {
  width: 100%;
  max-width: 320px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  display: block;
  border-radius: 15px;
}

/* ---------- Hover & Center Animation ---------- */
.choose-slide:hover {
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); */
  transform: translateY(-5px);
}

.choose-slide:hover img {
  transform: scale(1.05);
}

.choose-slide.slick-center {
  transform: scale(1.05);
  z-index: 3;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); */
}

.choose-slide.slick-center img {
  transform: scale(1.08);
}

/* ---------- Text ---------- */
.choose-slide h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.3;
  padding: 0 10px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-slide p {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin: 0;
  padding: 0 20px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Fade-In ---------- */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* ---------- Large Desktop (=1400px) ---------- */
@media (max-width: 1400px) {
  .choose-slide {
    padding: 28px 22px;
    min-height: 460px;
  }

  .choose-slide img {
    max-width: 300px;
    height: 260px;
  }

  .choose-slide h3 {
    font-size: 24px;
    min-height: 65px;
  }

  .choose-slide p {
    font-size: 15px;
    padding: 0 15px;
    min-height: 75px;
  }
}

/* ---------- Tablet (=1024px) ---------- */
@media (max-width: 1024px) {
  .choose-title {
    font-size: 44px;
    margin-bottom: 12px;
  }

  .choose-desc {
    font-size: 17px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .choose-wrapper {
    padding: 0 30px;
  }

  .choose-slider {
    gap: 25px;
  }

  .choose-slide {
    flex: 0 0 45%;
    padding: 30px 20px;
    border-radius: 18px;
    min-height: 440px;
  }

  .choose-slide img {
    max-width: 280px;
    height: 240px;
    margin-bottom: 18px;
  }

  .choose-slide h3 {
    font-size: 22px;
    margin-bottom: 12px;
    min-height: 60px;
  }

  .choose-slide p {
    font-size: 15px;
    padding: 0 15px;
    min-height: 70px;
  }
}

/* ---------- Tablet Small (=768px) ---------- */
@media (max-width: 768px) {
  .choose-section {
    padding: 50px 0;
  }

  .choose-title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .choose-desc {
    font-size: 16px;
    margin-bottom: 35px;
    padding: 0 25px;
  }

  .choose-wrapper {
    padding: 0 20px;
  }

  .choose-slider {
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .choose-slide {
    flex: 0 0 70%;
    padding: 25px 20px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
    scroll-snap-align: center;
    min-height: 420px;
  }

  .choose-slide img {
    max-width: 260px;
    height: 220px;
    margin-bottom: 16px;
  }

  .choose-slide h3 {
    font-size: 20px;
    margin-bottom: 10px;
    min-height: 55px;
  }

  .choose-slide p {
    font-size: 14px;
    padding: 0 12px;
    min-height: 65px;
  }

  /* Scrollbar Styling */
  .choose-slider::-webkit-scrollbar {
    height: 4px;
  }

  .choose-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .choose-slider::-webkit-scrollbar-thumb {
    background: #1565C0;
    border-radius: 10px;
  }

  /* Disable hover on touch devices */
  .choose-slide:hover {
    transform: none;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  }

  .choose-slide:hover img {
    transform: none;
  }
}

/* ---------- Mobile (=600px) ---------- */
@media (max-width: 600px) {
  .choose-section {
    padding: 40px 0 45px;
  }

  .choose-container {
    width: 100%;
  }

  .choose-title {
    font-size: 32px;
    margin-bottom: 10px;
    padding: 0 20px;
  }

  .choose-desc {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.6;
  }

  .choose-wrapper {
    padding: 0 15px;
  }

  .choose-slider {
    gap: 18px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
  }

  .choose-slide {
    flex: 0 0 85%;
    max-width: 350px;
    padding: 25px 20px;
    border-radius: 18px;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
    scroll-snap-align: center;
    background: #ffffff;
  }

  .choose-slide img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .choose-slide h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding: 0 8px;
    font-weight: 700;
  }

  .choose-slide p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
    color: #666;
  }

  /* Smooth scrollbar */
  .choose-slider::-webkit-scrollbar {
    height: 6px;
  }

  .choose-slider::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
    margin: 0 15px;
  }

  .choose-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #1565C0, #1976D2);
    border-radius: 10px;
  }

  /* Touch feedback */
  .choose-slide:active {
    transform: scale(0.98);
    transition: transform 0.15s ease;
  }

  /* Disable center effects on mobile */
  .choose-slide.slick-center {
    transform: none;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
  }

  .choose-slide.slick-center img {
    transform: none;
  }
}

/* ---------- Mobile Small (=400px) ---------- */
@media (max-width: 400px) {
  .choose-title {
    font-size: 28px;
    padding: 0 15px;
  }

  .choose-desc {
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 25px;
  }

  .choose-wrapper {
    padding: 0 10px;
  }

  .choose-slide {
    flex: 0 0 90%;
    padding: 20px 15px;
  }

  .choose-slide img {
    height: 200px;
    margin-bottom: 14px;
  }

  .choose-slide h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .choose-slide p {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.gallery-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-title {
  font-family: 'Montserrat', cursive;
  font-size: 48px;
  margin-bottom: 10px;
}

.social-icon span {
  font-size: 25px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 25px;
  color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 350px;
  /* desktop normal */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.gallery-item:hover .zoom-overlay {
  opacity: 1;
}

.gallery-section.fade-in {
  animation: fadeIn 1.2s ease forwards;
}

/* Tambahan styling untuk video */
.gallery-item.video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-item.video:hover .play-icon {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Hilangkan zoom overlay untuk video */
.gallery-item.video .zoom-overlay {
  display: none;
}

/* Instagram logo + username */
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.instagram-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Tablet (=992px) ---------- */
@media (max-width: 992px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-title {
    font-size: 38px;
  }

  .social-icon span {
    font-size: 20px;
  }

  .instagram-logo {
    width: 35px;
    height: 35px;
  }

  .gallery-grid {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    border-radius: 12px;
  }
}

/* ---------- Mobile (=600px) tetap 2 grid ---------- */
@media (max-width: 600px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .social-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .social-icon span {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .instagram-logo {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    border-radius: 12px;
    height: 200px;
    /* ? Tinggi lebih kecil untuk mobile */
  }

  .gallery-item img {
    border-radius: 12px;
  }

  .zoom-overlay {
    font-size: 16px;
  }

  .gallery-item.video .play-icon {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}


/* ==================== FOOTER SECTION ==================== */
.footer {
  background: white;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  padding: 40px 0 10px;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-logo img {
  width: 130px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
}

.footer-item img {
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.footer-address {
  margin-left: 32px;
  line-height: 1.6;
  font-size: 14px;
  color: #1565C0;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #000000;
}

.footer-bottom a {
  color: #000000;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  width: 35px;
  height: 35px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-socials img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


/* ==================== ABOUT SECTION ==================== */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 8% 100px;
  /* lebih turun */
  gap: 80px;
  position: relative;
}

/* ==================== WRAPPER KONTEN ==================== */
.about-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  margin-top: 100px;
}

/* ==================== MEDIA (GAMBAR / VIDEO) ==================== */
.about-media {
  position: relative;
  flex: 1.4;
  width: 100%;
  max-width: none;
  overflow: hidden;
  margin-left: -8%;
  /* dorong ke kiri */
}

.about-media img,
.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Efek gradasi putih di sisi kanan */
.about-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}

/* ==================== TEKS ==================== */
.about-content {
  flex: 1;
  z-index: 2;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.subtitle-line {
  width: 50px;
  height: 2px;
  background: #333;
  display: inline-block;
}

.about-subtitle strong {
  font-weight: 600;
  color: #333;
}

.about-title {
  font-size: 52px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  max-width: 500px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .about-section {
    padding: 120px 5% 80px;
  }

  .about-content-wrapper {
    flex-direction: column;
    text-align: left;
    gap: 50px;
    margin-top: 30px;
  }

  .about-media {
    margin-left: 0;
    border-radius: 20px;
  }

  .about-media img,
  .about-media video {
    border-radius: 20px;
  }

  /* HILANGKAN GRADIASI DI MOBILE */
  .about-media::after {
    display: none;
  }

  .about-title {
    font-size: 40px;
  }

  .about-description {
    font-size: 16px;
    margin: 0 auto;
  }

  .about-subtitle {
    justify-content: left;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 100px 5% 60px;
  }

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

  .about-subtitle {
    font-size: 14px;
  }

  .subtitle-line {
    width: 40px;
  }

  .about-description {
    font-size: 15px;
    line-height: 1.7;
  }
}


/* ====================== STATS SECTION ====================== */
/* ===============================
   SECTION STATISTICS (ELEGAN)
   =============================== */
.stats-section {
  position: relative;
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #fff8e7 0%, #fefcf6 40%, #f5ede1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Lapisan halus di atas gradient agar teks tetap jelas */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      #ffffff 0%,
      #fff4b0 40%,
      #ffd700 100%);
  z-index: 1;
}

/* Konten utama */
.stats-overlay {
  position: relative;
  z-index: 2;
  color: #222;
  text-align: center;
  width: 100%;
  padding: 40px 20px;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Item statistik */
.stat-item {
  flex: 0 1 auto;
  min-width: 180px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.65);
  padding: 20px 15px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #1565C0, #0d47a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #1565C0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* ========== TABLET RESPONSIVE ========== */
@media (max-width: 1024px) {
  .stats-section {
    height: 300px;
  }

  .stats-container {
    gap: 60px;
    padding: 0 30px;
  }

  .stat-item {
    min-width: 160px;
    padding: 18px 12px;
  }

  .stat-number {
    font-size: 52px;
  }

  .stat-label {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 900px) {
  .stats-container {
    gap: 40px;
  }

  .stat-item {
    min-width: 140px;
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 46px;
  }

  .stat-label {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
}

/* ========== MOBILE & SMALL TABLET ========== */
@media (max-width: 768px) {
  .stats-section {
    height: auto;
    min-height: 280px;
    padding: 50px 0;
  }

  .stats-overlay {
    padding: 20px 15px;
  }

  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0 20px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 20px);
    min-width: 140px;
    padding: 20px 15px;
    margin: 5px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-label {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 600px) {
  .stats-container {
    gap: 20px;
    padding: 0 15px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 15px);
    padding: 18px 12px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* ========== SMALL MOBILE ========== */
@media (max-width: 480px) {
  .stats-section {
    padding: 40px 0;
    min-height: 250px;
  }

  .stats-overlay {
    padding: 15px 10px;
  }

  .stats-container {
    gap: 15px;
    padding: 0 10px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 10px);
    padding: 15px 8px;
    border-radius: 16px;
    min-width: 120px;
  }

  .stat-number {
    font-size: 34px;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 360px) {
  .stats-container {
    gap: 12px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px 6px;
    min-width: 110px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 10px;
  }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-width: 768px) and (orientation: landscape) {
  .stats-section {
    height: auto;
    min-height: 220px;
    padding: 30px 0;
  }

  .stats-container {
    flex-direction: row;
    gap: 20px;
  }

  .stat-item {
    flex: 0 0 calc(25% - 20px);
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* ========== FIX FOR VERY LARGE SCREENS ========== */
@media (min-width: 1600px) {
  .stats-container {
    gap: 150px;
    max-width: 1400px;
  }

  .stat-item {
    min-width: 200px;
  }

  .stat-number {
    font-size: 72px;
  }

  .stat-label {
    font-size: 18px;
  }
}


.values-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #1565C0;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.15rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(93, 78, 55, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 78, 55, 0.15);
  border-bottom-color: #ffd700;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  box-shadow: 0 8px 20px rgba(201, 168, 106, 0.3);
  transition: all 0.4s ease;
}

.value-card:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(201, 168, 106, 0.4);
}

.value-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card p {
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.8;
}

.divider {
  width: 50px;
  height: 3px;
  background: #ffd700;
  margin: 20px auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.value-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.value-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 50px 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .value-card {
    padding: 35px 25px;
  }

  .icon-circle {
    width: 85px;
    height: 85px;
    font-size: 2.5rem;
  }

  .value-card h3 {
    font-size: 1.5rem;
  }
}

/* --------------------------MAPS------------------------------ */
/* ==================== MAP SECTION ==================== */
.map-section {
  position: relative;
  padding: 100px 5%;
  background: #fff;
}

.map-header {
  text-align: center;
  margin-bottom: 60px;
}

.map-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #1565C0;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.subtitle-line {
  width: 50px;
  height: 2px;
  background: #000000;
}

.map-title {
  font-size: 48px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.map-description {
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #f8f5f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
  display: flex;
  gap: 0;
}

/* Peta */
.map-frame {
  flex: 1.5;
  min-height: 600px;
  position: relative;
}

#map-canvas {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

/* Custom Popup Styles */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
  margin: 15px;
  font-family: 'Montserrat', sans-serif;
}

.popup-title {
  font-size: 16px;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 8px;
}

.popup-address {
  font-size: 13px;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.5;
}

.popup-hours {
  font-size: 12px;
  color: #777;
  font-style: italic;
}

/* Sidebar lokasi */
.locations-sidebar {
  flex: 1;
  background: white;
  padding: 40px 30px;
  overflow-y: auto;
  max-height: 600px;
}

.locations-sidebar::-webkit-scrollbar {
  width: 6px;
}

.locations-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.locations-sidebar::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 3px;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.sidebar-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 30px;
}

/* City Groups */
.city-group {
  margin-bottom: 30px;
}

.city-header {
  font-size: 20px;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #5a3d2e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-pin {
  width: 24px;
  height: 24px;
  background: #ffd700;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.city-pin::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #1565C0;
  border-radius: 50%;
  transform: rotate(45deg);
}

.location-item {
  padding: 15px 20px;
  margin-bottom: 12px;
  background: #f8f5f0;
  border-radius: 12px;
  border-left: 4px solid #1565C0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left-color: #ffd700;
  background: #fff;
}

.location-item.active {
  border-left-color: #ffd700;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.location-name {
  font-size: 16px;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 8px;
}

.location-address {
  font-size: 13px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 5px;
}

.location-hours {
  font-size: 12px;
  color: #777;
  font-style: italic;
}

.location-count {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #ffd700;
  color: #1565C0;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
}

/* Loading Indicator */
#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  font-size: 18px;
  color: #3b1a00;
  font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .map-wrapper {
    flex-direction: column;
  }

  .map-frame {
    min-height: 400px;
  }

  #map-canvas {
    min-height: 400px;
  }

  .locations-sidebar {
    max-height: 500px;
  }

  .map-title {
    font-size: 36px;
  }

  .map-description {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .map-section {
    padding: 80px 5%;
  }

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

  .map-description {
    font-size: 15px;
  }

  .map-frame {
    min-height: 300px;
  }

  #map-canvas {
    min-height: 300px;
  }

  .locations-sidebar {
    padding: 30px 20px;
  }

  .sidebar-title {
    font-size: 20px;
  }

  .city-header {
    font-size: 18px;
  }

  .location-name {
    font-size: 15px;
  }

  .location-address {
    font-size: 12px;
  }
}

/* ==================== BANNER PROMO SECTION ==================== */
/* ===============================
   PROMO BANNER SECTION - BASE STYLES
   =============================== */

.promo-banner-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, #e3f2fd 0%, #fff9c4 50%, #fffde7 100%);
  overflow: hidden;
  margin-bottom: 60px;
  margin-top: 150px;
  padding: 60px 5%;
}

/* ===============================
   HOME PAGE VARIANT
   =============================== */
.promo-banner-section.promo-home {
  margin-top: 0;
  margin-bottom: 0;
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ===============================
   SLIDER CONTAINER
   =============================== */
.promo-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* ===============================
   CONTENT LAYOUT
   =============================== */
.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  animation: slideIn 0.8s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   TEXT SECTION
   =============================== */
.promo-text {
  animation: fadeInLeft 0.8s ease 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.promo-tag {
  display: inline-block;
  background: linear-gradient(#ffd700);
  color: #1565C0;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.promo-title {
  font-family: 'Alfa Slab One', cursive;
  font-size: 56px;
  line-height: 1.2;
  color: #1565C0;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 rgba(255, 235, 59, 0.3);
}

.promo-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
  max-width: 500px;
}

.promo-validity {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #8d6e63;
  font-style: italic;
}

/* ===============================
   IMAGE SECTION
   =============================== */
.promo-image {
  animation: fadeInRight 0.8s ease 0.4s both;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.promo-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 2048 / 1360;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.promo-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.promo-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ===============================
   BADGE
   =============================== */
.promo-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
  border: 4px solid white;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.promo-badge.new {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.promo-badge.party {
  background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.badge-discount {
  font-family: 'Alfa Slab One', cursive;
  font-size: 28px;
  color: #2c1810;
  line-height: 1;
}

.badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2c1810;
  text-transform: uppercase;
}

/* ===============================
   NAVIGATION - DOTS & ARROWS
   =============================== */
.promo-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(33, 150, 243, 0.3);
}

.dot.active {
  background: #1565C0;
  width: 40px;
  border-radius: 10px;
  border-color: #1565C0;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2196F3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.promo-arrow:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.promo-arrow.prev {
  left: 30px;
}

.promo-arrow.next {
  right: 30px;
}

/* ===============================
   RESPONSIVE - TABLET (1024px)
   =============================== */
@media (max-width: 1024px) {
  .promo-banner-section {
    padding: 40px 3%;
    min-height: auto;
    margin-top: 120px;
  }

  .promo-banner-section.promo-home {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .promo-slider-container {
    min-height: 450px;
  }

  .promo-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .promo-text {
    order: 2;
  }

  .promo-image {
    order: 1;
  }

  .promo-title {
    font-size: 42px;
  }

  .promo-description {
    font-size: 16px;
    max-width: 90%;
    margin: 0 auto 25px;
  }

  .promo-image-wrapper {
    max-width: 700px;
  }
}

/* ===============================
   RESPONSIVE - MOBILE (768px) - ARROW FIX
   =============================== */
@media (max-width: 768px) {
  .promo-banner-section {
    margin-top: 140px;
    margin-bottom: 40px;
    padding: 30px 15px 100px;
    min-height: auto;
  }

  .promo-banner-section.promo-home {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 20px 15px 80px !important;
    background: #ffffff !important;
  }

  .promo-slider-container {
    position: relative;
    width: 100%;
    min-height: 550px;
    height: auto;
  }

  .promo-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: auto !important;
    min-height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    pointer-events: none;
  }

  .promo-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    pointer-events: auto;
  }

  .promo-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    width: 100%;
  }

  /* Gambar di atas */
  .promo-image {
    order: 1;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
  }

  .promo-image-wrapper {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 2048 / 1360;
    border-radius: 12px;
    margin: 0;
    position: relative;
  }

  .promo-badge {
    width: 60px;
    height: 60px;
    top: 8px;
    right: 8px;
    border: 3px solid white;
  }

  .badge-discount {
    font-size: 18px;
  }

  .badge-text {
    font-size: 9px;
  }

  /* Text di bawah */
  .promo-text {
    order: 2;
    text-align: center;
    padding: 0 10px;
  }

  .promo-tag {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .promo-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .promo-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto 15px;
    max-width: 100%;
  }

  .promo-validity {
    font-size: 12px;
    margin-top: 8px;
  }

  /* ARROWS - POSITIONED RELATIVE TO SLIDER CONTAINER */
  .promo-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    /* Position di area gambar (sekitar 100-150px dari top) */
    top: 120px;
    transform: none;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2196F3;
    transition: all 0.3s ease;
  }

  .promo-arrow:active {
    transform: scale(0.95);
    background: #2196F3;
    color: white;
  }

  .promo-arrow.prev {
    left: 15px;
  }

  .promo-arrow.next {
    right: 15px;
  }

  /* Dots - positioned at bottom */
  .promo-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 24px;
  }
}

/* ===============================
   RESPONSIVE - EXTRA SMALL (480px)
   =============================== */
@media (max-width: 480px) {
  .promo-banner-section {
    margin-top: 120px;
    padding: 20px 10px 90px;
  }

  .promo-banner-section.promo-home {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 15px 10px 70px !important;
    background: #ffffff !important;
  }

  .promo-slider-container {
    min-height: 500px;
  }

  .promo-title {
    font-size: 24px;
  }

  .promo-description {
    font-size: 13px;
  }

  .promo-tag {
    font-size: 11px;
    padding: 5px 14px;
  }

  .promo-image-wrapper {
    border-radius: 10px;
  }

  .promo-badge {
    width: 55px;
    height: 55px;
  }

  .badge-discount {
    font-size: 16px;
  }

  .badge-text {
    font-size: 8px;
  }

  /* Arrow adjustment for smaller screens */
  .promo-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 160px;
    /* Disesuaikan untuk layar kecil */
  }

  .promo-arrow.prev {
    left: 12px;
  }

  .promo-arrow.next {
    right: 12px;
  }
}


/* ==================== MENU SECTION ==================== */
.menu-section {
  padding: 100px 5%;
  background: #fff;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-header h2 {
  font-size: 50px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.menu-header p {
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

/* Category Filter (Desktop) */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Tombol kategori umum */
.category-btn {
  padding: 12px 30px;
  background: #f8f5f0;
  border: 2px solid transparent;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: #1565C0;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  /* ?? penting untuk scroll horizontal */
}

.category-btn:hover {
  background: #fff;
  border-color: #1565C0;
}

.category-btn.active {
  background: #ffeb35;
  color: #1565C0;
  border-color: #ffeb35;
}

/* ?? Responsif - tampilan mobile (scrollable category) */
@media (max-width: 768px) {
  .category-filter {
    justify-content: flex-start;
    /* biar mulai dari kiri */
    overflow-x: auto;
    /* aktifkan scroll horizontal */
    flex-wrap: nowrap;
    /* jangan turun ke bawah */
    gap: 10px;
    padding: 10px 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* smooth scroll di iOS */
  }

  /* Hilangkan scrollbar tapi tetap bisa digeser */
  .category-filter::-webkit-scrollbar {
    display: none;
  }

  /* Sedikit padding agar awal & akhir scroll tidak kepotong */
  .category-filter::before,
  .category-filter::after {
    content: "";
    flex: 0 0 10px;
  }

  .category-btn {
    flex: 0 0 auto;
    /* biar lebar tombol tidak menciut */
    padding: 10px 20px;
    font-size: 14px;
  }
}


/*---------------------- Products Grid----------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f8f5f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffd700;
  color: #1565C0;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info {
  padding: 25px;
}

.product-category {
  font-size: 12px;
  color: #1565C0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 10px;
}

.product-description {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* jumlah baris yang mau ditampilkan */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.product-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-btn {
  padding: 12px 30px;
  background: #ffd700;
  color: #1565C0;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.view-btn:hover {
  background: #ffd700;
  transform: scale(1.05);
}

/*---------------------- Show More Button ----------------------------- */
.show-more-container {
  text-align: center;
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}

.show-more-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1565C0, transparent);
  opacity: 0.2;
}

.show-more-btn {
  padding: 16px 45px;
  background: linear-gradient(135deg, #1565C0 0%, #0d47a1 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
  position: relative;
  overflow: hidden;
}

.show-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.show-more-btn:hover::before {
  width: 300px;
  height: 300px;
}

.show-more-btn:hover {
  background: linear-gradient(135deg, #0d47a1 0%, #1565C0 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
}

.show-more-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.show-more-btn .arrow-down {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
  display: inline-block;
}

.show-more-btn.active .arrow-down {
  transform: rotate(180deg);
}

.show-more-container.hidden {
  display: none;
}

/* Animasi fade-in untuk produk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animasi muncul smooth */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: none;
  opacity: 0;
  transform: translateY(40px);
}

.product-card.visible-item {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Transisi berurutan (delay muncul satu-satu) */
.product-card.fade-in {
  animation: fadeInCascade 0.6s ease forwards;
}

@keyframes fadeInCascade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==================== MODAL DETAIL ==================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  border-radius: 25px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #3b1a00;
  color: #fff;
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  background: #f8f5f0;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  /* hilangkan padding */
}

.modal-image img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  /* biar gak melebihi tinggi layar */
  object-fit: contain;
}

.modal-body {
  padding: 40px;
}

.modal-category {
  font-size: 14px;
  color: #1565C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 36px;
  font-weight: 800;
  color: #1565C0;
  margin-bottom: 25px;
}

.modal-description {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 30px;
}

.modal-details {
  background: #f8f5f0;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.modal-details h4 {
  font-size: 18px;
  color: #1565C0;
  margin-bottom: 15px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #000000;
}

.detail-item i {
  color: #ffd700;
  font-size: 18px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .menu-banner {
    height: 50vh;
    min-height: 350px;
    margin-top: 100px;
  }

  .banner-title {
    font-size: 56px;
  }

  .menu-header h2 {
    font-size: 38px;
  }

  /* ? Tablet: 2 kolom */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .modal-image img {
    max-height: 70vh;
  }
}

@media (max-width: 768px) {

  /* ===== Banner/Menu Section ===== */
  .menu-banner {
    height: auto;
    min-height: 260px;
    margin-top: 80px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    text-align: center;
  }

  .banner-subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
  }

  .banner-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-description {
    font-size: 14px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }

  /* ===== Menu Section ===== */
  .menu-section {
    padding: 40px 4%;
  }

  .menu-header h2 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
  }

  /* ===== Category Filter (scrollable horizontally) ===== */
  .category-filter {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 10px 20px;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .category-btn {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 25px;
    scroll-snap-align: start;
  }

  /* ===== Products Grid (2 kolom rapi) ===== */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .product-card {
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
  }

  .product-image {
    height: 160px;
  }

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

  .product-info {
    padding: 15px;
    text-align: center;
  }

  .product-category {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .product-name {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .product-description {
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  .view-btn {
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 20px;
  }

  /* ===== Modal Detail (Mobile) ===== */
  .modal-content {
    width: 95%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 20px;
  }

  .modal-image img {
    max-height: 50vh;
    object-fit: contain;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .modal-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .modal-details {
    padding: 20px;
    border-radius: 10px;
  }

  .modal-details h4 {
    font-size: 16px;
  }

  .detail-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-item {
    font-size: 13px;
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}






/* ===== CONTACT SECTION WRAPPER ===== */
.contact-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 20px 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

body.show-content .contact-section {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT CONTAINER ===== */
.contact-container {
  max-width: 1200px;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  margin-top: 120px;
}

/* ===== CONTACT LEFT ===== */
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact-left h1 {
  font-size: 2.5rem;
  color: #1565C0;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-left p {
  font-size: 1.05rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 15px;
  border: 2px solid #fbbf24;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1565C0 0%, #1e3a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text h3 {
  color: #1565C0;
  font-size: 1.05rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info-text p {
  color: #1e3a8a;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* ===== CONTACT RIGHT (FORM) ===== */
.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  display: block;
  color: #1565C0;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #fffbeb;
  color: #1e3a8a;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #1565C0;
  background: white;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #94a3b8;
}

/* ===== CAPTCHA ===== */
.contact-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  border: 2px solid #fbbf24;
  margin-top: 5px;
}

.contact-captcha input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #1565C0;
}

.contact-captcha label {
  margin: 0;
  color: #1e3a8a;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

/* ===== SUBMIT BUTTON ===== */
.contact-submit-btn {
  background: linear-gradient(135deg, #1565C0 0%, #1e3a8a 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: inherit;
}

.contact-submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .contact-section {
    /* sedikit lebih rapat di tablet */
    padding: 120px 18px 42px;
  }

  .contact-container {
    width: 94%;
    padding: 40px 28px;
    /* kurangi padding agar konten lebih rapat */
    margin-top: 80px;
    /* kurangi jarak ke atas */
  }

  .contact-left h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 968px) {
  .contact-section {
    /* small tablet / large phones */
    padding: 110px 18px 36px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 32px 22px;
    /* rapatkan padding */
    gap: 28px;
    /* kurangi jarak antar blok */
    margin-top: 60px;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left h1 {
    font-size: 2rem;
  }

  .contact-info-item {
    justify-content: center;
  }
}

@media (max-width: 640px) {

  /* mobile portrait & small tablets */
  .contact-section {
    padding: 90px 12px 32px;
    /* berkurang agar konten tidak terlalu jauh */
  }

  .contact-container {
    width: 96%;
    padding: 22px 16px;
    /* lebih compact */
    gap: 18px;
    border-radius: 16px;
    margin-top: 50px;
    /* lebih kecil supaya header tidak terlalu jauh */
  }

  .contact-left h1 {
    font-size: 1.6rem;
  }

  .contact-left p {
    font-size: 0.95rem;
  }

  .contact-info-item {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .contact-form-group input,
  .contact-form-group select,
  .contact-form-group textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .contact-submit-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  /* small phones */
  .contact-container {
    padding: 18px 12px;
    /* rapatkan lagi */
    margin-top: 40px;
  }

  .contact-left h1 {
    font-size: 1.4rem;
  }

  .contact-info-item {
    gap: 10px;
    padding: 14px 14px;
  }
}


/* /////////////CAREER SECTION ////////////////*/
.career-hero {
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.career-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.career-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(21, 101, 192, 0.2);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

/* @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(30px, -30px) rotate(5deg); }
      50% { transform: translate(-20px, 20px) rotate(-5deg); }
      75% { transform: translate(20px, 30px) rotate(3deg); }
  } */

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: particleFloat 15s infinite;
}

/* .particle:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
  .particle:nth-child(2) { width: 60px; height: 60px; top: 60%; right: 15%; animation-delay: 2s; }
  .particle:nth-child(3) { width: 100px; height: 100px; bottom: 20%; left: 20%; animation-delay: 4s; }
  .particle:nth-child(4) { width: 50px; height: 50px; top: 40%; right: 25%; animation-delay: 6s; } */

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.6;
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-content h1 {
  font-size: 4em;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: -1px;
}

.hero-content h1 .highlight {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-content p {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-primary {
  background: white;
  color: #1565C0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 20px;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.stat-number {
  font-size: 3em;
  font-weight: 900;
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1em;
  opacity: 0.9;
  font-weight: 500;
}

/* Jobs Section */
.jobs-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1em;
  color: #666;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* CAREER FILTER */
/* ==================== FILTER SECTION - MODERN & CLEAN ==================== */
.filter-section {
  background: white;
  padding: 35px 30px;
  margin: -60px auto 50px;
  max-width: 1200px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(21, 101, 192, 0.08);
}

/* Filter Header */
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f4f8;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-title {
  font-size: 1.5rem;
  color: #1565C0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
}

.filter-title i {
  font-size: 1.3rem;
}

.jobs-count {
  background: linear-gradient(135deg, #1565C0 0%, #0d47a1 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.jobs-count span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Filter Controls */
.filter-controls {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.filter-group {
  position: relative;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.filter-group label i {
  font-size: 1rem;
  color: #1565C0;
  width: 18px;
  text-align: center;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8ecf1;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  background: #fafbfc;
  color: #2c3e50;
}

.filter-group input::placeholder {
  color: #a0aec0;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #1565C0;
  background: white;
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.08);
  transform: translateY(-1px);
}

.filter-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231565C0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* Filter Actions */
.filter-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.btn-filter {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-apply {
  background: linear-gradient(135deg, #1565C0 0%, #0d47a1 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.btn-apply:active {
  transform: translateY(0);
}

.btn-reset {
  background: white;
  color: #64748b;
  border: 2px solid #e8ecf1;
  padding: 14px 24px;
}

.btn-reset:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #475569;
}

/* Active Filters */
.active-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f0f4f8;
}

.active-filters:empty {
  display: none;
}

.filter-tag {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565C0;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: 1px solid rgba(21, 101, 192, 0.2);
  transition: all 0.2s ease;
}

.filter-tag:hover {
  background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.2);
}

.filter-tag i {
  cursor: pointer;
  transition: all 0.2s ease;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.15);
}

.filter-tag i:hover {
  transform: rotate(90deg) scale(1.2);
  background: rgba(21, 101, 192, 0.3);
}

/* No Jobs Message */
.no-jobs {
  text-align: center;
  padding: 80px 20px;
  color: #999;
  background: #fafbfc;
  border-radius: 16px;
  margin-top: 30px;
}

.no-jobs i {
  font-size: 5rem;
  color: #e0e7ef;
  margin-bottom: 25px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.7;
  }
}

.no-jobs h3 {
  font-size: 1.6rem;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 700;
}

.no-jobs p {
  font-size: 1rem;
  color: #94a3b8;
}

/* Job Meta */
.job-meta {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.job-badge {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-fulltime {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #b1dfbb;
}

.badge-parttime {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  border: 1px solid #ffd93d;
}

.badge-contract {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  color: #0c5460;
  border: 1px solid #abdde5;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 992px) {
  .filter-controls {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .filter-section {
    padding: 30px 25px;
  }

  .filter-title {
    font-size: 1.3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .filter-section {
    margin: -30px 15px 30px;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .filter-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .filter-title {
    font-size: 1.2rem;
  }

  .jobs-count {
    align-self: stretch;
    justify-content: center;
  }

  .filter-controls {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .filter-group label {
    font-size: 0.85rem;
  }

  .filter-group input,
  .filter-group select {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .filter-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .btn-filter {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .active-filters {
    margin-top: 15px;
    padding-top: 15px;
  }

  .filter-tag {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .no-jobs {
    padding: 60px 20px;
  }

  .no-jobs i {
    font-size: 4rem;
  }

  .no-jobs h3 {
    font-size: 1.3rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .filter-section {
    margin: -20px 10px 20px;
    padding: 20px 15px;
  }

  .filter-title {
    font-size: 1.1rem;
  }

  .filter-title i {
    font-size: 1rem;
  }

  .jobs-count {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .btn-filter {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* ==================== JOB CARD STYLES ==================== */
/* Job Card Structure */
.job-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.job-card-content {
  flex-grow: 1;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-card:hover::before {
  transform: scaleY(1);
}

.job-header {
  margin-bottom: 20px;
}

.job-title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.job-department {
  display: inline-block;
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
}

.job-details {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.95em;
}

.job-detail svg {
  width: 18px;
  height: 18px;
}

.job-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 15px 0;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.job-apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.job-apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 235, 53, 0.4);
}

/* Job Card Enhancements */
.job-meta {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.job-badge {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-fulltime {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-parttime {
  background: #fff3e0;
  color: #f57c00;
}

.badge-contract {
  background: #e3f2fd;
  color: #1565c0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .job-card {
    padding: 20px;
  }

  .job-title {
    font-size: 1.2em;
  }

  .job-description {
    font-size: 0.85rem;
    max-height: 70px;
    -webkit-line-clamp: 3;
  }

  .job-apply-btn {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .career-hero {
    min-height: auto;
    padding: 80px 20px;
  }

  .particle {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1.1em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.2em;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination-btn {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #666;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  border-color: #1565C0;
  color: #1565C0;
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn.active {
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  color: white;
  border-color: transparent;
}


/* ===== RESPONSIVE MOBILE HERO CAREER ===== */
@media (max-width: 768px) {
  .career-hero {
    min-height: auto;
    padding: 60px 20px 40px;
    /* Kurangi padding atas bawah */
    margin-top: 100px;
    /* Kurangi margin top */
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2em;
    /* Lebih kecil */
    margin-bottom: 15px;
    /* Kurangi margin */
  }

  .hero-content p {
    font-size: 1em;
    margin-bottom: 25px;
    /* Kurangi margin */
    line-height: 1.5;
  }

  .hero-cta {
    margin-bottom: 30px;
    /* Kurangi margin */
  }

  .cta-button {
    padding: 12px 30px;
    /* Lebih compact */
  }

  .hero-stats {
    gap: 20px;
    /* Kurangi gap */
  }

  .stat-item {
    padding: 15px;
    /* Kurangi padding */
  }

  .stat-number {
    font-size: 2em;
    /* Lebih kecil */
    margin-bottom: 3px;
  }

  .stat-label {
    font-size: 0.85em;
  }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 480px) {
  .career-hero {
    padding: 50px 15px 35px;
    /* Lebih kecil lagi */
    margin-top: 100px;
  }

  .hero-content h1 {
    font-size: 1.8em;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .hero-cta {
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 0.95em;
  }

  .hero-stats {
    gap: 15px;
  }

  .stat-item {
    padding: 12px 10px;
  }

  .stat-number {
    font-size: 1.8em;
  }

  .stat-label {
    font-size: 0.8em;
  }
}

/* ============================================
   DELIVER SECTION
   ============================================ */
/* ============================================
   Section wrapper dengan gradient background
   ============================================ */
.deliver-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.deliver-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 177, 79, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.deliver-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Content container */
.deliver-online {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* Badge */
.deliver-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Title */
.deliver-online h3 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -1px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.deliver-subtext {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform container */
.deliver-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

/* ============================================
   ?? GLASSMORPHISM BUTTON STYLE (TETAP SAMA)
   ============================================ */
.deliver-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 35px 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 220px;
  overflow: hidden;
  color: #333;
  /* Default color */
}

.deliver-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.deliver-btn:hover::before {
  opacity: 1;
}

.btn-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deliver-btn img {
  height: 70px;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.btn-text {
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.btn-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* ============================================
   ?? HOVER EFFECTS (TETAP SAMA)
   ============================================ */
.deliver-btn:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: currentColor;
}

.deliver-btn:hover .btn-icon {
  transform: scale(1.1) rotate(5deg);
}

.deliver-btn:hover img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.deliver-btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.deliver-btn:active {
  transform: translateY(-4px) scale(0.98);
}

/* ============================================
   ?? PLATFORM SPECIFIC COLORS (DINAMIS)
   ============================================ */

/* Platform yang sudah ada */
.deliver-btn.grabfood {
  color: #00B14F;
}

.deliver-btn.grabfood:hover {
  background: linear-gradient(135deg, rgba(0, 177, 79, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.deliver-btn.gofood {
  color: #D5001C;
}

.deliver-btn.gofood:hover {
  background: linear-gradient(135deg, rgba(213, 0, 28, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.deliver-btn.shopeefood {
  color: #FF5722;
}

.deliver-btn.shopeefood:hover {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* Tambahan platform baru (opsional) */
.deliver-btn.travelokaeats {
  color: #3A7BD5;
}

.deliver-btn.travelokaeats:hover {
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* Default untuk platform yang belum punya warna */
.deliver-btn:not(.grabfood):not(.gofood):not(.shopeefood):not(.travelokaeats) {
  color: #667eea;
}

.deliver-btn:not(.grabfood):not(.gofood):not(.shopeefood):not(.travelokaeats):hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* ============================================
   ?? RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .deliver-online h3 {
    font-size: 36px;
  }

  .deliver-subtext {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .deliver-platforms {
    gap: 20px;
  }

  .deliver-btn {
    width: 180px;
    padding: 30px 20px;
  }

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

  .deliver-btn img {
    height: 60px;
  }
}

/* ============================================
   ?? RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .deliver-section {
    padding: 70px 0;
  }

  .deliver-section::before,
  .deliver-section::after {
    width: 300px;
    height: 300px;
  }

  .deliver-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .deliver-online h3 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .deliver-subtext {
    font-size: 15px;
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .deliver-platforms {
    gap: 20px;
    padding: 0 15px;
  }

  .deliver-btn {
    width: 160px;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .btn-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .deliver-btn img {
    height: 55px;
  }

  .btn-text {
    font-size: 13px;
  }

  .btn-arrow {
    bottom: 12px;
    right: 12px;
    font-size: 18px;
  }

  /* Simplified hover for mobile */
  .deliver-btn:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .deliver-online h3 {
    font-size: 28px;
  }

  .deliver-subtext {
    font-size: 14px;
  }

  .deliver-btn {
    width: 145px;
    padding: 20px 15px;
  }

  .btn-icon {
    width: 50px;
    height: 50px;
  }

  .deliver-btn img {
    height: 48px;
  }

  .btn-text {
    font-size: 12px;
  }
}



/* ==================== CAREER DETAIL STYLES ==================== */
/* Career Detail Hero Section */
.career-detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  margin-top: 160px;
}

.career-detail-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -80px;
  animation: float 15s ease-in-out infinite;
}

.career-detail-hero::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(21, 101, 192, 0.2);
  border-radius: 50%;
  bottom: -80px;
  left: -60px;
  animation: float 12s ease-in-out infinite reverse;
}

.career-detail-hero .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: particleFloat 15s infinite;
}

.career-detail-hero .particle:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.career-detail-hero .particle:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 65%;
  right: 20%;
  animation-delay: 2s;
}

.career-detail-hero .particle:nth-child(3) {
  width: 70px;
  height: 70px;
  bottom: 25%;
  left: 25%;
  animation-delay: 4s;
}

.career-detail-hero .particle:nth-child(4) {
  width: 35px;
  height: 35px;
  top: 45%;
  right: 30%;
  animation-delay: 6s;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.job-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.meta-item i {
  font-size: 1.2rem;
  color: #ffeb35;
}

.meta-item span {
  font-weight: 500;
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-info {
  background: #17a2b8;
  color: white;
  border: none;
}

.cta-info:hover {
  background: #138496;
  transform: translateY(-3px);
}

.cta-primary {
  background: white;
  color: #1565C0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-secondary {
  background: #25D366;
  color: white;
}

.cta-secondary:hover {
  background: #128C7E;
  transform: translateY(-3px);
}

.cta-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  backdrop-filter: blur(10px);
}

.cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
}

/* Job Detail Content */
.job-detail-content {
  padding: 80px 0;
  background: #f8f9fa;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ==================== DETAIL PAGE - FULL DESCRIPTION ==================== */
.job-detail-content .job-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin: 20px 0;
  max-height: none;
  /* ? Tidak ada batasan tinggi */
  overflow: visible;
  /* ? Tampil semua */
  display: block;
  /* ? Tidak pakai line-clamp */
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  text-overflow: unset;
}

/* ==================== LIST PAGE - TRUNCATED DESCRIPTION ==================== */
.jobs-grid .job-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 15px 0;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* ? Maksimal 3 baris */
  -webkit-box-orient: vertical;
}

.job-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.job-section h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 3px solid #1565C0;
  padding-bottom: 10px;
}

.job-description,
.job-details {
  line-height: 1.8;
  color: #555;
}

.job-description p,
.job-details p {
  margin-bottom: 15px;
}

.sidebar-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.sidebar-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border-bottom: 2px solid #1565C0;
  padding-bottom: 10px;
}

.sidebar-info {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.info-item i {
  color: #1565C0;
  font-size: 1.2rem;
  margin-top: 3px;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 5px;
}

.info-item span {
  color: #666;
  font-size: 0.95rem;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar-btn.primary {
  background: linear-gradient(135deg, #ffeb35 0%, #1565C0 100%);
  color: white;
}

.sidebar-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(21, 101, 192, 0.4);
}

.sidebar-btn.secondary {
  background: #25D366;
  color: white;
}

.sidebar-btn.secondary:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -20px) rotate(3deg);
  }

  50% {
    transform: translate(-15px, 15px) rotate(-3deg);
  }

  75% {
    transform: translate(15px, 20px) rotate(2deg);
  }
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.6;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .career-detail-hero {
    min-height: 50vh;
    margin-top: 140px;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 2.8em;
  }

  .hero-content p {
    font-size: 1.1em;
  }

  .job-meta {
    gap: 20px;
  }

  .meta-item {
    padding: 10px 18px;
  }

  .job-detail-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    padding: 0 30px;
  }

  .job-section {
    padding: 30px;
  }

  .sidebar-card {
    padding: 25px;
  }
}

/* Mobile (320px - 767px) - FIXED */
@media (max-width: 767px) {
  .career-detail-hero {
    min-height: auto;
    margin-top: 90px;
    padding: 40px 15px 50px;
  }

  .career-detail-hero::before,
  .career-detail-hero::after {
    display: none;
  }

  .career-detail-hero .particle {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.8em;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95em;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .job-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 20px 0;
  }

  .meta-item {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 15px;
    font-size: 0.9em;
  }

  .meta-item i {
    font-size: 1rem;
  }

  .meta-item span {
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 25px;
  }

  .cta-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95em;
    border-radius: 30px;
  }

  .job-detail-content {
    padding: 40px 0;
  }

  .job-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .job-section {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .job-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .job-description,
  .job-details {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .sidebar-card {
    position: static;
    padding: 20px;
    border-radius: 12px;
  }

  .sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .info-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .info-item i {
    font-size: 1.1rem;
    margin-top: 2px;
  }

  .info-item strong {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }

  .info-item span {
    font-size: 0.85rem;
  }

  .sidebar-actions {
    gap: 10px;
  }

  .sidebar-btn {
    padding: 12px 15px;
    font-size: 0.95em;
    border-radius: 8px;
  }
}

/* Small Mobile (320px - 479px) - EXTRA OPTIMIZATION */
@media (max-width: 479px) {
  .career-detail-hero {
    margin-top: 95px;
    padding: 35px 12px 45px;
  }

  .hero-content h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .meta-item {
    padding: 10px 12px;
    font-size: 0.85em;
  }

  .meta-item i {
    font-size: 0.95rem;
  }

  .meta-item span {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 12px 18px;
    font-size: 0.9em;
  }

  .job-detail-grid {
    padding: 0 12px;
  }

  .job-section {
    padding: 18px;
  }

  .job-section h2 {
    font-size: 1.2rem;
  }

  .sidebar-card {
    padding: 18px;
  }

  .info-item {
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .career-detail-hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 4em;
  }

  .job-detail-grid {
    max-width: 1300px;
  }
}

/* ==================== PROMO VIDEO STYLE ==================== */
.promo-video-section {
  padding: 80px 20px;
  background-color: #fff;
}

.promo-video-container {
  max-width: 1400px;
  margin: 0 auto;
}

.promo-video-title {
  font-family: 'Montserrat', cursive;
  font-size: 54px;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 80px;
  line-height: 1.2;
  text-align: center;
}

/* Wrapper video */
.promo-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Box video */
.promo-video-box {
  width: 95vw;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  position: relative;
}

/* Video element */
.promo-video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  background: #000;
}

/* Mobile - Sama seperti desktop */
@media screen and (max-width: 768px) {
  .promo-video-section {
    padding: 40px 0;
  }

  .promo-video-box {
    width: 100vw;
    aspect-ratio: 16 / 9;
    margin: 0;
  }

  .promo-video-box video {
    object-fit: contain;
    border-radius: 0;
    /* Hilangkan border radius di mobile agar fullwidth */
  }

  .promo-video-title {
    margin-bottom: 30px;
    font-size: 28px;
    padding: 0 15px;
  }

  .promo-video-wrapper {
    margin: 0;
    padding: 0;
  }
}

/* ANIMASI LOADING dengan VIDEO */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.loader-box {
  text-align: center;
  width: 280px;
}

/* VIDEO/GIF CONTAINER */
.loader-video-container {
  margin-bottom: 30px;
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-video-container video,
.loader-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.loader-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border-radius: 10px;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: #f5c400;
  transition: width 0.3s ease;
}

.loader-text {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

#pageLoader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}