/* ============================================
   Mangga Lodge — Premium Edition v3
   Aesthetic: Luxury Resort · Editorial · Refined
   Inspiration: Dribbble top hotel/resort UI
   Palette:
     Terracotta:  #C4613A  →  #A84D2E
     Deep Navy:   #1C2B4A  →  #0D1828
     Warm Ivory:  #F8F2E8  →  #EDE4D4
     Sage:        #8B9E6A
     Gold Accent: #C9A96E
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  color: #2A2A2A;
  background: #FDFAF6;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --primary:         #C4613A;
  --primary-dark:    #A84D2E;
  --primary-light:   #D4856A;
  --secondary:       #2A3E6E;
  --secondary-dark:  #1C2B4A;
  --secondary-deep:  #0D1828;
  --cream:           #F8F2E8;
  --cream-dark:      #EDE4D4;
  --ivory:           #FDFAF6;
  --dark:            #1C2B4A;
  --text:            #2A2A2A;
  --text-light:      #7A7A7A;
  --text-muted:      #A8A8A8;
  --gold:            #B59050; /* Darkened for accessibility contrast */
  --gold-light:      #E2C99A;
  --sage:            #8B9E6A;
  --white:           #FFFFFF;
  --border:          rgba(42,62,110,0.08);
  --border-light:    rgba(42,62,110,0.05);
  --shadow-sm:       0 2px 12px rgba(28,43,74,0.06);
  --shadow:          0 8px 40px rgba(28,43,74,0.10);
  --shadow-lg:       0 20px 70px rgba(28,43,74,0.16);
  --shadow-xl:       0 40px 100px rgba(28,43,74,0.20);
  --radius:          24px;
  --radius-sm:       12px;
  --radius-pill:     100px;
  --transition:      all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Jost', system-ui, sans-serif;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── Selection ── */
::selection { background: rgba(196,97,58,0.15); color: var(--primary-dark); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-badge::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-badge::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: -4px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--secondary-dark);
  margin-bottom: 18px;
  font-weight: 600;
}
.section-title em { color: var(--primary); font-style: italic; }
.section-desc { color: var(--text-light); font-size: 0.97rem; max-width: 520px; line-height: 1.8; font-weight: 300; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 100px 0; }

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(196,97,58,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,97,58,0.38);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary-dark);
  border-color: rgba(42,62,110,0.25);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-gold {
  background: var(--gold);
  color: var(--secondary-deep);
  border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,169,110,0.38);
}
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--secondary); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.78rem; }
.btn-lg { padding: 17px 46px; font-size: 0.92rem; letter-spacing: 0.05em; }

.btn-booking-com:hover {
  background: #00224f !important;
  border-color: #00224f !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,53,128,0.3);
}

.btn-play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; flex-shrink: 0;
  transition: var(--transition);
}
.btn-play:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(196,97,58,0.45);
}

/* ══════════════ NAVBAR ══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(13,24,40,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 4px 32px rgba(0,0,0,0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,40,0.85) 0%, rgba(13,24,40,0.4) 50%, transparent 100%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#navbar.scrolled {
  background: rgba(13,24,40,0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#navbar.scrolled::before { opacity: 0; }

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .nav-container { padding: 0 24px; }
}
.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-logo-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(196,97,58,0.4);
  position: relative;
}
.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-logo-text .tagline {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* ── Desktop Nav Links ── */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .nav-links-desktop { gap: 4px; }
  .nav-link { font-size: 0.8rem; padding: 8px 12px; }
}

/* ── Mobile Nav Menu — HANYA sidebar, selalu hidden di desktop ── */
.nav-menu {
  /* DESKTOP: sembunyikan sepenuhnya */
  display: none !important;
}

#nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 24, 40, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
#nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  /* Desktop nav links & right area: sembunyikan di mobile */
  .nav-links-desktop, .nav-right {
    display: none !important;
  }
  
  .hamburger { display: flex; }

  /* Mobile sidebar: premium glassmorphism */
  .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(320px, 90vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(13, 24, 40, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 2000 !important;
    border-left: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5) !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    visibility: hidden !important;
    padding: 0 !important;
  }
  .nav-menu.open { transform: translateX(0) !important; visibility: visible !important; }

  .nav-menu-header { padding: 24px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-menu-close { 
    background: none; 
    border: none; 
    color: rgba(255,255,255,0.5); 
    font-size: 1.4rem; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: color 0.3s;
  }
  .nav-menu-close:hover { color: #fff; }
  
  .nav-menu-links { flex: 1; overflow-y: auto; padding: 24px 20px; display: flex; flex-direction: column; gap: 6px; }
  .nav-menu .nav-link {
    font-size: 1rem; padding: 14px 18px; border-radius: 14px; color: rgba(255,255,255,0.7);
    display: flex !important; align-items: center; gap: 14px; transition: all 0.3s ease;
  }
  .nav-menu .nav-link i { width: 22px; font-size: 1rem; color: var(--gold); opacity: 0.8; transition: all 0.3s; text-align: center; }
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active { background: rgba(255,255,255,0.05); color: #fff; }
  .nav-menu .nav-link:hover i, .nav-menu .nav-link.active i { opacity: 1; transform: scale(1.1); color: var(--gold-light); }
  
  .nav-menu-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 16px 8px; }
  
  .nav-menu-lang { padding: 16px 0; }
  .lang-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px; padding-left: 20px; font-weight: 600; }
  .lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 20px; }
  .lang-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 5px; border-radius: 16px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all 0.3s;
  }
  .lang-item .flag { font-size: 1.4rem; }
  .lang-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .lang-item.active { background: rgba(201,169,110,0.15); border-color: rgba(201,169,110,0.4); color: var(--gold-light); }
  
  .nav-menu-footer { padding: 30px 24px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.2); }
  .nav-book-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 16px;
    background: var(--primary); color: #fff; border-radius: 50px; font-weight: 700; text-decoration: none;
    box-shadow: 0 10px 30px rgba(196,97,58,0.4); margin-bottom: 24px; font-size: 1rem;
  }
  .nav-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
  .nav-social a { color: rgba(255,255,255,0.4); font-size: 1.1rem; transition: color 0.3s; }
  .nav-social a:hover { color: var(--primary); }
  .nav-copyright { text-align: center; font-size: 0.68rem; color: rgba(255,255,255,0.2); }
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.3s ease;
  position: relative;
  font-family: var(--font-body);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scale(1); opacity: 1; }
.nav-link.active { color: var(--white); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language Switcher */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-switcher::before {
  content: '';
  display: block;
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.15);
  margin-right: 20px;
}
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.lang-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.2); }
.lang-dropdown {
  position: absolute; top: calc(100% + 14px); right: 0;
  background: rgba(13,24,40,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  min-width: 150px; overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  padding: 6px;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 10px;
}
.lang-option:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.lang-option.active { color: var(--gold); background: rgba(201,169,110,0.1); }
.lang-flag { font-size: 1.1rem; }

.nav-book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--secondary-deep) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  position: relative;
  overflow: hidden;
  border: none !important;
}
.nav-book::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
  transform: skewX(-20deg);
}
.nav-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.45);
}
.nav-book:hover::before { left: 150%; }
.nav-book::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════ HERO ══════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--secondary-deep);
  padding-bottom: 0;
}

/* Layered gradient bg for depth */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42,62,110,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196,97,58,0.18) 0%, transparent 60%),
    linear-gradient(160deg, #080E1A 0%, #0D1828 45%, #1C2B4A 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.65) brightness(0.85);
  mix-blend-mode: luminosity;
}
/* Vignette overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(8,14,26,0.95) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(8,14,26,0.4) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.9s ease;
  font-family: var(--font-body);
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); opacity: 0.7; }

.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 0;
  max-width: 720px;
  animation: fadeInUp 0.9s ease 0.15s both;
  letter-spacing: -0.025em;
}
.hero-title em {
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-light);
  font-style: italic;
  display: block;
}

.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-top: 56px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-desc-area { max-width: 400px; }
.hero-desc {
  color: rgba(255,255,255,0.52);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-video-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* Hero floating cards */
.hero-search-wrap {
  flex-shrink: 0;
  animation: fadeInUp 0.9s ease 0.45s both;
}
.hero-search-bar {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px;
  display: flex; flex-wrap: wrap; gap: 0; align-items: stretch;
  min-width: 440px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.search-field {
  flex: 1; min-width: 120px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold); margin-bottom: 5px;
}
.search-field input, .search-field select {
  width: 100%; background: transparent; border: none;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--white); outline: none; font-weight: 400;
}
.search-field select option { background: var(--dark); color: var(--white); }
.search-btn { display: flex; align-items: center; padding: 6px 6px 6px 12px; }
.search-btn .btn { border-radius: 14px; }

.hero-scroll {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.28);
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.6));
}

/* Hero decorative number */
.hero-counter-badge {
  position: absolute; top: 50%; right: 48px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; gap: 28px;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-stat-pill {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
  min-width: 100px;
}
.hero-stat-pill .num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 600;
  color: var(--white); line-height: 1;
  display: block;
}
.hero-stat-pill .lbl {
  font-size: 0.64rem; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 4px; display: block;
}

/* ══════════════ PAGE HEADER ══════════════ */
.page-header {
  background: var(--secondary-deep);
  padding: 160px 0 80px;
  position: relative; overflow: hidden; text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: saturate(0.5);
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 70% at 50% 100%, var(--secondary-deep) 0%, transparent 60%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 0.8rem; letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ══════════════ STATS BAR ══════════════ */
.stats-bar { background: var(--secondary-deep); padding: 0; border-top: 1px solid rgba(255,255,255,0.04); }
.stats-container {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--primary);
  transition: var(--transition);
}
.stat-item:hover::before { left: 20%; right: 20%; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--white);
  font-weight: 600; line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--gold);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ══════════════ ABOUT SECTION ══════════════ */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

.about-images { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 88%;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img, .about-img-main > div { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 52%; height: 54%;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--ivory);
}
.about-img-accent img, .about-img-accent > div { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute; top: 48%; left: 56%; transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--secondary-deep);
  border-radius: 50%;
  width: 86px; height: 86px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 8px 32px rgba(201,169,110,0.5); z-index: 2;
}
.about-badge-float .num { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about-badge-float .lbl { font-size: 0.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.feature-item { display: flex; align-items: flex-start; gap: 13px; }
.feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem;
  transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--gold); color: var(--secondary-deep); }
.feature-text h4 { font-family: var(--font-body); font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; letter-spacing: 0.01em; }
.feature-text p { font-size: 0.76rem; color: var(--text-light); line-height: 1.5; }

/* ══════════════ AMENITIES ══════════════ */
.amenities-section { background: var(--ivory); }

.amenities-hero {
  width: 100%; border-radius: 32px;
  overflow: hidden; position: relative;
  height: 440px; margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}
.amenities-hero > div { width: 100%; height: 100%; }
.amenities-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,24,40,0.92) 0%, rgba(13,24,40,0.55) 55%, transparent 100%);
  display: flex; align-items: center; padding: 64px;
}
.amenities-hero-text .section-badge { color: var(--gold); }
.amenities-hero-text .section-badge::before { background: var(--gold); }
.amenities-hero-text .section-badge::after { background: var(--gold); }
.amenities-hero-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 12px;
  max-width: 400px; line-height: 1.1;
}
.amenities-hero-text p { color: rgba(255,255,255,0.55); font-size: 0.93rem; max-width: 360px; font-weight: 300; }
.amenities-hero-btn {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

.amenities-tabs-wrap { margin-bottom: 44px; }
.amenities-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer; font-size: 0.8rem; font-weight: 500;
  color: var(--text-light); transition: var(--transition);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.amenity-tab i { font-size: 0.78rem; }
.amenity-tab.active, .amenity-tab:hover {
  background: var(--secondary-dark);
  color: var(--white);
  border-color: var(--secondary-dark);
  box-shadow: 0 4px 16px rgba(28,43,74,0.25);
}

.amenity-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.amenity-detail-image { border-radius: 24px; overflow: hidden; height: 320px; box-shadow: var(--shadow); }
.amenity-detail-image > div { width: 100%; height: 100%; }
.amenity-detail-text h3 { font-size: 1.9rem; color: var(--dark); margin-bottom: 14px; line-height: 1.15; }
.amenity-detail-text p { color: var(--text-light); line-height: 1.85; margin-bottom: 20px; font-size: 0.91rem; font-weight: 300; }
.amenity-features { display: flex; flex-direction: column; gap: 11px; }
.amenity-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.86rem; color: var(--text); font-weight: 400;
}
.amenity-feat i { color: var(--gold); font-size: 0.7rem; }
.amenity-panel { display: none; }
.amenity-panel.active { display: block; }

/* ══════════════ ROOMS SECTION ══════════════ */
/* NOTE: Arch shape intentionally PRESERVED — fully responsive */
.rooms-arch-section { background: var(--cream); }

.rooms-arch-header { text-align: center; margin-bottom: 56px; }

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

.room-arch-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(42,62,110,0.06);
  display: flex;
  flex-direction: column;
}
.room-arch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201,169,110,0.2);
}

/* Wrapper: background fills the cream area behind arch */
.room-arch-image-wrap {
  width: 100%;
  padding: 0;
  background: var(--cream);
  flex-shrink: 0;
  /* Extra bottom padding so card body starts right below arch curve */
  padding-bottom: 0;
}

/* ARCH — desktop: nice tall arch with 1:1 ratio */
.room-arch-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  position: relative;
  display: block;
}
.room-arch-image > div,
.room-arch-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.room-arch-card:hover .room-arch-image > div,
.room-arch-card:hover .room-arch-image img { transform: scale(1.06); }

/* Body content */
.room-arch-body {
  padding: 20px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-arch-meta {
  display: flex; gap: 12px;
  font-size: 0.74rem; color: var(--text-muted);
  margin-bottom: 11px; flex-wrap: wrap;
}
.room-arch-meta span { display: flex; align-items: center; gap: 4px; }
.room-arch-meta i { color: var(--gold); font-size: 0.68rem; }
.room-arch-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--dark);
  margin: 0 0 7px; line-height: 1.2;
}
.room-arch-desc-text {
  font-size: 0.8rem; color: var(--text-light);
  line-height: 1.7; margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; font-weight: 300;
  flex: 1;
}
.room-arch-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 10px; flex-wrap: wrap;
  margin-top: auto;
}
.room-arch-price .amount {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--primary); display: block; line-height: 1;
}
.room-arch-price .period { font-size: 0.7rem; color: var(--text-muted); }
.room-arch-footer .btn {
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.78rem; padding: 10px 20px;
}

.rooms-arch-cta { text-align: center; margin-top: 48px; }

/* ══════════════ GALLERY CIRCLES ══════════════ */
.gallery-section {
  background: var(--secondary-deep);
  position: relative; overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42,62,110,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-badge { color: var(--gold); }
.gallery-section .section-badge::before { background: var(--gold); }
.gallery-section .section-badge::after { background: var(--gold); }

.gallery-circles {
  display: flex; gap: 28px; justify-content: center;
  align-items: center; flex-wrap: wrap; margin-top: 52px;
}
.gallery-circle {
  position: relative; cursor: pointer; transition: var(--transition);
}
.gallery-circle:hover { transform: translateY(-8px); }
.gallery-circle-inner {
  border-radius: 50%; object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.gallery-circle:hover .gallery-circle-inner {
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 0 0 6px rgba(201,169,110,0.08);
}
.gallery-circle-lg .gallery-circle-inner { width: 230px; height: 230px; font-size: 5.5rem; }
.gallery-circle-md .gallery-circle-inner { width: 175px; height: 175px; font-size: 4rem; }
.gallery-circle-sm .gallery-circle-inner { width: 135px; height: 135px; font-size: 3.2rem; }
.gallery-circle-overlay {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(196,97,58,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  backdrop-filter: blur(2px);
}
.gallery-circle:hover .gallery-circle-overlay { opacity: 1; }
.gallery-circle-overlay i { color: var(--white); font-size: 1.5rem; }
.gallery-circle-label {
  text-align: center; margin-top: 14px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.gallery-btn-row { text-align: center; margin-top: 44px; }

/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials-section { background: var(--ivory); padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(42,62,110,0.06);
  border-radius: 24px; padding: 34px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: rgba(201,169,110,0.12);
  font-style: italic;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,0.2);
}
.testimonial-stars { color: var(--gold); margin-bottom: 18px; font-size: 0.85rem; letter-spacing: 3px; }
.testimonial-text {
  color: var(--text); font-style: italic;
  font-size: 0.92rem; line-height: 1.8;
  margin-bottom: 26px; font-weight: 300;
  font-family: var(--font-display);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196,97,58,0.3);
}
.testimonial-name { font-weight: 600; color: var(--dark); font-size: 0.88rem; }
.testimonial-country { font-size: 0.74rem; color: var(--text-muted); }

/* ══════════════ NEWSLETTER ══════════════ */
.newsletter-section { background: var(--cream); padding: 80px 0; }
.newsletter-card {
  background: var(--secondary-deep);
  border-radius: 36px;
  padding: 72px 88px;
  position: relative; overflow: hidden;
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
  border: 1px solid rgba(255,255,255,0.04);
}
/* Decorative circles */
.newsletter-card::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.newsletter-card::after {
  content: '';
  position: absolute; bottom: -60px; right: 180px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(196,97,58,0.06);
  pointer-events: none;
}
.newsletter-text { position: relative; z-index: 1; }
.newsletter-text .section-badge { color: var(--gold); }
.newsletter-text .section-badge::before { background: var(--gold); }
.newsletter-text .section-badge::after { background: var(--gold); }
.newsletter-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--white); margin-bottom: 10px; max-width: 440px;
  line-height: 1.2;
}
.newsletter-text p { color: rgba(255,255,255,0.42); font-size: 0.88rem; font-weight: 300; }
.newsletter-form-area { position: relative; z-index: 1; flex-shrink: 0; min-width: 340px; }
.newsletter-form { display: flex; gap: 10px; flex-direction: column; }
.newsletter-input {
  padding: 15px 22px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body); font-size: 0.88rem;
  outline: none; color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.newsletter-btn {
  background: var(--primary); color: var(--white);
  padding: 15px 28px; border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  font-weight: 600; font-size: 0.86rem;
  transition: var(--transition); white-space: nowrap;
  font-family: var(--font-body); letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(196,97,58,0.3);
}
.newsletter-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,97,58,0.42); }

/* ══════════════ FOOTER ══════════════ */
/* footer {
  background: var(--secondary-deep);
  padding: 80px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.3), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 52px; padding-bottom: 60px; }
.footer-desc {
  color: rgba(255,255,255,0.35);
  font-size: 0.84rem; line-height: 1.85;
  margin-bottom: 26px; margin-top: 18px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.88rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }
.footer-heading {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--white); margin-bottom: 22px;
  font-weight: 600; letter-spacing: -0.01em;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.83rem; font-weight: 300;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 0; height: 1px; background: var(--gold);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { width: 12px; }
.footer-hours li { margin-bottom: 9px; color: rgba(255,255,255,0.35); font-size: 0.82rem; font-weight: 300; }
.footer-contact li { display: flex; gap: 13px; margin-bottom: 15px; color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.8rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.78rem; font-weight: 300; }
.footer-bottom a { color: var(--gold-light); } */

/* ══════════════ BOOKING FORM ══════════════ */
.booking-section { padding: 88px 0; background: var(--cream); }
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.booking-form-card {
  background: var(--white);
  border-radius: 28px; padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(42,62,110,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 18px;
  border: 1px solid rgba(42,62,110,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--ivory);
  transition: var(--transition); outline: none;
  font-weight: 400;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.booking-summary-card {
  background: var(--secondary-deep);
  border-radius: 28px; padding: 38px;
  color: var(--white); position: sticky; top: 100px;
  border: 1px solid rgba(255,255,255,0.04);
}
.summary-title {
  font-family: var(--font-display); font-size: 1.35rem;
  margin-bottom: 26px; color: var(--white);
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.83rem; margin-bottom: 13px;
  color: rgba(255,255,255,0.45);
}
.summary-row.total {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px; margin-top: 10px;
  font-size: 1rem; font-weight: 600; color: var(--white);
}
.summary-row .val { color: var(--white); font-weight: 600; }

/* ══════════════ CONTACT ══════════════ */
.contact-section { padding: 88px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info-card {
  display: flex; gap: 16px;
  background: var(--cream); border-radius: 16px;
  padding: 22px; margin-bottom: 14px;
  border: 1px solid rgba(42,62,110,0.05);
  transition: var(--transition);
}
.contact-info-card:hover { background: var(--cream-dark); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold); color: var(--secondary-deep);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(201,169,110,0.35);
}
.contact-info-text h4 { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 5px; }
.contact-info-text p { color: var(--text); font-size: 0.88rem; line-height: 1.65; }

/* ══════════════ GALLERY PAGE ══════════════ */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 24px; border-radius: var(--radius-pill);
  border: 1px solid rgba(42,62,110,0.12);
  background: transparent; cursor: pointer;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-light); transition: var(--transition);
  letter-spacing: 0.03em; font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark); color: var(--white); border-color: var(--dark);
  box-shadow: 0 4px 14px rgba(28,43,74,0.25);
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 16px; cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,24,40,0.75) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }
.gallery-overlay span { color: var(--white); font-size: 0.82rem; font-weight: 500; }

/* ══════════════ ROOM CARD (rooms.php list view) ══════════════ */
.room-card {
  transition: var(--transition);
  border: 1px solid rgba(42,62,110,0.06);
}
.room-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,0.15); }
.room-badge {
  background: var(--gold);
  color: var(--secondary-deep);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(180deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ══════════════ RESPONSIVE — COMPREHENSIVE ══════════════ */

/* ── 1280px: Large screens ── */
@media (max-width: 1280px) {
  .container { padding: 0 36px; }
  .nav-container { padding: 0 36px; }
  .rooms-arch-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1024px: Tablet Landscape ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-container { padding: 0 28px; }
  .section { padding: 72px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-images { height: 440px; }

  /* Amenities */
  .amenity-detail { grid-template-columns: 1fr; gap: 32px; }
  .amenity-detail-image { height: 240px; }
  .amenities-hero { height: 360px; }

  /* Booking */
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary-card { position: static; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Newsletter */
  .newsletter-card { flex-direction: column; padding: 52px 44px; gap: 32px; }
  .newsletter-form-area { min-width: auto; width: 100%; max-width: 480px; }
  .newsletter-form { flex-direction: row; }

  /* Hero */
  .hero-counter-badge { display: none; }
  .hero-search-bar { min-width: 380px; }

  /* Stats */
  .stats-container { grid-template-columns: repeat(4, 1fr); }

  /* Rooms */
  .rooms-arch-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .room-arch-image { aspect-ratio: 4 / 5; border-radius: 50% 50% 0 0 / 38% 38% 0 0; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Room detail */
  .rd-layout { grid-template-columns: 1fr; }
  .rd-right { position: static; }
  .rd-amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .rd-date-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px: Tablet Portrait / Mobile ── */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Navbar */
  #navbar { padding: 16px 0; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }

  /* Hero */
  .hero { min-height: 100svh; padding-bottom: 0; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 28px; }
  .hero-bottom { flex-direction: column; gap: 32px; margin-top: 36px; }
  .hero-desc-area { max-width: 100%; }
  .hero-cta-row { flex-wrap: wrap; gap: 12px; }
  .hero-search-wrap { width: 100%; }
  .hero-search-bar {
    min-width: auto; width: 100%;
    flex-direction: column; gap: 0;
    border-radius: 16px; padding: 4px;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 14px;
  }
  .search-field:last-of-type { border-bottom: none; }
  .search-btn { padding: 4px; }
  .search-btn .btn { width: 100%; border-radius: 12px; justify-content: center; }
  .hero-scroll { display: none; }

  /* Stats Bar */
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 28px 16px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.04); }
  .stat-number { font-size: 2rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: auto; aspect-ratio: 1 / 1.1; max-height: 480px; margin-bottom: 20px; }
  .about-img-main { width: 75%; height: 90%; }
  .about-img-accent { width: 50%; height: 52%; border-width: 4px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; }

  /* Amenities */
  .amenities-section .section-title { font-size: 1.8rem; }
  .amenities-hero { height: 220px; border-radius: 20px; margin-bottom: 32px; }
  .amenities-hero-overlay { padding: 24px; }
  .amenities-hero-text h2 { font-size: 1.5rem; }
  .amenities-hero-text p { display: none; }
  .amenities-hero-btn { display: none; }
  .amenities-tabs { gap: 6px; }
  .amenity-tab { font-size: 0.74rem; padding: 8px 14px; }
  .amenity-detail { grid-template-columns: 1fr; gap: 24px; }
  .amenity-detail-image { height: 200px; border-radius: 16px; }

  /* Rooms — mobile: 2 kolom dengan arch yang proporsional */
  .rooms-arch-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .room-arch-card { border-radius: 20px; }
  /* Arch di mobile: aspect ratio lebih tinggi agar arch terlihat */
  .room-arch-image { aspect-ratio: 3 / 4; border-radius: 50% 50% 0 0 / 35% 35% 0 0; }
  .room-arch-body { padding: 14px 14px 18px; }
  .room-arch-name { font-size: 1rem; margin-bottom: 5px; }
  .room-arch-desc-text { font-size: 0.75rem; -webkit-line-clamp: 2; margin-bottom: 12px; }
  .room-arch-meta { gap: 7px; font-size: 0.68rem; margin-bottom: 8px; }
  /* Footer: tombol full width di mobile */
  .room-arch-footer { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 12px; }
  .room-arch-footer > div:last-child { display: flex; gap: 8px; width: 100%; }
  .room-arch-footer > div:last-child .btn { flex: 1; justify-content: center; font-size: 0.74rem; padding: 9px 10px; }
  .room-arch-price .amount { font-size: 1.15rem; }

  /* Gallery */
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 7px 16px; font-size: 0.74rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-circles { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .gallery-circle-lg .gallery-circle-inner { width: 140px; height: 140px; font-size: 3.2rem; }
  .gallery-circle-md .gallery-circle-inner { width: 110px; height: 110px; font-size: 2.5rem; }
  .gallery-circle-sm .gallery-circle-inner { width: 85px; height: 85px; font-size: 2rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-section { padding: 56px 0; }

  /* Newsletter */
  .newsletter-section { padding: 48px 0; }
  .newsletter-card {
    flex-direction: column; padding: 36px 24px;
    border-radius: 20px; gap: 24px;
  }
  .newsletter-form { flex-direction: column; }
  .newsletter-form-area { min-width: auto; width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  footer { padding: 52px 0 0; }

  /* Booking form */
  .booking-section { padding: 48px 0; }
  .booking-layout { grid-template-columns: 1fr; gap: 24px; }
  .booking-form-card { padding: 28px 24px; border-radius: 20px; }
  .booking-summary-card { position: static; padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Contact */
  .contact-section { padding: 48px 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Page Header */
  .page-header { padding: 120px 0 70px; }
  .page-header h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* Room Detail */
  .rd-section { padding: 40px 0; }
  .rd-layout { grid-template-columns: 1fr; gap: 24px; }
  .rd-right { position: static; }
  .rd-main-img { aspect-ratio: 4/3; border-radius: 50% 50% 0 0 / 40% 40% 0 0; }
  .rd-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-date-grid { grid-template-columns: 1fr 1fr; }
  .rd-booking-card { padding: 24px; }
  .rd-quick-meta { gap: 8px; }
  .rd-qm-item { padding: 6px 12px; font-size: 0.78rem; }

  /* Amenities Page */
  .amenity-full-inner,
  .amenity-full-inner.reverse { grid-template-columns: 1fr !important; }
  .amenity-full-inner.reverse .amenity-full-image { order: 0 !important; }
  .amenity-full-inner.reverse .amenity-full-content { order: 1 !important; }
  .amenity-full-img-wrap { min-height: 200px; }
  .amenity-full-content { padding: 24px 20px !important; }
  .amenity-full-features { grid-template-columns: 1fr !important; }
  .amenities-quick-bar { gap: 8px 14px; padding: 16px; }

  /* Rooms page filter */
  .rooms-filter-bar { flex-direction: column; align-items: stretch; padding: 10px; }
  .rooms-filter-field { border-right: none; border-bottom: 1px solid var(--border); padding: 15px 20px; }
  .rooms-filter-divider { display: none; }
  .filter-actions-wrap { 
    display: grid; 
    grid-template-columns: 1fr auto auto; 
    gap: 8px; 
    padding: 14px 16px; 
    align-items: center;
  }
  .rooms-filter-btn { margin: 0; width: 100%; justify-content: center; height: 48px; }
  #filter-submit-btn { grid-column: 1 / 2; }
  .btn-booking-com { grid-column: 2 / 3; width: 60px; padding: 0; }
  .rooms-filter-reset-btn { grid-column: 3 / 4; margin: 0; height: 48px; width: 48px; justify-content: center; }
  /* Tetap 2 kolom di mobile untuk arch card */
  .rooms-page-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rooms-page-grid .room-arch-footer { flex-direction: column; }
  .rooms-page-grid .room-arch-footer > div { width: 100%; }
  .rooms-page-grid .room-arch-footer .btn { flex: 1; justify-content: center; font-size: 0.74rem; }

  /* Buttons */
  .btn-lg { padding: 14px 32px; font-size: 0.88rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

/* ── 480px: Small Mobile ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* Hero */
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-content { padding: 100px 16px 52px; }
  .btn-lg { padding: 13px 26px; font-size: 0.84rem; }

  /* Stats */
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.8rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-circles { gap: 8px; }
  .gallery-circle-lg .gallery-circle-inner { width: 120px; height: 120px; font-size: 2.8rem; }
  .gallery-circle-md .gallery-circle-inner { width: 90px; height: 90px; font-size: 2.2rem; }
  .gallery-circle-sm .gallery-circle-inner { width: 70px; height: 70px; font-size: 1.7rem; }

  /* Room cards */
  .rooms-arch-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .room-arch-image { aspect-ratio: 3 / 4; border-radius: 50% 50% 0 0 / 32% 32% 0 0; }
  .room-arch-body { padding: 12px 12px 16px; }
  .room-arch-name { font-size: 0.95rem; }
  .room-arch-meta { gap: 5px; font-size: 0.63rem; }
  /* Sembunyikan span ke-3 meta agar tidak terlalu penuh */
  .room-arch-meta span:nth-child(3) { display: none; }
  .room-arch-price .amount { font-size: 1.05rem; }
  .room-arch-footer { padding-top: 10px; }
  .room-arch-footer > div:last-child .btn { font-size: 0.7rem; padding: 8px 8px; }

  /* Amenity tabs */
  .amenity-tab { font-size: 0.7rem; padding: 7px 12px; gap: 5px; }
  .amenity-tab i { font-size: 0.7rem; }

  /* Room detail */
  .rd-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-date-grid { grid-template-columns: 1fr; }
  .rd-date-field { border-right: none; border-bottom: 1px solid var(--border); }
  .rd-date-field:last-child { border-bottom: none; }

  /* Rooms page — tetap 2 kolom */
  .rooms-page-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* About */
  .about-images { aspect-ratio: 1 / 1.15; max-height: 380px; }
  .about-badge-float { width: 68px; height: 68px; top: 50%; left: 60%; }
  .about-badge-float .num { font-size: 1.2rem; }

  /* Contact form */
  .booking-form-card { padding: 22px 16px; }

  /* Newsletter */
  .newsletter-card { padding: 28px 16px; }
  .newsletter-btn { padding: 13px 20px; }

  /* Footer */
  footer { padding: 40px 0 0; }
  .footer-brand .nav-logo-text .name { font-size: 1rem; }

  /* Navbar logo mobile */
  .nav-logo-icon { width: 40px !important; height: 40px !important; }
  .nav-logo-text .name { font-size: 1.1rem !important; }
  .nav-logo-text .tagline { font-size: 0.58rem !important; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.72rem; flex-wrap: wrap; justify-content: center; }

  /* Page header */
  .page-header { padding: 100px 0 60px; }
  .page-header h1 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
}

/* ── 360px: Very small devices ── */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.8rem; }
  .hero-eyebrow { display: none; }
  .stat-number { font-size: 1.6rem; }
  .room-arch-meta span:last-child { display: none; }
  .filter-btn { padding: 6px 12px; font-size: 0.7rem; }
}

/* ── Video Modal ── */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 100%; max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.video-modal-inner iframe,
.video-modal-inner video {
  width: 100%; height: 100%; border: none; display: block;
}
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.video-modal-close:hover { background: var(--primary); }

/* ══════════════ ADMIN (unchanged) ══════════════ */
.admin-body { background: #F0F2F5; min-height: 100vh; }
.admin-sidebar { position: fixed; top:0; left:0; bottom:0; width:260px; background: var(--dark); z-index:200; display:flex; flex-direction:column; transition:var(--transition); overflow-y: auto; }
.admin-logo { padding:22px 20px; border-bottom:1px solid rgba(255,255,255,.08); display:flex; align-items:center; gap:12px; flex-shrink:0; }
.admin-logo-icon { font-size:1.8rem; }
.admin-logo-text .name { font-family:var(--font-display); font-size:1.1rem; color:var(--white); font-weight:600; display:block; }
.admin-logo-text .sub { font-size:0.68rem; color:rgba(255,255,255,.35); letter-spacing:.1em; text-transform:uppercase; }
.admin-nav { flex:1; padding:12px 0; }
.admin-nav-group { margin-bottom:4px; }
.admin-nav-label { font-size:0.65rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.25); padding:10px 20px 4px; display:block; }
.admin-nav-link { display:flex; align-items:center; gap:11px; padding:10px 20px; color:rgba(255,255,255,.55); font-size:.87rem; font-weight:500; text-decoration:none; border-left:3px solid transparent; transition:var(--transition); }
.admin-nav-link:hover { color:var(--white); background:rgba(255,255,255,.05); border-left-color:rgba(196,97,58,.5); }
.admin-nav-link.active { color:var(--white); background:rgba(196,97,58,.15); border-left-color:var(--primary); }
.admin-nav-link i { width:18px; text-align:center; font-size:.88rem; }
.admin-nav-badge { margin-left:auto; background:var(--primary); color:var(--white); font-size:.7rem; font-weight:700; padding:2px 7px; border-radius:50px; }
.admin-sidebar-footer { padding:16px 20px; border-top:1px solid rgba(255,255,255,.08); }
.admin-sidebar-footer a { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.45); font-size:.85rem; text-decoration:none; transition:var(--transition); }
.admin-sidebar-footer a:hover { color:var(--white); }
.admin-main { margin-left:260px; min-height:100vh; display:flex; flex-direction:column; }
.admin-topbar { background:var(--white); padding:14px 28px; display:flex; justify-content:space-between; align-items:center; box-shadow:0 1px 0 var(--border); position:sticky; top:0; z-index:100; }
.admin-page-title { font-family:var(--font-display); font-size:1.25rem; color:var(--dark); font-weight:600; }
.topbar-right { display:flex; align-items:center; gap:16px; }
.topbar-notif { position:relative; width:38px; height:38px; border-radius:10px; background:#F0F2F5; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text-light); font-size:1rem; border:1px solid var(--border); transition:var(--transition); }
.topbar-notif:hover { background:var(--cream); }
.notif-dot { position:absolute; top:6px; right:6px; width:8px; height:8px; background:var(--primary); border-radius:50%; border:2px solid var(--white); }
.admin-user-info { display:flex; align-items:center; gap:10px; cursor:pointer; }
.admin-avatar { width:36px; height:36px; border-radius:50%; background:var(--primary); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.88rem; }
.admin-user-info span { font-size:.9rem; font-weight:600; color:var(--text); }
.admin-content { padding:24px 28px; flex:1; }
.stats-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:24px; }
.stat-card { background:var(--white); border-radius:12px; padding:22px 24px; display:flex; justify-content:space-between; align-items:flex-start; box-shadow:0 1px 4px rgba(0,0,0,.05); border-top:3px solid var(--primary); transition:var(--transition); }
.stat-card:nth-child(2) { border-top-color:var(--secondary); }
.stat-card:nth-child(3) { border-top-color:#10B981; }
.stat-card:nth-child(4) { border-top-color:#F59E0B; }
.stat-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); transform:translateY(-2px); }
.stat-card-left .num { font-family:var(--font-display); font-size:2rem; font-weight:600; color:var(--dark); line-height:1; }
.stat-card-left .lbl { font-size:.8rem; color:var(--text-light); font-weight:600; margin-top:6px; }
.stat-card-left .change { font-size:.75rem; margin-top:8px; }
.change.up { color:#10B981; }
.change.down { color:#EF4444; }
.stat-card-icon { width:46px; height:46px; border-radius:12px; background:#F0F2F5; display:flex; align-items:center; justify-content:center; font-size:1.2rem; color:var(--primary); }
.stat-card:nth-child(2) .stat-card-icon { color:var(--secondary); }
.stat-card:nth-child(3) .stat-card-icon { color:#10B981; }
.stat-card:nth-child(4) .stat-card-icon { color:#F59E0B; }
.admin-card { background:var(--white); border-radius:12px; box-shadow:0 1px 4px rgba(0,0,0,.05); overflow:hidden; margin-bottom:24px; }
.admin-card-header { padding:16px 20px; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid var(--border); }
.admin-card-title { font-weight:700; color:var(--dark); font-size:.95rem; display:flex; align-items:center; gap:8px; }
.admin-card-title i { color:var(--primary); }
.admin-card-body { padding:0; }
.admin-card-body.padded { padding:20px; }
.admin-table { width:100%; border-collapse:collapse; font-size:.875rem; }
.admin-table thead th { background:#F9FAFB; padding:10px 16px; text-align:left; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--text-light); border-bottom:1px solid var(--border); white-space:nowrap; }
.admin-table tbody td { padding:12px 16px; border-bottom:1px solid #F5F5F5; vertical-align:middle; }
.admin-table tbody tr:last-child td { border-bottom:none; }
.admin-table tbody tr:hover td { background:#FAFAFA; }
.badge { display:inline-flex; align-items:center; gap:4px; padding:3px 10px; border-radius:50px; font-size:.72rem; font-weight:700; white-space:nowrap; }
.badge-pending { background:#FEF3C7; color:#92400E; }
.badge-confirmed { background:#D1FAE5; color:#065F46; }
.badge-cancelled { background:#FEE2E2; color:#991B1B; }
.badge-checked_in { background:#DBEAFE; color:#1E40AF; }
.badge-checked_out { background:#F3F4F6; color:#374151; }
.badge-paid { background:#D1FAE5; color:#065F46; }
.badge-unpaid { background:#FEF3C7; color:#92400E; }
.badge-available { background:#D1FAE5; color:#065F46; }
.badge-unavailable { background:#FEE2E2; color:#991B1B; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-control { width:100%; padding:10px 14px; border:1.5px solid var(--border); border-radius:8px; font-family:var(--font-body); font-size:.9rem; color:var(--text); background:var(--white); transition:var(--transition); outline:none; }
.form-control:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(196,97,58,.1); }
textarea.form-control { resize:vertical; min-height:100px; }
.table-toolbar { padding:14px 20px; display:flex; gap:12px; align-items:center; flex-wrap:wrap; border-bottom:1px solid var(--border); }
.search-input { flex:1; min-width:200px; max-width:320px; padding:8px 14px 8px 36px; border:1.5px solid var(--border); border-radius:8px; font-family:var(--font-body); font-size:.88rem; outline:none; background:#F9FAFB url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237A7A7A' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.344 1.656a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") no-repeat 12px center; transition:var(--transition); }
.search-input:focus { border-color:var(--primary); background-color:var(--white); }
.pagination { display:flex; gap:4px; align-items:center; justify-content:flex-end; padding:16px 20px; }
.page-item { width:34px; height:34px; display:flex; align-items:center; justify-content:center; border-radius:8px; border:1.5px solid var(--border); cursor:pointer; font-size:.85rem; font-weight:600; color:var(--text); text-decoration:none; transition:var(--transition); }
.page-item.active { background:var(--primary); color:var(--white); border-color:var(--primary); }
.page-item:hover:not(.active) { background:#F0F2F5; }
.action-btns { display:flex; gap:6px; }
.quick-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.toggle-wrap { display:flex; align-items:center; gap:10px; }
.toggle { position:relative; display:inline-block; width:44px; height:24px; }
.toggle input { opacity:0; width:0; height:0; }
.slider { position:absolute; cursor:pointer; inset:0; background:#D1D5DB; border-radius:50px; transition:var(--transition); }
.slider::before { content:''; position:absolute; height:18px; width:18px; left:3px; bottom:3px; background:var(--white); border-radius:50%; transition:var(--transition); }
input:checked + .slider { background:var(--primary); }
input:checked + .slider::before { transform:translateX(20px); }
.admin-login-page { min-height:100vh; background:linear-gradient(135deg,var(--dark) 0%,var(--secondary) 100%); display:flex; align-items:center; justify-content:center; padding:24px; }
.login-card { background:var(--white); border-radius:20px; padding:48px 44px; width:100%; max-width:400px; box-shadow:0 24px 80px rgba(0,0,0,.3); }
.login-logo { text-align:center; margin-bottom:36px; }
.login-logo .emoji { font-size:3rem; display:block; margin-bottom:12px; }
.login-logo h1 { font-family:var(--font-display); font-size:1.6rem; color:var(--dark); }
.login-logo p { color:var(--text-light); font-size:.88rem; }
.login-card .form-group { margin-bottom:18px; }
.login-card label { font-size:.82rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--text-light); display:block; margin-bottom:8px; }
.login-card input { width:100%; padding:12px 16px; border:1.5px solid var(--border); border-radius:10px; font-family:var(--font-body); font-size:.95rem; outline:none; transition:var(--transition); }
.login-card input:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(196,97,58,.1); }
.login-btn { width:100%; padding:13px; background:var(--primary); color:var(--white); border:none; border-radius:10px; font-family:var(--font-body); font-size:.95rem; font-weight:600; cursor:pointer; transition:var(--transition); }
.login-btn:hover { background:var(--primary-dark); transform:translateY(-1px); }
.login-error { background:#FEE2E2; color:#991B1B; border-radius:8px; padding:10px 14px; font-size:.88rem; margin-bottom:18px; display:flex; align-items:center; gap:8px; }
@media (max-width:1024px) { .stats-cards { grid-template-columns:repeat(2,1fr); } .quick-row { grid-template-columns:1fr; } }
@media (max-width:768px) { .admin-sidebar { transform:translateX(-100%); } .admin-sidebar.open { transform:translateX(0); } .admin-main { margin-left:0; } .stats-cards { grid-template-columns:1fr 1fr; } .form-grid { grid-template-columns:1fr; } }
/* ════════════════════════════════════════
   NAV OVERLAY — Mobile backdrop
   ════════════════════════════════════════ */
#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 26, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
#nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ════════════════════════════════════════
   HAMBURGER — Fixed styling
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px 14px; /* Increased for better tap target */
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
  }
  .hamburger:hover {
    background: rgba(196,97,58,0.2);
    border-color: rgba(196,97,58,0.45);
  }
  .hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
  }
  .hamburger.open {
    background: rgba(196,97,58,0.25);
    border-color: rgba(196,97,58,0.5);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ════════════════════════════════════════
   INDEX GALLERY FILTER BAR
   ════════════════════════════════════════ */
.idx-gallery-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 48px 36px;
}
.idx-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  transition: all 0.28s ease;
  font-family: var(--font-body);
}
.idx-filter-btn i { font-size: 0.7rem; }
.idx-filter-btn:hover {
  background: rgba(196,97,58,0.15);
  border-color: rgba(196,97,58,0.35);
  color: #fff;
}
.idx-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196,97,58,0.35);
}
@media (max-width: 768px) {
  .idx-gallery-filter-bar { padding: 0 20px 28px; gap: 6px; }
  .idx-filter-btn { padding: 7px 13px; font-size: 0.72rem; }
}
/* ════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE FIX v2
   All pages — Mangga Lodge
════════════════════════════════════════ */

/* ── Amenity tabs scrollable on mobile ── */
@media (max-width: 768px) {
  .amenities-tabs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .amenities-tabs { flex-wrap: nowrap; min-width: max-content; gap: 6px; }
  .amenity-tab { flex-shrink: 0; font-size: 0.75rem; padding: 8px 14px; }

  /* About arch inside index */
  .about-img-main-arch-wrap { width: 75% !important; height: 90% !important; }
  .about-img-accent-arch-wrap { width: 50% !important; height: 52% !important; }
  .about-img-main-arch { border-radius: 120px 120px 0 0 !important; }
  .about-img-accent-arch { border-radius: 80px 80px 0 0 !important; }

  /* Gallery arch index */
  .idx-arch-gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    padding: 0 20px 48px !important;
  }

  /* Exp section index */
  .idx-exp-container { grid-template-columns: 1fr !important; gap: 36px !important; }
  .idx-exp-right { flex-direction: column !important; }
  .idx-exp-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .idx-exp-featured-inner { flex-direction: column !important; text-align: center !important; }
  .idx-exp-feat-ring { margin: 0 auto !important; }

  /* Gallery header */
  .idx-gallery-header { padding: 52px 0 32px !important; }
  .idx-gallery-header-inner { padding: 0 20px !important; flex-direction: column !important; align-items: flex-start !important; }

  /* Amenity detail tab panel */
  .amenity-detail { grid-template-columns: 1fr !important; gap: 24px !important; }
  .amenity-detail-image-wrap { width: 100% !important; max-width: 320px !important; margin: 0 auto !important; }

  /* Highlight stats - amenities page */
  .amenity-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }

  /* About values grid */
  .about-values-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
}

@media (max-width: 480px) {
  /* Index gallery arch 1 col */
  .idx-arch-gallery {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 16px 40px !important;
  }

  /* Stats bar */
  .stats-container { grid-template-columns: 1fr 1fr !important; }
  .stat-item { padding: 22px 14px !important; }
  .stat-number { font-size: 1.7rem !important; }

  /* Booking */
  .booking-form-card { padding: 22px 16px !important; border-radius: 18px !important; }
  .form-row { grid-template-columns: 1fr !important; }

  /* Room detail */
  .rd-amenities-grid { grid-template-columns: 1fr 1fr !important; }
  .rd-booking-card { padding: 20px 16px !important; }
  .rd-price-amount { font-size: 1.6rem !important; }

  /* Rooms page — tetap 2 kolom di 480px */
  .rooms-page-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

  /* About stats */
  .about-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }

  /* Gallery page arched grid */
  .gall-arch-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }

  /* Amenity stats */
  .amenity-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  /* Newsletter */
  .newsletter-card { padding: 24px 16px !important; border-radius: 18px !important; }
  .newsletter-form { flex-direction: column !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Contact cards */
  .contact-info-card { gap: 12px !important; padding: 16px !important; }
  .contact-icon { width: 42px !important; height: 42px !important; font-size: 0.88rem !important; border-radius: 11px !important; }

  /* Map transport */
  .map-transport { flex-direction: column !important; }
  .map-transport-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .map-transport-item:last-child { border-bottom: none !important; }
}

/* ── Very small screens ── */
@media (max-width: 360px) {
  .page-header { padding: 90px 0 36px !important; }
  .page-header h1 { font-size: 1.4rem !important; }
  .breadcrumb { font-size: 0.68rem !important; gap: 6px !important; }
  .about-images { height: 220px !important; }
}