/* ═══════════════════════════════════════════════════════════
   VIP COLOURS GUEST HOUSE – Premium Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold-light: #f5d58a;
  --gold:       #c9a84c;
  --gold-dark:  #a07830;
  --navy-deep:  #07101f;
  --navy:       #0a1628;
  --navy-mid:   #0f1e38;
  --navy-light: #162240;
  --navy-card:  #111d33;
  --blue-accent:#1a3a6b;
  --text-primary: #e8d9b5;
  --text-secondary: #a0b0cc;
  --text-muted:   #6a7d9a;
  --white: #ffffff;
  --success: #2ecc71;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 86%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── CONTAINER ── */
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7, 16, 31, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(7, 16, 31, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-vip {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
}
.logo-colours {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e84393, #f5a623, #27ae60, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
.logo-guest {
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 999;
  padding: 16px 0;
  transform: translateY(-100%);
  transition: transform var(--transition);
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
}
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: var(--text-secondary);
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(201, 168, 76, 0.05); }
.mobile-call-btn {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 58, 107, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #07101f 0%, #0a1628 40%, #0f1e38 70%, #07101f 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(7,16,31,0.4) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: floatUp 8s infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 1s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.1s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  animation: fadeInUp 1s 0.2s ease both;
}
.title-vip {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f5d58a, #c9a84c, #f5d58a);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  line-height: 1;
  letter-spacing: 8px;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.title-colours {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(90deg, #e84393, #f5a623, #27ae60, #3498db, #e84393);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  letter-spacing: 6px;
}
.title-guest {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  letter-spacing: 5px;
  font-weight: 300;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 300;
  animation: fadeInUp 1s 0.3s ease both;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeInUp 1s 0.4s ease both;
}
.hf-tag {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.hf-tag:hover {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.5s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-secondary {
  background: transparent;
  border: 2px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.hero-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: fadeInUp 1s 0.6s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: fadeInUp 1s 1s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ════════════════════════════════
   AVAILABILITY BANNER
════════════════════════════════ */
.avail-banner {
  background: linear-gradient(90deg, #f5c842, #f5a623);
  color: #07101f;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.avail-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.avail-inner a { color: #07101f; text-decoration: underline; font-weight: 800; }
.avail-pulse {
  width: 10px; height: 10px;
  background: #07101f;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* ════════════════════════════════
   SECTION COMMONS
════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 0;
  border-bottom: 2px solid var(--gold);
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════
   AMENITIES
════════════════════════════════ */
.amenities-section {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.amenity-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s var(--delay, 0s) ease both;
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.amenity-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.amenity-card:hover::before { opacity: 1; }
.amenity-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  transition: transform var(--transition);
}
.amenity-card:hover .amenity-icon { transform: scale(1.1); }
.amenity-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.amenity-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ════════════════════════════════
   ROOMS
════════════════════════════════ */
.rooms-section {
  padding: 100px 0;
  background: var(--navy-deep);
  position: relative;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 32px;
}
.room-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  animation: fadeInUp 0.7s ease both;
}
.room-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  transform: translateY(-6px);
}
.room-featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(160deg, var(--navy-card) 0%, rgba(201, 168, 76, 0.06) 100%);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}
.featured-ribbon {
  position: absolute;
  top: 20px; right: -30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(35deg);
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Room Illustration */
.room-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  position: relative;
}
.room-triple-a  { background: linear-gradient(160deg, #162240 0%, #0f1e38 50%, #1a3a6b 100%); }
.room-triple-b  { background: linear-gradient(160deg, #1a2a45 0%, #0d1b35 50%, #162545 100%); }
.room-triple-c  { background: linear-gradient(160deg, #0f1e38 0%, #162240 50%, #203050 100%); }
.room-family    { background: linear-gradient(160deg, #1a1535 0%, #251848 50%, #1a2a55 100%); }

/* Ceiling light effect */
.room-illustration::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 80px;
  background: radial-gradient(ellipse, rgba(245, 213, 138, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.room-beds {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.bed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 80px;
}
.bed-item.bed-small { width: 56px; }
.bed-head {
  width: 100%;
  height: 22px;
  background: linear-gradient(180deg, #8b6914, #5c440e);
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.bed-item.bed-small .bed-head { height: 16px; }
.bed-body {
  width: 100%;
  height: 52px;
  background: linear-gradient(180deg, #f8f4ee, #e8e0d0);
  border-radius: 0 0 4px 4px;
  display: flex;
  gap: 4px;
  padding: 6px 4px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}
.bed-item.bed-small .bed-body { height: 40px; padding: 5px 3px; }
.pillow {
  flex: 1;
  background: linear-gradient(180deg, #ffffff, #f0ece4);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.room-floor {
  width: 90%;
  height: 8px;
  background: linear-gradient(180deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border-radius: 50%;
  filter: blur(4px);
  margin-top: 4px;
}
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(7, 16, 31, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
}
.room-type-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(26, 58, 107, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}
.gold-badge {
  background: rgba(201, 168, 76, 0.2) !important;
  color: var(--gold-light) !important;
  border-color: rgba(201, 168, 76, 0.5) !important;
}

/* Room Info */
.room-info { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.room-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.room-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.rf {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 50px;
}
.room-capacity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.cap-label { font-size: 0.8rem; color: var(--text-muted); }
.cap-icons { display: flex; gap: 4px; font-size: 1rem; }
.btn-book {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-accent), #0f2a5a);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  margin-top: auto;
}
.btn-book:hover {
  background: linear-gradient(135deg, #213a7a, #1a306a);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}
.btn-book-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy-deep) !important;
  border-color: transparent !important;
}
.btn-book-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45) !important;
}

/* ════════════════════════════════
   BOOKING FORM
════════════════════════════════ */
.booking-section {
  padding: 70px 0;
  background: var(--navy-mid);
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.booking-form-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; margin-bottom: 16px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(7, 16, 31, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: var(--navy); color: var(--text-primary); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(7, 16, 31, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 90px; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5) sepia(1) saturate(2) hue-rotate(10deg); cursor: pointer; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.45);
}
.btn-submit.loading .btn-text::after {
  content: '...';
  animation: dots 1s infinite;
}
@keyframes dots {
  0%, 100% { content: '.'; }
  33%       { content: '..'; }
  66%       { content: '...'; }
}

/* Booking info panel */
.booking-info-panel { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.info-card:hover { border-color: rgba(201, 168, 76, 0.3); }
.info-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.info-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.info-card a { color: var(--gold-light); font-weight: 600; }
.info-card a:hover { color: var(--gold); }
.info-card .small-note { font-size: 0.75rem; color: var(--text-muted); }
.time-row, .room-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.83rem;
  color: var(--text-secondary);
}
.time-row strong, .room-summary-row strong { color: var(--gold-light); }
.time-row:last-child, .room-summary-row:last-child { border-bottom: none; }
.info-highlight {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  position: relative;
}
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  animation: pulseDot 2s infinite;
}
.info-highlight p { font-size: 0.83rem; color: var(--text-secondary); }
.info-highlight strong { color: var(--gold-light); }

/* ════════════════════════════════
   MODAL
════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--shadow-gold);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.modal-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}
.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.modal-msg { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 12px; }
.modal-call { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.modal-call a { color: var(--gold); font-weight: 600; }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--navy-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.contact-item {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.contact-icon { font-size: 2.5rem; margin-bottom: 14px; }
.contact-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.contact-item p.small { font-size: 0.75rem; color: var(--text-muted); }
.contact-item a { color: var(--gold-light); font-weight: 600; }
.contact-item a:hover { color: var(--gold); }
.map-placeholder {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px);
}
.map-inner { text-align: center; position: relative; z-index: 1; }
.map-pin { font-size: 3rem; margin-bottom: 8px; }
.map-inner p { color: var(--gold-light); font-weight: 600; }
.map-inner p.small { font-size: 0.8rem; color: var(--text-muted); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: #050c18;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact a { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 4px; }
.footer-contact p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ════════════════════════════════
   ROOM PRICE TAG
════════════════════════════════ */
.room-price-tag {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(7, 16, 31, 0.5);
}
.rpt-nonac, .rpt-ac {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.3;
}
.rpt-nonac { border-right: 1px solid rgba(201, 168, 76, 0.15); }
.rpt-nonac small, .rpt-ac small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
}
.room-price-tag-gold { background: rgba(201, 168, 76, 0.08); }
.room-price-tag-gold .rpt-nonac,
.room-price-tag-gold .rpt-ac { color: var(--gold); }
.cap-note { font-size: 0.78rem; color: var(--text-muted); }

/* ════════════════════════════════
   FORM ENHANCEMENTS
════════════════════════════════ */
.req { color: #e74c3c; font-size: 0.85em; }
.field-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
  line-height: 1.4;
  transition: color 0.2s;
}

/* ── Allocation Box ── */
.allocation-box {
  background: rgba(7, 16, 31, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.alloc-rooms123 {
  border-color: rgba(52, 152, 219, 0.5);
  background: rgba(52, 152, 219, 0.06);
  color: var(--text-primary);
}
.alloc-room4 {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}
.alloc-rooms-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 3px;
  color: var(--gold-light);
}
.alloc-rooms-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 5px;
  line-height: 1.35;
}
.alloc-rooms-icons { font-size: 1rem; }

/* ── Live Price Calculator ── */
.price-calculator {
  background: rgba(7, 16, 31, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 4px 0 16px;
  transition: all var(--transition);
}
.price-calculator.calc-active {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(7, 16, 31, 0.85);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}
.price-calc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.price-calc-badge {
  margin-left: auto;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-active {
  background: rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
}
.price-hint-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 8px 0;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pb-row:last-of-type { border-bottom: none; }
.pb-label { color: var(--text-secondary); }
.pb-value { color: var(--text-primary); font-weight: 500; }
.pb-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin: 8px 0;
}
.pb-total {
  font-weight: 700;
  padding: 10px 0;
  font-size: 0.95rem;
}
.pb-total .pb-label { color: var(--gold-light); font-size: 0.95rem; }
.pb-total-amount {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pb-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-style: italic;
}

/* ── Form Error ── */
.form-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: var(--radius-sm);
  color: #ff8a7a;
  font-size: 0.85rem;
  padding: 12px 16px;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── Spinner ── */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(7, 16, 31, 0.3);
  border-top-color: var(--navy-deep);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════
   ENHANCED MODAL
════════════════════════════════ */
.modal-booking-id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin: 0 0 16px;
  font-size: 0.78rem;
}
.bid-label { color: var(--text-muted); }
.bid-value {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.modal-room-reveal { margin-bottom: 16px; }
.room-reveal-box {
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.6), rgba(201, 168, 76, 0.08));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.rrb-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.rrb-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.rrb-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.rrb-type {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.modal-price-summary {
  background: rgba(7, 16, 31, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: left;
  font-size: 0.82rem;
}
.mp-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mp-row strong { color: var(--text-primary); }
.mp-total {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
}
.mp-total strong {
  font-size: 1.1rem;
  color: var(--gold);
}
.mp-dates {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}
.modal-msg a { color: var(--gold-light); font-weight: 600; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-info-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
  .hero-actions { flex-direction: column; align-items: center; }
  .booking-form-card { padding: 24px; }
  .price-calc-header { flex-wrap: wrap; }
  .acb-grid { flex-direction: column; gap: 8px; }
  .acb-divider { width: 100%; height: 1px; background: rgba(201,168,76,0.15); }
  .mri-grid { flex-direction: column; }
  .mri-divider { width: 100%; height: 1px; }
}
@media (max-width: 480px) {
  .section-header { margin-bottom: 40px; }
  .amenities-section, .rooms-section, .booking-section, .contact-section { padding: 70px 0; }
  .hero-features { gap: 8px; }
  .hf-tag { font-size: 0.72rem; padding: 5px 10px; }
  .rrb-number { font-size: 1.5rem; }
  .room-beds-split { flex-direction: column; gap: 8px; }
}

/* ════════════════════════════════
   TRIPLE-SIZE BED ILLUSTRATION
════════════════════════════════ */
.room-beds-v2 {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  width: 100%;
}
.room-beds-split { gap: 14px; }

/* Triple-size bed (1 wide bed) */
.bed-triple-size {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  max-width: 200px;
}
.bts-head {
  width: 100%;
  height: 26px;
  background: linear-gradient(180deg, #8b6914, #5c440e);
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(201,168,76,0.35);
}
.bts-body {
  width: 100%;
  height: 62px;
  background: linear-gradient(180deg, #f8f4ee, #e8e0d0);
  border-radius: 0 0 5px 5px;
  display: flex;
  gap: 5px;
  padding: 8px 6px;
  border: 1px solid rgba(201,168,76,0.2);
  border-top: none;
}
.bts-pillow {
  flex: 1;
  background: linear-gradient(180deg, #ffffff, #f0ece4);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.18);
}
.bts-label {
  font-size: 0.6rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

/* Single bed */
.bed-single-size {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 64px;
  flex-shrink: 0;
}
.bss-head {
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, #7a5c14, #4e3a0c);
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(201,168,76,0.3);
}
.bss-body {
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #f4f0ea, #e4ddd0);
  border-radius: 0 0 4px 4px;
  display: flex;
  padding: 7px 5px;
  border: 1px solid rgba(201,168,76,0.15);
  border-top: none;
}

/* ════════════════════════════════
   ALLOCATION CHART BANNER
════════════════════════════════ */
.alloc-chart-banner {
  background: rgba(7,16,31,0.7);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 40px;
  text-align: center;
}
.acb-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.acb-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.acb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,58,107,0.4);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
}
.acb-item.acb-multi {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}
.acb-guests {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.acb-arrow { color: var(--gold); font-weight: 700; }
.acb-rooms {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}
.acb-rooms small { color: var(--text-muted); font-weight: 400; }
.acb-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  flex-shrink: 0;
}

/* ════════════════════════════════
   MULTI-ROOM INFO SECTION
════════════════════════════════ */
.multi-room-info {
  margin-top: 40px;
  background: rgba(7,16,31,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 24px 32px;
}
.mri-header {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.mri-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.mri-item { flex: 1; }
.mri-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.mri-rooms {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.mri-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.mri-price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
}
.mri-divider {
  width: 1px;
  background: rgba(201,168,76,0.15);
  align-self: stretch;
  flex-shrink: 0;
}

/* Multi-room allocation box */
.alloc-multi {
  border-color: rgba(245,213,138,0.5);
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
}

/* Price breakdown sub-total row */
.pb-sub-total {
  background: rgba(201,168,76,0.05);
  padding: 8px 6px;
  border-radius: 4px;
  margin: 2px 0;
}
.pb-sub-total .pb-label { color: var(--gold-light); font-weight: 600; }
.pb-sub-total .pb-value { font-weight: 700; color: var(--text-primary); }

/* Price note upgrade caveat */
.pb-note-upgrade {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 6px;
  color: var(--gold-light);
  padding: 8px 12px;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 6px;
}

/* Modal upgrade notice banner */
.modal-upgrade-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 16px;
}
.mun-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.mun-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.mun-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

