/*!

Theme Name: TAJR

Theme URI: 

Author: Gus Surya

Author URI: https://theamertajungleretreat.com/

Description: The Amerta Jungle Retreat Theme

Version: 1.0.0

License: GNU General Public License v2 or later

License URI: LICENSE

Text Domain: International 

Tags: custom

*/

/* ====================================
          TAJR WEBSITE CSS THEME
   ==================================== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2d2d2d;
  --cream: #f5f3f0;
  --beige: #e8e6e3;
  --gold: #b8956a;
  --white: #ffffff;
  --text-dark: #2d2d2d;
  --text-gray: #6b6b6b;
  --border-light: #d4d2cf;
  --green-logo:#1d5647;
  --light-green:rgb(6, 147, 18);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: auto !important;
}


html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

.container-fluid {
  max-width: 100%;
  /* padding: 40px 0; */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
}
/* 
.content-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.content-description {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
} */

/* Top Bar */
.container {
  width: 100%;
  /* left: -50%; */
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

header,
.top-header,
.navbar {
  width: 100%;
  padding: 0 20px;
}

header.header--scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1025px) {
  header.header--scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1200;
  }

  body.tajr-header-fixed {
    padding-top: 140px;
  }
}

.top-header,
.navbar,
.logo-header,
.nav-menu a {
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.top-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  height: 90px;
  font-size: 15px;
}

.top-header .container {
  height: 100%;
}

.top-content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transform-origin: center;
  will-change: transform;
}

header.header--scrolled .top-header {
  height: 90px;
}

header.header--scrolled .logo-header {
  transform: scale(0.75);
}

.club-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.club-link:hover {
  color: var(--light-green);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* .language {
  color: var(--text-gray);
  font-size: 13px;
} */

.btn-availability {
  background: var(--green-logo);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  /* letter-spacing: 0.05em; */
  transition: var(--transition);
}

.btn-availability:hover {
  background: var(--light-green);
}

/* Navigation */
.header-container {
  max-width: 1200px;
  width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: relative;
  background: var(--white);
  padding: 10px 0;
  z-index: 1000;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
  display: inline-block;
}

.nav-menu a::after,
.nav-menu a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--green-logo), var(--light-green));
  left: 0;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}

/* Garis bawah */
.nav-menu a::after {
  bottom: -4px;
  transform-origin: right;
}
/* Garis atas */
.nav-menu a::before {
  top: -4px;
  transform-origin: left;
}

.nav-menu a:hover {
  color: var(--light-green);
}

.nav-menu a:hover::after,
.nav-menu a:hover::before {
  transform: scaleX(1);
}

/* Dropdown wrapper */
.nav-menu .dropdown {
  position: relative;
}

/* Link utama dropdown */
.nav-menu .dropdown > a {
  /* display: inline-flex; */
  align-items: center;
  gap: 6px;
}

/* Panel dropdown */
.dropdown-list {
  text-align: center;
  position: absolute;
  top: 100%;              /* tepat di bawah link utama */
  left: 0;
  min-width: 180px;
  padding: 12px 0;
  margin: 0;
  list-style: none;       /* hilangkan bullet */
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: none;          /* default: tersembunyi */
  flex-direction: column;
  z-index: 1000;
}

/* Tampilkan saat hover */
.nav-menu .dropdown:hover .dropdown-list {
  display: flex;
}

@media (max-width: 768px) {
  .nav-menu .dropdown:hover .dropdown-list {
    display: none;
  }

  .nav-menu .dropdown-list {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  .nav-menu .dropdown.is-open .dropdown-list {
    display: block;
  }

  .nav-menu .dropdown-list li {
    width: 100%;
  }

  .nav-menu .dropdown-list a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
  }
}

/* Item di dalam dropdown */
.dropdown-list a {
  display: flex;
  text-align: center;
  padding: 8px 20px;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.dropdown-list a:hover {
  background: var(--cream);
  color: var(--light-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle .icon-bar {
  width: 40px;
  height: 2px;
  background-color: var(--text-dark);
  display: block;
}

.nav-toggle span {
  width: 45px;
  height: 2px;
  /* background: var(--primary-dark); */
  transition: var(--transition);
}

.nav-toggle .menu-text {
  display: none;
}

/* .nav-close-item {
  display: none;
} */

/* .nav-close {
  background: transparent;
  border: none;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: var(--primary-dark);
  padding: 0;
} */

  .mobile-bottom-bar {
    display: none;
  }

  @media (max-width: 768px) {
    /* ... existing mobile styles ... */
    
    /* Mobile Header Adjustments */
    .top-content {
      justify-content: center !important;
      position: relative;
    }

    .nav-toggle--top {
      display: flex !important;
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2300;
    }

    .club-link {
      display: none !important;
    }

    .top-bar-right {
      display: none !important;
    }
    
    .logo-header {
      transform: scale(0.9); /* Slightly smaller on mobile if needed */
    }

    /* Mobile Bottom Sticky Bar */
    .mobile-bottom-bar {
      background-color: #ffffff;
      display: flex !important;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60px;
      z-index: 2200;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
  
    .mobile-menu-btn {
      flex: 0 0 50% !important; /* Force exact 50% width */
      width: 50% !important;
      max-width: 50% !important;
      background: transparent !important;
      border: none !important;
      display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 5px;
      cursor: pointer;
      position: relative;
      height: 100%;
    }
    
    /* Ensure button background matches design (transparent or specific color) */
    .mobile-menu-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.5);
      z-index: -1;
      display: none;
    }
    
    .mobile-menu-btn .icon-bar {
      width: 40px;
      height: 2px;
      background-color: var(--text-dark);
      display: block;
      flex-shrink: 0 !important;
    }
  
    .mobile-menu-btn .btn-text {
      font-size: 15px;
      letter-spacing: 1px;
      color: var(--text-dark);
      margin-top: 2px;
    }

    .mobile-check-btn {
      flex: 0 0 50% !important; /* Force exact 50% width */
      width: 50% !important;
      max-width: 50% !important;
      background: var(--green-logo);
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 15px;
      font-family: var(--font-heading);
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 500;
    }
  
    /* Hide top header elements that might conflict or duplicate */
    .top-bar-right .btn-availability {
      display: none !important;
    }

    /* Full Screen Menu Overlay */
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100vh;
      background: #fcfcfc;
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
      padding-bottom: 100px;
      gap: 25px;
      transform: translateY(100%);
      transition: transform 0.4s ease-in-out;
      opacity: 0;
      visibility: hidden;
      z-index: 2100;
      box-shadow: none;
      pointer-events: none;
    }
  
    .nav-menu.active {
      transform: translateY(0);
      right: 0;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto;
    }

    /* Safety: if body has nav-open (overlay hitam), paksa menu tampil */
    body.nav-open .nav-menu {
      transform: translateY(0);
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto;
    }
    
    .nav-menu li {
      width: 100%;
      text-align: center;
      display: block !important; /* Ensure items are block */
      opacity: 1 !important;
      visibility: visible !important;
    }
    
    .nav-menu a {
      font-family: var(--font-heading);
      font-size: 15px;
      color: var(--text-dark);
      padding: 5px 0;
      border-bottom: none; /* Remove underlines if any */
      display: inline-block;
    }
    
    .nav-menu a::after,
    .nav-menu a::before {
      display: none; /* Remove hover lines for cleaner mobile look */
    }
    
    /* .nav-close-item {
      position: absolute;
      top: 20px;
      right: 20px;
      display: block;
      width: auto;
    } */
    
    /* .nav-close {
      color: var(--darkred);
      font-size: 36px;
      font-weight: 100;
    } */
  }

body.nav-open {
  overflow: hidden;
}

/* body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1990;
} */

@media (max-width: 768px) {
  .header-container {
    width: 100%;
    max-width: 100%;
  }

  .nav-toggle {
    display: flex; /* Kept for general visibility, though specific styles handle positioning */
  }

  /* .nav-close-item {
    display: block;
    width: 100%;
    text-align: right;
  } */

  /* Conflicting .nav-menu styles removed to prefer the full-screen overlay defined earlier */
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  /* max-width: 1400px; */
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  height: 630px;
  display: flex;
  flex-direction: column;   /* <- penting: arahkan flex ke VERTIKAL */
  justify-content: flex-end;/* sekarang flex-end = ke bawah */
  align-items: center;      /* center secara horizontal */
  overflow: hidden;
  padding-bottom: 60px;

}

/* .hero {
  position: relative;
  height: 100%;
} */

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(135deg, #ff4410, #bc2126); 
}*/


.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
  pointer-events: none; 
}

/* .hero-subtitle {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 16px;
  font-weight: 600;
} */

.hero-title {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  align-items: flex-end;
}

.hero-subtitle {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  align-items: flex-end;
}

.hero-description {
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--light-green);
  color: var(--white);
  border-color: var(--light-green);
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--light-green);
  color: var(--light-green);
}

.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Ad Segment */
.ad-segment {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
  font-family: var(--font-body);
}

.ad-segment .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left box */
.ad-segment-title {
  flex: 0 0 260px;
  background: var(--beige);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* letter-spacing: 0.15em; */
  text-transform: uppercase;
  font-size: 12px;
}

/* Optional: circle icon placeholder */
.ad-segment-title::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 18px;
  border-radius: 50%;
  border: 1px solid var(--text-dark);
  font-size: 15px;
}

.ad-segment-title h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

/* Middle description */
.ad-segment-description {
  flex: 1;
  font-size: 14px;
  color: var(--text-gray);
  /* line-height: 1.8; */
}

/* Right "Book Now" link */
.ad-segment-button a {
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  /* border-color: var(--light-gray); */
  position: relative;
  /* padding-bottom: 4px; */
  /* letter-spacing: 5px; */
  text-transform: uppercase;
}

.ad-segment-button a::after {
  content: "";
  position: absolute;
  left: 14%;
  bottom: 0;
  width: 70%;
  height: 1px;
  background: rgba(13, 67, 4, 0.227);
}

.ad-segment-button a:hover {
  color: rgba(29, 158, 15, 0.425);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .ad-segment .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-segment-title {
    width: 100%;
  }

  .ad-segment-button {
    margin-top: 12px;
  }
}

/* Section Intro */
.section-intro {
  width: 100%;
  justify-content: center;
  padding: 50px 0;
  background: var(--white);
}

/*SECTION FONT*/
.section-main-title {
  /* padding-bottom: 20px; */
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary-dark);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* SECTION LINE */
.section-main-title {
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.section-sub-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary-dark);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-main-title::before,
.section-main-title::after {
  content: "";
  flex: 0 0 500px;
  height: 1px;
  background: var(--light-green);
  opacity: 0.9;
}

/* Contoh, sesuaikan nama class dengan yang Anda pakai sekarang */
.section-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section-intro-title {
  font-size: 40px;
  letter-spacing: 0.25em;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-intro {
    padding: 40px 20px;
  }

  .section-intro-title {
    font-size: 26px;          /* lebih kecil di HP */
    letter-spacing: 0.15em;   /* kurangi spasi huruf */
    line-height: 1.4;
  }

  .section-intro p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* Body Sections (image-text blocks in main.html) */
.body-wrapper-1 {
  /* width: 1400px;  */
  padding: 30px 60px 60px 0;
  background: var(--white);
}

.body-wrapper-2 {
  padding: 30px 0 40px 60px;
  background: var(--white);
  }
 
.body-content,
.body-content-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.body-content-2 {
  grid-template-columns: 1fr 1.2fr;
}

.body-image,
.body-image-2 {
  width: 900px;
  height: 600px;
}

.body-image img,
.body-image-2 img {
  width: 900px;
  height: 100%;
  object-fit: cover;
}

.body-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.body-image-frame > img {
  display: block;
}

.body-image-frame .body-image-prev,
.body-image-frame .body-image-next {
  position: static;
}

.body-text,
.body-text-2 {
  max-width: 600px;
}

.body-title,
.body-title-2 {
  font-family: var(--font-heading);
  font-size: 35px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.body-content p,
.body-content-2 {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

.body-text-paragraph,
.body-text-paragraph-2 {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Body image Swiper (BODY 1, BODY 2, FACILITY) */
.body-image .swiper,
.body-image-2 .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.body-wrapper-1 .body-image-swiper,
.body-wrapper-2 .body-image-swiper {
  direction: ltr;
}

.body-wrapper-1 .body-image-swiper .swiper-button-prev,
.body-wrapper-1 .body-image-swiper .swiper-button-next,
.body-wrapper-2 .body-image-swiper .swiper-button-prev,
.body-wrapper-2 .body-image-swiper .swiper-button-next {
  position: static !important;
}

.body-image .button-group,
.body-image-2 .button-group {
  position: absolute;
  bottom: 1px;
  right: calc(100% - 900px);
  left: auto;
  /* transform: translateX(-10%); */
  display: flex;
  z-index: 5;
}

.body-image .swiper-pagination.swiper-pagination-bullets,
.body-image-2 .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 10;
}

/* Cards Section*/
.cards-section {
  padding: 30px 0;
  background: var(--white);
}

.cards-header {
  text-align: center;
  margin-bottom: 32px;
}

/* .cards-title {
  font-family: var(--font-heading);
  letter-spacing: 10px;
  text-transform: uppercase;
} */

.category-button {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 16px;
  /* border-radius: 999px; */
  border: 1px solid var(--border-light);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
  background: var(--green-logo);
  color: var(--white);
  border-color: var(--green-logo);
}

.cards-swiper {
  padding-bottom: 48px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-image-wrapper {
  height: 460px;
}

.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 28px 28px 24px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 12px;
}

.card-description {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.card-links {
  display: flex;
  gap: 20px;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white) !important;
  background: var(--green-logo) !important;
  width: 55px !important;
  height: 55px !important;
  /* border-radius: 50%; */
}

/* Review Section (guest reviews strip) */
.review-section {
  background: var(--cream);
  padding: 40px 0;
}

.review-section .container {
  display: grid;
  grid-template-columns: 0fr 0.2fr 0.2fr;
  justify-content: center;
  align-items: center;
  column-gap: 48px;
}

.review-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 160px;
}

.review-brand-image .review-logo-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}

.review-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.review-brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.18em;
}

.review-brand-sub {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-gray);
}

.review-rating {
  border-left: 1px solid var(--border-light);
  padding-left: 32px;
}

.review-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 5px;
}

.review-stars .star {
  font-size: 16px;
  color: #d0c3a4;
}

.review-stars .filled {
  color: var(--gold);
}

.review-score {
  margin-left: 12px;
  font-size: 14px;
}

.review-count {
  font-size: 13px;
  color: var(--text-gray);
}

.review-media {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 24px;
}

.review-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
}

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

.review-link {
  font-size: 14px;
  text-decoration: underline;
  color: var(--text-dark);
}

.review-link:hover {
  color: var(--light-green);
}

/* Image Collection Section */
.image-collection-slider .button-group {
  position: absolute;
  bottom: 1px;
  right: calc(100% - 900px );
  left: auto;
  /* transform: translateX(-10%); */
  display: flex;
  z-index: 5;
}

.image-collection-slider .swiper-button-prev,
.image-collection-slider .swiper-button-next {
  position: static;         
  width: 55px;
  height: 55px;
  border-radius: 0;
  background: var(--green-logo);
  color: var(--white);
}

.image-collection-swiper .swiper-slide {
  width: 900px;
}

.image-collection-swiper {
  position: relative;
}

.image-collection-slider .swiper {
  width: 100%;
  /* margin-bottom: 40px; */
}

.image-collection-slider .swiper {
  height: 600px;
}

.image-collection-slider .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 20px;
  left: 450px;
  transform: translateX(-50%);
  width: auto;
  color: var(--light-green);
}

/* Image-Text Layout */
.image-text-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.image-text-layout.reverse {
  direction: rtl;
}

.image-text-layout.reverse > * {
  direction: ltr;
}

/* .image-side {
  width: 100%;
  height: 100%;
  min-height: 500px;
} */

/* .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.elementor img.slide-image-img {
  width: 900px;
  height: 600px;
  object-fit: cover;
}

/* .text-side {
  padding: 30px 40px;
  background: var(--white);
} */

/* Image Destination Slider */
.image-destination {
  padding: 0 20px 80px 40px;
  background: var(--white);
  overflow: visible;
}

.image-destination-collection {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.image-destination-slide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
  /* padding: 2rem 0; */
}

.img-destination-media {
  width: 100%;
}

.elementor img.img-destination {
  width: 800px ;
  height: 600px;
  object-fit: cover ;
  max-width: none;
}

.image-destination-swiper .swiper-slide {
  width: 100% !important;
}

.img-destination-content {
  width: 300px;
  background: var(--white);
  /* padding: 40px 40px; */
}

.img-destination-title {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--primary-dark);
  /* margin-bottom: 1rem; */
  font-weight: 400;
}

.img-destination-description {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.img-destination-link {
  font-size: 0.875rem;
  color: var(--primary-dark);
  text-decoration: underline;
}

.img-destination-link:hover {
  color: var(--light-green);
}

.image-destination-collection .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 40px;
  left: 400px;
  transform: translateX(-50%);
  width: auto;
}

.image-destination-collection .swiper-pagination-bullet {
  background: var(--white) !important;
  opacity: 0.4 !important;
}

.image-destination-collection .swiper-pagination-bullet-active {
  background: var(--light-green) !important;
  opacity: 1 !important;
}

.image-destination .button-group {
  position: absolute;
  bottom: 8px;
  right: calc(100% - 800px);
  left: auto;
  display: flex;
  z-index: 5;
}

.image-destination .image-destination-prev,
.image-destination .image-destination-next {
  position: static;
  width: 90px;
  height: 90px;
  border-radius: 0;
  background: var(--light-green);
  color: var(--white);
}

.image-destination .swiper {
  margin-left: 0px;
  margin-right: 0px;
  overflow: visible;
}

.image-destination-collection .swiper-slide {
  width: 100%;
}

.image-destination-collection .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
  .image-destination-slide {
    grid-template-columns: 1fr;
  }

  .img-destination-content {
    padding: 2rem;
  }
}

/* Event Segment */
.event-segment {
  padding: 40px 0;
  background: var(--white);
}

.event-content {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 30px; */
}

.event-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.event-subtitle {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--green-logo);
}

.event-title {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--primary-dark);
  font-weight: 400;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 5rem;
  row-gap: 2.5rem;
  margin: 3rem auto;
}

.event-item {
  text-align: left;
}

.event-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.event-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.event-button-group {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.event-link {
  position: relative;
  font-size: 0.9375rem;
  color: var(--primary-dark);
  text-decoration: none;
  padding-bottom: 6px;
}

.event-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border-light);
}

.event-link:hover {
  color: var(--light-green);
}

@media (max-width: 768px) {
  .event-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-grid {
    grid-template-columns: 1fr;
    column-gap: 2rem;
  }

  /* .event-item {
    text-align: center;
  } */
}

/* Resort Overview Section */
.resort-overview {
  padding: 0;
  background: var(--white);
}

.resort-swiper {
  height: 100%;
  min-height: 500px;
}

.slide-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

/* Section Headers */
.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Accommodations Section */
.accommodations {
  padding: 5rem 0;
  background: var(--cream);
}

.room-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.room-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.room-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.room-image-wrapper {
  position: relative;
  height: 280px;
}

.room-swiper {
  height: 100%;
}

.room-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.room-content {
  padding: 2rem;
}

.room-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.room-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.room-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.link-detail,
.link-book {
  font-size: 0.875rem;
  color: var(--primary-dark);
  text-decoration: underline;
  transition: var(--transition);
}

.link-detail:hover,
.link-book:hover {
  color: rgb(6, 147, 18);
}

/* Experiences Section
.experiences {
  padding: 5rem 0;
  background: var(--white);
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experiences-content {
  padding: 2rem;
}

.experience-list {
  margin: 2rem 0 2.5rem;
}

.experience-item {
  margin-bottom: 1.75rem;
}

.experience-item h4 {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.experience-item p {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.experiences-slider {
  width: 100%;
}

.experiences-swiper {
  border-radius: 8px;
  overflow: hidden;
} */

.btn-link {
  display: inline-block;
  color: var(--primary-dark);
  text-decoration: underline;
  font-size: 0.875rem;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-link:hover {
  color: var(--light-green);
}

/* Instagram Section */
.sm-wrapper {
  padding: 0 0 80px 0;
  background: var(--white);
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.social-media-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}

.social-media-item:hover {
  opacity: 0.8;
}

/* Footer */
.footer-container {
  max-width: 1200px;
  width: auto;
  margin: 0 auto;
  padding: 40px;
  background: var(--beige);
}

.footer {
  background: var(--beige);
  color: var(--text-dark);
  padding: 2.5rem 0 2.25rem;
  /* width: 1400px; */
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-middle {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  /* gap: 0.75rem; */
}

.footer-legal-links {
  font-family: var(--font-body);
  color: var(--primary-dark);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--light-green);
}

.footer-address {
  margin-bottom: 20px;
}

.logo-image {
  width: 180px;
  height: 200px !important; 
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary-dark);
}

.brand-location {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-gray);
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-link i,
.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  color: var(--light-green);
  border-color: var(--light-green);
}

.footer-links-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* .footer-middle .footer-links-section {
  margin-top: 2.5rem;
} */

.footer-links-section a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links-section a:hover {
  color: var(--light-green);
}

.separator {
  color: var(--text-gray);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-info {
  font-family: var(--font-body);
  width: 350px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: right;
}

.footer-ownership {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 80px; /* more vertical breathing room on mobile */
  }

  .footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .footer-top,
  .footer-middle {
    flex-direction: row; /* Side-by-side on mobile too */
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .footer-top > div,
  .footer-middle > div {
    text-align: center;
    width: 50%;
  }

  .footer-logo {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .logo-image {
    width: 120px;
    height: auto;
  }

  .footer-social {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer-middle .footer-links-section {
    margin-top: 0;
  }

  .footer-links-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .footer-address {
    text-align: right;
    max-width: 100%;
    margin: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 8px;
  }

  .footer-ownership {
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--secondary-dark);
}

.swiper-pagination-bullet {
  background: var(--white) !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background: rgb(6, 147, 18) !important;
  opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-text-layout {
    grid-template-columns: 1fr;
  }
  
  .image-text-layout.reverse {
    direction: ltr;
  }
  
  .text-side {
    padding: 3rem 2rem;
  }
  
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
  }

  .top-content {
    justify-content: center;
    position: relative;
  }

  .top-middle-logo {
    margin: 0 auto;
  }

  .nav-toggle--top {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .club-link,
  .top-bar-right {
    display: none;
  }

  .container {
    max-width: 100%;
    width: 100%;
  }

  .header-container {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle span:not(.menu-text) {
    display: block;
    height: 2px;
    /* width: 100%; */
    /* background: var(--primary-dark); */
  }

  .nav-toggle .menu-text {
    display: none;
  }

  .top-middle-logo {
    flex: none;
  }

  .logo-header {
    width: 150px;
    height: 60px;
  }

  .navbar {
    display: block !important;
  }

  body {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .mobile-action-bar {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: fixed;
    inset: 70px auto 60px 0;          /* bawah top-header, atas bottom bar (panel dari kiri) */
    width: 60%;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 24px 24px;
    gap: 10px;
    margin: 0;
    background: #ffffff;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 2100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* .nav-close-item {
    display: block;
    position: absolute;
    top: 12px;
    right: 20px;
  } */

  .nav-menu > li {
    width: 100%;
    text-align: center;
    display: block !important;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    color: var(--text-dark) !important;
  }

  .nav-menu > li a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 12px 0;
    display: block;
  }

  .hero-wrapper {
    height: calc(100vh - 140px);
    min-height: 400px;
    padding-bottom: 0;
  }
  
  .hero {
    height: 80vh;
  }
  
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
  
  .room-grid {
    grid-template-columns: 1fr;
  }
  
  .room-tabs {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .text-side {
    padding: 2rem 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .section-title-center {
    font-size: 30px;
  }
  
  .location-info {
    padding: 50px;
  }
}

/* ========================================
   MOBILE RESPONSIVE - BODY, AD, REVIEW
   ======================================== */

/* Tablet & Mobile - Body Sections */
@media (max-width: 1024px) {
  .body-wrapper-1,
  .body-wrapper-2 {
    padding: 24px 0;
    width: 100%;
  }

  .body-content,
  .body-content-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .body-image,
  .body-image-2 {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .body-image img,
  .body-image-2 img {
    width: 100%;
    height: 300px;
    max-width: 100%;
  }

  .body-text,
  .body-text-2 {
    max-width: 100%;
    padding: 32px 20px;
  }

  .body-image .button-group,
  .body-image-2 .button-group {
    position: static;
    justify-content: center;
    margin-top: 12px;
    padding: 0 20px 20px;
  }

  .body-image .swiper-pagination,
  .body-image-2 .swiper-pagination {
    bottom: 70px;
  }
}

/* Phone - Body Sections */
@media (max-width: 768px) {
  .body-text,
  .body-text-2 {
    padding: 24px 16px;
  }

  .body-title,
  .body-title-2 {
    font-size: 35px;
    margin-bottom: 12px;
  }

  .body-text-paragraph,
  .body-text-paragraph-2 {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Tablet & Mobile - Ad Segment */
@media (max-width: 1024px) {
  .ad-segment {
    padding: 40px 20px;
  }

  .ad-segment .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .ad-segment-title {
    flex: none;
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }

  .ad-segment-description {
    max-width: 500px;
  }

  .ad-segment-button {
    margin-top: 8px;
  }
}

/* Phone - Ad Segment */
@media (max-width: 768px) {
  .ad-segment {
    padding: 32px 16px;
  }

  .ad-segment-title {
    padding: 20px 24px;
    font-size: 11px;
  }

  .ad-segment-title h2 {
    font-size: 16px;
  }

  .ad-segment-description {
    font-size: 13px;
  }

  .ad-segment-button a {
    font-size: 12px;
  }
}

/* Tablet & Mobile - Review Section */
@media (max-width: 768px) {
  .review-section {
    padding: 50px 20px;
  }

  .review-section .container {
    grid-template-columns: 1fr;
    justify-content: center;
    row-gap: 32px;
    text-align: center;
  }

  .review-brand {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .review-brand-image {
    margin-bottom: 12px;
    height: 150px !important;
  }

  .review-rating {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
  }

  .review-stars {
    justify-content: center;
  }

  .review-media {
    justify-content: center;
    flex-direction: column;
  }

  .review-image {
    width: 180px;
    height: 180px;
    margin-bottom: 16px;
  }
}

/* Phone - Review Section */
@media (max-width: 768px) {
  .review-section {
    padding: 40px 16px;
  }

  .review-section .container {
    row-gap: 24px;
  }

  .review-rating {
    padding-top: 24px;
  }

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

  .review-stars .star {
    font-size: 18px;
  }

  .review-score {
    font-size: 16px;
  }

  .review-count {
    font-size: 12px;
  }

  .review-image {
    width: 150px;
    height: 150px;
  }

  .review-link {
    font-size: 13px;
  }
}

/* Section Titles - Mobile */
@media (max-width: 1024px) {
  .section-main-title {
    font-size: 28px;
    gap: 16px;
    white-space: normal; /* allow wrapping on tablet & below */
  }

  .section-main-title::before,
  .section-main-title::after {
    flex: 1 1 80px;
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .section-main-title {
    padding-bottom: 10px;
    font-size: 24px;
    gap: 12px;
    white-space: normal; /* ensure no horizontal overflow on phones */
  }

  .section-main-title::before,
  .section-main-title::after {
    flex: 1 1 40px;
    max-width: 80px;
  }

  .section-sub-title {
    font-size: 13px;
    letter-spacing: 0.12em;
    line-height: 1.5;
    white-space: normal; /* allow text to wrap nicely */
  }
}

/* Image Collection & Destination - Mobile */
@media (max-width: 768px) {
  .image-collection-swiper .swiper-slide {
    width: 100% !important;
  }

  .slide-image-img {
    width: 100%;
  }

  .elementor img.slide-image-img {
  height: 300px;
}

  .image-collection-slider .swiper {
    height: auto;
    min-height: 400px;
  }

  .image-collection-slider .button-group {
    position: absolute;
    right: 0; /* Offset from edge */
    left: auto;
    bottom: 10px; /* Offset from bottom */
    transform: none;
    z-index: 20;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }

  .image-collection-slider .swiper-pagination.swiper-pagination-bullets {
    left: 50%;
    bottom: 70px;
  }

  .image-destination {
    padding: 20px;
    position: relative;
  }

  .image-destination-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .elementor img.img-destination {
    width: 100%;
    height: 350px;
  }

  .img-destination-content {
    width: 100%;
    padding: 30px 0;
  }

  .image-destination .image-destination-prev, .image-destination .image-destination-next {
    position: static !important;
  }

  .image-destination .button-group {
    position: absolute;
    right: 1px;
    left: auto;
    bottom: 315px ;   /* INI KUNCI: jangan 300/340/360px */
    transform: none ;
    z-index: 20;
    margin: 0;
    padding: 0;
    justify-content: flex-end !important;
  }

/* Khusus pagination di Image Destination Collection */
  .image-destination-collection .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom:380px;   /* ikut nempel bawah gambar */
    width: auto;
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .image-collection-slider .swiper {
    min-height: 300px;
  }

  .img-destination-title {
    font-size: 24px;
  }

  .img-destination-description {
    font-size: 14px;
  }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
    width: 100%;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* Force visibility for Body Sections */
  .body-wrapper-1,
  .body-wrapper-2,
  .elementor-widget-body_1,
  .elementor-widget-body_2,
  .elementor-widget-container {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
  }

  /* Ensure Body Content doesn't collapse */
  .body-content,
  .body-content-2 {
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    min-height: auto !important;
    align-items: flex-start;
  }
  
  /* Fix Burger Menu Clickability */
  .nav-toggle {
    padding-top: 16px;
    position: relative;
    z-index: 1300; /* Higher than header sticky */
    pointer-events: auto;
  }
  

  .top-content {
    overflow: visible !important;
  }
}

/* Desktop footer layout: top band 3 columns, bottom band 3 columns (like reference) */
@media (min-width: 1025px) {
  .footer-container {
    max-width: 1400px;
    width: 1400px;
    margin: 0 auto;
    padding: 40px;
    background: var(--beige);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 40px;
    row-gap: 18px;
  }

  /* Flatten wrappers so children can be placed in the main grid */
  .footer-top,
  .footer-middle {
    display: contents;
  }

  /* Top-left: logo */
  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    width: 200px;
    height: 160px;
    display: flex;
    align-items: flex-start;
  }

  /* Under logo: links */
  .footer-links-section {
    height: 50px;
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    text-align: left;
    margin: 0;
  }

  /* Top-right: social icons */
  .footer-social {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-self: end;
    margin: 0;
  }

  /* Right: address + contact */
  .footer-info {
    grid-column: 3;
    grid-row: 2;
    text-align: right;
    justify-self: end;
    margin: 0;
    width: 335px;
  }

  /* Bottom band across full width */
  .footer-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
  }

  .footer-ownership {
    text-align: left;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-legal-links {
    justify-content: flex-end;
    justify-self: end;
  }
}

/* Footer & Gallery Fixes */
@media (max-width: 768px) {
  .social-media-collection {
    padding-bottom: 24px;
    margin-bottom: 60px;
    display: block;
    height: auto;
    min-height: 400px;
    overflow: visible;
    flex: none;
    position: relative;
    z-index: auto;
    background: #ffffff;
  }
  
  /* .sm-wrapper {
    display: block !important;
    padding-bottom: 40px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    overflow: visible !important;
    background: #ffffff;
    position: relative !important;
    z-index: auto !important;
  } */
  
  .sm-wrapper .container {
    padding-bottom: 24px;
    margin-bottom: 60px;
    display: block;
    height: auto;
    min-height: 400px;
    overflow: visible;
    flex: none;
    position: relative;
    z-index: auto;
    background: #ffffff;
  }
  
  .social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 8px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-bottom: 24px;
  }
  
  .social-media-item {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    min-height: 0;
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
  }

  /* Paksa container gallery tidak pakai flex untuk semua section social media */
  .social-media-collection,
  .sm-wrapper .elementor-container {
    display: block;
  }

  /* MOBILE ONLY: wrapper khusus section Social Media Gallery (dipakai di beberapa page)
     Paksa keluar dari flex Elementor agar tinggi mengikuti konten dan tidak dipotong footer */
  .elementor-element.elementor-element-ae9d32a {
    display: block;
    height: auto;
    overflow: visible;
  }

  /* Force footer to clear and sit below */
  .footer-container {
    width: 100%;
    max-width: 100%;
    padding: 60px 20px 100px;
    position: relative;
    z-index: auto;
    clear: both;
    margin-top: 0;
    background: var(--beige);
  }

  .site-footer {
    width: 100%;
    padding: 0;
    clear: both;
    position: relative;
    z-index: auto;
    display: block;
    height: auto;
  }
  
  .footer-logo {
    display: flex;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 10;
  }
  
  .logo-image {
    width: 180px;
    height: auto;
    display: block;
    max-width: 100%;
  }

  /* Mobile Footer Layout - Center All Elements */
  .footer-top,
  .footer-middle,
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .footer-links-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-links-section a,
  .footer-links-section .separator {
    font-size: 0.875rem;
  }

  .footer-address,
  .footer-ownership,
  .footer-copyright {
    text-align: center;
    /* font-size: 0.75rem; */
    line-height: 1.6;
    margin: 30px 0;
  }

  .footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-middle {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
  }

  /* Body Swiper Buttons Mobile Position */
  .body-image .button-group,
  .body-image-2 .button-group {
    position: absolute;
    right: 0; /* Offset from edge */
    left: auto;
    bottom: 10px; /* Offset from bottom */
    transform: none;
    z-index: 20;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .social-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product Hero Section */
.product-hero-wrapper {
  position: relative;
  height: 550px;
  display: flex;
  flex-direction: column;   /* <- penting: arahkan flex ke VERTIKAL */
  justify-content: flex-end;/* sekarang flex-end = ke bawah */
  align-items: center;      /* center secara horizontal */
  overflow: hidden;
  padding-bottom: 60px;

}

/* .hero {
  position: relative;
  height: 100%;
} */

.product-hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #ff4410, #bc2126); */
}

.product-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
  pointer-events: none; 
}

.product-hero-subtitle {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.product-hero-title {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  align-items: flex-end;
}

.product-hero-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.product-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-product {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  background-color: var(--green-logo);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.btn-product:hover {
  background: var(--light-green);
}

/* Product Gallery (Swiper) */
.product-body {
  padding: 60px 0;
  background: var(--white);
}

.product-body-2 {
  padding: 30px 0 40px 60px;
  background: var(--white);
}

.product-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-gallery {
  width: 900px;
  height: 600px;
}

.product-gallery-main {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-body .product-gallery-swiper {
  direction: ltr;
}

.product-gallery-main .swiper-slide img {
  width: 900px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-main .button-group {
  position: absolute;
  bottom: 1px;
  right: calc(100% - 900px);
  left: auto;
  display: flex;
  z-index: 5;
}

.product-gallery-main .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 10;
}

.product-gallery-main .swiper-button-prev,
.product-gallery-main .swiper-button-next {
  position: static;
  margin: 0;
  width: 55px;
  height: 55px;
  background: var(--light-green);
  color: var(--white);
  transform: none;
}

.product-gallery-main .swiper-button-prev::after,
.product-gallery-main .swiper-button-next::after {
  font-size: 18px;
}

.product-gallery-thumbs {
  margin-top: 12px;
}

.product-gallery-thumbs .swiper-slide {
  height: 90px;
  opacity: 0.65;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-content {
  width: 100%;
  max-width: 560px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
}

.product-subtitle {
  font-weight: 700;
  padding: 20px 0 0 0;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--primary-dark);
  line-height: 1.9;
  margin: 0;
}

.product-subtitle-t-and-m {
  font-weight: 700;
  padding: 20px 0 0 0;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--primary-dark);
  line-height: 1.9;
  margin: 0;
}

.product-description {
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.9;
  margin: 0;
}

.product-terms-and-conditions {
  padding-bottom: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.9;
  margin: 0;
}

.product-description-2 {
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.9;
  margin: 0;
}

/* =========================
   MOBILE - PRODUCT SECTION
   ========================= */

/* Tablet & Mobile */
@media (max-width: 1024px) {

  /* Product wrappers behave like body sections */
  .product-body,
  .product-body-2 {
    padding: 30px 16px;
    width: 100% !important;
    overflow: visible !important;
  }

  .product-container {
    display: block !important;        /* stack vertically */
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  /* Gallery full-width and fluid */
  .product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .product-gallery-main {
    width: 100%;
    height: auto !important;
  }

  .product-gallery-main .swiper-wrapper,
  .product-gallery-main .swiper-slide {
    height: 320px;                    /* similar to image-venue on tablet */
  }

  .product-gallery-main .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }

  /* Buttons centered below image (like venue) */
  .product-gallery-main .button-group {
    position: absolute;
    bottom: 1px;
    right: 0;
    left: auto;
    display: flex;
    z-index: 5;
  }

  /* Content follows below, full width */
  .product-content {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 24px;
  }

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

  .product-subtitle,
  .product-subtitle-t-and-m {
    font-size: 18px;
  }
}

/* Phone (≤768px) – tighter like body section & image-collection */
@media (max-width: 768px) {

  .product-body,
  .product-body-2 {
    padding: 20px 16px;
  }

  .product-gallery-main .swiper-wrapper,
  .product-gallery-main .swiper-slide {
    height: 260px;                    /* similar to venue thumbs sizing */
  }

  .product-gallery-thumbs .swiper-slide {
    height: 64px;
  }

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

  .product-hero-title {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .product-hero-description {
    font-size: 14px;
    padding: 0 16px;
  }

  .product-button {
    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: center;
    width: 100%;
    margin: 16px 0; 
  }
}

/* VENUE CSS*/
.image-venue {
  padding: 20px 0;
  background: var(--white);
}

.image-venue .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-venue-gallery {
  width: 100%;
  max-width: 1200px;
}

/* Kalo Ubah image Venue Ubah Juga Ini */
.image-venue-main {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

/*Ini Untuk Ubah Image Venue */
.image-venue-main .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-venue-main .button-group {
  position: absolute;
  bottom: 1px;
  right: 0;
  left: auto;
  display: flex;
  z-index: 5;
}

.image-venue-main .swiper-button-prev,
.image-venue-main .swiper-button-next {
  position: static;
  margin: 0;
  width: 55px;
  height: 55px;
  background: var(--light-green);
  color: var(--white);
  transform: none;
}

.image-venue-main .swiper-button-prev::after,
.image-venue-main .swiper-button-next::after {
  font-size: 18px;
}

.image-venue-thumbs {
  margin-top: 12px;
}

.image-venue-thumbs .swiper-slide {
  height: 90px;
  opacity: 0.65;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

.image-venue-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.image-venue-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-venue-content {
  width: 100%;
  max-width: 900px;
  /* text-align: center; */
  padding: 30px 0;
}

.image-venue-title {
  padding: 30px 0;
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}

.image-venue-subtitle {
  padding: 20px 0;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--primary-dark);
  line-height: 1.9;
  margin: 0;
}

.image-venue-description {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin: 0;
}

.venue-terms-and-conditions {
  padding-bottom: 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin: 0;
}

.venue-subtitle-t-and-m {
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--primary-dark);
  line-height: 1.9;
  margin: 0;
}

.btn-venue {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  background-color: var(--green-logo);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.btn-venue:hover {
  background: var(--light-green);
}

@media (max-width: 1024px) {
  .image-venue {
    padding: 40px 0;
  }

  .image-venue-gallery {
    max-width: 100%;
  }

  .image-venue-main {
    height: auto;
  }

  .image-venue-main .swiper-wrapper,
  .image-venue-main .swiper-slide {
    height: 400px;
  }

  .image-venue-main .swiper-pagination {
    bottom: 70px !important;
  }

  .image-venue-content {
    padding: 32px 20px;
  }
}

/* Extra Mobile Tuning - Image Venue */
@media (max-width: 768px) {
  .image-venue {
    padding: 32px 0;
  }

  .image-venue-gallery {
    max-width: 100% !important;
  }

  .image-venue-main {
    width: 100%;
    height: auto !important;
  }

  .image-venue-main .swiper-wrapper,
  .image-venue-main .swiper-slide {
    height: 260px; /* keep consistent with product gallery phone height */
  }

  .image-venue-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .venue-button {
    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: center;
    width: 100%;
    margin: 16px 0; 
  }
}

/* =========================
   NEWS SECTION
   ========================= */

.tajr-news-section {
  padding: 60px 20px;
  background: var(--white);
}

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

.tajr-news-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
  color: var(--primary-dark);
}

.tajr-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tajr-news-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tajr-news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.tajr-news-thumb-link {
  display: block;
}

.tajr-news-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tajr-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tajr-news-content {
  padding: 20px 20px 24px;
}

.tajr-news-date {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.tajr-news-item-title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 12px;
}

.tajr-news-item-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tajr-news-item-title a:hover {
  color: var(--light-green);
}

.tajr-news-excerpt {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* News category filter buttons */
.tajr-news-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.tajr-news-filter-btn {
  padding: 6px 18px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tajr-news-filter-btn:hover {
  border-color: var(--green-logo);
  color: var(--green-logo);
}
.tajr-news-filter-btn.is-active {
  background: var(--green-logo);
  border-color: var(--green-logo);
  color: var(--white);
}

/* =========================
   RESPONSIVE - NEWS SECTION
   ========================= */

/* Tablet & small desktop */
@media (max-width: 1024px) {
  .tajr-news-section {
    padding: 40px 16px;
  }

  .tajr-news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tajr-news-thumb {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tajr-news-section {
    padding: 32px 16px;
  }

  .tajr-news-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .tajr-news-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tajr-news-thumb {
    height: 200px;
  }

  .tajr-news-content {
    padding: 16px 16px 20px;
  }

  .tajr-news-item-title {
    font-size: 16px;
  }

  .tajr-news-excerpt {
    font-size: 13px;
  }

  .tajr-news-filter {
    gap: 8px;
  }

  .tajr-news-filter-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* =========================
   ERROR 404 SECTION
   ========================= */

.tajr-error-404 {
  padding: 80px 0;
  /* background: var(--green-logo); */
  color: var(--white);
  height: 600px;
}

.tajr-error-404 .container {
  display: flex;
  justify-content: center;
}

.tajr-error-404__inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--secondary-dark);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 210, 207, 0.3); /* pakai --border-light */
}

.tajr-error-404__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29, 86, 71, 0.15); /* nuansa hijau logo */
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tajr-error-404__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--light-green);
  box-shadow: 0 0 12px rgba(6, 147, 18, 0.9);
}

.tajr-error-404__code {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 18px 0 4px;
  color: var(--white);
}

.tajr-error-404__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.tajr-error-404__subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.tajr-error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tajr-error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.tajr-error-404__btn--primary {
  background: var(--green-logo);
  color: var(--white);
}

.tajr-error-404__btn--primary:hover {
  background: var(--light-green);
}

.tajr-error-404__btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.tajr-error-404__btn--secondary:hover {
  border-color: var(--white);
}

.tajr-error-404__btn-icon {
  font-size: 1rem;
  line-height: 1;
}

.tajr-error-404__hint {
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.tajr-error-404 {
  position: relative;
  padding: 80px 0;   /* fallback kalau tidak ada gambar */
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tajr-error-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* gelapin foto */
  z-index: 0;
}

.tajr-error-404__inner {
  position: relative;
  z-index: 1;
  /* sisanya tetap seperti yang sudah kamu tulis */
}

/* Mobile */
@media (max-width: 480px) {
  .tajr-error-404 {
    padding: 60px 0;
  }

  .tajr-error-404__inner {
    padding: 24px 18px;
  }

  .tajr-error-404__code {
    font-size: 2.4rem;
  }

  .tajr-error-404__title {
    font-size: 1.1rem;
  }

  .tajr-error-404__subtitle {
    font-size: 0.85rem;
  }

  .tajr-error-404__btn {
    width: 100%;
    justify-content: center;
  }
}