/* ══════════════════════════════════════════
   HOTEL HILLVIEW PREMIUM — style.css (COMPLETE)
══════════════════════════════════════════ */

/* ── Root Variables ── */
:root {
  --gold: #b8963e;
  --gold2: #d4b06a;
  --gold3: #8a6f28;
  --white: #fff;
  --off: #faf8f4;
  --off2: #f2ede3;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --muted: #6b6b6b;
  --muted2: #aaa;
  --border: rgba(184,150,62,.2);
  --border2: #e5ddd0;
  --nav-h: 76px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f2ede3; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Sections ── */
.sec { padding: 90px 0; }
.sec-white { background: #fff; }
.sec-off { background: var(--off); }
.sec-off2 { background: var(--off2); }

/* ── Labels / Headings ── */
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .67rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.tag::before, .tag::after {
  content: ''; height: 1px; width: 28px;
  background: var(--gold); opacity: .6;
}
.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--dark); line-height: 1.18; margin-bottom: 12px;
}
.sec-title em { color: var(--gold); font-style: italic; }
.sec-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; color: var(--muted); max-width: 490px;
}
.gold-bar {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0;
}
.text-center .gold-bar { margin: 18px auto; }

/* ── Buttons ── */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gold); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: .7rem;
  font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 30px; position: relative; overflow: hidden;
  transition: color .4s var(--ease); cursor: pointer; background: transparent;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease); z-index: 0;
}
.btn-outline > * { position: relative; z-index: 1; }
.btn-outline:hover { color: #fff; }
.btn-outline:hover::before { transform: scaleX(1); }

.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; border: 1.5px solid var(--gold);
  font-family: 'Jost', sans-serif; font-size: .7rem;
  font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 30px; position: relative; overflow: hidden;
  transition: color .4s var(--ease); cursor: pointer;
}
.btn-solid::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold3); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease); z-index: 0;
}
.btn-solid > * { position: relative; z-index: 1; }
.btn-solid:hover::before { transform: scaleX(1); }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--nav-h);
  background: rgba(255,255,255,0);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), height .35s var(--ease);
}
#navbar.solid {
  background: rgba(0,0,0,.75);
  box-shadow: 0 2px 28px rgba(0,0,0,.25);
  height: 64px;
  backdrop-filter: blur(12px);
}

.nw {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px; max-width: 1400px;
  margin: 0 auto; width: 100%;
}

/* Logo */
.n-logo { display: flex; flex-direction: column; line-height: 1; }
.n-logo .l1 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
  font-weight: 700; color: #fff; letter-spacing: .04em; transition: color .35s;
}
#navbar.solid .n-logo .l1 { color: #fff; }
.n-logo .l1 em { color: var(--gold); font-style: normal; }
.n-logo .l2 {
  font-size: .52rem; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 3px; transition: color .35s;
}
#navbar.solid .n-logo .l2 { color: rgba(255,255,255,.55); }

/* Desktop links */
.n-links { display: flex; align-items: center; gap: 0; list-style: none; }
.n-links > li { position: relative; }
.n-links a {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 400; color: rgba(255,255,255,.85); padding: 8px 13px;
  position: relative; transition: color .3s; display: block;
}
#navbar.solid .n-links a { color: rgba(255,255,255,.85); }
.n-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 13px;
  width: calc(100% - 26px); height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center; transition: transform .35s var(--ease);
}
.n-links a:hover { color: var(--gold); }
.n-links a:hover::after { transform: scaleX(1); }
#navbar.solid .n-links a:hover { color: var(--gold); }

/* Rooms Dropdown */
.n-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  border-top: 2px solid var(--gold); opacity: 0;
  pointer-events: none; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 999;
}
.n-links > li:hover .n-dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.n-dropdown a {
  display: block; padding: 10px 18px;
  font-size: .68rem; color: var(--dark2) !important;
  border-bottom: 1px solid var(--border2);
  letter-spacing: .1em; transition: background .25s, color .25s;
}
.n-dropdown a::after { display: none !important; }
.n-dropdown a:hover { background: var(--off); color: var(--gold) !important; padding-left: 24px; }
.n-dropdown a:last-child { border-bottom: none; }

.n-book { margin-left: 16px; }

/* Hamburger */
.n-ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.n-ham span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; transition: .35s var(--ease);
}
#navbar.solid .n-ham span { background: #fff; }
.n-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.n-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.n-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.drawer-ov {
  position: fixed; inset: 0; background: rgba(0,0,0,.42);
  z-index: 9998; opacity: 0; pointer-events: none; transition: opacity .35s;
}
.drawer-ov.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: -100%;
  width: min(330px,100vw); height: 100vh;
  background: #fff; z-index: 10000;
  box-shadow: -6px 0 40px rgba(0,0,0,.13);
  transition: right .45s var(--ease);
  display: flex; flex-direction: column;
  padding: 0 0 40px;
}
.drawer.open { right: 0; }

/* Drawer Header */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid var(--border2);
  margin-bottom: 12px;
}
.drawer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--dark);
}
.drawer-brand em { color: var(--gold); font-style: normal; }
.drawer-close {
  width: 34px; height: 34px; border: 1.5px solid var(--border2);
  background: none; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; color: var(--muted);
  transition: .3s; border-radius: 0;
}
.drawer-close:hover { border-color: var(--gold); color: var(--gold); }

.drawer-links { padding: 0 28px; flex: 1; overflow-y: auto; }
.drawer-links a {
  display: block; font-size: .88rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dark); padding: 13px 0;
  border-bottom: 1px solid var(--border2);
  transition: color .3s, padding-left .3s; font-weight: 400;
}
.drawer-links a:hover { color: var(--gold); padding-left: 8px; }

/* Drawer room sub-links */
.drawer-sub { padding-left: 14px; }
.drawer-sub a {
  font-size: .78rem; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.04); letter-spacing: .08em;
}
.drawer-sub a:hover { color: var(--gold); }
.drawer-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-sub-toggle i {
  font-size: .65rem; color: var(--gold); transition: transform .3s;
}
.drawer-sub-toggle.open i { transform: rotate(180deg); }
.drawer-sub { display: none; }
.drawer-sub.open { display: block; }

.drawer-book { padding: 20px 28px 0; }
.drawer-book .btn-solid {
  justify-content: center; width: 100%; border: none; padding: 14px;
}

/* ═══════════════════════
   HERO — Carousel
═══════════════════════ */
#home { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
#heroCarousel, .carousel-inner, .carousel-item { height: 100%; }

.h-slide {
  height: 100%; position: relative;
  background-size: cover; background-position: center;
}
.h-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.38) 0%, rgba(0,0,0,.52) 50%, rgba(0,0,0,.72) 100%);
}

.h-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
  padding-top: var(--nav-h);
}

.h-ey, .h-ttl, .h-dsc, .h-btns { opacity: 0; transform: translateY(24px); }
.carousel-item.active .h-ey { animation: fu .75s .2s both; }
.carousel-item.active .h-ttl { animation: fu .75s .42s both; }
.carousel-item.active .h-dsc { animation: fu .75s .62s both; }
.carousel-item.active .h-btns { animation: fu .75s .82s both; }
@keyframes fu { to { opacity: 1; transform: translateY(0); } }

.h-ey {
  font-size: .65rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold2); font-weight: 500; margin-bottom: 16px;
}
.h-ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 700; color: #fff; line-height: 1.08; max-width: 800px;
}
.h-ttl em { color: var(--gold2); font-style: italic; }
.h-dsc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.95rem, 1.9vw, 1.18rem);
  color: rgba(255,255,255,.85); max-width: 520px; margin-top: 16px;
}
.h-btns {
  display: flex; gap: 14px; margin-top: 34px;
  flex-wrap: wrap; justify-content: center;
}

/* Controls */
.carousel-control-prev, .carousel-control-next {
  width: 50px; height: 50px; top: 50%; transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.1); backdrop-filter: blur(5px);
  opacity: 1; transition: .35s var(--ease); border-radius: 0;
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--gold); border-color: var(--gold);
}
.carousel-control-prev-icon, .carousel-control-next-icon { width: 15px; height: 15px; }

/* Indicators */
.carousel-indicators { bottom: 30px; }
.carousel-indicators button {
  width: 26px; height: 2px; border: none;
  background: rgba(255,255,255,.4); border-radius: 0;
  margin: 0 4px; transition: .35s; opacity: 1;
}
.carousel-indicators button.active { width: 46px; background: var(--gold); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.45); font-size: .58rem;
  letter-spacing: .3em; text-transform: uppercase; z-index: 10; pointer-events: none;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: sl 1.8s ease infinite;
}
@keyframes sl {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════
   BOOKING BAR
═══════════════════════ */
#booking {
  background: #fff; border-top: 3px solid var(--gold);
  box-shadow: 0 5px 32px rgba(0,0,0,.08);
  position: relative; z-index: 100;
}
.bk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
}
.bk-f {
  padding: 20px 26px; border-right: 1px solid var(--border2);
}
.bk-f:last-child { border-right: none; }
.bk-lbl {
  display: block; font-size: .58rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.bk-f input, .bk-f select {
  width: 100%; border: none; outline: none; background: transparent;
  font-family: 'Jost', sans-serif; font-size: .92rem;
  font-weight: 400; color: var(--dark); cursor: pointer; -webkit-appearance: none;
}
.bk-f select option { background: #fff; color: var(--dark); }
.bk-f input[type="date"]::-webkit-calendar-picker-indicator { opacity: .35; cursor: pointer; }
.bk-btn-cell { padding: 0 30px; display: flex; align-items: center; }

/* ═══════════════════════
   ABOUT
═══════════════════════ */
.ab-img-wrap { position: relative; padding-right: 28px; padding-bottom: 28px; }
.ab-img { width: 100%; height: 500px; object-fit: cover; }
.ab-badge {
  position: absolute; bottom: 0; right: 0;
  width: 148px; height: 148px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 16px;
}
.ab-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.9rem; font-weight: 700; color: #fff; line-height: 1;
}
.ab-badge .txt {
  font-size: .56rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 600; margin-top: 4px;
}
.ab-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.af { display: flex; align-items: flex-start; gap: 12px; }
.af-icon {
  width: 38px; height: 38px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem; flex-shrink: 0;
}
.af-name { font-size: .82rem; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.af-desc { font-size: .75rem; color: var(--muted); }

/* ═══════════════════════
   STATS
═══════════════════════ */
.stats-strip { background: var(--gold); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat {
  text-align: center; border-right: 1px solid rgba(255,255,255,.22);
  padding: 6px 20px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1;
}
.stat-lbl {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-top: 4px; font-weight: 600;
}

/* ═══════════════════════
   ROOMS
═══════════════════════ */
.rooms-swiper { overflow: hidden; padding-bottom: 52px !important; }
.r-card {
  background: #fff; border: 1px solid var(--border2);
  transition: box-shadow .4s var(--ease);
}
.r-card:hover { box-shadow: 0 12px 56px rgba(0,0,0,.12); }
.r-img { overflow: hidden; height: 255px; position: relative; }
.r-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.r-card:hover .r-img img { transform: scale(1.08); }
.r-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: #fff;
  font-size: .57rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; padding: 5px 12px;
}
.r-body { padding: 24px 22px; }
.r-rates { margin-bottom: 9px; }
.r-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem; font-weight: 600; color: var(--gold);
  display: flex; align-items: baseline; gap: 4px;
}
.r-price small {
  font-size: .7rem; font-family: 'Jost', sans-serif;
  color: var(--muted); font-weight: 300;
}
.r-price-ep { margin-bottom: 2px; }
.r-price-cp { font-size: 1rem; color: var(--muted); }
.r-price-cp small { font-size: .65rem; }
.r-extra {
  font-size: .7rem; color: var(--muted); margin-bottom: 4px;
}
.r-name { font-size: 1.2rem; color: var(--dark); margin-bottom: 9px; line-height: 1.2; }
.r-desc { font-size: .8rem; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.r-amen { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.r-amen span {
  display: flex; align-items: center; gap: 5px;
  font-size: .7rem; color: var(--muted);
}
.r-amen span i { color: var(--gold); font-size: .72rem; }

.rn-btn {
  width: 42px; height: 42px; border: 1px solid var(--border2);
  background: #fff; display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: .82rem;
  color: var(--dark); transition: .35s var(--ease);
}
.rn-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.rooms-pag .swiper-pagination-bullet {
  background: var(--muted2); opacity: .5;
  border-radius: 0; width: 22px; height: 2px; transition: .35s;
}
.rooms-pag .swiper-pagination-bullet-active {
  background: var(--gold); width: 38px; opacity: 1;
}

/* ═══════════════════════
   SERVICES — Attractive Grid
═══════════════════════ */
#services { overflow: hidden; }
.svc-header { text-align: center; margin-bottom: 60px; }

.svc-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--border2);
}
.svc {
  background: #fff; padding: 40px 24px; text-align: center;
  position: relative; overflow: hidden; cursor: default;
  border-right: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.svc:nth-child(5n) { border-right: none; }
.svc:nth-last-child(-n+5) { border-bottom: none; }
.svc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.svc:hover::before { opacity: 1; }
.svc:hover { transform: translateY(-4px); }
.svc-icon {
  width: 64px; height: 64px; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.35rem; color: var(--gold);
  transition: .4s var(--ease); position: relative; z-index: 1;
  border-radius: 0;
}
.svc:hover .svc-icon {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  color: #fff; transform: scale(1.1) rotate(5deg);
}
.svc-name {
  font-size: .84rem; font-weight: 600; color: var(--dark);
  margin-bottom: 8px; letter-spacing: .06em;
  position: relative; z-index: 1; transition: color .4s;
}
.svc:hover .svc-name { color: #fff; }
.svc-desc {
  font-size: .74rem; color: var(--muted); line-height: 1.65;
  position: relative; z-index: 1; transition: color .4s;
}
.svc:hover .svc-desc { color: rgba(255,255,255,.88); }

/* Gold number badge on hover */
.svc-num {
  position: absolute; top: 14px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(0,0,0,.04); line-height: 1;
  transition: color .4s; z-index: 0;
}
.svc:hover .svc-num { color: rgba(255,255,255,.1); }

/* ═══════════════════════
   GALLERY
═══════════════════════ */
.gal-grid {
  display: grid; grid-template-columns: repeat(12,1fr);
  grid-template-rows: repeat(2, 235px); gap: 8px;
}
.gi { overflow: hidden; position: relative; cursor: pointer; }
.gi:nth-child(1) { grid-column: span 5; }
.gi:nth-child(2) { grid-column: span 4; }
.gi:nth-child(3) { grid-column: span 3; }
.gi:nth-child(4) { grid-column: span 3; }
.gi:nth-child(5) { grid-column: span 5; }
.gi:nth-child(6) { grid-column: span 4; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.gi:hover img { transform: scale(1.1); }
.gi-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,150,62,.52), rgba(0,0,0,.52));
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}
.gi-ov i { font-size: 1.75rem; color: #fff; transform: scale(.5); transition: transform .4s; }
.gi-ov span { 
  font-size: .68rem; color: rgba(255,255,255,.85); letter-spacing: .2em; 
  text-transform: uppercase; transform: translateY(8px); 
  opacity: 0; transition: opacity .4s, transform .4s; 
}
.gi:hover .gi-ov { opacity: 1; }
.gi:hover .gi-ov i { transform: scale(1); }
.gi:hover .gi-ov span { opacity: 1; transform: translateY(0); }

.gal-more { text-align: center; margin-top: 40px; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; background: rgba(0,0,0,.93);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.lb.open { opacity: 1; pointer-events: all; }
.lb img { max-height: 87vh; max-width: 87vw; object-fit: contain; }
.lb-x {
  position: absolute; top: 22px; right: 28px; color: #fff;
  font-size: 1.5rem; background: none; border: none;
  cursor: pointer; opacity: .55; transition: .3s; line-height: 1;
}
.lb-x:hover { opacity: 1; }

/* ═══════════════════════
   TESTIMONIALS
═══════════════════════ */
.testi-card { text-align: center; padding: 14px 40px 38px; }
.t-stars { color: var(--gold); letter-spacing: 4px; font-size: .82rem; margin-bottom: 20px; }
.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--dark); line-height: 1.65; max-width: 660px;
  margin: 0 auto 28px; font-style: italic;
}
.t-av {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold); object-fit: cover; margin: 0 auto 9px;
}
.t-name { font-size: .8rem; font-weight: 600; color: var(--dark); letter-spacing: .06em; }
.t-role { font-size: .68rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.testi-pag .swiper-pagination-bullet { background: var(--muted2); opacity: .5; }
.testi-pag .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.ci { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.ci-icon {
  width: 44px; height: 44px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem; flex-shrink: 0;
}
.ci-lbl { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-val { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.cf-g { margin-bottom: 14px; }
.cf-g input, .cf-g textarea {
  width: 100%; background: var(--off); border: 1px solid var(--border2);
  color: var(--dark); padding: 13px 16px;
  font-family: 'Jost', sans-serif; font-size: .86rem;
  font-weight: 300; outline: none; resize: none;
  transition: border-color .3s, background .3s;
}
.cf-g input::placeholder, .cf-g textarea::placeholder { color: var(--muted2); }
.cf-g input:focus, .cf-g textarea:focus { border-color: var(--gold); background: #fff; }
.cf-g textarea { height: 125px; }
.map-box {
  height: 290px; border: 1px solid var(--border2);
  overflow: hidden; margin-top: 28px;
}
.map-box iframe { width: 100%; height: 100%; filter: grayscale(25%) brightness(.95); }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
#footer { background: var(--dark); }
.ft-top { padding: 65px 0 46px; border-top: 3px solid var(--gold); }
.fl1 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: #fff; }
.fl1 em { color: var(--gold); font-style: normal; }
.fl2 { font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.ft-desc { font-size: .8rem; color: rgba(255,255,255,.38); margin-top: 14px; line-height: 1.75; max-width: 240px; }
.ft-social { display: flex; gap: 8px; margin-top: 18px; }
.ft-soc {
  width: 33px; height: 33px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38); font-size: .75rem; transition: .35s;
}
.ft-soc:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.ft-h { font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 8px; }
.ft-links a {
  font-size: .8rem; color: rgba(255,255,255,.38);
  display: flex; align-items: center; gap: 7px; transition: color .3s, gap .3s;
}
.ft-links a::before {
  content: ''; width: 12px; height: 1px;
  background: var(--gold); opacity: .4; transition: width .3s;
}
.ft-links a:hover { color: rgba(255,255,255,.78); gap: 11px; }
.ft-links a:hover::before { width: 18px; opacity: .9; }
.ft-ci {
  display: flex; align-items: flex-start; gap: 9px;
  margin-bottom: 10px; font-size: .78rem; color: rgba(255,255,255,.38);
}
.ft-ci i { color: var(--gold); margin-top: 3px; width: 12px; }
.ft-bot {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.ft-copy { font-size: .74rem; color: rgba(255,255,255,.28); }
.ft-copy em { color: var(--gold); font-style: normal; }
.ft-leg { display: flex; gap: 18px; }
.ft-leg a { font-size: .7rem; color: rgba(255,255,255,.24); transition: color .3s; }
.ft-leg a:hover { color: var(--gold); }

/* Newsletter */
.ft-news { display: flex; }
.ft-news input {
  flex: 1; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-right: none;
  color: #fff; padding: 11px 14px;
  font-family: 'Jost', sans-serif; font-size: .8rem; outline: none;
}
.ft-news input::placeholder { color: rgba(255,255,255,.3); }
.ft-news button {
  background: var(--gold); color: #fff; border: none;
  padding: 11px 15px; cursor: pointer; transition: .3s;
}
.ft-news button:hover { background: var(--gold3); }

/* ═══════════════════════
   MOBILE SWIPER TOUCH FIX
═══════════════════════ */
.rooms-swiper,
.rooms-swiper .swiper-wrapper,
.rooms-swiper .swiper-slide {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.rooms-swiper .r-card { touch-action: pan-y; }

/* WhatsApp icon-only button tooltip */
.book-room-btn { position: relative; }
.book-room-btn::after {
  content: 'Book via WhatsApp';
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--dark); color: #fff;
  font-size: .6rem; letter-spacing: .1em;
  white-space: nowrap; padding: 5px 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s; z-index: 10;
}
.book-room-btn:hover::after { opacity: 1; }

/* ═══════════════════════
   WHATSAPP STICKY
═══════════════════════ */
.wa-sticky {
  position: fixed; bottom: 28px; left: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .35s var(--ease), box-shadow .35s;
  animation: wa-pulse 2.5s ease infinite;
}
.wa-sticky:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ═══════════════════════
   SCROLL TOP
═══════════════════════ */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--gold);
  color: #fff; border: none; font-size: .82rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 500; opacity: 0;
  transform: translateY(12px); transition: .4s var(--ease);
  box-shadow: 0 4px 18px rgba(184,150,62,.38);
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--gold3); }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1199px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .svc:nth-child(5n) { border-right: 1px solid var(--border2); }
  .svc:nth-child(4n) { border-right: none; }
}

@media (max-width: 991px) {
  .n-links, .n-book { display: none; }
  .n-ham { display: flex; }
  .nw { padding: 0 22px; }
  .bk-grid { grid-template-columns: 1fr 1fr; }
  .bk-btn-cell { grid-column: span 2; }
  .bk-f { border-bottom: 1px solid var(--border2); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.15); }
  .ab-feats { grid-template-columns: 1fr; }
  .ab-img { height: 360px; }
  .ab-badge { width: 118px; height: 118px; right: 0; bottom: 0; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi { grid-column: span 1 !important; height: 190px; }
  .gi:nth-child(1) { grid-column: span 2 !important; height: 250px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc:nth-child(4n), .svc:nth-child(2n) { border-right: none; }
  .svc:nth-child(2n+1) { border-right: 1px solid var(--border2); }
  .svc:nth-last-child(-n+2) { border-bottom: none; }
  .carousel-control-prev { left: 12px; }
  .carousel-control-next { right: 12px; }
  .scroll-hint { display: none; }
}

@media (max-width: 767px) {
  .sec { padding: 68px 0; }
  .bk-grid { grid-template-columns: 1fr; }
  .bk-btn-cell { grid-column: span 1; }
  .h-btns { gap: 10px; }
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gi, .gi:nth-child(1) { grid-column: span 1 !important; height: 190px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-right: none !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ab-img { height: 280px; }
  .ab-img-wrap { padding-right: 16px; padding-bottom: 16px; }
  .testi-card { padding: 14px 16px 38px; }
}

@media (max-width: 575px) {
  .nw { padding: 0 16px; }
  .n-logo .l1 { font-size: 1.1rem; }
  .h-ttl { font-size: 2.2rem; }
  .wa-sticky { width: 48px; height: 48px; font-size: 1.25rem; bottom: 20px; left: 20px; }
  #scrollTop { width: 40px; height: 40px; bottom: 20px; right: 20px; }
  .ft-top { padding: 45px 0 32px; }
}