/* ============================================================
   Hotel Snow View Chopta — Main Stylesheet
   Theme: Mountain Luxury | Deep Forest Green + Gold
   ============================================================ */

:root {
  --primary: #2C5F2E;
  --primary-dark: #1a3d1c;
  --primary-light: #4a8c4d;
  --accent: #C9A84C;
  --accent-light: #e8c96a;
  --white: #ffffff;
  --off-white: #faf8f4;
  --text: #1e2a1f;
  --text-light: #5a6b5c;
  --border: #dde8de;
  --shadow: 0 4px 20px rgba(26,61,28,.1);
  --shadow-lg: 0 10px 40px rgba(26,61,28,.16);
  --radius: 10px;
  --radius-lg: 18px;
  --topbar-h: 42px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ───────────────────────────────────────────────── */
.top-bar {
  background: var(--primary-dark);
  color: #cde8ce;
  font-size: 12.5px;
  height: var(--topbar-h);
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1001;
  display: flex; align-items: center;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: #cde8ce; display: flex; align-items: center; gap: 5px; transition: .2s; }
.top-bar-left a:hover { color: var(--accent-light); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: #cde8ce; font-size: 13px; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: .2s; }
.top-bar-right a:hover { color: var(--accent-light); background: rgba(255,255,255,.1); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(26,61,28,.1);
  position: fixed; top: var(--topbar-h); left: 0; width: 100%; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(26,61,28,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo a { display: flex; align-items: center; gap: 12px; }
.logo img { border-radius: 50%; border: 2.5px solid var(--accent); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--primary-dark); line-height: 1.1; }
.logo-tag { font-size: 10px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav ul li a { padding: 8px 13px; font-size: 14px; font-weight: 600; color: var(--text); border-radius: 7px; transition: all .2s; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--primary); background: rgba(44,95,46,.08); }
.main-nav ul li.nav-cta a {
  background: var(--accent); color: var(--primary-dark) !important;
  padding: 10px 22px !important; border-radius: 25px !important;
  font-weight: 700 !important; box-shadow: 0 3px 12px rgba(201,168,76,.3);
  letter-spacing: .3px;
}
.main-nav ul li.nav-cta a:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(201,168,76,.4); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); display: block; border-radius: 2px; transition: .3s; }

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero-slider { position: relative; height: 90vh; min-height: 540px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,61,28,.75) 0%, rgba(44,95,46,.4) 55%, rgba(0,0,0,.3) 100%);
}
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 20px; }
.slide-inner { max-width: 800px; }
.slide-tag {
  display: inline-block; background: var(--accent); color: var(--primary-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px; margin-bottom: 22px;
}
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 6vw, 68px); font-weight: 700; line-height: 1.1; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.slide-sub { font-size: clamp(14px, 2vw, 20px); opacity: .9; margin-bottom: 34px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }
.slide-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary { background: var(--accent); color: var(--primary-dark); padding: 14px 34px; border-radius: 30px; font-weight: 700; font-size: 15px; letter-spacing: .4px; transition: all .3s; border: 2px solid var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.8); color: #fff; padding: 14px 34px; border-radius: 30px; font-weight: 700; font-size: 15px; transition: all .3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-light:hover { background: #fff; color: var(--primary-dark); transform: translateY(-2px); }

.slider-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; pointer-events: none; z-index: 10; }
.slider-arrow { width: 48px; height: 48px; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 2px solid rgba(255,255,255,.4); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: all .3s; font-size: 16px; }
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 5px; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; }
.slider-dot.active { width: 28px; background: var(--accent); }

/* ── BOOKING BAR ─────────────────────────────────────────────── */
.booking-bar {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 28px 32px;
  margin: -60px auto 0; position: relative; z-index: 100; max-width: 1060px;
}
.booking-bar h3 { font-family: 'Playfair Display', serif; color: var(--primary); margin-bottom: 20px; font-size: 22px; text-align: center; }
.book-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; align-items: end; }
.book-form .fg { display: flex; flex-direction: column; gap: 5px; }
.book-form .fg label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.book-form .fg input, .book-form .fg select { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 13px; font-size: 14px; font-family: 'Lato', sans-serif; color: var(--text); transition: .2s; background: var(--off-white); }
.book-form .fg input:focus, .book-form .fg select:focus { outline: none; border-color: var(--primary); background: #fff; }
.btn-check { background: var(--primary); color: #fff; border: none; border-radius: 8px; padding: 12px 26px; font-size: 14.5px; font-weight: 700; cursor: pointer; transition: .3s; font-family: 'Lato', sans-serif; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.btn-check:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(44,95,46,.3); }

/* ── SECTIONS ────────────────────────────────────────────────── */
section { padding: 80px 0; }
.section-label { font-size: 11.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 42px); font-weight: 700; color: var(--primary-dark); line-height: 1.2; margin-bottom: 14px; }
.section-desc { color: var(--text-light); font-size: 16px; line-height: 1.8; max-width: 600px; }
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.bg-off { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs { position: relative; height: 500px; }
.about-img-main { width: 78%; height: 390px; object-fit: cover; border-radius: var(--radius-lg); position: absolute; top: 0; left: 0; box-shadow: var(--shadow-lg); }
.about-img-accent { width: 56%; height: 260px; object-fit: cover; border-radius: var(--radius-lg); position: absolute; bottom: 0; right: 0; border: 5px solid #fff; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; top: 42px; right: 16px; background: var(--accent); color: var(--primary-dark); padding: 16px 18px; text-align: center; border-radius: 12px; box-shadow: var(--shadow); z-index: 2; }
.about-badge span { display: block; font-size: 30px; font-weight: 700; font-family: 'Playfair Display', serif; }
.about-badge small { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.feature-item i { color: var(--primary); font-size: 15px; flex-shrink: 0; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 700; font-size: 14px; letter-spacing: .4px; transition: all .3s; }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,95,46,.3); }

/* ── ROOMS ───────────────────────────────────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.room-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 14px rgba(26,61,28,.07); transition: all .35s; border: 1px solid var(--border); }
.room-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.room-thumb { position: relative; height: 240px; overflow: hidden; }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.room-card:hover .room-thumb img { transform: scale(1.07); }
.room-badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--primary-dark); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.room-price { position: absolute; bottom: 14px; right: 14px; background: var(--primary); color: #fff; padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.room-price strong { font-size: 17px; }
.room-body { padding: 22px; }
.room-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.room-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.room-amenity { background: rgba(44,95,46,.08); color: var(--primary); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 15px; }
.room-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.room-meta span { display: flex; align-items: center; gap: 5px; }
.room-meta i { color: var(--primary); }
.room-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 16px; }
.btn-view { color: var(--primary); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 5px; transition: .2s; }
.btn-view:hover { color: var(--primary-dark); }
.btn-book-now { background: var(--accent); color: var(--primary-dark); padding: 9px 22px; border-radius: 20px; font-weight: 700; font-size: 13px; transition: all .3s; }
.btn-book-now:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ── AMENITIES ───────────────────────────────────────────────── */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 18px; }
.amenity-card { background: #fff; border-radius: var(--radius); padding: 26px 18px; text-align: center; box-shadow: 0 2px 12px rgba(26,61,28,.06); border: 1px solid var(--border); transition: all .3s; }
.amenity-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.amenity-icon { width: 58px; height: 58px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 23px; margin: 0 auto 14px; }
.amenity-name { font-weight: 700; font-size: 14.5px; color: var(--text); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; }
.reviews-section .section-title { color: #fff; }
.reviews-section .section-label { color: var(--accent-light); }
.reviews-section .section-desc { color: rgba(255,255,255,.8); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-bottom: 40px; }
.review-card { background: rgba(255,255,255,.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 24px; transition: all .3s; }
.review-card:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
.stars { color: var(--accent-light); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; line-height: 1.75; margin-bottom: 16px; opacity: .92; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--primary-dark); flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-info { font-size: 12px; opacity: .7; margin-top: 2px; }
.reviews-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-google-review { border: 2px solid var(--accent-light); color: var(--accent-light); padding: 12px 26px; border-radius: 25px; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.btn-google-review:hover { background: var(--accent-light); color: var(--primary-dark); }

/* ── NEARBY PLACES ───────────────────────────────────────────── */
.places-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.place-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 14px rgba(26,61,28,.07); border: 1px solid var(--border); transition: all .35s; }
.place-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.place-img { height: 210px; object-fit: cover; width: 100%; transition: transform .5s; }
.place-card:hover .place-img { transform: scale(1.05); }
.place-body { padding: 20px; }
.place-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.place-dist { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--accent); background: rgba(201,168,76,.1); padding: 3px 10px; border-radius: 15px; margin-bottom: 10px; }
.place-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.68; }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 12px; }
.gallery-item { overflow: hidden; border-radius: 10px; cursor: zoom-in; position: relative; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(44,95,46,.5); opacity: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; transition: .3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA STRIP ───────────────────────────────────────────────── */
.cta-strip { background: var(--accent); padding: 52px 0; text-align: center; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px); color: var(--primary-dark); margin-bottom: 10px; }
.cta-strip p { color: var(--primary-dark); opacity: .8; margin-bottom: 28px; font-size: 16px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: var(--primary-dark); color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.btn-wa:hover { background: #1fbb57; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary-dark); padding: 13px 30px; border-radius: 30px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 70px 0 50px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 48px); font-weight: 700; margin-bottom: 10px; }
.page-hero p { opacity: .8; font-size: 17px; margin-bottom: 18px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; opacity: .7; }
.breadcrumb a { color: #cde8ce; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { opacity: .5; }

/* ── BOOKING PAGE ────────────────────────────────────────────── */
.booking-wrap { background: var(--off-white); padding: 60px 0; min-height: 60vh; }
.booking-layout { display: grid; grid-template-columns: 1.8fr 1fr; gap: 36px; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.booking-form-box { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.booking-form-box h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--primary-dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.fg label { font-size: 11.5px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .8px; }
.fg input, .fg select, .fg textarea {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px;
  font-size: 14.5px; font-family: 'Lato', sans-serif; color: var(--text);
  transition: .2s; background: var(--off-white);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(44,95,46,.07); }
.fg textarea { resize: vertical; min-height: 90px; }
.calc-summary { background: var(--off-white); border-radius: 10px; padding: 18px; margin-bottom: 20px; border: 1.5px solid var(--border); display: none; }
.calc-summary h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.calc-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid #eef2ee; }
.calc-row:last-child { border-bottom: none; font-size: 16px; font-weight: 700; color: var(--primary); margin-top: 6px; }
.calc-row.advance { color: var(--accent); font-weight: 700; }
.payment-box { background: var(--off-white); border-radius: 10px; padding: 20px; margin-top: 10px; }
.payment-box h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.pay-opts { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.pay-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; font-weight: 600; }
.pay-opt input { accent-color: var(--primary); width: 16px; height: 16px; }
.pay-info { background: #fff; border-radius: 8px; padding: 14px; border: 1px solid var(--border); font-size: 13.5px; line-height: 1.8; display: none; }
.pay-info.visible { display: block; }
.btn-book { background: var(--primary); color: #fff; border: none; border-radius: 30px; padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; margin-top: 14px; font-family: 'Lato', sans-serif; letter-spacing: .5px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .3s; }
.btn-book:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 18px rgba(44,95,46,.3); }
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box { background: #fff; border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.sidebar-box h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--primary-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sb-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 12px; color: var(--text); }
.sb-item i { color: var(--primary); width: 18px; flex-shrink: 0; margin-top: 2px; }
.sb-item a { color: var(--primary); font-weight: 700; }
.upi-block { background: var(--off-white); border-radius: 10px; padding: 14px; text-align: center; margin-bottom: 12px; }
.upi-id { font-size: 15px; font-weight: 700; color: var(--primary-dark); margin: 6px 0; }
.qr-code { width: 130px; height: 130px; margin: 10px auto; border-radius: 8px; border: 2px solid var(--border); object-fit: cover; }
.bank-detail { font-size: 13px; }
.bank-detail div { padding: 5px 0; border-bottom: 1px solid var(--border); }
.bank-detail div:last-child { border-bottom: none; }

/* ── ROOM DETAIL ─────────────────────────────────────────────── */
.room-detail-wrap { padding: 60px 0; }
.room-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: start; }
.room-main-img { width: 100%; height: 430px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 12px; }
.room-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 5px; }
.room-thumb-img { width: 88px; height: 62px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2.5px solid transparent; flex-shrink: 0; transition: .2s; }
.room-thumb-img.active, .room-thumb-img:hover { border-color: var(--primary); }
.room-info-sticky { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 20px); }
.room-price-big { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--primary); margin: 8px 0; }
.room-price-big small { font-size: 16px; font-weight: 400; color: var(--text-light); font-family: 'Lato', sans-serif; }
.room-detail-meta { display: flex; gap: 18px; font-size: 13.5px; color: var(--text-light); margin: 14px 0; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.room-detail-meta span { display: flex; align-items: center; gap: 6px; }
.room-detail-meta i { color: var(--primary); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.contact-icon.wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-icon.email { background: linear-gradient(135deg, var(--accent), #e8b84b); }
.contact-icon.map { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.contact-detail h4 { font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.contact-detail p, .contact-detail a { color: var(--text-light); font-size: 14px; line-height: 1.6; }
.contact-detail a { color: var(--primary); font-weight: 600; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── MAP SECTION (FOOTER) ─────────────────────────────────────── */
.map-section iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--primary-dark); color: #cde8ce; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.8fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-area { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-area img { border-radius: 50%; border: 2px solid var(--accent); }
.brand-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; }
.footer-brand p { font-size: 13.5px; opacity: .75; line-height: 1.75; margin-bottom: 18px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #cde8ce; font-size: 14px; transition: all .3s; }
.social-link:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }
.footer-heading { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { font-size: 13.5px; opacity: .75; transition: all .2s; display: flex; align-items: center; gap: 7px; }
.footer-links li a:hover { opacity: 1; padding-left: 4px; color: var(--accent-light); }
.footer-links li a i { color: var(--accent); font-size: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; opacity: .8; margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item i { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 16px; }
.footer-contact-item a { color: #cde8ce; transition: .2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: .6; flex-wrap: wrap; gap: 8px; }

/* ── FLOATING BUTTONS ────────────────────────────────────────── */
.float-btns { position: fixed; bottom: 24px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 998; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: all .3s; cursor: pointer; border: none; }
.float-wa { background: #25D366; animation: pulse-wa 2.5s infinite; }
.float-wa:hover { background: #1fbb57; transform: scale(1.12); }
.float-call { background: var(--primary); }
.float-call:hover { background: var(--primary-dark); transform: scale(1.12); }
.float-top { background: var(--primary-dark); font-size: 18px; }
.float-top:hover { background: var(--primary); }
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.35)} 50%{box-shadow:0 4px 26px rgba(37,211,102,.6)} }

/* ── ALERTS ──────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: 9px; margin-bottom: 20px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ── STATUS BADGES ───────────────────────────────────────────── */
.status-badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-cancelled, .status-rejected { background: #fee2e2; color: #991b1b; }
.status-completed { background: #e0e7ff; color: #3730a3; }

/* ── BOOKING SUCCESS ─────────────────────────────────────────── */
.success-wrap { background: var(--off-white); min-height: 70vh; padding: 60px 0; display: flex; align-items: center; }
.success-card { background: #fff; border-radius: var(--radius-lg); padding: 44px; max-width: 660px; margin: 0 auto; box-shadow: var(--shadow-lg); text-align: center; }
.success-icon { width: 82px; height: 82px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; margin: 0 auto 22px; }
.success-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--primary-dark); margin-bottom: 10px; }
.booking-summary-table { background: var(--off-white); border-radius: 10px; padding: 20px; text-align: left; margin: 22px 0; }
.bs-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.bs-row:last-child { border-bottom: none; }
.bs-row span { color: var(--text-light); }
.bs-row strong { color: var(--text); }
.success-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* ── GUEST TRACKER ───────────────────────────────────────────── */
.tracker-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 60px 0; text-align: center; }
.tracker-hero h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 20px; }
.track-form { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; }
.track-form input { flex: 1; padding: 14px 18px; border-radius: 30px; border: none; font-size: 15px; font-family: 'Lato', sans-serif; }
.track-form button { background: var(--accent); color: var(--primary-dark); border: none; padding: 14px 26px; border-radius: 30px; font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif; font-size: 15px; transition: .3s; }
.track-form button:hover { background: var(--accent-light); }
.booking-result { background: #fff; border-radius: var(--radius-lg); max-width: 680px; margin: 40px auto; padding: 32px; box-shadow: var(--shadow-lg); }
.status-banner { padding: 18px 22px; border-radius: 10px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 700; }
.sb-pending { background: #fef3c7; color: #92400e; border: 2px solid #fde68a; }
.sb-confirmed { background: #d1fae5; color: #065f46; border: 2px solid #6ee7b7; }
.sb-cancelled, .sb-rejected { background: #fee2e2; color: #991b1b; border: 2px solid #fca5a5; }
.sb-completed { background: #e0e7ff; color: #3730a3; border: 2px solid #c7d2fe; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.detail-row { padding: 10px 0; border-bottom: 1px solid var(--border); }
.detail-row .dr-label { font-size: 11.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 4px; }
.detail-row .dr-val { font-size: 15px; font-weight: 600; color: var(--text); }

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gallery-filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 22px; border-radius: 22px; border: 2px solid var(--border); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .25s; background: #fff; color: var(--text); }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 99999; display: none; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 44px; cursor: pointer; line-height: 1; opacity: .8; transition: .2s; }
.lightbox-close:hover { opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-grid { gap: 40px; }
  .booking-layout { grid-template-columns: 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --topbar-h: 0px; --header-h: 64px; }
  body { padding-top: var(--header-h); }
  .top-bar { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); right: -100%; width: 280px;
    height: calc(100vh - var(--header-h)); background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,.15); transition: right .4s; z-index: 999; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; padding: 20px; gap: 0; }
  .main-nav ul li a { display: block; padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav ul li.nav-cta { margin-top: 10px; }
  .main-nav ul li.nav-cta a { display: block; text-align: center; border-radius: 25px !important; border-bottom: none; }
  .hero-slider { height: 68vh; min-height: 440px; }
  .booking-bar { margin: 0 14px; padding: 22px 18px; border-radius: 14px; margin-top: -40px; }
  .book-form { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 55px 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .track-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .book-form { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .slide-btns { flex-direction: column; align-items: center; }
  .reviews-grid { grid-template-columns: 1fr; }
}
