/* HEADER BASE */
.header {
  position: fixed;
  isolation: isolate;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.35s ease;
  overflow: visible;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { bottom: 0; }

/* X animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Saat scroll */
#siteHeader.scrolled .burger span {
  background-color: var(--navy-dark);
  color: white;
}

/* ============================= */
/* DROPDOWN */
/* ============================= */
.nav-item {
  position: relative;
}

.desktop-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 16px;

  background: #0f1c22;
  backdrop-filter: none !important;

  min-width: 240px;
  padding: 18px 0;
  border-radius: 14px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;

  z-index: 9999999;
}


.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  transition: all 0.3s ease;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.05);
  padding-left: 32px;
  color: rgba(255,255,255,0.85);
}

/* =================================
   DROPDOWN ARROW INDICATOR
================================= */

.nav-item.has-dropdown > a::after {
  content: "▾";
  font-size: 1.2rem;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Desktop hover rotate */
.nav-item.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Mobile rotate ketika active */
.nav-mobile .nav-item.has-dropdown.active > a::after {
  transform: rotate(180deg);
}


/* ===== MOBILE MENU PANEL ===== */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;                 /* 👈 SETENGAH LAYAR */
  max-width: 420px;            /* 👈 biar tetap elegan di tablet */
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  gap: 15px;

  /* Animasi */
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ACTIVE STATE */
.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile a {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.desktop-nav {
  display: flex;
}

.desktop-nav .nav-item > a {
  position: relative;
  display: inline-block;
}

.desktop-nav .nav-item > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 0.35s ease;
}

.desktop-nav .nav-item > a:hover::before {
  width: 100%;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.burger.active span {
  background: var(--navy-dark);
}


@media (max-width: 1024px) {

  .desktop-nav {
    display: none;
  }

  .burger {
    display: block;
    color: var(--white);
    z-index: 1000;
  }
}

/* =========================================
   MOBILE DROPDOWN FINAL FIX
========================================= */
@media (max-width: 1024px) {

  /* RESET dropdown dari desktop */
  .nav-mobile .dropdown {
    position: static !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  /* Ketika active */
  .nav-mobile .nav-item.active .dropdown {
    max-height: 400px;
    padding: 10px 0 20px 0;
  }

  /* Link di dalam dropdown */
  .nav-mobile .dropdown a {
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 15px;
    color: var(--navy-dark) !important;
    background: transparent !important;
    text-decoration: none;
    opacity: 0.85;
  }

  .nav-mobile .dropdown a:hover {
    padding-left: 26px;
  }

  /* Parent item spacing */
  .nav-mobile .nav-item {
    width: 100%;
  }

  .nav-mobile .nav-item > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    letter-spacing: 0.12em;
  }
}


/* burger setelah scroll*/
.burger span {
  transition: background-color 0.3s ease;
}


/* SCROLLED STATE */
.header.scrolled {
  background: rgba(255,255,255,0.85);
}

.header.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  z-index: -1;
}



/* HEADER CONTENT */
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav a {
  margin-left: 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Warna menu */
.header .nav a {
  color: rgba(255,255,255,0.9);
}

.header.scrolled .nav a {
  color: var(--navy);
}

/* LOGO */

.logo {
  height: 42px;
}

.logo-dark {
  display: none;
}

.header.scrolled .logo-light {
  display: none;
}

.header.scrolled .logo-dark {
  display: block;
}


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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero video.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero h1 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 100px;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30, 79, 99, 0.6),
    rgba(15, 47, 58, 0.8)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* pindah ke bawah */
  color: var(--white);
  padding-bottom: 80px; /* jarak dari bawah */
}


.hero h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 200;
}

.hero p {
  font-size: 1.7rem;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 300;
}

/* RESPONSIVE */


@media (max-width: 768px) {

  .header{
    padding: 0px;
  }

  .hero-content {
  padding-bottom: 100px; /* jarak dari bawah */
}

  .hero h1 {
    font-size: 2.3rem;
  }
  .hero p {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
p{
    font-size: 0.9rem;
}

/* TEST-123456 */

}

/* MAP SECTION */

.coverage-layout {
  gap: 24px; /* 👈 lebih rapat & elegan */
  align-items: stretch;
  height: 520px;
  display: flex;  
}


.coverage-map {
  flex: 0 0 45%;
  max-width: 55vw;
  height: 100%;
  z-index: 1;
}
.map-container {
  height: 100%;
  width: 100%;
}

#indonesiaMap {
  height: 100%;
  width: 55vw;
}

.coverage-destinations {
  display: flex;
  flex-direction: column;
  gap: 48px;
  height: 100%;
}

.map-header {
  margin-bottom: 64px;
  justify-items: center;
}

.map-header h1{
    font-size: 50px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-block;
  margin-bottom: 16px;
}

.coverage-section {
  padding: 50px 0 80px 0;
  background: var(--white);
}
.coverage-grid {
  flex-direction: column;
  display: flex;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
  margin-left: 60px;
}

@media (max-width: 1024px){
  .coverage-section{
    padding-top: 40px;
  }

  .map-header{
    text-align: center;
    margin-bottom: 10px;
  }
  .map-header h1{
    font-size: 2.3rem;
    line-height: normal;
  }
  .map-header p{
    font-size: 1rem;
  }
}


/* DESTINATIONS */

.destination-overlay {
  position: absolute;
  inset: 0;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 2;
}
.destination-overlay h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.destination-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.view-more {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.view-more:hover {
  opacity: 1;
}


.coverage-slider {
  position: relative;
  z-index: 5;
  width: 45vw;
  max-width: 45vw;
  overflow: hidden;
}


.slider-track {
  display: flex;
  gap: 32px;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scroll-behavior: auto;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding-right: 20vw
}


.slider-track::-webkit-scrollbar {
  display: none;
}

.destination-card {
  position: relative;
  min-width: 520px;
  height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100%;
  flex: 0 0 auto;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85);
  
}
.slider-track.dragging {
  pointer-events: auto; /* PENTING */
  cursor: grabbing;
}

.destination-card img {
    position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card.is-active {
  transform: scale(1);
  filter: brightness(1);
  z-index: 2;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 47, 58, 0.85),
    rgba(16, 47, 58, 0.35),
    rgba(16, 47, 58, 0.1)
  );
  z-index: 1;
}

/* NAV CONTAINER */
.slider-nav {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  gap: 16px;
  z-index: 20;
  bottom: 20px;      /* ⬅️ JANGAN terlalu naik */
  left: 48px;        /* ⬅️ konsisten dengan padding card */
  pointer-events: auto;
}

/* BUTTON BASE */
.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px dashed rgba(255,255,255,0.8);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 
    background 0.3s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* HOVER */
.slider-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ACTIVE PRESS */
.slider-btn:active {
  transform: scale(0.95);
}

/* MOBILE SAFE */


@media (max-width: 1024px) {
  /* GRID UTAMA */
  .coverage-grid {
    display: block;
    grid-template-columns: none !important;
    align-items: center;
    margin: 0;
    margin-left: 0 !important;
  }

  .coverage-section {
  display: block;
  padding: 10px 0 40px 0;
  display: flex;
  flex-direction: column !important;
}

  /* WRAPPER MAP */
  .coverage-layout {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }

  /* MAP CONTAINER */
  .coverage-map,
  .map-container,
  #indonesiaMap {
    height: 320px; /* adjust sesuai taste */
    overflow: hidden;
    pointer-events: none;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  /* DESTINATION SLIDER */
  .coverage-slider {
    margin: 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .destination-item {
    min-height: 70vh;
  }

  .destination-content {
    max-width: 100%;
  }

  .destination-content h2 {
    font-size: 2.2rem;
  }

  .destination-item::after,
  .destination-item.reverse::after {
    background: linear-gradient(
      to top,
      rgba(16, 47, 58, 0.8),
      rgba(16, 47, 58, 0.3)
    );
  }
  .destination-card {
    min-width: 82vw;
    height: 350px;
  }
  .slider-track{
    gap: 7px;
  }

}


/* ============== SECTION UNIK GAPS ==================== */

/* EXPERIENCE SECTION */

.experience-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* BACKGROUND LAYER */
.experience-bg {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 180%;
  background-image: url('/assets/images/DJI_0048.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}


.experience-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin-top: 64px;
}

/* HEADLINE */
.experience-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: "Lora", serif;
}

/* INTRO */
.experience-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 64px;
  opacity: 0.95;
}

/* GRID */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 72px;
}

.experience-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.experience-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* CTA */
.experience-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  background: #fff;
  color: var(--navy-dark);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .experience-content {
    padding: 10px 20px;
  }
}

/* ============= SIGNATURE JOURNEY ============ */

/* TOP SERVICE SECTION */

.top-service-section {
  padding: 50px 0;
  background: var(--white);
}

.top-service-header {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.top-service-header h2 {
  font-family: "Lora", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.top-service-header p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* GRID */
.top-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(16, 47, 58, 0.85),
    rgba(16, 47, 58, 0.4),
    rgba(16, 47, 58, 0)
  );
  color: #fff;
}

.service-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* BUTTON */
.service-btn {
  align-self: flex-start;
  background: #fff;
  color: var(--navy-dark);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 768px) {
.top-service-section {
  padding: 40px 0;
  background: var(--white);
}

  .top-service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-overlay {
    padding: 32px;
  }
}


/* OUR PFLEET */

/* =========================
   PHINISI SECTION
========================= */

.phinisi-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 50px 0;
}



/* BACKGROUND IMAGE */
.phinisi-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%;
  height: 100%;
  inset: 0;
  transform: translateX(-50%);
  background-image: url('/assets/images/ALMADIRA/DJI_0047.jpg');
  background-size: cover;
  background-position: c;
  z-index: 0;
  will-change: transform;

}

/* DARK OVERLAY */
.phinisi-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.phinisi-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
  color: #fff;
}

/* CONTENT ABOVE */
.phinisi-content {
  position: relative;
  z-index: 2;
}
.phinisi-header h2 {
  font-family: "Lora", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.phinisi-header p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  color: #fff;
}

/* WRAPPER */
.phinisi-wrapper {
  position: relative;
}

/* TRACK */
.phinisi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.phinisi-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.phinisi-card {
  min-width: 450px;
  scroll-snap-align: start;
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.phinisi-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.phinisi-card:hover {
  transform: translateY(-6px);
}

/* INFO */
.phinisi-info {
  padding: 20px;
}

.phinisi-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.phinisi-info p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* NAV BUTTON */
.phinisi-nav {
  position: absolute;
  bottom: -50px;
  left: 0;
  display: flex;
  gap: 12px;
}

.phinisi-nav button {
  width: 42px;
  height: 42px;
  border: 1px solid white;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font-size: 25px;
}

/* FOOTER */
.phinisi-footer {
  text-align: center;
  margin-top: 80px;
}
.phinisi-footer .btn-primary:hover{
  color: white;
}

.btn-primary {
  background: var(--navy-dark);
  color: #fff;
  padding: 14px 40px;
  border-radius: 999px;
  text-decoration: none;
}

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

.phinisi-bg {
    left: 0;
    width: 100%;
    transform: none !important;
    background-position: center;
  }

  /* Overlay tetap */
  .phinisi-overlay {
    background: rgba(0,0,0,0.35);
  }

  /* Card lebih kecil */
  .phinisi-card {
    min-width: 85vw;
  }

  .phinisi-card img {
    height: 220px;
  }

  .phinisi-track {
    gap: 20px;
  }

  .phinisi-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

}

/* =========================
   PARTNER SECTION
========================= */

.partner-section {
  padding: 50px 0;
  background: var(--white);
}

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

.partner-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
}

.partner-header h2 {
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}

.partner-header p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* GRID */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* CARD */
.partner-card {
  background: var(--navy);
  padding: 60px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: white;
  background-image: url('/assets/images/DJI_0048.jpg');
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.partner-icon {
  font-size: 28px;
  margin-bottom: 24px;
}

.partner-icon img{
  width: 100px;
}

.partner-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.partner-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.85;
}

.partner-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.partner-card ul li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* BUTTON */
.partner-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.partner-btn:hover {
  background: var(--ivory);
  color: var(--navy-dark);
}

/* MOBILE */
@media (max-width: 1024px) {

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .partner-card {
    padding: 40px;
  }

  .partner-section {
    padding: 50px 0;
  }

}

/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter-section {
  position: relative;
  min-height: 60vh;
  background-image: url("/assets/images/hero.jpg"); /* ganti image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* subtle parallax */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* DARK OVERLAY */
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 28, 40, 0.85),
    rgba(5, 28, 40, 0.6)
  );
  z-index: 1;
}

/* CONTENT */
.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  color: #fff;
  padding: 0 20px;
}

.newsletter-content h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.newsletter-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* FORM */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  min-width: 280px;
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: var(--navy-dark);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--navy-dark);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .newsletter-section {
    background-attachment: scroll;
    padding: 60px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* =========================
   TRENDING SECTION
========================= */

.trending-section {
  padding: 120px 0;
  background: #e3e4e6;
}

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.trending-header h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.trending-line {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--navy-dark);
  margin-top: 12px;
}

.trending-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--navy-dark);
  font-weight: 500;
}

.trending-intro {
  max-width: 900px;
  margin-bottom: 60px;
  line-height: 1.6;
  opacity: 0.85;
}

/* GRID */
.trending-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 24px;
}

/* LARGE CARD */
.trending-card.large {
  grid-row: span 2;
}

/* CARD BASE */
.trending-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.trending-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* OVERLAY */
.trending-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}

.trending-overlay h3 {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 1024px) {
  .trending-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trending-card.large {
    grid-row: span 1;
  }
}

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

/* ============================= */
/* HOME EXPERIENCES SECTION */
/* ============================= */

.home-experiences {
  padding: 120px 0;
  background: #ffffff;
}

.section-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 600px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #1f3c3f;
  margin-bottom: 16px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: #1f3c3f;
  margin-bottom: 20px;
}

.section-header p {
  color: #5c6f73;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.home-experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.home-experience-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.home-experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.home-experience-image {
  height: 260px;
  overflow: hidden;
}

.home-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.home-experience-content {
  padding: 28px;
}

.home-experience-highlight {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b8e91;
  margin-bottom: 12px;
}

.home-experience-content h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #1f3c3f;
}

.home-experience-price {
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f3c3f;
}

.home-experience-content a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  background: #1f3c3f;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.home-experience-content a:hover {
  background: #163033;
}

.experiences-footer {
  text-align: center;
  margin-top: 80px;
}

.experiences-btn-home {
  background: var(--navy-dark);
  color: #fff;
  padding: 14px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.experiences-btn-home:hover{
  background: var(--white);
  color: var(--navy-dark);
  border: 1px solid var(--navy-dark) ;
}

@media (max-width: 1024px) {

  .home-experiences-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .home-experience-card {
    max-width: 600px;      /* supaya tidak terlalu lebar */
    margin: 0 auto;        /* center */
  }

  .home-experience-image {
    height: 260px;
  }

  .home-experience-content {
    padding: 24px;
  }

}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  padding: 120px 0;
  background: #e3e4e6;
}

/* HEADER */
.testimonial-header {
  margin-bottom: 80px;
}

.testimonial-header h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.testimonial-line {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--navy-dark);
  margin: 12px 0 24px;
}

.testimonial-header p {
  max-width: 600px;
  opacity: 0.8;
}

/* WRAPPER */
.testimonial-wrapper {
  position: relative;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.testimonial-card {
  min-width: 360px;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  scroll-snap-align: start;
  position: relative;
}

/* AVATAR */
.testimonial-avatar {
  left: 40px;
  width: 70px;
  height: 70px;
  background: #d2d6dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: "Lora", serif;
  color: #fff;
}

/* TEXT */
.testimonial-text {
  margin-top: 30px;
  margin-bottom: 24px;
  line-height: 1.7;
  opacity: 0.85;
}

/* STARS */
.testimonial-stars {
  color: #f4a623;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.testimonial-card span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* NAV BUTTON */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.testimonial-nav button {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.testimonial-prev {
  background: #f4a623;
  color: #fff;
}

.testimonial-next {
  background: #1fa39b;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 85%;
  }
}

/* ================= LUXURY FOOTER ================= */

.footer-luxury {
  background: #0f1c22; /* deep navy */
  color: rgba(255,255,255,0.85);
  padding: 100px 0 50px;
  font-size: 0.95rem;
}

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

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* BRAND */
.footer-brand h3 {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-brand p {
  line-height: 1.7;
  opacity: 0.7;
  max-width: 320px;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

/* LUXURY LINK HOVER EFFECT */
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: 0.3s ease;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #c8a96a; /* luxury gold */
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* DESTINATION TWO COLUMN */
.two-column {
  columns: 2;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* SOCIAL ICONS */
.footer-social a {
  margin-left: 20px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #c8a96a;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

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

/* === EXPERIENCES FADE EFFECT === */

.experiences-grid {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.experiences-grid.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.experiences-grid.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
}

