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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D4AF37;
  --gold-light: #F4E2A9;
  --dark: #0F172A;
  --text: #1F2937;
  --muted: #64748B;
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --radius: 12px;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-announcement-bar {
  background: linear-gradient(90deg, #8a6600, #cfa72c, #f3d477, #cfa72c, #8a6600);
  background-size: 200% 100%;
  animation: goldShimmer 5s linear infinite;
  color: #0d1117;
  padding: 9px 18px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1002;
  width: 100%;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(201, 168, 76, 0.35);
  transition: all 0.3s ease;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 84px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 12px;
}
.nav-brand, .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white, #fff);
  font-size: 1.6rem;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}
.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.6);
  box-shadow: 0 0 12px rgba(212,175,55,.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.nav-brand:hover .brand-logo-img, .nav-logo:hover .brand-logo-img {
  transform: scale(1.08);
}
.brand-name, .logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  color: var(--gold, #d4af37);
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
}
.brand-sub, .logo-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light, #f5d061);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold, #d4af37);
  transition: all 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--gold-light, #f5d061);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.btn-nav {
  background: linear-gradient(135deg, var(--gold, #d4af37), var(--gold-dark, #aa8620));
  color: var(--white, #fff);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white, #fff);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-only-contact { display: none !important; }
@media (max-width: 992px) {
  .mobile-only-contact { display: block !important; margin-top: 4px; }
  .nav-container { height: 66px; padding: 0 14px; gap: 8px; }
  .brand-logo-img { width: 38px; height: 38px; }
  .brand-name, .logo-name { font-size: 1.05rem; }
  .brand-sub, .logo-sub { font-size: 0.68rem; letter-spacing: 0.5px; }
  .nav-actions { gap: 8px; }
  .nav-phone { display: none; }
  .btn-nav { padding: 6px 14px; font-size: 0.78rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 20px 28px;
    gap: 14px;
    border-bottom: 2px solid var(--gold, #d4af37);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
    transform: translateY(-160%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - 66px);
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
  }
  .nav-links.open, .nav-links.active {
    transform: translateY(0);
  }
}

/* BREADCRUMB */
.breadcrumb { max-width: 1200px; margin: 20px auto 0; padding: 0 24px; font-size: .85rem; color: var(--muted); }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* SLIDESHOW */
.slideshow-container {
  max-width: 1200px; margin: 16px auto; padding: 0 24px;
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.slideshow {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  min-height: 420px; overflow: hidden; border-radius: var(--radius);
  background: #000;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; display: flex; align-items: stretch; justify-content: stretch; background: #000; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.slide-label {
  position: absolute; bottom: 16px; right: 16px; left: auto;
  background: rgba(0,0,0,.7); color: #fff;
  padding: 8px 16px; border-radius: 24px; font-size: .85rem;
  white-space: nowrap;
}
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; z-index: 10; transition: background .2s;
}
.slide-btn:hover { background: var(--gold); }
.prev { left: 34px; }
.next { right: 34px; }
.slide-dots { position: absolute; bottom: 16px; right: 16px; display: flex; gap: 6px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s; }
.dot.active { background: var(--gold-light); }
.slide-counter {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,.5); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: .8rem; z-index: 10;
}

/* ROOMS LIST PAGE */
.rooms-list-section {
  max-width: 1200px; margin: 32px auto 60px; padding: 0 24px;
}
.rooms-list-section .section-header { margin-bottom: 28px; }
.rooms-list-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.room-list-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid #f0e9d6; box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.room-list-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }
.room-list-card img { width: 100%; height: 220px; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.room-list-body { padding: 18px; }
.room-list-badge {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: .74rem; font-weight: 700; margin-bottom: 10px;
}
.room-list-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.room-list-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 12px; }
.room-list-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.room-list-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-room-view, .btn-room-call {
  display: inline-block; padding: 8px 14px; border-radius: 8px; font-size: .84rem; font-weight: 600; text-decoration: none;
}
.btn-room-view { background: var(--gold); color: #fff; }
.btn-room-call { background: #f5f5f5; color: var(--dark); border: 1px solid #e0d8c8; }

/* ROOM INFO GRID */
.room-info-grid {
  max-width: 1200px; margin: 32px auto 60px;
  padding: 0 24px;
  display: grid; grid-template-columns: 1fr 380px; gap: 32px;
}

/* LEFT */
.room-badge-detail {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 4px 14px; border-radius: 20px; font-size: .8rem;
  font-weight: 600; letter-spacing: .5px; margin-bottom: 10px;
}
h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 12px; }
.room-desc { color: var(--muted); line-height: 1.7; font-size: .97rem; margin-bottom: 28px; }

.amenities-section h2, .policies-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--dark); margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid #f0e9d6;
}
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; margin-bottom: 32px;
}
.amenity-item {
  background: var(--white); border: 1px solid #f0e9d6;
  border-radius: 10px; padding: 14px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 500; color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.amenity-item .icon { font-size: 1.3rem; }

.policies-section { margin-top: 28px; }
.policy-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.policy-list li { font-size: .88rem; color: var(--text); padding: 8px 0; border-bottom: 1px solid #f5f0e8; }

/* RIGHT — BOOKING CARD */
.booking-card {
  background: var(--white); border-radius: 16px;
  padding: 28px; box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border: 1px solid #f0e9d6; position: sticky; top: 90px;
}
.booking-price { margin-bottom: 6px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.price-night { color: var(--muted); font-size: .9rem; }
.booking-rating { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.booking-card hr { border: none; border-top: 1px solid #f0e9d6; margin: 16px 0; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 5px; }
.form-group input, .form-group select {
  width: 100%; padding: 10px 12px; border: 1.5px solid #e0d8c8;
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s; background: #fdfbf8;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }

.stay-summary { background: #fdf8ec; border-radius: 10px; padding: 14px; margin: 14px 0; }
.stay-row { display: flex; justify-content: space-between; font-size: .88rem; padding: 4px 0; }
.total-row { font-weight: 700; font-size: 1rem; color: var(--gold); border-top: 1px solid #e8d8a0; margin-top: 6px; padding-top: 8px; }

.btn-book-now {
  width: 100%; padding: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff; border: none; border-radius: 10px; font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: opacity .2s, transform .1s;
  margin-top: 6px;
}
.btn-book-now:hover { opacity: .9; transform: translateY(-1px); }
.book-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 10px; }
.book-note a { color: var(--gold); text-decoration: none; }

/* PAYMENT MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 9999;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 16px; padding: 32px;
  width: 90%; max-width: 480px; max-height: 90vh;
  overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: #f5f5f5; border: none; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 1rem;
}
.modal h2 { font-family: 'Playfair Display', serif; margin-bottom: 6px; }
.modal-room-name { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.payment-summary { background: #fdf8ec; border-radius: 10px; padding: 14px; margin-bottom: 16px; font-size: .88rem; }
.payment-summary div { padding: 3px 0; }
.pay-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pay-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border: 2px solid #e8e8e8;
  border-radius: 10px; cursor: pointer; transition: border-color .2s;
}
.pay-option.selected { border-color: var(--gold); background: #fdf8ec; }
.pay-option input { display: none; }
.pay-icon { font-size: 1.3rem; }
.upi-details { text-align: center; margin-bottom: 16px; }
.upi-id-box {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #f5f5f5; border-radius: 8px; padding: 10px 14px;
  font-weight: 600; margin-bottom: 12px;
}
.btn-copy { background: var(--gold); color: #fff; border: none; padding: 5px 12px; border-radius: 6px; cursor: pointer; font-size: .8rem; }
.upi-hint { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.upi-qr { width: 160px; height: 160px; border-radius: 8px; margin: 0 auto 12px; display: block; }
.btn-upi-pay {
  display: inline-block; background: #25D366; color: #fff;
  padding: 10px 24px; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: .9rem; margin-bottom: 12px;
}
.btn-confirm-pay {
  width: 100%; padding: 14px; background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff; border: none; border-radius: 10px; font-size: 1rem;
  font-weight: 700; cursor: pointer;
}

/* TOAST */
#siteToast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  padding: 14px 28px; border-radius: 50px; font-size: .92rem; font-weight: 600;
  color: #fff; z-index: 99999; opacity: 0; transition: opacity .3s ease;
  max-width: 90vw; text-align: center; box-shadow: 0 6px 24px rgba(0,0,0,.25);
  pointer-events: none;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25D366; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.7)} }

/* RESPONSIVE */
@media(max-width: 768px) {
  .room-info-grid { grid-template-columns: 1fr; }
  .slideshow { height: 260px; }
  .policy-list { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hamburger { display: block; }
  .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 16px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .booking-card { position: static; }
}
