/* ============================================================
   Rooms CSS
   ============================================================
   
/* ============================================================
   01. HERO
   ============================================================ */

.rp-hero {
    position: relative;
    height: 40vh;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.rp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #021f17;
}

.rp-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000d4!important;
  z-index: 1;
}

.rp-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem 3rem;
}

/* Breadcrumb */
.rp-bc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.9rem;
  list-style: none;
}

.rp-bc a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.rp-bc a:hover { color: var(--gold); }
.rp-bc .sep   { color: rgba(255, 255, 255, 0.25); }
.rp-bc .cur   { color: var(--gold2); }

.rp-hero-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffeec0;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.rp-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rp-hero-btn-primary,
.rp-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.rp-hero-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.rp-hero-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.rp-hero-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.rp-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.rp-hero-btn-primary svg,
.rp-hero-btn-outline svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* ============================================================
   02. MAIN LAYOUT
   ============================================================ */
.rp-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 3rem;
  align-items: start;
}

/* ============================================================
   03. SLIDER
   ============================================================ */
.rp-slider-wrap {
  position: sticky;
  top: 90px;
}

.rp-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;   /* ← fixed from 4/3 to match inline style override */
  background: #021f17;
  cursor: pointer;
}

.rp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.rp-slide.active { opacity: 1; }

.rp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease-out;
}

.rp-slide.active img { transform: scale(1.03); }

.rp-slide-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 14, 10, 0.5) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}

/* Arrows */
.rp-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(2, 14, 10, 0.72);
  border: 1px solid rgba(232, 201, 122, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.rp-arr.prev { left: 0.85rem; }
.rp-arr.next { right: 0.85rem; }

.rp-arr:hover {
  background: rgba(232, 201, 122, 0.18);
  border-color: var(--gold);
}

.rp-arr.prev:hover { transform: translateY(-50%) translateX(-2px); }
.rp-arr.next:hover { transform: translateY(-50%) translateX(2px); }

.rp-arr svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* Counter */
.rp-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(245, 237, 216, 0.65);
  background: rgba(2, 14, 10, 0.6);
  border: 1px solid rgba(232, 201, 122, 0.15);
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 5;
  white-space: nowrap;
}

.rp-csep { margin: 0 0.2rem; opacity: 0.5; }

/* Zoom hint */
.rp-zoom-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.65);
  background: rgba(2, 14, 10, 0.6);
  border: 1px solid rgba(232, 201, 122, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s;
}

.rp-slider:hover .rp-zoom-hint { opacity: 0; }

.rp-zoom-hint svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   04. THUMBNAILS
   ============================================================ */
.rp-thumbs {
  display: flex;
  gap: 7px;
  margin-top: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  flex-wrap: nowrap;
}

.rp-thumbs::-webkit-scrollbar { display: none; }

.rp-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.48;
  transition: opacity 0.25s, border-color 0.25s, transform 0.2s;
}

.rp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-thumb.active { border-color: var(--gold); opacity: 1; }
.rp-thumb:hover  { opacity: 0.8; transform: translateY(-2px); }

/* ============================================================
   05. PANEL
   ============================================================ */
.rp-panel {
  position: sticky;
  top: 90px;
  background: var(--forest);
  border: 1px solid rgba(232, 201, 122, 0.12);
  border-radius: 12px;
  padding: 1.8rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.rp-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rp-ptitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.rp-panel hr {
  border: none;
  border-top: 1px solid rgba(232, 201, 122, 0.1);
  margin: 0.85rem 0;
}

/* Price row */
.rp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.rp-pprice {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.rp-best-rate {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.rp-best-rate svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================================
   06. AMENITIES & CHIPS
   ============================================================ */
.rp-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.5rem;
  margin-bottom: 1rem;
}

.rp-amenity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(245, 237, 216, 0.78);
}

.rp-am-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(232, 201, 122, 0.1);
  border: 1px solid rgba(232, 201, 122, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-am-ico svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

/* ============================================================
   07. BUTTONS & TRUST
   ============================================================ */
.rp-btn-primary,
.rp-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.22s, transform 0.2s, background 0.22s;
  margin-bottom: 0.6rem;
}

.rp-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--primary);
  box-shadow: 0 5px 22px rgba(232, 201, 122, 0.35);
}

.rp-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.rp-btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(232, 201, 122, 0.28);
}

.rp-btn-outline:hover {
  background: rgba(232, 201, 122, 0.08);
  border-color: var(--gold);
}

.rp-btn-primary svg,
.rp-btn-outline svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* ============================================================
   08. LIGHTBOX
   ============================================================ */
.rp-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(1, 8, 6, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.rp-lb.open {
  display: flex;
  animation: rpLbIn 0.3s ease;
}

@keyframes rpLbIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.rp-lb-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  animation: rpImgIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes rpImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.rp-lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 201, 122, 0.1);
  border: 1px solid rgba(232, 201, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s, transform 0.25s;
}

.rp-lb-close:hover {
  background: rgba(232, 201, 122, 0.22);
  transform: rotate(90deg);
}

.rp-lb-close svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

.rp-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(2, 14, 10, 0.8);
  border: 1px solid rgba(232, 201, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.rp-lb-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.rp-lb-prev { left: 1.4rem; }
.rp-lb-next { right: 1.4rem; }

.rp-lb-arrow:hover {
  background: rgba(232, 201, 122, 0.18);
  border-color: var(--gold);
}

.rp-lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.rp-lb-next:hover { transform: translateY(-50%) translateX(2px); }

.rp-lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(232, 201, 122, 0.5);
  white-space: nowrap;
}

#rpLbCur {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================================
   09. SEO SECTIONS WRAPPER
   ============================================================ */
.rp-seo {
  background: #edf0f2;
  padding: 4rem 0 6rem;
}

.rp-seo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ============================================================
   10. BLOCK HEADINGS & ORNAMENT
   ============================================================ */
.rp-block {}

.rp-block-hd {
  text-align: center;
  margin-bottom: 2.8rem;
}

.rp-slbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ac6c00;
  margin-bottom: 0.55rem;
}

.rp-sh2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.rp-orn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto;
  max-width: 240px;
}

.rp-orn span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfa866, transparent);
  display: block;
}

.rp-orn-d {
  width: 7px;
  height: 7px;
  background: #ad6e00;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.rp-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(4, 51, 41, 0.65);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   11. ROOM OVERVIEW SPLIT
   ============================================================ */
.rp-overview-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.rp-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: #323232;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: justify;
}

.rp-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.rp-overview-tags span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(4, 51, 41, 0.07);
  border: 1px solid rgba(4, 51, 41, 0.18);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.rp-overview-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.rp-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.rp-overview-img:hover img { transform: scale(1.04); }

.rp-ov-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(2, 14, 10, 0.88);
  border: 1px solid rgba(232, 201, 122, 0.3);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  backdrop-filter: blur(8px);
}

.rp-ov-badge-price {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.rp-ov-badge-price span {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.45);
}

.rp-ov-badge-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 201, 122, 0.6);
  margin-top: 0.2rem;
}

/* ============================================================
   12. FEATURE CARDS
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feat-card {
  background: var(--forest);
  border: 1px solid rgba(232, 201, 122, 0.1);
  border-radius: 10px;
  padding: 1.4rem 1.3rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(232, 201, 122, 0.25);
}

.feat-card:hover::before { opacity: 1; }

.feat-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232, 201, 122, 0.1);
  border: 1px solid rgba(232, 201, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.feat-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.feat-card h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #e8c97a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feat-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  line-height: 1.78;
  color: rgb(255 255 255);
}

/* ============================================================
   13. DIRECT BOOKING GRID
   ============================================================ */
.rp-direct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.rp-direct-card {
  background: #fff;
  border: 1px solid rgba(4, 51, 41, 0.1);
  border-radius: 10px;
  padding: 1.5rem 1.3rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rp-direct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4, 51, 41, 0.1);
}

.rp-direct-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 51, 41, 0.06);
  border: 1px solid rgba(4, 51, 41, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.rp-direct-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.rp-direct-card h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.rp-direct-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  line-height: 1.78;
  color: rgba(4, 51, 41, 0.58);
}

/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(4, 51, 41, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(4, 51, 41, 0.08);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background 0.22s, color 0.22s;
}

.faq-q:hover,
.faq-item.open .faq-q {
  background: rgba(4, 51, 41, 0.03);
  color: var(--primary2);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(4, 51, 41, 0.06);
  border: 1px solid rgba(4, 51, 41, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  transition: stroke 0.25s;
}

.faq-item.open .faq-icon svg { stroke: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.95;
    color: #323232;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: justify;
    padding: 0 1.4rem 1.3rem 1.4rem;
    border-top: 1px solid rgba(4, 51, 41, 0.06);
    padding-top: 0.9rem;
    background-color: #fff;
}

/* ============================================================
   15. OTHER ROOMS GRID
   ============================================================ */
.or-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.or-card {
  display: flex;
  flex-direction: column;
  background: var(--forest);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(232, 201, 122, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.or-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  border-color: rgba(232, 201, 122, 0.28);
}

.or-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.or-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
  transition: transform 0.7s ease, filter 0.4s;
}

.or-card:hover .or-img img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.or-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 14, 10, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.or-pfloat {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold2);
  background: rgba(2, 14, 10, 0.85);
  border: 1px solid rgba(232, 201, 122, 0.28);
  padding: 0.28rem 0.65rem;
  border-radius: 5px;
  backdrop-filter: blur(6px);
}

.or-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.or-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.or-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.or-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  line-height: 1.72;
  color: rgba(245, 237, 216, 0.5);
  margin-bottom: 0.85rem;
  flex: 1;
}

.or-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

.or-link svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.2s;
}

.or-card:hover .or-link svg { transform: translateX(3px); }

/* ============================================================
   NEARBY ATTRACTIONS — Compact Minimal
   ============================================================ */

.np-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: transparent;
}

.np-row {
    display: grid;
    grid-template-columns: 340px 1fr;
    background: #ffffff;
    min-height: 0;
    margin: 12px;
    padding: 20px;
    border-radius: 5px;
}

.np-rows{
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.np-row:hover {
  background: #fdfcf8;
}

.np-row-rev {
  grid-template-columns: 1fr 340px;   /* ↑ was 1fr 260px */
}

.np-row-rev .np-row-img  { order: 2; }
.np-row-rev .np-row-body { order: 1; }

/* Image */
.np-row-img {
  position: relative;
  overflow: hidden;
  height: 220px;    
  border-radius: 10px;                  /* ↑ was 180px */
}

.np-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.np-row:hover .np-row-img img {
  transform: scale(1.04);
}

/* Badge */
.np-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  z-index: 2;
}

.np-badge.adventure { background: rgba(201,130,30,0.92); color: #fff8e8; }
.np-badge.scenic    { background: rgba(29,100,170,0.92);  color: #e8f2ff; }
.np-badge.trek      { background: rgba(30,110,60,0.92);   color: #e8f8ee; }
.np-badge.spiritual { background: rgba(180,70,20,0.92);   color: #fff4ee; }
.np-badge.nature    { background: rgba(40,130,70,0.92);   color: #e8faf0; }
.np-badge.wellness  { background: rgba(140,40,110,0.92);  color: #ffeef8; }

/* Body */
.np-row-body {
  padding: 1.6rem 2rem;               /* ↑ was 1.2rem 1.6rem */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;                       /* ↑ was 0.4rem */
}

/* Distance chip */
.np-km {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ac6c00;
}

/* Heading */
.np-row-body h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;                 /* ↑ was 1rem */
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Description */
.np-row-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: rgb(2 31 23);
  margin-bottom: .7rem;
  text-align: justify;
  font-weight: 500;
}

/* CTA bar */
.np-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.6rem;
  background: var(--forest);
  border: 1px solid rgba(232, 201, 122, 0.15);
  border-radius: 10px;
  flex-wrap: wrap;
}

.np-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.np-cta-text strong {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.np-cta-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  color: rgba(245, 237, 216, 0.5);
}

.np-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232, 201, 122, 0.3);
  transition: opacity 0.2s, transform 0.2s;
}

.np-cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.np-cta-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.nearAttractionSection {
  background-color: #e8f2ff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .np-row        { grid-template-columns: 280px 1fr; }
  .np-row-rev    { grid-template-columns: 1fr 280px; }
  .np-row-img    { height: 200px; }
}

@media (max-width: 768px) {
  .np-row,
  .np-row-rev {
    grid-template-columns: 1fr;
  }

  .np-row-rev .np-row-img  { order: 0; }
  .np-row-rev .np-row-body { order: 1; }

  .np-row-img { height: 200px; }

  .np-row-body {
    padding: 1.2rem 1.3rem;
    gap: 0.4rem;
  }

  .np-row-body h3 { font-size: 1rem; }

  .np-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem;
  }

  .np-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .np-row-img { height: 175px; }

  .np-row-body {
    padding: 1rem 1.1rem;
    gap: 0.3rem;
  }

  .np-row-body h3 { font-size: 0.95rem; }
  .np-row-body p  { font-size: 14px; }
}

/* ============================================================
   17. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */

/* ── 1100px ── */
@media (max-width: 1100px) {
  .rp-main {
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    padding: 2rem 1.8rem 2.5rem;
  }

  .rp-overview-split {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }

  /* Direct booking: 2 col */
  .rp-direct-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature cards: 2 col */
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Nearby featured: 2+1 */
  .np-featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-featured .np-feat-card:last-child {
    grid-column: 1 / -1;
  }

  .np-featured .np-feat-card:last-child .np-feat-img {
    height: 220px;
  }

  /* Nearby grid: 3 col */
  .np-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .rp-hero {
    height: 52vh;
    min-height: 360px;
  }

 .rp-slider{
      aspect-ratio: 15 / 9;
      width: 66vh;
  }

  .rp-thumbs{ display: none;}

  /* Stack main to single column */
  .rp-main {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.4rem 2.5rem;
  }

  .rp-slider-wrap {
    position: static;
  }

  .rp-panel {
    position: static;
  }

  /* Overview: stack */
  .rp-overview-split {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .rp-overview-img {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Other rooms: 2 col */
  .or-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature cards: 2 col */
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Nearby featured: 1 col */
  .np-featured {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .np-featured .np-feat-card:last-child {
    grid-column: auto;
  }

  /* Nearby grid: 2 col */
  .np-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .rp-hero {
    height: 18vh;
    min-height: 250px;
  }

  .rp-slider{
      aspect-ratio: 15 / 9;
      width: auto;
  }

  .rp-thumbs{
    display: none;
  }

  .rp-hero-body {
    padding: 0 1.2rem 2rem;
  }

  .rp-seo-inner {
    padding: 0 10px;
    gap: 3.5rem;
  }

  /* Direct booking: 2 col → keep */
  .rp-direct-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Feature cards: 1 col */
  .feat-grid {
    grid-template-columns: 1fr;
  }

  /* Other rooms: 1 col */
  .or-grid {
    grid-template-columns: 1fr;
  }

  /* Nearby: keep 2 col */
  .np-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
  }

  .np-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 520px ── */
@media (max-width: 520px) {
  .rp-hero-actions {
    flex-direction: column;
  }

  .rp-hero-btn-primary,
  .rp-hero-btn-outline {
    justify-content: center;
  }

  .rp-amenities {
    grid-template-columns: 1fr 1fr;
  }

  /* Direct booking: 1 col */
  .rp-direct-grid {
    grid-template-columns: 1fr;
  }

  .rp-seo {
    padding: 2.5rem 0 4rem;
  }

  .rp-lb-arrow {
    width: 38px;
    height: 38px;
  }

  .rp-lb-prev { left: 0.5rem; }
  .rp-lb-next { right: 0.5rem; }

  /* Feature cards: 1 col (already) */
  .feat-grid {
    grid-template-columns: 1fr;
  }

  /* Nearby featured: 1 col (already) */
  .np-featured {
    grid-template-columns: 1fr;
  }

  /* Nearby grid: 1 col */
  .np-grid {
    grid-template-columns: 1fr;
  }

  .np-feat-img {
    height: 180px;
  }

  .np-card-img {
    height: 140px;
  }

  .np-cta-bar {
    padding: 1rem;
  }

  .rp-overview-split {
    grid-template-columns: 1fr;
  }

  /* Other rooms: 1 col (already) */
  .or-grid {
    grid-template-columns: 1fr;
  }

  /* Thumbs: smaller on mobile */
  .rp-thumb {
    width: 60px;
    height: 46px;
  }
}

strong{
  color: #021f17;
}

/* ============================================================
   CONTACT PAGE CSS — Nanda View Resort
   Add this at the end of your style.css
   ============================================================ */

/* ============================================================
   RP HERO (Contact / Room / About shared hero style)
   ============================================================ */
.rp-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.rp-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/caro-3.avif') center / cover no-repeat;
  z-index: 0;
  transform: scale(1.04);
  animation: rpHeroZoom 9s ease-out forwards;
}

@keyframes rpHeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.rp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 14, 10, .94) 0%,
    rgba(2, 14, 10, .45) 55%,
    rgba(2, 14, 10, .15) 100%
  );
  z-index: 1;
}

.rp-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

/* Breadcrumb */
.rp-bc {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.rp-bc a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}

.rp-bc a:hover { color: var(--gold); }

.rp-bc .cur { color: var(--gold2); }

.rp-bc .sep {
  color: rgba(255, 255, 255, .25);
  font-size: .65rem;
}

/* Hero Title */
.rp-hero-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #ffeec0;
  line-height: 1.08;
  margin: 0;
}

/* Hero Meta Row */
.rp-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.rp-price-hero {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: var(--gold);
}

.rp-price-hero sub {
  font-size: .5em;
  font-weight: 400;
  color: rgba(232, 201, 122, .6);
  margin-left: 2px;
}

.rp-hero-sep {
  width: 1px;
  height: 16px;
  background: rgba(232, 201, 122, .28);
  display: inline-block;
  flex-shrink: 0;
}

.rp-rating {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(245, 237, 216, .75);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.rp-rating .stars { color: var(--gold); letter-spacing: .1em; }

/* Hero Action Buttons */
.rp-hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}

.rp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .78rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232, 201, 122, .35);
  transition: opacity .22s, transform .2s;
}

.rp-hero-btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.rp-hero-btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.rp-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 201, 122, .35);
  color: var(--gold2);
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .78rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .22s, border-color .22s;
}

.rp-hero-btn-outline:hover {
  background: rgba(232, 201, 122, .12);
  border-color: var(--gold);
}

.rp-hero-btn-outline svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

/* ============================================================
   RP SEO SECTION WRAPPER
   ============================================================ */
.rp-seo {
  background: #f8f5ee;
  padding: 5rem 1.5rem 6rem;
}

.rp-seo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   RP BLOCK (shared section block utility)
   ============================================================ */
.rp-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rp-block-hd {
  text-align: center;
  margin-bottom: 0;
}

.rp-slbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ac6c00;
  margin-bottom: .5rem;
}

.rp-sh2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.12;
}

.rp-orn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto 0;
  max-width: 240px;
}

.rp-orn span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfa866, transparent);
  display: block;
}

.rp-orn-d {
  width: 7px;
  height: 7px;
  background: #e8c97a;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.rp-body {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  line-height: 1.9;
  color: rgba(50, 50, 50, .78);
  font-weight: 500;
}

/* ============================================================
   CONTACT WRAP
   ============================================================ */
.ct-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.ct-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.ct-card {
  background: #fff;
  border: 1px solid rgba(4, 51, 41, .1);
  border-radius: 10px;
  padding: 1.8rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .45rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.ct-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}

.ct-card:hover::before { opacity: 1; }

.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(4, 51, 41, .12);
  border-color: rgba(232, 201, 122, .4);
}

.ct-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(4, 51, 41, .07);
  border: 1px solid rgba(4, 51, 41, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .3rem;
  transition: background .3s;
}

.ct-card:hover .ct-card-icon {
  background: rgba(232, 201, 122, .15);
  border-color: rgba(232, 201, 122, .35);
}

.ct-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  transition: stroke .3s;
}

.ct-card:hover .ct-card-icon svg {
  stroke: #8a5c00;
}

.ct-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ac6c00;
}

.ct-card-val {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.ct-card-val a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

.ct-card-val a:hover { color: #8a5c00; }

.ct-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  color: rgba(50, 50, 50, .5);
}

/* ============================================================
   HOURS STRIP
   ============================================================ */
.ct-hours {
  background: var(--primary);
  border-radius: 12px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ct-hours-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffeec0;
  line-height: 1.2;
}

.ct-hours-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  color: rgba(255, 238, 192, .5);
  font-weight: 500;
  margin-top: .2rem;
}

.ct-hours-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.ct-hours-item {
  text-align: center;
  padding: .6rem 1.2rem;
  border: 1px solid rgba(232, 201, 122, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  min-width: 100px;
}

.ct-hours-day {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(232, 201, 122, .6);
  margin-bottom: .3rem;
}

.ct-hours-time {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold2);
}

.ct-hours-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 201, 122, .3);
}

/* ============================================================
   MAIN 2-COL LAYOUT: FORM + MAP
   ============================================================ */
.ct-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ============================================================
   CONTACT FORM PANEL
   ============================================================ */
.ct-form-panel {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(4, 51, 41, .08);
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 30px rgba(4, 51, 41, .07);
}

.ct-form-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .3rem;
}

.ct-form-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  color: rgba(50, 50, 50, .5);
  margin-bottom: 1.6rem;
  font-weight: 500;
}

/* Field rows */
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .85rem;
}

.ct-field:last-child { margin-bottom: 0; }

.ct-field label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5;
    color: rgb(4 51 41);
}

.ct-field input,
.ct-field textarea {
  background: #f6f3ec;
  border: 1px solid rgba(4, 51, 41, .12);
  border-radius: 5px;
  padding: .72rem .9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  color: #222;
  width: 100%;
  outline: none;
  transition: border-color .22s, background .22s, box-shadow .22s;
  font-weight: 500;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(50, 50, 50, .35);
  font-size: .74rem;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-color: rgba(4, 51, 41, .45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(4, 51, 41, .06);
}

.ct-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(20%) sepia(80%) saturate(400%) hue-rotate(130deg);
  cursor: pointer;
}

.ct-field textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.65;
}

/* Submit button */
.ct-submit {
  width: 100%;
  margin-top: 1rem;
  padding: .9rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #ffeec0;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  box-shadow: 0 6px 24px rgba(4, 51, 41, .25);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}

.ct-submit:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(4, 51, 41, .35);
}

.ct-submit svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

/* Success message */
.ct-success {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(4, 51, 41, .07);
  border: 1px solid rgba(4, 51, 41, .2);
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.65;
}

/* ============================================================
   MAP PANEL
   ============================================================ */
.ct-map-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ct-map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(4, 51, 41, .1);
  box-shadow: 0 4px 24px rgba(4, 51, 41, .08);
  height: 280px;
  flex-shrink: 0;
}

.ct-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Quick call/WA buttons */
.ct-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.ct-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1rem;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, opacity .22s;
}

.ct-quick-btn:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.ct-quick-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.ct-btn-call {
  background: var(--primary);
  color: #ffeec0;
  box-shadow: 0 4px 18px rgba(4, 51, 41, .28);
}

.ct-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
}

/* Address block */
.ct-addr {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: #fff;
  border: 1px solid rgba(4, 51, 41, .08);
  border-radius: 10px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 2px 14px rgba(4, 51, 41, .05);
}

.ct-addr-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(4, 51, 41, .07);
  border: 1px solid rgba(4, 51, 41, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ct-addr-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.ct-addr-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  line-height: 1.75;
  color: #444;
  font-weight: 500;
}

.ct-addr-text strong {
  font-family: 'Ubuntu', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: .2rem;
}

/* ============================================================
   CONTACT PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ct-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ct-main {
    grid-template-columns: 1fr;
  }

  .ct-map-frame {
    height: 260px;
  }

  .rp-hero {
    height: 45vh;
    min-height: 320px;
  }

  .rp-hero-body {
    padding: 0 1.4rem 2.5rem;
  }

  .rp-seo {
    padding: 3.5rem 1.2rem 5rem;
  }
}

@media (max-width: 640px) {
  .ct-cards {
    grid-template-columns: 1fr 1fr;
  }

  .ct-field-row {
    grid-template-columns: 1fr;
  }

  .ct-hours {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 1.4rem;
  }

  .ct-hours-items {
    justify-content: flex-start;
    gap: .75rem;
  }

  .ct-hours-item {
    min-width: 80px;
    padding: .5rem .8rem;
  }

  .ct-form-panel {
    padding: 1.6rem 1.3rem;
  }

  .rp-hero-actions {
    flex-direction: column;
  }

  .rp-hero-btn-primary,
  .rp-hero-btn-outline {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ct-cards {
    grid-template-columns: 1fr;
  }

  .ct-quick {
    grid-template-columns: 1fr;
  }

  .rp-hero {
    height: 40vh;
    min-height: 280px;
  }

  .rp-hero-body {
    padding: 0 1rem 2rem;
  }

  .rp-seo {
    padding: 3rem .9rem 4rem;
  }

  .ct-hours-items {
    width: 100%;
  }

  .ct-hours-item {
    flex: 1;
  }
}

/* ============================================================
   book.css — Nanda View Resort — Booking Page
   All classes prefixed with bk- to avoid conflicts
   ============================================================ */

/* ============================================================
   01. CSS VARIABLES (same as main site)
   ============================================================ */
:root {
  --primary:   #043329;
  --primary2:  #065240;
  --gold:      #e8c97a;
  --gold2:     #f5dfa0;
  --gold3:     #fceec6;
  --deep:      #021f17;
  --forest:    #032a20;
  --mid:       #054233;
  --panel:     #0a5240;
  --cream:     #ffffff;
  --border:    rgba(232,201,122,.18);
  --borderhov: rgba(232,201,122,.5);
}

/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  background: #f4f1ea;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Ubuntu', sans-serif; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================================
   03. NAVBAR (copied from main — no prefix needed, global)
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2.5rem;
  background: rgba(8,18,14,.72);
  transition: background .3s, box-shadow .3s, height .3s;
}
#navbar.scrolled {
  background: rgb(2 31 23);
  border-bottom: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 2px 28px rgba(0,0,0,.55);
  height: 60px;
}
.nav-brand-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.nav-brand-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--gold2); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: #1a0900;
  font-family: 'Montserrat', sans-serif;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .58rem 1.2rem;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(201,168,76,.4);
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.nav-cta svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.5; }
#hamburger {
  display: none;
  background: rgba(187,143,70,.52);
  border: 1px solid var(--gold);
  padding: .4rem .6rem;
  border-radius: 2px;
  cursor: pointer;
}
#hamburger svg { display:block; width:20px; height:14px; stroke:var(--gold); fill:none; stroke-width:2; stroke-linecap:round; }

/* ============================================================
   04. HERO BANNER
   ============================================================ */
.ab-hero {
  position: relative;
  height: 38vh;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.book-hero { min-height: 220px; height: 32vh; }
.ab-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/caro-2.avif') center / cover no-repeat;
  z-index: 0;
}
.ab-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(2,31,23,.88) 100%);
  z-index: 1;
}
.ab-hero-body {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem 2.5rem;
}
.ab-bc {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .7rem;
}
.ab-bc a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.ab-bc a:hover { color: var(--gold); }
.ab-bc span:last-child { color: var(--gold2); }
.ab-hero-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffeec0;
  line-height: 1.1;
}
.ab-hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: .4rem;
  letter-spacing: .04em;
}

/* ============================================================
   05. PAGE BODY LAYOUT
   ============================================================ */
.pg-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  align-items: start;
}

/* ============================================================
   06. FORM AREA (LEFT)
   ============================================================ */
.form-area {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-section {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(4,51,41,.07);
  border: 1px solid rgba(4,51,41,.08);
  margin-top: 12px;
}

.sec-lbl {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(4,51,41,.07);
  background: #f9f7f2;
}
.sec-lbl svg {
  width: 14px; height: 14px;
  stroke: var(--primary); fill: none; stroke-width: 2;
  flex-shrink: 0;
}

.form-block {
  padding: 1.5rem;
}

/* ── Grid ── */
.bk-fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bk-fg { display: flex; flex-direction: column; gap: .3rem; }
.bk-fg-full { grid-column: 1 / -1; }

/* ── Label ── */
.bk-fl {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b5a2e;
}
.bk-fl svg {
  width: 10px; height: 10px;
  stroke: currentColor; fill: none; stroke-width: 2;
}
.bk-req { color: #c0392b; font-size: .7rem; }

/* ── Input ── */
.bk-fi {
  background: #faf9f5;
  border: 1.5px solid #e2dcc8;
  border-radius: 6px;
  color: #2a2a2a;
  padding: .72rem .9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .22s, background .22s, box-shadow .22s;
}
.bk-fi::placeholder {
  color: #b5ad97;
  font-size: .72rem;
  font-weight: 400;
}
.bk-fi:focus {
  border-color: var(--primary2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(4,51,41,.08);
}
.bk-fi option { background: #fff; color: #2a2a2a; }
.bk-fi[type="date"]::-webkit-calendar-picker-indicator {
  filter: opacity(0.5);
  cursor: pointer;
}
textarea.bk-fi { resize: vertical; line-height: 1.6; }
.bk-fi-error {
  border-color: #e74c3c !important;
  background: #fff8f8 !important;
}

/* ── Select Wrapper ── */
.bk-fi-sel-wrap {
  position: relative;
}
.bk-fi-sel-wrap .bk-fi { padding-right: 2.2rem; }
.bk-arr {
  position: absolute;
  right: .75rem; top: 50%;
  transform: translateY(-50%);
  width: 13px; height: 13px;
  stroke: #8a7a50; fill: none; stroke-width: 2.5;
  pointer-events: none;
}

/* ── Error msg ── */
.bk-ferr {
  display: none;
  align-items: center;
  gap: .35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  color: #c0392b;
  margin-top: .18rem;
}
.bk-ferr svg {
  width: 11px; height: 11px;
  stroke: currentColor; fill: none; stroke-width: 2;
  flex-shrink: 0;
}

/* ── Submit ── */
.bk-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
}
.bk-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  color: var(--gold2);
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .95rem 2.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(4,51,41,.28);
  transition: opacity .22s, transform .2s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.bk-btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s ease;
}
.bk-btn-submit:hover::after { left: 150%; }
.bk-btn-submit:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(4,51,41,.38);
}
.bk-btn-submit svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2.5;
}
.bk-submit-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  color: #7a6e52;
  font-weight: 500;
}
.bk-submit-note svg {
  width: 11px; height: 11px;
  stroke: var(--primary2); fill: none; stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================================
   07. SIDE PANEL (RIGHT)
   ============================================================ */
.bk-side-panel {
  position: sticky;
  top: 88px;
}
.bk-panel-inner {
  background: var(--deep);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(232,201,122,.14);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.bk-panel-section {
  padding: 1.5rem;
}
.bk-panel-div {
  height: 1px;
  background: rgba(232,201,122,.1);
  margin: 0 1.5rem;
}
.bk-panel-hd {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.2rem;
}
.bk-panel-ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(232,201,122,.1);
  border: 1px solid rgba(232,201,122,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.bk-panel-ico svg {
  width: 15px; height: 15px;
  stroke: var(--gold); fill: none; stroke-width: 1.8;
}
.bk-panel-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.bk-panel-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  color: rgba(232,201,122,.45);
  margin-top: .1rem;
  letter-spacing: .06em;
}

/* ── Bank transfer block ── */
.bk-pay-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,201,122,.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.bk-pay-block-hd {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  background: rgba(232,201,122,.07);
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
  border-bottom: 1px solid rgba(232,201,122,.1);
}
.bk-pay-block-hd svg {
  width: 13px; height: 13px;
  stroke: var(--gold); fill: none; stroke-width: 1.8;
}
.bk-pay-rows { padding: .4rem 0; }
.bk-pay-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1rem;
  border-bottom: 1px solid rgba(232,201,122,.06);
}
.bk-pay-item:last-child { border-bottom: none; }
.bk-pay-key {
  font-family: 'Montserrat', sans-serif;
  font-size: .56rem;
  font-weight: 600;
  color: rgba(245,237,216,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.bk-pay-val {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: color .2s;
  text-align: right;
}
.bk-pay-val:hover { color: var(--gold2); }
.bk-copy-icon {
  width: 11px; height: 11px;
  stroke: rgba(232,201,122,.5); fill: none; stroke-width: 2;
  flex-shrink: 0;
  transition: stroke .2s;
}
.bk-pay-val:hover .bk-copy-icon { stroke: var(--gold); }

/* ── Notice ── */
.bk-pay-notice {
     display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-family: 'Ubuntu';
    font-size: 11px;
    line-height: 1.6;
    color: rgb(255 255 255);
    background: rgba(232, 201, 122, .05);
    border: 1px solid rgba(232, 201, 122, .1);
    border-radius: 6px;
    padding: .7rem .85rem;
    letter-spacing: 0.5px;
}
.bk-pay-notice svg {
  width: 12px; height: 12px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── WhatsApp CTA ── */
.bk-wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .82rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
  transition: background .22s, transform .2s;
}
.bk-wa-cta:hover { background: #1fbe5a; transform: translateY(-1px); }
.bk-wa-cta svg {
  width: 15px; height: 15px;
  stroke: #fff; fill: none; stroke-width: 2;
}

/* ── Cancellation ── */
.bk-cancel-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.bk-cancel-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 8px;
  border: 1px solid;
}
.bk-cancel-green {
  background: rgba(39,174,96,.08);
  border-color: rgba(39,174,96,.2);
}
.bk-cancel-yellow {
  background: rgba(243,156,18,.08);
  border-color: rgba(243,156,18,.2);
}
.bk-cancel-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.bk-cancel-green .bk-cancel-dot {
  background: rgba(39,174,96,.15);
}
.bk-cancel-yellow .bk-cancel-dot {
  background: rgba(243,156,18,.15);
}
.bk-cancel-dot svg {
  width: 12px; height: 12px;
  stroke-width: 2.5; fill: none;
}
.bk-cancel-green .bk-cancel-dot svg { stroke: #27ae60; }
.bk-cancel-yellow .bk-cancel-dot svg { stroke: #f39c12; }
.bk-cancel-head {
  font-family: 'Ubuntu', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .25rem;
}
.bk-cancel-sub {
    font-family: 'ubuntu';
    font-size: 11px;
    line-height: 1.65;
    color: rgb(183 183 183);
}

/* ── Trust row ── */
.bk-trust-row {
  display: flex;
  justify-content: space-around;
  padding: 1rem 1.5rem 1.4rem;
}
.bk-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.bk-trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none; stroke-width: 2;
}
.bk-trust-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(232,201,122,.5);
}

/* ============================================================
   08. TOAST
   ============================================================ */
#bk-toast {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-toast-msg {
  min-width: 260px;
  max-width: 340px;
  padding: 13px 16px 13px 46px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  position: relative;
  animation: bkToastIn .35s ease forwards, bkToastOut .35s ease 3.5s forwards;
  opacity: 0;
}
.bk-toast-msg::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 5px;
  border-radius: 6px 0 0 6px;
}
.bk-toast-msg::after {
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.bk-toast-success { background: linear-gradient(135deg,#27ae60,#1e8449); }
.bk-toast-success::before { background: #2ecc71; }
.bk-toast-success::after { content: "✔"; }
.bk-toast-error { background: linear-gradient(135deg,#c0392b,#962d22); }
.bk-toast-error::before { background: #e74c3c; }
.bk-toast-error::after { content: "✖"; }
.bk-toast-info { background: linear-gradient(135deg,#2980b9,#1a5276); }
.bk-toast-info::before { background: #3498db; }
.bk-toast-info::after { content: "ℹ"; }
@keyframes bkToastIn {
  from { opacity:0; transform:translateX(120%); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes bkToastOut {
  from { opacity:1; transform:translateX(0); }
  to   { opacity:0; transform:translateX(120%); }
}

/* ============================================================
   09. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pg-body {
    grid-template-columns: 1fr 320px;
    gap: 1.8rem;
    padding: 2.5rem 1.5rem 4rem;
  }
}

@media (max-width: 860px) {
  .pg-body {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem 4rem;
  }
  .bk-side-panel {
    position: static;
    /* order: -1; */
     /* panel on top on mobile */
  }
  .bk-panel-inner {
    border-radius: 10px;
  }
}

@media (max-width: 640px) {
  .bk-fgrid {
    grid-template-columns: 1fr;
  }
  .bk-fg-full { grid-column: 1; }
  .form-block { padding: 1.2rem; }
  .bk-btn-submit {
    width: 100%;
    justify-content: center;
  }
  .bk-submit-wrap { align-items: stretch; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  #hamburger { display: flex; }
  #navbar { padding: 0 1.2rem; height: 60px; }
  .ab-hero-body { padding: 0 1.2rem 2rem; }
}

@media (max-width: 480px) {
  .pg-body { padding: 1.5rem .9rem 3rem; }
  .bk-pay-val { font-size: .62rem; }
}