/* ============================================================
   Paradise Guest House - Premium Luxury Stylesheet v2.0
   Theme: Royal Gold (#C9A84C) + Deep Mahogany (#1A0A00)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lato:wght@300;400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5E6B8;
  --gold-dark:    #A07835;
  --gold-deep:    #7A5C1E;
  --brown:        #1A0A00;
  --brown-mid:    #4A2C1A;
  --brown-light:  #7A5A42;
  --cream:        #FDF8F0;
  --cream-dark:   #F5EDD8;
  --cream-mid:    #EFE4CC;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #3D3022;
  --text-light:   #8A7A6A;
  --shadow-sm:    0 2px 10px rgba(26,10,0,0.08);
  --shadow:       0 6px 30px rgba(26,10,0,0.12);
  --shadow-lg:    0 16px 60px rgba(26,10,0,0.18);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.25);
  --radius:       14px;
  --radius-lg:    20px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   BASE RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brown);
  line-height: 1.25;
  letter-spacing: -0.3px;
}
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-gold     { color: var(--gold) !important; }
.text-brown    { color: var(--brown) !important; }
.text-center   { text-align: center; }
.py-5 { padding: 90px 0; }
.py-4 { padding: 70px 0; }
.py-3 { padding: 48px 0; }
.mt-3 { margin-top: 28px; }
.mb-3 { margin-bottom: 28px; }

/* Section Headings */
.section-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title .accent {
  color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px auto 28px;
  width: fit-content;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-divider .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Lato', sans-serif;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--brown);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201,168,76,0.55);
  color: var(--brown);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-white {
  background: rgba(255,255,255,0.95);
  color: var(--brown);
  border-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}
.btn-white:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--brown);
}
.btn-dark {
  background: var(--brown);
  color: var(--gold-light);
  border-color: var(--brown);
}
.btn-dark:hover {
  background: var(--brown-mid);
  color: var(--gold-light);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  color: var(--white);
}
.btn-sm  { padding: 9px 22px; font-size: 0.8rem; letter-spacing: 0.5px; }
.btn-lg  { padding: 16px 44px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,10,0,0.85) 0%, rgba(26,10,0,0.0) 100%);
  transition: var(--transition);
}
.navbar.scrolled::before {
  background: rgba(20, 8, 0, 0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
}
.navbar-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 36px;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.navbar-brand .logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: var(--transition);
}
.navbar-brand:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 6px 24px rgba(201,168,76,0.6);
}
.navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 16px; right: 16px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links .btn-gold { padding: 9px 24px; }
.nav-links .btn-gold::after { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
  position: relative; z-index: 1;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO SHOWCASE SLIDER
   ================================================================ */
.hero-showcase {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--brown);
}
@media (max-width: 768px) { .hero-showcase { height: 460px; } }
@media (max-width: 480px) { .hero-showcase { height: 380px; } }

/* Slide base */
.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
}
.showcase-slide.active { opacity: 1; z-index: 2; }

/* ---- Text Slide ---- */
.text-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 100px;
  background: linear-gradient(135deg, #1A0A00 0%, #2C1008 50%, #1A0A00 100%);
}
@media (max-width: 768px) { .text-slide { padding: 30px 30px; } }

/* Decorative gold lines left & right */
.text-slide::before, .text-slide::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 140px;
  background: linear-gradient(transparent, var(--gold), transparent);
  opacity: 0.5;
}
.text-slide::before { left: 48px; }
.text-slide::after  { right: 48px; }
@media (max-width: 768px) {
  .text-slide::before, .text-slide::after { display: none; }
}

.text-slide-inner {
  text-align: center;
  color: var(--white);
  max-width: 780px;
  width: 100%;
}

/* Animated text elements — hidden until slide is active */
.text-slide .ts-eyebrow,
.text-slide .ts-title,
.text-slide .ts-divider,
.text-slide .ts-subtitle,
.text-slide .ts-cta {
  opacity: 0;
  transform: translateY(28px);
}

/* When active, each element slides up with staggered delay */
.text-slide.active .ts-eyebrow  { animation: tsSlideUp 0.65s ease 0.05s forwards; }
.text-slide.active .ts-title    { animation: tsSlideUp 0.65s ease 0.20s forwards; }
.text-slide.active .ts-divider  { animation: tsSlideUp 0.65s ease 0.38s forwards; }
.text-slide.active .ts-subtitle { animation: tsSlideUp 0.65s ease 0.50s forwards; }
.text-slide.active .ts-cta      { animation: tsSlideUp 0.65s ease 0.65s forwards; }

@keyframes tsSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ts-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  font-size: 0.7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-light);
  font-weight: 600;
}
.ts-eyebrow .line { width: 36px; height: 1px; background: var(--gold); opacity: 0.7; }

.ts-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  font-family: 'Playfair Display', serif;
}
.ts-title .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  font-style: italic; display: block;
}

.ts-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto 20px;
}
.ts-divider .line { width: 55px; height: 1px; background: rgba(201,168,76,0.45); }
.ts-divider .diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.ts-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  line-height: 1.7;
}
.ts-cta {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ---- Photo Slide ---- */
.photo-slide {
  position: absolute; inset: 0;
}
.photo-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Subtle bottom gradient on photos */
.photo-slide::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(26,10,0,0.4));
  pointer-events: none;
}

/* ---- Showcase Navigation Dots ---- */
.showcase-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.showcase-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.showcase-dot.active {
  background: var(--gold);
  width: 48px;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ---- Showcase Prev/Next Arrows ---- */
.showcase-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white; font-size: 1rem;
  cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.showcase-arrow:hover { background: var(--gold); border-color: var(--gold); }
.showcase-arrow.prev { left: 20px; }
.showcase-arrow.next { right: 20px; }
@media (max-width: 480px) { .showcase-arrow { display: none; } }

/* ---- Photo caption overlay ---- */
.photo-caption {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 88%;
  text-align: center;
  background: rgba(26,10,0,0.78);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: none;
  padding: 12px 26px;
  border-radius: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 4;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.45);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
@media (max-width: 768px) {
  .photo-caption {
    bottom: 52px;
    font-size: 0.95rem;
    padding: 10px 18px;
    max-width: 92%;
  }
}
@media (max-width: 480px) {
  .photo-caption {
    bottom: 44px;
    font-size: 0.88rem;
    padding: 8px 14px;
  }
}

/* ================================================================
   QUICK INFO BAR
   ================================================================ */
.quick-info {
  background: linear-gradient(135deg, var(--brown) 0%, #2C1008 100%);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.quick-info::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L20 10L10 20L0 10Z' fill='%23C9A84C' fill-opacity='0.03'/%3E%3C/svg%3E");
}
.quick-info-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
}
.quick-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.quick-info-item:last-child { border-right: none; }
.quick-info-item:hover { background: rgba(201,168,76,0.06); }
.quick-info-item .icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-light);
  transition: var(--transition);
}
.quick-info-item:hover .icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(201,168,76,0.15));
  transform: rotate(-5deg);
}
.quick-info-item a.quick-info-map-icon-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  border-radius: 12px;
  outline-offset: 3px;
  cursor: pointer;
}
.quick-info-item a.quick-info-map-icon-link:focus-visible {
  outline: 2px solid var(--gold-light);
}
.quick-info-item .info-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
  font-weight: 600;
}
.quick-info-item .info-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-us { background: var(--cream); position: relative; overflow: hidden; }
.why-us::before {
  content: '"';
  position: absolute; top: -60px; right: -20px;
  font-family: 'Playfair Display', serif;
  font-size: 400px; line-height: 1;
  color: rgba(201,168,76,0.04);
  user-select: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.15);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: var(--transition);
  position: relative;
}
.feature-icon::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.2);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  transform: rotate(10deg) scale(1.1);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover .feature-icon i { color: var(--brown) !important; }
.feature-icon i { color: var(--gold-dark); }
.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ================================================================
   ROOM CARDS
   ================================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.08);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
}
.room-card-img {
  position: relative;
  height: 230px; overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-card-img img { transform: scale(1.1); }
/* Dark gradient on image */
.room-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,10,0,0.5) 100%);
  transition: var(--transition);
}
.room-card:hover .room-card-img::after { opacity: 0.7; }
.room-type-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--brown);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(201,168,76,0.4);
}
.room-price-badge {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  background: rgba(26,10,0,0.85);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
}
.room-card-body { padding: 26px 26px 22px; }
.room-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: var(--transition);
}
.room-card:hover .room-card-title { color: var(--gold-dark); }
.room-card-desc {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-meta {
  display: flex; gap: 18px; margin-bottom: 16px;
  font-size: 0.82rem; color: var(--text-mid);
}
.room-meta span { display: flex; align-items: center; gap: 5px; }
.room-meta i { color: var(--gold); font-size: 0.85rem; }
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px;
}
.amenity-tag {
  background: var(--cream);
  color: var(--brown-mid);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--cream-dark);
  letter-spacing: 0.2px;
  transition: var(--transition);
}
.amenity-tag:hover {
  background: var(--gold-pale);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-deep);
}
.room-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark);
}
.room-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.room-price-main span { font-size: 0.78rem; color: var(--text-light); font-family: 'Lato', sans-serif; font-weight: 400; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,0.7), rgba(74,44,26,0.5));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay .overlay-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  font-size: 1.2rem;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .overlay-icon { transform: scale(1); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.15);
}
.quote-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.85rem; }
.testimonial-text {
  color: var(--text-mid);
  font-size: 0.93rem;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--brown); }
.author-location { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: var(--brown);
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #1A0A00 0%, #3D1A0A 50%, #1A0A00 100%);
}
.cta-banner-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.02) 40px,
    rgba(201,168,76,0.02) 41px
  );
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-banner h2 span { color: var(--gold-light); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Decorative gold lines on CTA */
.cta-banner::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(201,168,76,0.12), transparent);
}

/* ================================================================
   FORMS
   ================================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 7px;
  font-weight: 700; font-size: 0.82rem;
  color: var(--brown-mid);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #E8DDD5;
  border-radius: 10px;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: 'Lato', sans-serif;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
  background: #FFFEF8;
}
.form-control.is-invalid { border-color: #dc3545; }
.invalid-feedback { color: #dc3545; font-size: 0.8rem; margin-top: 5px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ================================================================
   BOOKING CARD
   ================================================================ */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
}
.booking-card-header {
  background: linear-gradient(135deg, var(--brown), #3D1A08);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.booking-card-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking-card-header h3 { color: var(--gold-light); font-size: 1.4rem; margin-bottom: 5px; }
.booking-card-header p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.booking-card-body { padding: 30px 32px; }

/* ================================================================
   STATUS BADGES
   ================================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-pending     { background: #FFF8E6; color: #92660A; border: 1px solid #F5DFA0; }
.badge-confirmed   { background: #EAFAF1; color: #1B7A3B; border: 1px solid #A8DFC0; }
.badge-cancelled   { background: #FDECEA; color: #C0392B; border: 1px solid #F5B7B1; }
.badge-completed   { background: #EAF4FB; color: #1A5276; border: 1px solid #A9CCE3; }
.badge-available   { background: #EAFAF1; color: #1B7A3B; border: 1px solid #A8DFC0; }
.badge-occupied    { background: #FDECEA; color: #C0392B; border: 1px solid #F5B7B1; }
.badge-maintenance { background: #FFF8E6; color: #92660A; border: 1px solid #F5DFA0; }

/* ================================================================
   ALERTS
   ================================================================ */
.alert {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 12px;
  border-left: 4px solid;
}
.alert-success { background: #EAFAF1; color: #155724; border-color: #2ECC71; }
.alert-danger  { background: #FDECEA; color: #721c24; border-color: #E74C3C; }
.alert-warning { background: #FFF8E6; color: #856404; border-color: #F39C12; }
.alert-info    { background: #EAF4FB; color: #0c5460; border-color: #3498DB; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: linear-gradient(180deg, #120600 0%, #0A0300 100%);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}
.footer-about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--brown);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-links a i { color: var(--gold-dark); font-size: 0.7rem; }
.footer-contact-item {
  display: flex; gap: 14px; margin-bottom: 16px;
  font-size: 0.86rem; color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: var(--white); font-size: 1.7rem;
  transition: var(--transition);
}
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-ring 2s ease infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
  color: var(--white);
}
.whatsapp-float:hover::before { animation: none; }

.scroll-top {
  position: fixed; bottom: 110px; right: 34px; z-index: 998;
  width: 46px; height: 46px;
  background: var(--brown);
  color: var(--gold-light);
  border-radius: 12px;
  display: none; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: 1px solid rgba(201,168,76,0.25);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover {
  background: var(--gold);
  color: var(--brown);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ================================================================
   PAGE BANNER
   ================================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--brown) 0%, #3D1A08 50%, var(--brown) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-banner h1 span { color: var(--gold-light); font-style: italic; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 0.85rem; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); font-weight: 600; }
.breadcrumb .separator { color: rgba(255,255,255,0.25); font-size: 0.7rem; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--brown) 0%, #3D1A08 100%);
  color: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
}
.contact-info-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.contact-info-card h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 1.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 34px; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 26px; }
.contact-info-item .c-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.1rem;
  transition: var(--transition);
}
.contact-info-item:hover .c-icon {
  background: rgba(201,168,76,0.28);
  transform: rotate(-8deg);
}
.contact-info-item .c-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; font-weight: 700; }
.contact-info-item .c-value { color: var(--white); font-size: 0.92rem; font-weight: 500; }
.contact-form-card {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.08);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img-wrapper img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; height: 480px; }
.about-img-wrapper::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
}
.about-img-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--brown);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-img-badge .num { font-size: 2.5rem; font-weight: 800; font-family: 'Playfair Display', serif; line-height: 1; }
.about-img-badge .txt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; font-weight: 700; }
.about-content h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 22px; }
.about-content p { color: var(--text-light); font-size: 0.96rem; margin-bottom: 18px; line-height: 1.85; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.stat-item { text-align: center; padding: 24px 16px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--cream-dark); transition: var(--transition); }
.stat-item:hover { background: var(--gold-pale); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold-dark); font-family: 'Playfair Display', serif; line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-weight: 700; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(201,168,76,0.12); }
.map-container iframe { display: block; border: none; }

/* ================================================================
   BOOKING CONFIRMATION
   ================================================================ */
.confirm-card {
  max-width: 700px; margin: 100px auto 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}
.confirm-header {
  background: linear-gradient(135deg, var(--brown) 0%, #3D1A08 100%);
  padding: 52px 44px 40px;
  color: var(--white); text-align: center;
  position: relative;
}
.confirm-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.confirm-icon {
  width: 88px; height: 88px;
  background: rgba(46,204,113,0.15);
  border: 3px solid #2ECC71;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 2.6rem; color: #2ECC71;
  box-shadow: 0 0 0 10px rgba(46,204,113,0.08);
}
.confirm-header h2 { color: var(--gold-light); font-size: 2rem; margin-bottom: 8px; }
.confirm-body { padding: 40px 44px; }
.booking-ref-box {
  display: inline-block;
  background: var(--cream);
  border: 2px dashed var(--gold);
  padding: 16px 44px;
  border-radius: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brown);
  font-family: 'Playfair Display', serif;
  margin: 12px 0 28px;
  letter-spacing: 4px;
  box-shadow: inset 0 2px 10px rgba(201,168,76,0.08);
}
.booking-summary-table { width: 100%; border-collapse: collapse; text-align: left; margin: 20px 0; }
.booking-summary-table td { padding: 11px 14px; border-bottom: 1px solid var(--cream-dark); font-size: 0.9rem; }
.booking-summary-table td:first-child { color: var(--text-light); font-weight: 700; width: 40%; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.confirm-footer { padding: 26px 44px; background: var(--cream); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 10px; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  color: rgba(255,255,255,0.6); font-size: 2.2rem; cursor: pointer;
  background: none; border: none; transition: var(--transition);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.08);
}
.lightbox-close:hover { color: var(--white); background: rgba(255,255,255,0.15); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(10px);
}
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }

/* ================================================================
   PAGE LOADER
   ================================================================ */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--brown);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-loader.hidden { opacity: 0; transform: scale(1.05); pointer-events: none; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.loader-sub { font-size: 0.65rem; letter-spacing: 5px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 32px; }
.loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); border-radius: 2px; animation: load-progress 1.4s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes load-progress { to { width: 100%; } }
.loader-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 20px;
  animation: loader-pulse 1s ease infinite;
}
@keyframes loader-pulse { 0%,100%{opacity:0.3;transform:scale(0.8)} 50%{opacity:1;transform:scale(1.3)} }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
/* Staggered delay for grid children */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.24s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.32s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.40s; }
.rooms-grid .room-card:nth-child(2) { transition-delay: 0.1s; }
.rooms-grid .room-card:nth-child(3) { transition-delay: 0.2s; }

/* ================================================================
   ROOM DETAIL
   ================================================================ */
.room-gallery-main { border-radius: var(--radius-lg); overflow: hidden; height: 440px; position: relative; box-shadow: var(--shadow-lg); }
.room-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb-item { height: 88px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 3px solid transparent; transition: var(--transition); }
.thumb-item.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-dark); }
.thumb-item:hover { border-color: rgba(201,168,76,0.5); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-amenities { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 12px; margin: 22px 0; }
.amenity-item { display: flex; align-items: center; gap: 10px; background: var(--cream); padding: 13px 16px; border-radius: 10px; font-size: 0.86rem; color: var(--brown-mid); font-weight: 600; border: 1px solid var(--cream-dark); transition: var(--transition); }
.amenity-item:hover { background: var(--gold-pale); border-color: rgba(201,168,76,0.35); }
.amenity-item i { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-story  { grid-template-columns: 1fr; }
  .about-img-badge { right: 10px; bottom: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-inner { padding: 0 20px; height: 68px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(20,8,0,0.98);
    padding: 20px; gap: 4px;
    border-top: 1px solid rgba(201,168,76,0.15);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; border-radius: 8px; }
  .nav-links a::after { display: none; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-dots { display: none; }
  .confirm-body, .confirm-footer { padding: 24px 24px; }
  .contact-info-card, .contact-form-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .features-grid { grid-template-columns: 1fr; }
  .quick-info-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.4rem; }
  .about-img-wrapper img { height: 280px; }
}
