:root {
  --bg: #fff4ed; /* guideline color */
  --accent: #b26632;
  --muted: #907e70;
  --dark: #893e1e;
  --text: #3b2a23;
  --max-width: 1200px;
  --section-padding: 100px;

  /* Premium shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);

  /* Premium gradients */
  --gradient-gold: linear-gradient(135deg, rgba(178, 102, 50, 0.1), rgba(139, 62, 30, 0.05));
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));

  /* typography - Font Families */
  --font-head: "Playfair Display", "Montserrat", "Poppins", serif; /* Head - Playfair Display, Conso/Boston Angel alternatif */
  --font-subhead: "Lora", "Didot", "Playfair Display", serif; /* Subhead - Linotype Didot alternatif (italic) */
  --font-body: "Inter", "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; /* Body - Urw Geometric Light alternatif */
  --font-head-sans: "Poppins", "Montserrat", sans-serif; /* Head sans-serif alternative */

  /* typography - Font Sizes */
  --font-size-h1: 72px;
  --font-size-h2: 48px;
  --font-size-h3: 32px;
  --font-size-h4: 24px;
  --font-size-body: 17px;
  --font-size-small: 15px;
  --font-size-x-small: 13px;

  /* Premium transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-elegant: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* header height variables (responsive) */
  --header-height-desktop: 100px;
  --header-height-tablet: 100px;
  --header-height-mobile: 80px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.loading {
  overflow: hidden;
}

/* container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility class for accessibility and SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HEADER / NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(139, 62, 30, 0.95), rgba(139, 62, 30, 0.85));
  color: #fff;
  z-index: 1000;
  backdrop-filter: blur(4px);
  transition: top 0.3s ease;

  /* default header height uses desktop variable (overridden with media queries) */
  height: var(--header-height-desktop);
  display: flex;
  align-items: center;
}
.site-header.hide {
  top: -120px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0; /* padding dikontrol lewat tinggi header */
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 6px;
  width: fit-content;
  height: fit-content;
  /* background-color: #000; */
  min-height: 80px;
  min-width: 150px;
}

/* Logo lebih BESAR & dominan */
.site-logo {
  display: block;
  max-height: calc(var(--header-height-desktop) - 6px);
  /* sebelumnya -16px → sekarang lebih mepet ke tinggi header */

  /* background-color: #fff; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAV LINKS */
.main-nav ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.95;
  padding: 6px 2px;
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.main-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.main-nav {
  margin-left: auto; /* dorong menu ke kanan */
  margin-right: 24px; /* jarak kecil ke BOOK NOW */
}

/* actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
}
.btn-book {
  background: #ffffff;
  color: var(--dark);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.btn-book:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.15),
    0 3px 9px rgba(0, 0, 0, 0.12);
}
.btn-cta {
  display: inline-block;
  margin-top: 32px;
  background: #ffffff;
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.8px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta:active {
  transform: translateY(0);
}

/* hamburger (mobile) - ULTRA LUXURY & REFINED */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2001;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.hamburger:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.15),
    0 3px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hamburger:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.08);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hamburger span:nth-child(1) {
  top: 13px;
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center;
}

.hamburger span:nth-child(3) {
  bottom: 13px;
  transform-origin: center;
}

/* Hamburger open state - X animation */
.hamburger.open {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hamburger.open span {
  background: var(--dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hamburger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
  width: 0;
}

.hamburger.open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 20px;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* video wrapper */
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay content */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(178, 102, 50, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  padding: 0 5% 80px;
  text-align: left;
}

/* Judul hero - Head Font */
.hero-title {
  font-family: var(--font-head);
  font-size: var(--font-size-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Sub text hero - Body Font */
.hero-sub {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.2px;
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.96);
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.25s both;
}

/* PAGE SECTION */
.page-section {
  padding: var(--section-padding) 0;
  background: transparent;
  color: var(--text);
}
.about .split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
}
.about h2 {
  font-family: var(--font-head);
  color: var(--dark);
  font-size: var(--font-size-h2);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.about p {
  font-family: var(--font-body);
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.1px;
}

/* ================= CUSTOM FULL LAYOUT (Filosofi) ================= */
.about-full-layout {
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
}

.text-wrapper {
  padding: 80px 40px 80px max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .split-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .text-wrapper {
    padding: 60px 24px;
  }
  .image-wrapper {
    height: 60vh;
  }
}

/* ================= ABOUT ================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about h2 {
  font-family: var(--font-head);
  font-size: var(--font-size-h2);
}

/* square image */
.image-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
}

.image-square:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.image-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-square:hover img {
  transform: scale(1.05);
}

/* SERVICES PREVIEW SECTION */
/* ============================= */

.services-preview {
  padding: 0;
  background: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Removed min-height to allow aspect-ratio to dictate height */
}

/* each image column */
.service-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 3 / 4; /* Even shorter portrait layout (0.75) */
  transition: all 0.5s ease;
}

/* dark overlay */
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* content overlay - POJOK KIRI MEPET */
.service-item .overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin-left: 0;
  margin-top: 32px;
  width: fit-content;
}

/* Responsive Service Grid */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    aspect-ratio: 4 / 5; /* Slightly shorter on mobile for better fit */
  }
}

/* overlay box - editorial & premium - PAS DENGAN KONTEN, TIDAK ADA RUANG KOSONG */
.service-item .overlay-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background-color: rgba(10, 9, 9, 0.75);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 6px;
  width: fit-content; /* PAS DENGAN KONTEN, TIDAK ADA RUANG KOSONG */
  min-width: fit-content;
  max-width: fit-content;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.service-item:hover .overlay-box {
  background-color: rgba(10, 9, 9, 0.75);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* title - Head Font - DIKURANGIN AGAR MUAT DALAM KOTAK */
.service-item h3 {
  display: block;
  margin: 0;
  color: #f5f2ea;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  flex-shrink: 1;
  white-space: normal;
  max-width: 160px; /* DIKURANGIN AGAR MUAT */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* button text - inside box, horizontal layout - Head Sans - DISESUAIKAN */
.service-item .view-more {
  display: inline-block;
  padding: 0;
  margin: 0;
  font-family: var(--font-head-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #e2d8c5;
  background-color: transparent;
  border: none;
  opacity: 0.9;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-item:hover .view-more {
  opacity: 1;
}

/* hover effect */
.service-item:hover::before {
  opacity: 0.65;
}

.service-item:hover {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

/* ============================= */
/* REVIEW SECTION – LUXURY */
/* ============================= */
.review {
  background: linear-gradient(135deg, rgba(178, 102, 50, 0.98), rgba(139, 62, 30, 0.95));
  color: #fff;
  /* Padding atas bawah dibuat minimalis agar container tidak tinggi */
  padding: 10px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay - Tetap sama */
.review::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.review-container {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.review-title {
  font-family: var(--font-head);
  font-size: var(--font-size-h2);
  /* Jarak judul ke teks dirapatkan drastis (dari 8px ke 2px) */
  margin-bottom: 2px;
  margin-top: 0; /* Pastikan margin atas 0 */
  letter-spacing: 0.5px;
  opacity: 0.98;
  font-weight: 400;
  /* Opsional: Line height judul dirapatkan */
  line-height: 1.2;
}

/* slider wrapper */
.review-slider {
  overflow: hidden;
  position: relative;
}

/* track */
.review-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item {
  min-width: 100%;
  padding: 0 4px; /* Padding samping dikurangi sedikit */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-text {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: var(--font-size-small);
  /* Line height dirapatkan dari 1.65 ke 1.45 agar blok teks lebih pendek */
  line-height: 1.45;
  /* Jarak teks ke nama/tombol dirapatkan (dari 4px ke 2px) */
  margin-bottom: 2px;
  position: relative;
  opacity: 0.95;
}

.review-name {
  font-family: var(--font-body);
  font-size: var(--font-size-x-small);
  letter-spacing: 2px;
  opacity: 0.75;
  margin-bottom: 4px; /* Tambahan margin kecil sebelum tombol */
}

/* navigation buttons */
.review-nav {
  /* Margin top 0 atau bahkan minus sedikit jika ingin sangat rapat */
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 10px; /* Jarak antar tombol dirapatkan */
}

.review-btn {
  /* UKURAN TOMBOL DIKECILKAN (kunci penghematan ruang vertikal) */
  /* Dari 38px menjadi 28px */
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  /* Font size icon panah disesuaikan */
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; /* Memastikan icon di tengah */
  align-items: center;
  justify-content: center;
}

.review-btn:hover {
  background: #fff;
  color: var(--accent);
}

/* ============================= */
/* OWNER SAID – PREMIUM SECTION */
/* ============================= */

.owner {
  background: #fff6ef;
  padding: var(--section-padding) 0;
}

.owner-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* image */
.owner-image-wrap {
  position: relative;
}

.owner-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* subtle frame */
.owner-image-wrap::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* text */
.owner-text {
  max-width: 520px;
}

.owner-title {
  font-family: var(--font-head);
  font-size: var(--font-size-h2);
  color: var(--dark);
  margin-bottom: 24px;
}

/* quote - Subhead Font (italic) */
.owner-quote {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 28px;
}

/* divider */
.owner-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 18px;
}

/* name - Body Font */
.owner-name {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--dark);
  opacity: 0.8;
}

/* ================= FOOTER – LUXURY REDESIGNED ================= */
.site-footer {
  background: linear-gradient(135deg, rgba(139, 62, 30, 1), rgba(120, 50, 20, 1)); /* Warna lebih pekat */
  color: #fff;
  padding-top: 50px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}

/* Background Pattern (Optional) */
.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Pastikan konten di atas pattern */
.site-footer .container {
  position: relative;
  z-index: 1;
}

/* --- TOP SECTION (GRID LAYOUT) --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* Kolom 1 lebih lebar */
  gap: 40px;
  margin-bottom: 32px;
}

/* Widget Styling - Head Font */
.footer-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

/* 1. Brand Widget */
.footer-logo-img {
  width: auto; /* Biarkan rasio aspek terjaga */
  max-width: 280px; /* DIPERBESAR: Sebelumnya 180px */
  max-height: 120px; /* DIPERBESAR: Sebelumnya 80px */
  margin-bottom: 24px; /* Jarak ke deskripsi bawahnya */
  display: block;
  object-fit: contain;

  /* OPSIONAL: Jika logo aslimu hitam, aktifkan ini agar jadi putih */
  /* filter: brightness(0) invert(1); */
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
}

/* 2. Links Widget */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
  padding-left: 12px;
}

.footer-links a:hover::before {
  transform: translateY(-50%) scaleX(1);
}

/* 3. Contact Widget */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-item {
  font-family: var(--font-body);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.contact-link {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
  position: relative;
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.contact-link:hover::after {
  width: 100%;
}

/* --- DIVIDER --- */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  margin-bottom: 20px;
}

/* --- BOTTOM SECTION (FLEX LAYOUT) --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 50%;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon svg {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* ================= RESPONSIVE - LUXURY FOOTER ================= */

/* Large Tablet / Small Desktop (1024px) */
@media (max-width: 1024px) {
  .site-footer {
    padding-top: 45px;
    padding-bottom: 22px;
  }

  .footer-top {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 28px;
  }

  .brand-widget {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-logo-img {
    max-width: 240px;
    max-height: 100px;
    margin-bottom: 20px;
  }

  .footer-desc {
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
  }

  .footer-title {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .footer-links a,
  .contact-link,
  .address-item {
    font-size: 14px;
  }
}

/* Tablet (900px) */
@media (max-width: 900px) {
  .site-footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer-top {
    gap: 32px;
    margin-bottom: 26px;
  }

  .footer-logo-img {
    max-width: 220px;
    max-height: 90px;
    margin-bottom: 18px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-title::after {
    width: 35px;
    margin-top: 6px;
  }

  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-address {
    gap: 10px;
  }
}

/* Mobile / Tablet Portrait (768px) */
@media (max-width: 768px) {
  .site-footer {
    padding-top: 36px;
    padding-bottom: 18px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 24px;
    text-align: left;
  }

  /* Brand Widget - Logo di tengah dan besar */
  .brand-widget {
    text-align: center;
    align-items: center;
    grid-column: auto;
  }

  .footer-logo-img {
    max-width: 280px;
    max-height: 120px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Desc di tengah untuk Android */
  .footer-desc {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  /* Explore Section - di tengah */
  .links-widget {
    text-align: center;
  }

  .links-widget .footer-title {
    text-align: center;
  }

  .links-widget .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .links-widget .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .links-widget .footer-links li {
    text-align: center;
  }

  .footer-widget {
    width: 100%;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-links li {
    margin-bottom: 9px;
  }

  .footer-address {
    gap: 10px;
  }

  .footer-divider {
    margin-bottom: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 12px;
    order: 2;
  }

  .footer-social {
    order: 1;
    justify-content: center;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}

/* Mobile (600px) */
@media (max-width: 600px) {
  .site-footer {
    padding-top: 32px;
    padding-bottom: 16px;
  }

  .footer-top {
    gap: 28px;
    margin-bottom: 22px;
  }

  /* Logo tetap besar dan di tengah */
  .brand-widget {
    text-align: center;
    align-items: center;
  }

  .footer-logo-img {
    max-width: 260px;
    max-height: 110px;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Desc di tengah untuk Android */
  .footer-desc {
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
    margin: 0 auto;
  }

  /* Explore tetap di tengah */
  .links-widget {
    text-align: center;
  }

  .links-widget .footer-title {
    text-align: center;
  }

  .links-widget .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .links-widget .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .footer-title::after {
    width: 30px;
    height: 1.5px;
    margin-top: 6px;
  }

  .footer-links a,
  .contact-link,
  .address-item {
    font-size: 13px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-address {
    gap: 9px;
  }

  .footer-divider {
    margin-bottom: 16px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .site-footer {
    padding-top: 28px;
    padding-bottom: 14px;
  }

  .footer-top {
    gap: 24px;
    margin-bottom: 20px;
  }

  /* Logo tetap besar dan di tengah untuk Android */
  .brand-widget {
    text-align: center;
    align-items: center;
  }

  .footer-logo-img {
    max-width: 240px;
    max-height: 100px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Desc di tengah untuk Android */
  .footer-desc {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
  }

  /* Explore tetap di tengah */
  .links-widget {
    text-align: center;
  }

  .links-widget .footer-title {
    text-align: center;
  }

  .links-widget .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .links-widget .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-title::after {
    width: 28px;
    height: 1.5px;
    margin-top: 5px;
  }

  .footer-links a,
  .contact-link,
  .address-item {
    font-size: 12px;
  }

  .footer-links li {
    margin-bottom: 7px;
  }

  .footer-address {
    gap: 8px;
  }

  .footer-divider {
    margin-bottom: 14px;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-copyright {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .footer-social {
    gap: 8px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
  .site-footer {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .footer-top {
    gap: 22px;
    margin-bottom: 18px;
  }

  /* Logo tetap besar dan di tengah untuk Android kecil */
  .brand-widget {
    text-align: center;
    align-items: center;
  }

  .footer-logo-img {
    max-width: 220px;
    max-height: 90px;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Desc di tengah untuk Android */
  .footer-desc {
    font-size: 11px;
    text-align: center;
    margin: 0 auto;
  }

  /* Explore tetap di tengah */
  .links-widget {
    text-align: center;
  }

  .links-widget .footer-title {
    text-align: center;
  }

  .links-widget .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .links-widget .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 9px;
  }

  .footer-title::after {
    width: 25px;
    margin-top: 4px;
  }

  .footer-links a,
  .contact-link,
  .address-item {
    font-size: 11px;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .footer-address {
    gap: 7px;
  }

  .footer-divider {
    margin-bottom: 12px;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-copyright {
    font-size: 9px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon svg {
    width: 15px;
    height: 15px;
  }
}

/* ============================= */
/* ABOUT SECTION IMAGE */
/* ============================= */
.about .image {
  max-width: 360px; /* atur lebar gambar */
  margin-left: auto; /* dorong ke kanan */
}

/* square image */
.image-square {
  width: 100%;
  aspect-ratio: 1 / 1; /* tetap KOTAK PERFECT */
  overflow: hidden;
  border-radius: 0; /* rounded */
  background: #e9e2dc;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* image behavior */
.image-square img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* isi penuh kotak */
  display: block;
  transition: transform 0.6s ease;
}

/* hover effect */
.image-square:hover img {
  transform: scale(1.06);
}

/* ================= CONTACT LOCATIONS ================= */
.contact-locations {
  background: #fff6ef;
  padding: var(--section-padding) 0;
}

.location-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.location-header .section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}

.location-header h2 {
  font-family: var(--font-head);
  font-size: 42px;
  color: var(--dark);
  margin: 0 0 18px;
  line-height: 1.15;
}

.location-header p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}

.location-item {
  background: #fff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(178, 102, 50, 0.08);
}

.location-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.location-item h3 {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 400;
}

.location-item p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* highlight active branch (Depok) */
.location-item.active {
  background: linear-gradient(135deg, rgba(178, 102, 50, 0.05), rgba(139, 62, 30, 0.03));
  border-color: rgba(178, 102, 50, 0.2);
}

.location-item.active h3 {
  color: var(--dark);
  font-weight: 600;
}

.location-item.active p {
  color: var(--text);
}

.booking-cta {
  background: linear-gradient(135deg, rgba(178, 102, 50, 0.98), rgba(139, 62, 30, 0.95));
  color: #fff;
  text-align: center;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.booking-inner {
  position: relative;
  z-index: 1;
}

.booking-inner h2 {
  font-family: var(--font-head);
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.booking-inner p {
  font-family: var(--font-body);
  font-size: 17px;
  opacity: 0.94;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-large {
  background: #ffffff;
  color: var(--dark);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.8px;
  display: inline-block;
  transition: var(--transition-smooth);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-cta-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta-large:hover::before {
  opacity: 1;
}

.btn-cta-large:active {
  transform: translateY(0);
}
/* ================= LOCATION HERO (CONSISTENT WITH OTHER PAGES) ================= */

.location-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.location-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.location-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
  display: flex;
  align-items: flex-end; /* ⬇️ NEMPEL KE BAWAH */
  justify-content: flex-start; /* ⬅️ NEMPEL KE KIRI */
}

/* hero content */
.location-hero .hero-inner {
  width: 100%;
  padding: 0 5% 120px; /* ⬅️ KIRI + BAWAH (SAMA KAYA ABOUT/HOME) */
  text-align: left;
}

/* title - Head Font */
.location-hero .hero-title {
  font-family: var(--font-head);
  font-size: var(--font-size-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* subtitle - Body Font */
.location-hero .hero-sub {
  font-family: var(--font-body);
  max-width: 580px;
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.96);
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.25s both;
}
/* ================= MAP SECTION ================= */
/* ================= LOCATION MULTI ================= */

.location-info-simple {
  padding: 80px 0;
  background: var(--bg);
}

/* grid cabang */
.location-branches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; /* sebelumnya 28px */
}

/* card cabang */
.location-branch {
  background: #fff;
  border-radius: 16px; /* lebih kecil */
  padding: 20px 18px; /* DIPERKECIL */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-branch:hover {
  transform: translateY(-4px); /* sebelumnya -6px */
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.09);
}

.location-branch h3 {
  font-family: var(--font-head);
  font-size: 18px; /* sebelumnya 20px */
  margin-bottom: 8px;
}

.location-branch .address,
.location-branch .hours {
  font-size: 13px; /* sebelumnya 14px */
  line-height: 1.55;
  margin-bottom: 8px;
}

.branch-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.branch-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.map-section {
  padding: var(--section-padding) 0 0;
}

.map-wrapper {
  width: 92%; /* hampir full kiri-kanan */
  max-width: 1400px; /* lebih lebar dari container */
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Mobile Nav Backdrop Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav - PREMIUM */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(178, 102, 50, 0.98), rgba(139, 62, 30, 0.95));
  backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  box-shadow:
    -20px 0 60px rgba(0, 0, 0, 0.3),
    -10px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.mobile-nav li {
  position: relative;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  font-weight: 400;
  display: block;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0.92;
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
  transform: translateX(4px);
}

.mobile-nav a:hover::before {
  width: 4px;
}

.mobile-nav .btn-book {
  background: #fff;
  color: var(--dark);
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  width: 100%;
}

.mobile-nav .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* ================= GLOBAL RESPONSIVE ================= */

/* Laptop / Medium Screens */
@media (max-width: 1200px) {
  :root {
    --header-height-desktop: 110px;
  }
  .site-header {
    height: var(--header-height-desktop);
  }
  .site-logo {
    max-height: calc(var(--header-height-desktop) - 28px);
  }
  .hero {
    margin-top: var(--header-height-desktop);
  }
}

/* Tablet / Small Laptop */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }
  .service-item {
    min-height: 300px;
  }
  .service-item .overlay {
    margin-left: 0;
    margin-top: 20px;
  }
  .service-item .overlay-box {
    width: fit-content; /* PAS DENGAN KONTEN */
    min-width: fit-content;
    max-width: fit-content;
    padding: 14px 20px;
    gap: 28px;
  }
  .service-item h3 {
    font-size: 18px;
    white-space: normal;
    line-height: 1.2;
    max-width: 160px;
  }
  .service-item .view-more {
    font-size: 9px;
    letter-spacing: 0.9px;
  }
}

/* Tablet / iPad Portrait (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .hamburger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 11px !important;
  }

  .hamburger span {
    width: 19px !important;
    height: 2.5px !important;
    background: var(--dark) !important;
  }

  .hamburger span:nth-child(1) {
    top: 12px !important;
  }

  .hamburger span:nth-child(3) {
    bottom: 12px !important;
  }

  .hamburger.open span:nth-child(1),
  .hamburger.open span:nth-child(3) {
    width: 19px !important;
  }

  .hero-title {
    font-size: 52px;
  }

  .location-hero .hero-title {
    font-size: 56px;
  }

  .location-header h2 {
    font-size: 38px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .location-branches {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Mobile Menu Switch (900px) */
@media (max-width: 900px) {
  /* Header & Nav */
  .main-nav {
    display: none !important;
  }
  .hamburger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 42px !important;
    height: 42px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
  }

  .hamburger span {
    width: 20px !important;
    height: 2.5px !important;
    background: var(--dark) !important;
  }

  .hamburger span:nth-child(1) {
    top: 13px !important;
  }

  .hamburger span:nth-child(3) {
    bottom: 13px !important;
  }

  .hamburger.open span:nth-child(1),
  .hamburger.open span:nth-child(3) {
    width: 20px !important;
  }

  .nav-actions {
    gap: 10px;
  }
  :root {
    --header-height-desktop: var(--header-height-tablet);
  }
  .site-header {
    height: var(--header-height-tablet);
  }
  .site-logo {
    max-height: calc(var(--header-height-tablet) - 20px);
  }

  /* Hero & Layout */
  .hero {
    margin-top: var(--header-height-tablet);
  }
  .hero-title {
    font-size: 46px;
  }
  .location-hero .hero-inner {
    padding-bottom: 80px;
  }
  .location-hero .hero-title {
    font-size: 48px;
  }
  .location-header {
    margin-bottom: 48px;
  }
  .location-header h2 {
    font-size: 36px;
  }
  .locations-grid {
    gap: 24px;
  }
  .location-item {
    padding: 28px 24px;
  }
  .booking-inner h2 {
    font-size: 38px;
  }

  /* Sections */
  .about .split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about .image {
    margin: 32px auto 0;
  }
  .owner {
    padding: 72px 0;
  }
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .owner-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .owner-text {
    max-width: 100%;
  }
  .owner-divider {
    margin: 18px auto;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .map-wrapper {
    width: 96%;
    border-radius: 20px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

/* Mobile Landscape & Small Tablet (600px - 768px) */
@media (max-width: 768px) and (min-width: 601px) {
  .hamburger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 41px !important;
    height: 41px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 11px !important;
  }

  .hamburger span {
    width: 19px !important;
    height: 2.5px !important;
    background: var(--dark) !important;
  }

  .hamburger span:nth-child(1) {
    top: 13px !important;
  }

  .hamburger span:nth-child(3) {
    bottom: 13px !important;
  }

  .hamburger.open span:nth-child(1),
  .hamburger.open span:nth-child(3) {
    width: 19px !important;
  }

  .nav-actions {
    gap: 10px;
  }

  .hero-title {
    font-size: 42px;
  }

  .location-hero .hero-title {
    font-size: 44px;
  }

  .location-header h2 {
    font-size: 34px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-branches {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-wrapper {
    width: 94%;
    border-radius: 22px;
  }

  .map-wrapper iframe {
    height: 320px;
  }
}

/* Mobile (600px) */
@media (max-width: 600px) {
  /* Header */
  :root {
    --header-height-desktop: var(--header-height-mobile);
  }
  .site-header {
    height: var(--header-height-mobile);
  }
  .site-logo {
    max-height: calc(var(--header-height-mobile) - 12px);
  }
  .hero {
    margin-top: var(--header-height-mobile);
  }
  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn-book {
    padding: 7px 14px;
    font-size: 12px;
  }

  .hamburger {
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hamburger span {
    width: 18px !important;
    height: 2.5px !important;
    background: var(--dark) !important;
  }

  .hamburger span:nth-child(1) {
    top: 12px !important;
  }

  .hamburger span:nth-child(3) {
    bottom: 12px !important;
  }

  .hamburger.open span:nth-child(1),
  .hamburger.open span:nth-child(3) {
    width: 18px !important;
  }

  .hamburger:hover {
    background: #ffffff !important;
    border-color: rgba(255, 255, 255, 1) !important;
  }

  .hamburger.open {
    background: #ffffff !important;
    border-color: rgba(255, 255, 255, 1) !important;
  }
  .btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    min-height: 260px;
  }
  .service-item .overlay {
    margin-left: 0;
    margin-top: 16px;
  }
  .service-item .overlay-box {
    width: fit-content; /* PAS DENGAN KONTEN */
    min-width: fit-content;
    max-width: fit-content;
    padding: 14px 20px;
    gap: 28px;
    flex-wrap: nowrap;
  }
  .service-item h3 {
    font-size: 18px;
    white-space: normal;
    max-width: 160px;
  }
  .service-item .view-more {
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  /* Reviews */
  .review-container {
    width: 70%; /* DIKURANGIN LAGI UNTUK MOBILE */
    max-width: 85%; /* BATASI MAX-WIDTH */
    padding: 0 12px;
  }
  .review-item {
    padding: 0 8px;
  }
  .review-nav {
    margin-top: 8px; /* DIKURANGIN LAGI UNTUK MOBILE */
  }
  .review-text {
    font-size: 14px;
  }
  .review-title {
    font-size: 28px;
  }

  /* Owner Section */
  .owner {
    padding: 60px 0;
  }
  .owner-text h2 {
    font-size: 32px;
  }
  .owner-quote {
    font-size: 20px;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-item {
    padding: 24px 20px;
  }
  .location-item h3 {
    font-size: 18px;
  }
  .location-branch {
    padding: 18px 16px;
  }
  .location-branch h3 {
    font-size: 17px;
  }
  .location-header h2 {
    font-size: 32px;
  }
  .location-branches {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .map-wrapper {
    width: 94%;
    border-radius: 20px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .booking-inner h2 {
    font-size: 32px;
  }
  .booking-inner p {
    font-size: 14px;
  }

  /* Section Padding */
  :root {
    --section-padding: 60px;
  }

  .page-section {
    padding: var(--section-padding) 0;
  }

  .container {
    padding: 0 20px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .hamburger {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hamburger span {
    width: 17px !important;
    height: 2.5px !important;
    background: var(--dark) !important;
  }

  .hamburger span:nth-child(1) {
    top: 12px !important;
  }

  .hamburger span:nth-child(3) {
    bottom: 12px !important;
  }

  .hamburger.open span:nth-child(1),
  .hamburger.open span:nth-child(3) {
    width: 17px !important;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-book {
    padding: 6px 12px;
    font-size: 11px;
  }

  :root {
    --section-padding: 50px;
  }

  .container {
    width: 92%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .location-hero .hero-title {
    font-size: 34px;
  }

  .location-hero .hero-inner {
    padding: 0 4% 50px;
  }

  .hero-inner {
    padding: 0 4% 30px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-header {
    margin-bottom: 36px;
  }

  .location-header h2 {
    font-size: 28px;
  }

  .booking-inner h2 {
    font-size: 26px;
  }

  .booking-inner p {
    font-size: 13px;
  }

  .location-branches {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    width: 96%;
    border-radius: 18px;
  }

  .map-wrapper iframe {
    height: 280px;
  }

  .service-item .overlay-box {
    width: fit-content; /* PAS DENGAN KONTEN */
    min-width: fit-content;
    max-width: fit-content;
    padding: 12px 18px;
    gap: 24px;
    flex-wrap: nowrap;
  }

  .service-item h3 {
    font-size: 16px;
    white-space: normal;
    max-width: 130px;
    line-height: 1.15;
  }

  .service-item .view-more {
    font-size: 8px;
    letter-spacing: 0.8px;
  }

  .review-container {
    padding: 0 16px;
  }

  .review-text {
    font-size: 13px;
  }

  .footer-inner {
    padding: 48px 20px 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-left,
  .footer-right,
  .footer-center {
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-address {
    font-size: 14px;
  }

  .footer-phone,
  .footer-email {
    font-size: 14px;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 360px) {
  .container {
    width: 94%;
    padding: 0 14px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .location-hero .hero-title {
    font-size: 30px;
  }

  .location-header h2 {
    font-size: 26px;
  }

  .booking-inner h2 {
    font-size: 24px;
  }

  .map-wrapper {
    width: 96%;
    border-radius: 16px;
  }

  .map-wrapper iframe {
    height: 260px;
  }

  .location-item {
    padding: 20px 16px;
  }

  .service-item .overlay-box {
    width: fit-content; /* PAS DENGAN KONTEN */
    min-width: fit-content;
    max-width: fit-content;
    padding: 12px 18px;
    gap: 24px;
    flex-wrap: nowrap;
  }

  .service-item h3 {
    font-size: 16px;
    white-space: normal;
    line-height: 1.15;
    max-width: 130px;
  }

  .service-item .view-more {
    font-size: 8px;
    letter-spacing: 0.8px;
  }

  .review-title {
    font-size: 24px;
  }

  .review-text {
    font-size: 12px;
  }

  .footer-inner {
    padding: 40px 16px 24px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-title {
    font-size: 18px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}

/* ================= LOADING SCREEN - LUXURY ================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #d4c4b0 0%, #c9b7a3 50%, #beab96 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.loader-logo {
  width: 120px;
  height: auto;
  display: block;
  opacity: 1;
  animation: loaderFadeIn 0.8s ease-out;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.loader-spinner {
  width: 48px;
  height: 48px;
  position: relative;
  animation: loaderFadeIn 0.8s ease-out 0.2s both;
}

.loader-spinner::before,
.loader-spinner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-spinner::after {
  border-top-color: var(--dark);
  animation-delay: -0.6s;
  width: 36px;
  height: 36px;
  top: 6px;
  left: 6px;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= LUXURY FADE-IN ANIMATION ================= */
@keyframes luxuryFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Loading Screen */
@media (max-width: 600px) {
  .loader-logo {
    width: 100px;
  }

  .loader-spinner {
    width: 40px;
    height: 40px;
  }

  .loader-spinner::after {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
  }

  .loader-content {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .loader-logo {
    width: 90px;
  }

  .loader-spinner {
    width: 36px;
    height: 36px;
  }

  .loader-spinner::after {
    width: 28px;
    height: 28px;
    top: 4px;
    left: 4px;
  }

  .loader-content {
    gap: 24px;
  }
}
