/* =============================================
   ARKPLUS HOTEL — Main Stylesheet
   ============================================= */

:root {
  --royal: #000000;
  --royal-light: #222222;
  --gold: #0000ff;
  --gold-light: #4444ff;
  --gold-dark: #0000bb;
  --white: #ffffff;
  --black: #000000;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(0,0,255,0.25);
  --shadow-gold: 0 0 30px rgba(0,0,255,0.3);
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
  --bg: #000000;
  --bg2: #000000;
  --bg3: #000000;
  --surface: rgba(0,0,0,0.85);
  --text: #ffffff;
  --text-muted: #9a9280;
  --card-bg: rgba(0,0,0,0.9);
  --nav-bg: rgba(0,0,0,0.8);
  --footer-bg: #000000;
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg2: #f0f4ff;
  --bg3: #dde5ff;
  --surface: rgba(240,236,225,0.9);
  --text: #000000;
  --text-muted: #5a5545;
  --card-bg: rgba(255,253,248,0.95);
  --nav-bg: rgba(245,243,238,0.85);
  --footer-bg: #000000;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}
/* Prevent scroll/overflow clipping loader on mobile */
body.loader-active {
  overflow: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── LOADING DIALOG ── */
/* Backdrop covers the page behind the dialog */
.loader-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,10,0.72);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(3px);
}
/* The dialog card — small, centered */
.loader-dialog {
  position: relative;
  width: clamp(260px, 88vw, 340px);
  padding: 36px 28px 32px;
  background: var(--royal, #00004a);
  border: 1px solid rgba(0,0,255,0.28);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,0,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  overflow: hidden;
  box-sizing: border-box;
}
/* Subtle radial glow behind logo */
.loader-dialog::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,255,0.12) 0%, transparent 70%);
  animation: loaderGlowPulse 2.5s ease-in-out infinite;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
/* Cancel / close button */
.loader-cancel-btn {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none;
  color: rgba(0,0,255,0.5);
  font-size: 20px; line-height: 1;
  cursor: pointer; padding: 4px 7px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}
.loader-cancel-btn:hover { color: var(--gold, #0000ff); background: rgba(0,0,255,0.08); }

.loader-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,255,0.5);
  box-shadow: 0 0 0 5px rgba(0,0,255,0.08), 0 0 28px rgba(0,0,255,0.22);
  position: relative; z-index: 1;
  animation: loaderLogoPulse 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
  opacity: 0;
}
.loader-hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--gold, #0000ff);
  text-transform: uppercase;
  opacity: 0;
  position: relative; z-index: 1;
  animation: loaderTextReveal 1s 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  text-align: center;
  padding: 0 8px;
  font-display: block;
  min-height: 1.2em;
}
.loader-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold, #0000ff);
  opacity: 0;
  animation: loaderTextReveal 1s 0.8s ease forwards;
  text-align: center;
}
.loader-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 0.25em;
  color: rgba(0,0,255,0.65);
  text-transform: uppercase;
  opacity: 0;
  position: relative; z-index: 1;
  animation: loaderTextReveal 1s 1.3s ease forwards;
  text-align: center;
}
.loader-bar {
  width: 140px; height: 1px;
  background: rgba(0,0,255,0.15);
  position: relative; overflow: hidden;
  opacity: 0;
  z-index: 1;
  animation: loaderTextReveal 0.5s 1.7s ease forwards;
}
.loader-bar::after {
  content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold, #0000ff), transparent);
  animation: loaderBarSlide 1.5s 1.9s ease forwards;
}
/* Gold corner accents on dialog */
.loader-dialog::after {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(0,0,255,0.07);
  border-radius: 8px;
  pointer-events: none;
}

@keyframes loaderGlowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.7; }
  50%       { transform: translate(-50%,-50%) scale(1.2); opacity: 1;   }
}
@keyframes loaderLogoPulse {
  0%   { opacity: 0; transform: scale(0.6) translateY(14px); }
  100% { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes loaderTextReveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBarSlide {
  from { left: -100%; }
  to   { left: 200%; }
}
/* Backdrop fades out (dialog fades with it) */
.loader-fade { animation: loaderFadeOut 0.9s 4.2s ease forwards; }
@keyframes loaderFadeOut {
  from { opacity: 1; visibility: visible; }
  to   { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 2.5%;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,255,0.1);
  transition: var(--transition);
}
nav.scrolled {
  padding: 12px 2.5%;
  border-bottom-color: rgba(0,0,255,0.25);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; pointer-events: all; }
.nav-logo img {
  width: 44px; height: 44px;
  object-fit: contain;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg,var(--gold) 0%,var(--gold-light) 40%,#fff8e1 50%,var(--gold-light) 60%,var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: navShimmer 3s linear infinite;
}
@keyframes navShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  position: relative; transition: color 0.3s;
  font-weight: 500;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* Theme Toggle */
.theme-toggle { position: relative; width: 52px; height: 26px; cursor: pointer; }
.theme-toggle input { display: none; }
.toggle-track {
  position: absolute; inset: 0; border-radius: 13px;
  background: rgba(0,0,255,0.15);
  border: 1px solid rgba(0,0,255,0.4);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5px; font-size: 11px;
}
.toggle-track .sun { color: #ffffff; }
.toggle-track .moon { color: #a0b4ff; }
.toggle-thumb {
  position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: #ffffff; top: 3px; left: 3px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
[data-theme="light"] .toggle-thumb { left: 29px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: var(--transition);
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hamburger icon style variants ── */
/* dots */
.hicon-dots { gap: 4px; }
.hicon-dots span { width: 5px; height: 5px; border-radius: 50%; }
.hicon-dots.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); width: 18px; height: 2px; border-radius: 1px; }
.hicon-dots.open span:nth-child(2) { opacity: 0; }
.hicon-dots.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); width: 18px; height: 2px; border-radius: 1px; }
/* grid */
.hicon-grid { flex-wrap: wrap; width: 22px; gap: 3px; }
.hicon-grid span { width: 8px; height: 8px; border-radius: 2px; }
.hicon-grid.open span:nth-child(1) { transform: rotate(45deg) translate(3px,3px); width: 20px; height: 2px; border-radius: 1px; }
.hicon-grid.open span:nth-child(2) { opacity: 0; }
.hicon-grid.open span:nth-child(3) { transform: rotate(-45deg) translate(3px,-3px); width: 20px; height: 2px; border-radius: 1px; }
/* arrow */
.hicon-arrow span:nth-child(1) { width: 14px; transform: rotate(35deg) translateY(2px); transform-origin: right; }
.hicon-arrow span:nth-child(3) { width: 14px; transform: rotate(-35deg) translateY(-2px); transform-origin: right; }
.hicon-arrow.open span:nth-child(1) { width: 24px; transform: rotate(45deg) translate(5px,5px); }
.hicon-arrow.open span:nth-child(2) { opacity: 0; }
.hicon-arrow.open span:nth-child(3) { width: 24px; transform: rotate(-45deg) translate(5px,-5px); }
/* cross — already shows X shape */
.hicon-cross span { transition: all 0.3s; }
.hicon-cross.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hicon-cross.open span:nth-child(2) { opacity: 0; }
.hicon-cross.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* squeeze */
.hicon-squeeze span { transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.3s; }
.hicon-squeeze.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hicon-squeeze.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.hicon-squeeze.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* spin */
.hicon-spin { transition: transform 0.4s ease; }
.hicon-spin.open { transform: rotate(90deg); }
.hicon-spin.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hicon-spin.open span:nth-child(2) { opacity: 0; }
.hicon-spin.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* elastic */
.hicon-elastic span { transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55), opacity 0.3s; }
.hicon-elastic.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hicon-elastic.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.hicon-elastic.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px,85vw); height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--glass-border);
  z-index: 999;
  padding: 90px 40px 40px;
  transition: right 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  backdrop-filter: blur(30px);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--text); text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s; display: block;
}
.mobile-menu a:hover { color: var(--gold); }
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 998; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 6;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active { opacity: 1; }
.hero-slide.zoom-in { transform: scale(1); }
.hero-slide.zoom-in.active { animation: smoothZoomIn 11s ease-out forwards; }
.hero-slide.zoom-out { transform: scale(1.12); }
.hero-slide.zoom-out.active { animation: smoothZoomOut 11s ease-out forwards; }
@keyframes smoothZoomIn {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}
@keyframes smoothZoomOut {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(0,0,20,0.4) 0%,rgba(0,0,40,0.55) 50%,rgba(0,0,10,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  animation: heroReveal 1.5s 3.8s ease both;
  margin-top: 20px;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px,5.5vw,68px);
  font-weight: 300; line-height: 1.1;
  color: #fff; margin-bottom: 12px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(12px,1.5vw,15px); font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em; margin-bottom: 24px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: #000;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: var(--transition);
  clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,var(--gold-light),var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,255,0.45); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.hero-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-star {
  position: absolute;
  color: rgba(0,0,255,0.55);
  animation: starFloat 7s ease-in-out infinite, starTwinkle 3s ease-in-out infinite alternate;
  text-shadow: 0 0 12px rgba(0,0,255,0.6);
  user-select: none;
}
@keyframes starFloat {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-22px) rotate(15deg) scale(1.15); }
  66% { transform: translateY(-10px) rotate(-10deg) scale(0.9); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}
@keyframes starTwinkle {
  from { opacity: 0.35; text-shadow: 0 0 6px rgba(0,0,255,0.3); }
  to { opacity: 1; text-shadow: 0 0 20px rgba(0,0,255,0.9),0 0 40px rgba(0,0,255,0.4); }
}
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: heroReveal 1s 4.5s ease both;
}
.scroll-indicator span { font-size: 9px; letter-spacing: 0.4em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom,var(--gold),transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTIONS ── */
section { padding: 100px 2.5%; }
.section-tag { font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5vw,60px); font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-divider { width: 60px; height: 1px; background: linear-gradient(90deg,var(--gold),transparent); margin: 24px 0; }
.section-sub { font-size: 14px; line-height: 1.8; color: var(--text-muted); max-width: 540px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease,transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease,transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease,transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── ROOMS ── */
.rooms-section { background: var(--bg2); }
.rooms-header { text-align: center; margin-bottom: 60px; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 28px; }
.room-card {
  background: var(--card-bg);
  opacity: var(--card-opacity, 1);
  width: var(--card-width, 100%);
  min-height: var(--card-min-height, 0);
  max-width: var(--card-max-width, none);
  border: var(--card-border-width, 1px) var(--card-border-style, solid) var(--card-border-color, rgba(0,0,255,0.12));
  border-radius: var(--card-border-radius, 4px); overflow: hidden;
  transition: var(--transition); position: relative;
  padding: var(--card-padding, 0);
  margin: var(--card-margin, 0);
}
.room-card:hover { transform: translateY(-8px); border-color: rgba(0,0,255,0.5); box-shadow: var(--card-hover-shadow, 0 30px 60px rgba(0,0,0,0.4)),var(--shadow-gold); }
.room-card-img { position: relative; height: 240px; overflow: hidden; cursor: pointer; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.room-card:hover .room-card-img img { transform: scale(1.08); }
.img-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; opacity: 0; transition: opacity 0.3s; }
.room-card:hover .img-nav { opacity: 1; }
.img-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.6); border: 1px solid rgba(0,0,255,0.4); color: var(--gold); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.img-btn:hover { background: rgba(0,0,255,0.3); }
.img-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; }
.img-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: background 0.3s; cursor: pointer; }
.img-dot.active { background: var(--gold); }
.room-badge { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: #000; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; font-weight: 600; }
.room-enlarge-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent;
  color: var(--gold);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px; font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  user-select: none;
  margin-bottom: 14px;
}
.room-enlarge-btn:hover { background: var(--gold); color: #000; transform: scale(1.04); }
.room-img-name { font-size: 9px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; text-align: center; padding: 10px 0 2px; font-weight: 600; }

/* ── Room Fullscreen Icon ── */


/* ── Room Lightbox ── */
.room-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
}
.room-lightbox.open { display: flex; }
.room-lb-inner {
  max-width: 960px; width: 92%;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.room-lb-img-wrap {
  width: 100%; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.room-lb-img {
  max-height: 70vh;
  width: 100%; object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 70px rgba(0,0,255,0.18);
  transition: opacity 0.25s;
  cursor: zoom-in;
  transform-origin: center center;
}
.room-lb-img.zoomed {
  cursor: zoom-out;
  transform: scale(2);
  transition: transform 0.35s ease;
  object-fit: contain;
}
.room-lb-caption {
  text-align: center; padding: 14px 10px 0;
  min-height: 56px;
}
.room-lb-label {
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 4px; font-weight: 600;
}
.room-lb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: rgba(240,236,224,0.9);
  letter-spacing: 0.04em;
}
.room-lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(0,0,255,0.15);
  border: 1px solid rgba(0,0,255,0.4);
  color: var(--gold-light); font-size: 20px;
  width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
  z-index: 10001;
}
.room-lb-close:hover { background: rgba(0,0,255,0.35); }
.room-lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,255,0.1);
  border: 1px solid rgba(0,0,255,0.3);
  color: var(--gold-light); font-size: 40px;
  width: 50px; height: 70px;
  border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
  z-index: 10001;
}
.room-lb-nav:hover { background: rgba(0,0,255,0.28); }
.room-lb-nav.prev { left: 12px; }
.room-lb-nav.next { right: 12px; }
.room-lb-dots {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.room-lb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,255,0.3);
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.room-lb-dot.active { background: var(--gold); transform: scale(1.35); }
.room-lb-progress {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.07);
  z-index: 10002;
}
.room-lb-bar {
  height: 100%; background: var(--gold);
  width: 0%; transition: width linear;
}
@media (max-width: 768px) {
  .room-lb-nav { display: none; }
  .room-lb-img { max-height: 55vh; }
}
.room-card-body { padding: var(--card-body-padding, 24px); margin: var(--card-body-margin, 0); background: var(--card-body-bg, transparent); border-top: var(--card-body-border-width, 1px) var(--card-body-border-style, solid) var(--card-body-border-color, transparent); border-radius: var(--card-body-border-radius, 0); box-shadow: var(--card-body-shadow, none); }
.room-type { font-size: 9px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.room-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.room-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.room-amenities { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; justify-content: center; text-align: center; }
.amenity { font-size: 10px; color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
/* .amenity svg removed — icons deleted */
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(0,0,255,0.1); }
.room-price { font-family: 'Cormorant Garamond', serif; }
.room-price .currency { font-size: 13px; color: var(--gold); }
.room-price .amount { font-size: 28px; font-weight: 600; color: var(--text); }
.room-price .per { font-size: 11px; color: var(--text-muted); }
.btn-book { padding: 10px 24px; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; font-weight: 600; transition: var(--transition); font-family: 'Montserrat', sans-serif; }
.btn-book:hover { background: var(--gold); color: #000; box-shadow: 0 8px 25px rgba(0,0,255,0.3); }

/* ── CONTACT ── */
.contact-section { background: var(--bg3); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(0,0,255,0.1); border: 1px solid rgba(0,0,255,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 18px; }
.contact-label { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.contact-value { font-size: 15px; color: var(--text); font-weight: 500; }
/* ── Map ── */
.arkplus-map-wrap { margin-top: 28px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,255,0.22); box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
.arkplus-map-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px 20px; background: var(--bg2); border-top: 1px solid rgba(0,0,255,0.22); color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s; }
.arkplus-map-btn svg { flex-shrink: 0; stroke: var(--gold); transition: stroke 0.2s; }
.arkplus-map-btn:hover { background: rgba(0,0,255,0.12); color: var(--gold); }
[data-theme="light"] .arkplus-map-btn { background: var(--bg2); }
.contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--glass-bg); border: 1px solid rgba(0,0,255,0.18); border-radius: 12px; padding: 36px 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); backdrop-filter: blur(8px); }
.contact-form-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; letter-spacing: 0.04em; color: var(--text); margin-bottom: 4px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,255,0.15); }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.form-input { background: var(--glass-bg); border: 1px solid rgba(0,0,255,0.2); border-radius: 2px; padding: 13px 16px; color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 13px; outline: none; transition: border-color 0.3s; width: 100%; }
.form-input:focus { border-color: var(--gold); background: rgba(0,0,255,0.05); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 110px; }
.btn-submit { padding: 14px 32px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: #000; border: none; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: var(--transition); align-self: flex-start; clip-path: polygon(6px 0,100% 0,calc(100% - 6px) 100%,0 100%); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,255,0.4); background: linear-gradient(135deg,var(--gold-light),var(--gold)); }

/* ── SOCIAL ── */
.social-section { background: var(--bg); padding: 80px 2.5%; text-align: center; }
.social-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,44px); font-weight: 400; color: var(--text); margin-bottom: 10px; }
.social-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.social-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--glass-bg); border: 1px solid rgba(0,0,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 20px; text-decoration: none; transition: var(--transition); cursor: pointer; }
.social-btn:hover { background: rgba(0,0,255,0.15); border-color: var(--gold); color: var(--gold); transform: translateY(-4px) scale(1.1); box-shadow: var(--shadow-gold); }

/* ── FOOTER ── */
footer { background: var(--footer-bg); padding: 60px 2.5% 30px; border-top: 1px solid rgba(0,0,255,0.15); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 16px; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 10px; }
.footer-brand-text { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-copy a { color: var(--gold); text-decoration: none; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--royal); padding: 70px 2.5%; display: flex; align-items: center; justify-content: center; gap: 80px; flex-wrap: wrap; text-align: center; }
.about-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
.about-stat .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ── RATING STRIP ── */
.rating-strip {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.rating-strip img.arkplus-rating-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.cart-badge { position: absolute; top: -4px; right: -4px; background: linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color: #000; font-size: 10px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid #000000; box-shadow: 0 0 10px var(--gold); opacity: 0; transform: scale(0); transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275); }
.cart-badge.pop { opacity: 1; transform: scale(1); animation: badgePulse 0.4s ease-out; }
@keyframes badgePulse { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,10,0.85); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s; backdrop-filter: blur(8px); padding: 20px; }
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box { background: var(--bg2); border: 1px solid rgba(0,0,255,0.3); border-radius: 4px; width: 100%; max-width: 460px; padding: 44px 40px; position: relative; transform: scale(0.9) translateY(30px); transition: transform 0.4s ease; max-height: 90vh; overflow-y: auto; }
.modal-overlay.show .modal-box { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; transition: color 0.2s; line-height: 1; }
.modal-close:hover { color: var(--gold); }
.modal-logo { text-align: center; margin-bottom: 28px; }
.modal-logo img { width: 54px; height: 54px; object-fit: contain; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--text); margin: 10px 0 4px; }
.modal-sub { font-size: 12px; color: var(--text-muted); }
.modal-tabs { display: flex; gap: 0; margin: 24px 0; border: 1px solid rgba(0,0,255,0.2); border-radius: 2px; overflow: hidden; }
.modal-tab { flex: 1; padding: 10px; background: none; border: none; color: var(--text-muted); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: var(--transition); font-family: 'Montserrat', sans-serif; }
.modal-tab.active { background: var(--gold); color: #000; font-weight: 600; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-input { background: var(--glass-bg); border: 1px solid rgba(0,0,255,0.2); border-radius: 2px; padding: 12px 14px; color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 13px; outline: none; transition: border-color 0.3s; width: 100%; }
.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: var(--text-muted); }
.modal-btn { padding: 13px; width: 100%; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: #000; border: none; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: var(--transition); margin-top: 6px; }
.modal-btn:hover { background: linear-gradient(135deg,var(--gold-light),var(--gold)); box-shadow: 0 8px 25px rgba(0,0,255,0.35); }
.modal-divider { text-align: center; font-size: 11px; color: var(--text-muted); margin: 4px 0; }
.cart-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cart-room-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); margin: 12px 0; }
.btn-cart-action { padding: 13px; width: 100%; border: none; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: var(--transition); }
.btn-cart-primary { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: #000; }
.btn-cart-primary:hover { box-shadow: 0 8px 25px rgba(0,0,255,0.35); background: linear-gradient(135deg,var(--gold-light),var(--gold)); }
.btn-cart-secondary { background: transparent; border: 1px solid rgba(0,0,255,0.3); color: var(--gold); }
.btn-cart-secondary:hover { background: rgba(0,0,255,0.1); }

/* ── GOLD SEPARATOR ── */
.gold-sep { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 0; }

/* ── WOOCOMMERCE COMPAT ── */
.woocommerce-notices-wrapper { display: none; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  section { padding: 70px 5%; }
  .hero { min-height: 400px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-strip { gap: 40px; }
  .modal-box { padding: 32px 24px; }
}

/* ══════════════════════════════════════════
   FULL-SCREEN OVERLAY (Cart / Profile)
══════════════════════════════════════════ */
.arkplus-screen-overlay {
  position: fixed; inset: 0; z-index: 3000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.arkplus-screen-overlay.show { opacity: 1; pointer-events: all; }

.arkplus-screen {
  position: absolute; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.arkplus-screen-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg2);
  border-bottom: 1px solid rgba(0,0,255,0.2);
  flex-shrink: 0;
}
.arkplus-screen-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.arkplus-screen-back,
.arkplus-screen-close {
  background: none; border: none;
  color: var(--text-muted); font-size: 14px;
  cursor: pointer; padding: 6px 10px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.arkplus-screen-back:hover,
.arkplus-screen-close:hover { color: var(--gold); }
.arkplus-screen-close { font-size: 22px; }

.arkplus-screen-body {
  flex: 1; overflow-y: auto;
  padding: 24px;
  max-width: 680px; margin: 0 auto; width: 100%;
}

/* ── CART ITEMS ── */
.cart-items-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.cart-item-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,255,0.15);
  border-radius: 6px; padding: 14px;
  transition: border-color 0.2s;
}
.cart-item-card:hover { border-color: rgba(0,0,255,0.3); }

.cart-item-img {
  width: 90px; height: 80px; flex-shrink: 0;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(0,0,255,0.15);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold);
  margin-bottom: 6px;
}
.cart-item-meta {
  display: flex; flex-direction: column; gap: 3px;
  font-size: 12px; color: var(--text-muted);
}
.cart-item-subtotal {
  margin-top: 8px; font-size: 13px;
  font-weight: 600; color: var(--text);
}

.cart-item-actions {
  display: flex; flex-direction: column; gap: 6px; flex-shrink: 0;
}
.cart-item-remove,
.cart-item-edit {
  background: none; border: 1px solid rgba(0,0,255,0.2);
  border-radius: 4px; padding: 5px 8px;
  cursor: pointer; font-size: 13px;
  transition: all 0.2s; color: var(--text-muted);
}
.cart-item-remove:hover { border-color: #e55; color: #e55; }
.cart-item-edit:hover { border-color: var(--gold); color: var(--gold); }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 60px 20px; text-align: center;
}

/* ── CART SUMMARY ── */
.cart-summary {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,255,0.2);
  border-radius: 6px; padding: 20px;
  margin-bottom: 16px;
}
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,255,0.08);
}
.cart-discount-row {
  display: flex; gap: 10px; margin: 14px 0 8px;
  align-items: center;
}
.cart-summary-total {
  display: flex; justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold); margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,255,0.3);
}

/* ── TRUST ROW ── */
.cart-trust-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 20px;
}
.cart-trust-badge {
  font-size: 11px; color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid rgba(0,0,255,0.15);
  border-radius: 20px; padding: 6px 14px;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   PROFILE SCREEN
══════════════════════════════════════════ */
.profile-header {
  display: flex; align-items: center; gap: 18px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,255,0.2);
  border-radius: 8px; margin-bottom: 20px;
}
.profile-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: #000; font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}
.profile-header-info { flex: 1; }
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--text);
  margin-bottom: 4px;
}
.profile-email { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.profile-since { font-size: 11px; color: var(--gold); opacity: 0.8; }

.profile-section {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,255,0.12);
  border-radius: 8px; padding: 20px;
  margin-bottom: 16px;
}
.profile-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold);
  margin-bottom: 16px; letter-spacing: 0.05em;
}

.profile-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.profile-field label {
  display: block; font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 5px;
}
.profile-field .modal-input { width: 100%; }

.profile-actions {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
}

/* ── BOOKING HISTORY ITEMS ── */
.booking-history-item {
  padding: 12px 14px;
  border: 1px solid rgba(0,0,255,0.12);
  border-radius: 6px; margin-bottom: 8px;
  background: rgba(0,0,255,0.04);
  font-size: 13px; color: var(--text);
}
.booking-ref {
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.1em; margin-left: 8px;
}

/* ── BOOKING MODAL DATES ── */
input[type="date"].modal-input,
input[type="time"].modal-input {
  color-scheme: dark;
}
[data-theme="light"] input[type="date"].modal-input,
[data-theme="light"] input[type="time"].modal-input {
  color-scheme: light;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .profile-form-grid { grid-template-columns: 1fr; }
  .cart-item-card { flex-wrap: wrap; }
  .cart-item-img { width: 100%; height: 140px; }
  .arkplus-screen-body { padding: 16px; }
  .profile-header { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════ */
.gallery-section {
  padding: 90px 24px 70px;
  background: var(--bg2);
}
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ── Grid ── */
.gallery-grid-wrap { max-width: 1280px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,255,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  aspect-ratio: 4/3;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,255,0.2); }
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,30,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.gallery-card-desc {
  font-size: 12px;
  color: rgba(240,236,224,0.85);
  line-height: 1.5;
}
.gallery-card-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(0,0,255,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 16px;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-card:hover .gallery-card-zoom { opacity: 1; transform: scale(1); }

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
}
.gallery-lightbox.open { display: flex; }
.gallery-lb-inner {
  max-width: 900px; width: 90%;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.gallery-lb-img {
  max-height: 65vh;
  width: 100%; object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(0,0,255,0.2);
  transition: opacity 0.35s;
}
.gallery-lb-img.fade { opacity: 0; }
.gallery-lb-caption {
  text-align: center; padding: 16px 10px 0;
  min-height: 60px;
}
.gallery-lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--gold-light);
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.gallery-lb-desc { font-size: 13px; color: rgba(240,236,224,0.75); }
.gallery-lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(0,0,255,0.15);
  border: 1px solid rgba(0,0,255,0.4);
  color: var(--gold-light); font-size: 20px;
  width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
  z-index: 10000;
}
.gallery-lb-close:hover { background: rgba(0,0,255,0.35); }
.gallery-lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,255,0.12);
  border: 1px solid rgba(0,0,255,0.3);
  color: var(--gold-light); font-size: 40px;
  width: 50px; height: 70px;
  border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
  z-index: 10000;
}
.gallery-lb-nav:hover { background: rgba(0,0,255,0.3); }
.gallery-lb-nav.prev { left: 12px; }
.gallery-lb-nav.next { right: 12px; }
.gallery-lb-dots {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,255,0.35);
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.gallery-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── Auto-slideshow progress bar ── */
.gallery-lb-progress {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.08);
  z-index: 10001;
}
.gallery-lb-bar {
  height: 100%; background: var(--gold);
  width: 0%; transition: width linear;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
  .gallery-lb-nav { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ════════════════════════════════════════════════
   ARKPLUS PATCHES
════════════════════════════════════════════════ */

/* ── ITEM 1: Auth Modal — Back to Website button, no backdrop-dismiss ── */
.auth-modal-no-backdrop { /* backdrop click blocked in JS */ }
.auth-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(0,0,255,0.3);
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 2px;
  margin-bottom: 18px;
  transition: color 0.2s, border-color 0.2s;
  width: 100%;
  justify-content: center;
}
.auth-back-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ── ITEM 4: Scroll indicator moved inside .hero-content (below button) ── */
/* Override absolute positioning so it flows naturally below button */
.hero-content .scroll-indicator {
  position: static;
  transform: none;
  margin-top: 28px;
  left: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroReveal 1s 4.5s ease both;
}
.scroll-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: block;
}

/* ── ITEM 9: Loader dialog — star canvas fills dialog ── */
.loader-dialog {
  position: relative;
  overflow: hidden;
}
#loaderStarCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: 12px;
}
.loader-dialog .loader-logo,
.loader-dialog .loader-hotel-name,
.loader-dialog .loader-subtitle,
.loader-dialog .loader-bar {
  position: relative;
  z-index: 1;
}

/* ── ITEM 3: Theme toggle icon swap fix ──
   The CSS classes .sun and .moon keep their names, but the icons in HTML
   are now swapped so the visual appearance is swapped per item 3.
   No extra CSS needed — already handled in header.php HTML. */

/* ── SHORTCODE PAGE WRAPPERS ── */
.arkplus-page-wrapper {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px 60px;
}
.arkplus-page-content {
  width: 100%;
}
.arkplus-auth-page {
  display: flex;
  justify-content: center;
}
.arkplus-auth-box {
  background: var(--bg2, #000000);
  border: 1px solid rgba(0,0,255,0.2);
  border-radius: 10px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
@media (max-width: 480px) {
  .arkplus-auth-box { padding: 28px 20px; }
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS SECTION  — card-grid design
   ══════════════════════════════════════════════════════ */

.testi-section {
  background: var(--bg2);
}

/* ── Section title override ── */
.testi-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-top: 6px;
}

/* ── 3-column grid, 2 rows = 6 cards ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Card ── */
.testi-card {
  background: #1a1d2e;
  border: 1px solid rgba(0,0,255,0.15);
  border-radius: 16px;
  padding: 0 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: visible;
}
/* light-mode card stays dark for the design to work */
[data-theme="light"] .testi-card {
  background: #1e2235;
}
.testi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,0,255,0.5);
  box-shadow: 0 28px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,255,0.15);
}

/* ── Avatar – centred, pulled up from card top ── */
.testi-avatar-wrap {
  margin-top: -52px; /* pull half avatar above card */
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Glowing golden ring */
.testi-avatar-ring {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  padding: 4px;
  box-shadow: 0 0 20px rgba(0,0,255,0.45), 0 0 40px rgba(0,0,255,0.18);
}

/* Subheading below the testimonials title */
.testi-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--gold);
  margin: 8px 0 0;
  letter-spacing: 0.04em;
}

/* Optional spinning gold ring */
@keyframes testiRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.testi-avatar-ring.ring-spin {
  animation: testiRingSpin 4s linear infinite;
}

.testi-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(0,0,255,0.3);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testi-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

/* ── Name row with flanking curly quotes ── */
.testi-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 14px;
}
.testi-ql,
.testi-qr {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 4px;
}
.testi-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.testi-job {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── Testimony text ── */
.testi-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(240,236,224,0.72);
  margin: 0 0 18px;
  flex: 1;
}

/* ── Stars ── */
.testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-star {
  font-size: 17px;
  color: rgba(0,0,255,0.22);
}
.testi-star.filled {
  color: #e8a020;
}


/* ── Needs top padding to accommodate pulled-up avatars ── */
.testi-grid {
  padding-top: 60px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  .testi-card { padding: 0 20px 28px; }
}


/* ═══════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS — Cart (left) & Profile (right)
═══════════════════════════════════════════════════════ */

/* ── Pill-shaped FAB container ── */
.arkplus-fab {
  position: fixed;
  bottom: 40px;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1),
              transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.arkplus-fab.fab-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.arkplus-fab-cart    { left: 24px; }
.arkplus-fab-profile { right: 24px; }
.arkplus-fab-home    { left: 50%; transform: translateX(-50%) translateY(30px) scale(0.85); }
.arkplus-fab-home.fab-visible { transform: translateX(-50%) translateY(0) scale(1); }

/* ── Pill button ── */
.arkplus-fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #3333ff 0%, #0000ff 45%, #0000bb 100%);
  box-shadow:
    0 4px 20px rgba(0,0,255,0.55),
    0 1px 4px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease;
  text-decoration: none;
  color: #1a1000;
  white-space: nowrap;
  overflow: hidden;
  max-width: 160px;
}
.arkplus-fab-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 32px rgba(0,0,255,0.7),
    0 2px 8px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  color: #0a0800;
}
.arkplus-fab-btn:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 2px 10px rgba(0,0,255,0.45), 0 1px 3px rgba(0,0,0,0.4);
}
.arkplus-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arkplus-fab-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.arkplus-fab-pill-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}
.arkplus-fab-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: conic-gradient(
    rgba(255,255,255,0.9) 0deg,
    rgba(0,0,255,0.4) 90deg,
    rgba(255,255,255,0.9) 180deg,
    rgba(0,0,255,0.4) 270deg,
    rgba(255,255,255,0.9) 360deg
  );
  z-index: -1;
  animation: fabRingRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}
.arkplus-fab-btn:hover::before { opacity: 1; }
@keyframes fabRingRotate { to { transform: rotate(360deg); } }

/* Green online dot when logged in */
.arkplus-fab-btn.fab-logged-in::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5b8a00;
  border: 1.5px solid #0000ff;
  box-shadow: 0 0 6px rgba(91,138,0,0.7);
}

/* Cart badge */
.arkplus-fab-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #0000ff;
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #000000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275), opacity 0.3s;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
}
.arkplus-fab-badge.visible { opacity: 1; transform: scale(1); }

@keyframes fabPulseIn {
  0%   { box-shadow: 0 0 0 0 rgba(0,0,255,0.7); }
  60%  { box-shadow: 0 0 0 16px rgba(0,0,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(0,0,255,0); }
}
.arkplus-fab.fab-pulse .arkplus-fab-btn { animation: fabPulseIn 0.9s ease-out; }

.arkplus-fab-cart.fab-entering-left    { animation: fabSlideFromLeft   0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.arkplus-fab-profile.fab-entering-right { animation: fabSlideFromRight  0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.arkplus-fab-home.fab-entering-up       { animation: fabSlideFromBottom 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes fabSlideFromLeft   { from { opacity:0; transform: translateX(-60px) scale(0.8); } to { opacity:1; transform: translateX(0) scale(1); } }
@keyframes fabSlideFromRight  { from { opacity:0; transform: translateX(60px)  scale(0.8); } to { opacity:1; transform: translateX(0) scale(1); } }
@keyframes fabSlideFromBottom { from { opacity:0; transform: translateX(-50%) translateY(40px) scale(0.8); } to { opacity:1; transform: translateX(-50%) translateY(0) scale(1); } }

[data-theme="light"] .arkplus-fab-btn {
  box-shadow: 0 4px 20px rgba(160,120,40,0.4), 0 1px 4px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.5);
  color: #2a1800;
}
[data-theme="light"] .arkplus-fab-badge { background: #0000ff; color: #fff; border-color: #ffffff; }

@media (max-width: 480px) {
  .arkplus-fab-cart    { left: 14px; bottom: 24px; }
  .arkplus-fab-profile { right: 14px; bottom: 24px; }
  .arkplus-fab-home    { bottom: 24px; }
  .arkplus-fab-btn     { height: 38px; padding: 0 14px 0 11px; gap: 6px; }
  .arkplus-fab-icon svg { width: 16px; height: 16px; }
  .arkplus-fab-pill-label { font-size: 9px; max-width: 72px; }
}
[data-theme="light"] .arkplus-fab-badge { border-color: #ffffff; }

/* Responsive — shrink on small screens */
@media (max-width: 480px) {
  .arkplus-fab-cart    { left: 16px; bottom: 24px; }
  .arkplus-fab-profile { right: 16px; bottom: 24px; }
  .arkplus-fab-home    { bottom: 24px; }
  .arkplus-fab-btn     { height: 38px; padding: 0 12px 0 10px; gap: 6px; }
  .arkplus-fab-icon svg { width: 16px; height: 16px; }
  .arkplus-fab-pill-label { font-size: 9px; max-width: 80px; }
}

/* Map iframe — override hardcoded width/height from Google embed code */
.arkplus-map-wrap iframe { display: block; width: 100% !important; height: 260px !important; border: 0; }
.arkplus-map-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 28px 0 10px; }

/* ══════════════════════════════════════════════
   ROOM DETAIL PANEL (Full-View Slide-In Page)
══════════════════════════════════════════════ */

/* ── Panel shell ── */
.rdp-panel {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--bg, #000000);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
.rdp-panel.open {
  transform: translateY(0);
}
/* Hide navbar when panel is open */
#navbar.rdp-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
body.rdp-open { overflow: hidden; }

/* ── Header ── */
.rdp-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.rdp-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,255,0.3);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px 8px 10px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.rdp-back:hover { background: rgba(0,0,255,0.18); border-color: var(--gold); }
.rdp-back svg { width: 16px; height: 16px; }
.rdp-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rdp-photo-count {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.55);
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.rdp-share-btn {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,255,0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  position: relative;
}
.rdp-share-btn svg { width: 16px; height: 16px; }
.rdp-share-btn:hover { background: rgba(0,0,255,0.18); border-color: var(--gold); }
.rdp-share-btn.copied::after {
  content: 'Copied!';
  position: absolute;
  bottom: -28px;
  right: 0;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

/* ── Gallery ── */
.rdp-gallery {
  flex-shrink: 0;
  position: relative;
}
.rdp-main-photo-wrap {
  position: relative;
  height: 52vw;
  max-height: 340px;
  min-height: 220px;
  background: var(--bg2, #000000);
  overflow: hidden;
}
.rdp-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease;
}
/* Availability badge */
.rdp-availability-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(56,220,120,0.45);
  color: #38dc78;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 5px 12px;
  backdrop-filter: blur(8px);
}
.rdp-avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #38dc78;
  box-shadow: 0 0 8px #38dc78;
  animation: rdp-pulse 1.6s infinite;
}
@keyframes rdp-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 6px #38dc78; }
  50%      { opacity: 0.55; box-shadow: 0 0 14px #38dc78; }
}
/* Fullscreen button */
.rdp-fullscreen-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(0,0,255,0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.rdp-fullscreen-btn svg { width: 16px; height: 16px; }
.rdp-fullscreen-btn:hover { background: rgba(0,0,255,0.2); border-color: var(--gold); }
/* Image label badge */
.rdp-img-label-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.5);
  padding: 4px 12px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
}
/* Photo nav arrows */
.rdp-gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.rdp-nav-btn {
  width: 36px; height: 52px;
  background: rgba(0,0,0,0.42);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.rdp-nav-btn:hover { background: rgba(0,0,255,0.25); }
/* Thumbnail strip */
.rdp-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  overflow-x: auto;
  background: var(--bg2, #000000);
  scrollbar-width: none;
}
.rdp-thumbs::-webkit-scrollbar { display: none; }
.rdp-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 44px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
  overflow: hidden;
}
.rdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rdp-thumb.active { border-color: var(--gold); opacity: 1; }
.rdp-thumb:hover { opacity: 0.85; }

/* ── Scroll body ── */
.rdp-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 120px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

/* ── Sections ── */
.rdp-section {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(0,0,255,0.08);
}
.rdp-section:last-child { border-bottom: none; }
.rdp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

/* ── Title row ── */
.rdp-title-row {
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.rdp-type-badge {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(0,0,255,0.4);
  padding: 3px 10px;
  margin-bottom: 8px;
}
.rdp-room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 300;
  color: var(--text);
  margin: 0;
  line-height: 1.15;
}

/* ── Highlights ── */
.rdp-highlights {
  display: flex;
  gap: 0;
  padding: 16px 20px 0;
  border-bottom: 1px solid rgba(0,0,255,0.08);
  padding-bottom: 20px;
}
.rdp-hl-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  border-right: 1px solid rgba(0,0,255,0.1);
  padding: 6px 0;
}
.rdp-hl-item:last-child { border-right: none; }
.rdp-hl-item svg { width: 20px; height: 20px; color: var(--gold); }

/* ── Description ── */
.rdp-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── Amenities grid ── */
.rdp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.rdp-amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,255,0.04);
  border: 1px solid rgba(0,0,255,0.1);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.rdp-amenity-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

/* ── Video ── */
.rdp-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,255,0.15);
}
.rdp-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ── Price section ── */
.rdp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rdp-price-display {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.rdp-currency { font-size: 14px; color: var(--gold); }
.rdp-amount   { font-size: 34px; font-weight: 600; color: var(--text); }
.rdp-per      { font-size: 12px; color: var(--text-muted); }

/* ── Book button ── */
.rdp-book-btn {
  padding: 14px 28px;
  background: var(--gold);
  border: none;
  color: #000;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.rdp-book-btn:hover { background: var(--gold-light); box-shadow: 0 8px 25px rgba(0,0,255,0.35); }
.rdp-book-btn:active { transform: scale(0.97); }

/* ── Similar rooms strip ── */
.rdp-similar-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.rdp-similar-strip::-webkit-scrollbar { display: none; }
.rdp-similar-card {
  flex-shrink: 0;
  width: 160px;
  cursor: pointer;
  border: 1px solid rgba(0,0,255,0.12);
  background: var(--bg2);
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.rdp-similar-card:hover { border-color: rgba(0,0,255,0.45); transform: translateY(-2px); }
.rdp-sim-img-wrap { height: 100px; overflow: hidden; }
.rdp-sim-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.rdp-similar-card:hover .rdp-sim-img-wrap img { transform: scale(1.06); }
.rdp-sim-body { padding: 10px; }
.rdp-sim-badge {
  font-size: 7px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.rdp-sim-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdp-sim-price {
  font-size: 12px;
  color: var(--gold);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}
.rdp-sim-price span { font-size: 10px; color: var(--text-muted); }

/* ── Sticky Book Now bar ── */
.rdp-sticky-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--bg2);
  border-top: 1px solid rgba(0,0,255,0.2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.rdp-sticky-bar.visible { transform: translateY(0); }
.rdp-sticky-info { display: flex; flex-direction: column; gap: 2px; }
.rdp-sticky-name {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.rdp-sticky-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.rdp-sticky-per { font-size: 11px; color: var(--text-muted); }
.rdp-sticky-book { padding: 12px 22px; }

/* ── Light theme overrides ── */
[data-theme="light"] .rdp-panel { background: var(--bg); }
[data-theme="light"] .rdp-back,
[data-theme="light"] .rdp-share-btn,
[data-theme="light"] .rdp-fullscreen-btn { background: rgba(255,255,255,0.75); border-color: rgba(0,0,255,0.4); color: #000000; }
[data-theme="light"] .rdp-desc { color: rgba(10,10,31,0.7); }
[data-theme="light"] .rdp-sticky-bar { background: var(--bg2); }
[data-theme="light"] .rdp-similar-card { background: var(--bg2); }
[data-theme="light"] .rdp-amenity-item { background: rgba(0,0,255,0.06); }
[data-theme="light"] .rdp-availability-badge { background: rgba(255,255,255,0.8); color: #1a9e55; border-color: rgba(56,220,120,0.5); }

/* ── Responsive ── */
@media (min-width: 768px) {
  .rdp-main-photo-wrap { max-height: 460px; min-height: 320px; height: 40vw; }
  .rdp-amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .rdp-section { padding: 28px 32px; }
  .rdp-title-row { padding: 28px 32px 0; }
  .rdp-highlights { padding: 20px 32px 24px; }
  .rdp-similar-card { width: 200px; }
  .rdp-sim-img-wrap { height: 130px; }
}
@media (min-width: 1024px) {
  .rdp-panel {
    width: 520px;
    left: auto;
    right: 0;
    transform: translateX(100%);
    box-shadow: -8px 0 60px rgba(0,0,0,0.6);
  }
  .rdp-panel.open { transform: translateX(0); }
  .rdp-main-photo-wrap { height: 300px; max-height: 300px; }
  .rdp-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   APP DOWNLOAD SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.app-section {
  padding: 80px 20px;
  background: var(--bg2, #0d0d2b);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,0,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.app-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.app-section-content {
  flex: 1 1 340px;
}
.app-section-title {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold, #0000ff);
  margin: 0 0 16px;
  line-height: 1.2;
}
.app-section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted, rgba(255,255,255,0.7));
  margin: 0 0 36px;
  max-width: 480px;
}
.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--gold, #0000ff);
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.app-btn--android {
  background: var(--gold, #0000ff);
  color: #000000;
}
.app-btn--android:hover {
  background: #b8973c;
  border-color: #b8973c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,255,0.35);
}
.app-btn--ios {
  background: transparent;
  color: var(--gold, #0000ff);
}
.app-btn--ios:hover {
  background: rgba(0,0,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,255,0.15);
}
.app-section-mockups {
  flex: 0 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
.app-mockup {
  width: 160px;
  flex-shrink: 0;
}
.app-mockup img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: block;
}
.app-mockup--android { transform: rotate(-3deg) translateY(10px); }
.app-mockup--ios     { transform: rotate(3deg); }

/* Light theme */
[data-theme="light"] .app-section { background: #f4f0e8; }
[data-theme="light"] .app-btn--ios { color: #8a6e1e; border-color: #8a6e1e; }
[data-theme="light"] .app-btn--ios:hover { background: rgba(138,110,30,0.08); }
[data-theme="light"] .app-section-text { color: rgba(10,10,31,0.65); }

/* ── iOS Tutorial Dialog ── */
.arkplus-dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.arkplus-dialog-overlay.is-open { display: flex; }
.arkplus-dialog-box {
  background: var(--bg2, #0d0d2b);
  border: 1px solid rgba(0,0,255,0.3);
  border-radius: 16px;
  padding: 36px 32px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: dlgFadeIn 0.25s ease;
}
@keyframes dlgFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.arkplus-dialog-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1;
  color: var(--text-muted, rgba(255,255,255,0.5));
  transition: color 0.15s;
}
.arkplus-dialog-close:hover { color: var(--gold, #0000ff); }
.arkplus-dialog-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(0,0,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold, #0000ff);
  margin-bottom: 16px;
}
.arkplus-dialog-box h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold, #0000ff);
  margin: 0 0 20px;
}
.arkplus-dialog-steps {
  padding-left: 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.arkplus-dialog-steps li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, rgba(255,255,255,0.8));
}
.arkplus-dialog-steps strong { color: #fff; }
[data-theme="light"] .arkplus-dialog-box { background: #fff; border-color: rgba(138,110,30,0.25); }
[data-theme="light"] .arkplus-dialog-steps li { color: rgba(10,10,31,0.75); }
[data-theme="light"] .arkplus-dialog-steps strong { color: #000000; }

/* Responsive */
@media (max-width: 768px) {
  .app-section-inner { flex-direction: column; gap: 40px; text-align: center; }
  .app-buttons { justify-content: center; }
  .app-section-text { margin-left: auto; margin-right: auto; }
  .app-section-mockups { order: -1; }
  .app-mockup { width: 120px; }
  .app-mockup--android { transform: rotate(-4deg) translateY(8px); }
  .app-mockup--ios     { transform: rotate(4deg); }
}
@media (max-width: 480px) {
  .app-btn { width: 100%; justify-content: center; }
  .arkplus-dialog-box { padding: 28px 20px 24px; }
}
