/* ============================================================
   THARVI HOTEL — Main CSS
   Luxury, Mobile-First, Premium Design
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9e7a2e;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --text: #e8e0d0;
  --text-muted: #9a8f80;
  --border: rgba(201,168,76,0.2);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);

  --font-display: 'Abril Fatface', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 600;
}
.btn--gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--whatsapp { background: #25D366; color: white; font-weight: 600; }
.btn--whatsapp:hover { background: #20ba5a; }
.btn--call { background: var(--dark-3); border: 1px solid var(--border); color: var(--text); }
.btn--call:hover { border-color: var(--gold); color: var(--gold); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-th {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav__links {
  display: none;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta { margin-left: auto; display: none; }
.nav__hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.nav__mobile a:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
}

/* .hero__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
} */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  animation: heroIn 1s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  z-index: 3;
}
.hero__scroll span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* ===== OFFERS SECTION ===== */
.offers-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  overflow: hidden;
}
.offers-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 24px;
}
.offers-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.offers-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
}
.offers-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}
/* Fade edges */
.offers-track-wrap::before,
.offers-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.offers-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.offers-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}
.offers-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollAds 30s linear infinite;
}
.offers-track:hover { animation-play-state: paused; }
@keyframes scrollAds {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.offer-card {
  width: 280px;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: scale(1.03); box-shadow: var(--shadow-gold); }
.offer-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.offer-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.offer-card__label {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.offer-card__coupon {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== STATS ===== */
.stats {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat__label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat__divider {
  width: 1px; height: 40px;
  background: var(--border);
  display: none;
}
@media (min-width: 600px) { .stat__divider { display: block; } }

/* ===== SECTION COMMONS ===== */
.section-header {
  text-align: center;
  padding: 80px 24px 48px;
}
.section-header--light { padding-top: 60px; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ===== ROOMS ===== */
.rooms-section { background: var(--black); padding-bottom: 80px; }
.rooms-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
}
.rooms-filters::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: transparent;
  font-weight: 600;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.room-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-gold); }
.room-card__img {
  height: 200px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.room-card__img img { width: 100%; height: 100%; object-fit: cover; }
.room-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 2rem;
}
.room-card__badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(201,168,76,0.4);
  z-index: 10;
}
.room-card__body { padding: 20px; }
.room-card__cat {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.room-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.room-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.room-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.room-card__price-from { font-size: 0.75rem; color: var(--text-muted); }
.room-card__price-amt { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.room-card__price-dur { font-size: 0.75rem; color: var(--text-muted); }
.room-card__footer { display: flex; gap: 10px; }
.room-card__btn { flex: 1; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  padding: 20px;
}
.modal-overlay.open { display: flex; align-items: center; justify-content: center; }
.modal-box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  position: relative;
  padding: 28px;
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: -8px -8px 8px auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  cursor: pointer;
}
.modal-close:hover { background: var(--gold-light); transform: scale(1.1); }
.modal-carousel { margin-bottom: 20px; }
.modal-carousel img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-sm); }
.modal-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.modal-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.modal-pricing table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.modal-pricing th, .modal-pricing td {
  padding: 10px 12px; font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.modal-pricing th { color: var(--gold); font-weight: 500; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; }
.modal-pricing td { color: var(--text); }
.modal-book-btn { margin-top: 4px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark); padding-bottom: 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: transform var(--transition); }
.gallery-item:hover { transform: scale(0.98); }
.gallery-item--large { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* ===== BOOKING ===== */
.booking-section {
  background: var(--dark-2);
  padding-bottom: 80px;
  border-top: 1px solid var(--border);
}
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 700px;
  margin: 0 auto;
  scrollbar-width: none;
}
.steps-bar::-webkit-scrollbar { display: none; }
.step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.step span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.step.active { color: var(--gold); }
.step.active span { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 600; }
.step.done span { background: var(--gold-dark); color: var(--black); border-color: var(--gold-dark); }
.step-line { width: 40px; height: 1px; background: var(--border); flex-shrink: 0; margin: 0 4px; }

.booking-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeInUp 0.35s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.form-input {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input option { background: var(--dark-3); }
textarea.form-input { resize: vertical; min-height: 80px; }

.avail-title { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.available-rooms { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.room-chip {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.room-chip:hover, .room-chip.selected { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 600; }
.room-chip.unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.coupon-wrap { display: flex; gap: 10px; margin-bottom: 8px; }
.coupon-wrap .form-input { flex: 1; }
.coupon-msg { font-size: 0.82rem; margin-bottom: 12px; }
.coupon-msg.success { color: #4caf50; }
.coupon-msg.error { color: #f44336; }

.price-preview {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}
.price-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.price-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.price-row.total span:first-child { color: var(--white); font-weight: 500; }
.price-row.total span:last-child { color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }

.guest-block { margin-bottom: 20px; padding: 16px; background: var(--dark-3); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.guest-block h4 { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.mt-16 { margin-top: 16px; }

.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.upload-area:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-area p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.upload-hint { font-size: 0.75rem; color: var(--text-muted); opacity: 0.7; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.upload-preview img { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }
.progress-bar { height: 4px; background: var(--dark-3); border-radius: 2px; margin: 8px 0 4px; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.3s ease; width: 0%; }

.upi-section { margin: 20px 0; }
.upi-section h4 { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.upi-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.upi-qr {
  width: 160px; height: 160px;
  border-radius: var(--radius-sm);
  background: white;
  object-fit: contain;
  padding: 8px;
}
.upi-qr-placeholder {
  width: 160px; height: 160px;
  background: var(--dark-2);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--text-muted); font-size: 0.8rem; text-align: center;
}
.upi-id { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }
.upi-hint { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.payment-summary {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.form-nav { display: flex; gap: 12px; margin-top: 24px; }
.form-nav .btn--outline { flex: 1; }
.form-nav .btn--gold { flex: 2; }

.form-check { display: flex; align-items: center; gap: 10px; margin: 16px 0; }
.form-check input { width: 16px; height: 16px; accent-color: var(--gold); }
.form-check label { font-size: 0.85rem; color: var(--text-muted); }

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.review-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.review-row:last-child { border-bottom: none; }
.review-row span:first-child { color: var(--text-muted); }
.review-row span:last-child { color: var(--white); font-weight: 500; }

.success-box {
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(76,175,80,0.1);
  border: 2px solid #4caf50;
  color: #4caf50;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-box h3 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 10px; }
.success-box p { color: var(--text-muted); margin-bottom: 20px; }
.booking-id-display {
  background: var(--dark-3);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  margin: 20px auto;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.booking-id-display span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.booking-id-display strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.success-hint { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }




/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--black); padding-bottom: 80px; }
.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-width: 280px;
  max-width: 340px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  flex-shrink: 0;
}
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.t-author { display: flex; flex-direction: column; gap: 2px; }
.t-author strong { color: var(--white); font-size: 0.88rem; }
.t-author span { color: var(--text-muted); font-size: 0.78rem; }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark); padding: 60px 24px 80px; border-top: 1px solid var(--border); }
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; } 
.modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  }}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.contact-item a { color: var(--text-muted); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.map-placeholder {
  height: 300px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); font-size: 2rem;
}
.map-placeholder p { font-size: 0.85rem; text-align: center; line-height: 1.5; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.1rem; }
.footer__copy { font-size: 0.78rem; color: var(--text-muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }


/* Hero Slideshow */
.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  animation: heroKenBurns 20s ease-in-out infinite;
}

.hero__slide.active {
  opacity: 1;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.07) translate(-1%, -1%); }
  100% { transform: scale(1)    translate(0, 0); }
}

/* Hero Logo */
.hero__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero__logo-img {
  height: 90px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
  mix-blend-mode: lighten;
  margin-bottom: -10px;
}
@media (max-width: 768px) {
  .hero__logo-img {
    height: 55px;
    margin-bottom: -6px;
  }
  .hero__title-row {
    gap: 10px;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: toastIn 0.3s ease;
  max-width: 320px;
}
.toast.success { border-color: #4caf50; }
.toast.error { border-color: #f44336; }
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .hero__title-row {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

/* ===== ROOM CARD CAROUSEL ===== */
.room-card__carousel {
  position: absolute; inset: 0;
  z-index: 1;
}
.carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.carousel-slide.active { opacity: 1; }
.room-card__img-placeholder {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: var(--dark-3);
  opacity: 0;
}
.room-card__carousel-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.3s;
}
.dot.active { background: var(--gold); }
.room-card__room-count {
  position: absolute; bottom: 30px; left: 0; right: 0;
  text-align: center; z-index: 3;
  font-size: 0.7rem; color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
}

/* Amenity tags on card */
.room-card__amenities {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px;
}
.amenity-tag {
  font-size: 0.7rem; padding: 3px 8px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text-muted);
}

/* ===== MODAL IMAGE CAROUSEL ===== */
.modal-img-carousel {
  position: relative; height: 280px; border-radius: var(--radius-sm); overflow: hidden;
}
.modal-carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.8s ease;
}
.modal-carousel-slide.active { opacity: 1; }
.modal-carousel-prev, .modal-carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: white; border: none;
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-carousel-prev { left: 10px; }
.modal-carousel-next { right: 10px; }
.modal-carousel-prev:hover, .modal-carousel-next:hover { background: rgba(201,168,76,0.8); }
.modal-carousel-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.modal-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s;
}
.modal-dot.active { background: var(--gold); }

/* ===== CONTACT: Dilsukhnagar Address ===== */



/* ===== PREVENT BAD TOUCH UX ===== */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Prevent text selection on UI elements */
button, .filter-btn, .room-chip, .tab-btn,
.nav__hamburger, .room-card__footer, .steps-bar,
.room-card__badge, .amenity-tag, .dot, .modal-dot,
.room-card__carousel-dots, .sidebar__item, .booking-card {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Prevent image drag */
img {
  -webkit-user-drag: none;
}

.hero__slide, .carousel-slide, .modal-carousel-slide {
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Re-enable pointer events on clickable images (links) */
a img, .id-images a img, .pay-img {
  pointer-events: auto;
}

/* ============================================================
   MOBILE OVERHAUL — Professional Hotel App Experience
   ============================================================ */

@media (max-width: 768px) {

  /* ── ROOMS GRID: proper single column cards like MakeMyTrip ── */
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

    .room-card {
    display: flex !important;
    flex-direction: row !important;
    height: 160px !important;
    border-radius: 14px;
    overflow: hidden;
    transform: none !important;
  }

  .room-card:hover {
    transform: none !important;
  }
  .room-card__img {
    width: 150px !important;
    min-width: 150px !important;
    height: 160px !important;
    flex-shrink: 0;
    border-radius: 0;
  }

  .room-card__body {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }

  .room-card__name {
    font-size: 1.05rem !important;
    white-space: normal !important;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .room-card__desc {
    display: block !important;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box !important;
    
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
  }

  .room-card__cat {
    font-size: 0.65rem;
    margin-bottom: 2px;
  }

    .room-card__name {
    font-size: 0.95rem;
    margin-bottom: 2px;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .room-card__desc {
    display: none !important; 
  }

  .room-card__amenities {
    display: none;
  }

  .room-card__price {
    margin-bottom: 6px;
  }

  .room-card__price-from {
    font-size: 0.68rem;
  }

  .room-card__price-amt {
    font-size: 1.05rem;
  }

  .room-card__price-dur {
    font-size: 0.68rem;
  }

  .room-card__footer {
    display: flex;
    gap: 6px;
    flex-direction: row;
  }

  .room-card__btn {
    flex: 1;
    padding: 5px 6px;
    font-size: 0.72rem;
    justify-content: center;
  }

  /* carousel dots smaller on horizontal card */
  .room-card__carousel-dots {
    bottom: 4px;
    left: 50%;
  }

  .dot {
    width: 4px;
    height: 4px;
  }

  /* ── FILTERS: horizontal scroll, no wrap ── */
  .rooms-filters {
    padding: 0 16px 16px;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 0.78rem;
    flex-shrink: 0;
    border-radius: 20px;
  }

  /* ── SECTION HEADERS ── */
  .section-header {
    padding: 40px 16px 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-sub {
    font-size: 0.88rem;
  }

  /* ── STATS: 2x2 clean grid ──
  .stats__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .stat {
    padding: 20px 10px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-width: unset;
    flex: unset;
  }

  .stat:nth-child(2),
  .stat:nth-child(4) {
    border-right: none;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }

  .stat__divider {
    display: none;
  }

  .stat__num {
    font-size: 1.8rem;
  } */


    /* ── STATS: single row ── */
  .stats {
    padding: 20px 8px;
  }

  .stats__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: space-around;
  }

  .stats__inner::-webkit-scrollbar { display: none; }

  .stat {
    padding: 10px 8px;
    min-width: unset;
    flex: 1;
    gap: 2px;
  }

  .stat__divider {
    display: block;
    width: 1px;
    height: 30px;
    align-self: center;
    flex-shrink: 0;
  }

  .stat__num {
    font-size: 1.4rem;
  }

  .stat__label {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }


  /* ── GALLERY: clean 3-col mosaic ── */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 4px;
    padding: 0 12px;
  }

  .gallery-item {
    height: 110px;
    border-radius: 8px;
  }

  .gallery-item--large {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-item--wide {
    grid-column: span 2;
    height: 110px;
  }

  /* ── BOOKING FORM: clean, compact, no zoom ── */
  .booking-section {
    padding-bottom: 50px;
  }

  .booking-form-wrap {
    padding: 0 16px;
  }

  .step-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  /* CRITICAL: font-size 16px stops iOS zoom on focus */
  .form-input {
    font-size: 16px !important;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 0.72rem;
    margin-bottom: 4px;
  }

  /* Stack all rows on mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  /* Steps bar - scroll horizontally */
  .steps-bar {
    padding: 0 12px 20px;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .step {
    font-size: 0.7rem;
    gap: 4px;
    flex-shrink: 0;
  }

  .step span {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .step-line {
    width: 24px;
    margin: 0 2px;
  }

  /* Form nav buttons */
  .form-nav {
    gap: 10px;
    margin-top: 20px;
  }

  /* Coupon row */
  .coupon-wrap {
    flex-direction: row;
    gap: 8px;
  }

  .coupon-wrap .btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }

  /* Price preview */
  .price-preview {
    padding: 12px;
  }

  .price-row {
    font-size: 0.82rem;
  }

  /* Guest block */
  .guest-block {
    padding: 12px;
  }

  /* Upload area */
  .upload-area {
    padding: 20px 16px;
  }

  /* UPI section */
  .upi-box {
    padding: 16px;
  }

  /* Review card */
  .review-card {
    padding: 14px;
  }

  .review-row {
    font-size: 0.82rem;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .review-row span:last-child {
    color: var(--gold);
    font-weight: 400;
  }

  /* Success box */
  .success-box {
    padding: 28px 16px;
  }

  /* ── OFFERS: taller cards on mobile ── */
  .offer-card {
    width: 220px;
    height: 130px;
  }

  /* ── HERO: fix button layout ── */
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 75%;
    justify-content: center;
  }

  /* ── TESTIMONIALS ── */
  .testimonial-card {
    min-width: 260px;
  }

  /* ── CONTACT ── */
  .contact-section {
    padding: 40px 16px 60px;
  }

  .contact-btns {
    flex-direction: column;
  }

  .contact-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── MODAL ── */
  .modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }

  .modal-box {
    padding: 20px 16px;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    margin-top: auto;
  }

  .modal-img-carousel {
    height: 200px;
  }

  .modal-info h2 {
    font-size: 1.5rem;
  }

  /* ── NAV ── */
  .nav__inner {
    height: 60px;
    padding: 0 4px;
  }

  .nav__logo-text {
    font-size: 1rem;
  }

  /* ── FOOTER ── */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer__links {
    justify-content: center;
  }
}

#upiQrCanvas {
  width: 220px;
  height: 220px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

#upiQrCanvas img {
  width: 220px !important;
  height: 220px !important;
  max-width: none !important;
  display: block !important;
  border-radius: 8px;
}


#onesignal-bell-launcher {
  left: 16px;
  bottom: 120px;
}

.hero__title {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
}

.hero__title em {
  font-family: 'Abril Fatface', serif;
  font-style: normal;
  color: var(--gold);
}