/* ============================================
   Hrishi Guest Suits - Corporate Slide Style
   Accent: #E54B35 | Charcoal #2D2D2D | Gray #F5F5F5
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --accent: #E54B35;
  --accent-dark: #c93d2a;
  --charcoal: #2D2D2D;
  --charcoal-light: #1e1e1e;
  --gray-bg: #F5F5F5;
  --gray-border: #E0E0E0;
  --white: #FFFFFF;
  --dark-bg: #0f0f10;
  --container: 1140px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.8;
  font-size: 14px;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 110px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  image-rendering: auto;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
}

.nav-top a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  padding: 4px 0;
}

.nav-top a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-top a:hover,
.nav-top a.active {
  color: var(--white);
}

.nav-top a:hover::after,
.nav-top a.active::after {
  width: 100%;
}

.nav-top a.nav-login {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: var(--white);
  margin-left: 4px;
}

.nav-top a.nav-login::after {
  display: none;
}

.nav-top a.nav-login:hover,
.nav-top a.nav-login:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== SECTION LABEL (vertical left) ========== */
.section-block {
  padding: 90px 0;
  position: relative;
}

.section-block.gray {
  background: var(--gray-bg);
}

.section-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}

.section-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  border-right: 2px solid var(--gray-border);
  padding-right: 20px;
  height: fit-content;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.section-content {
  min-width: 0;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 40px;
  max-width: 600px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 30px;
}

/* ========== HERO (split screen) ========== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 70px;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero-nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.hero-nav-prev {
  left: 16px;
}

.hero-nav-next {
  right: 16px;
}

.hero-nav-btn svg {
  width: 22px;
  height: 22px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero-dots button.is-active {
  background: #fff;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 50px;
  background: var(--white);
  position: relative;
}

.hero-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 20px;
}

.hero-copy {
  position: relative;
  min-height: 220px;
}

.hero-copy-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  pointer-events: none;
}

.hero-copy-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.hero-copy-slide h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-copy-slide p {
  font-size: 14px;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.hero-meta span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.hero-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ========== ABOUT - 3 column icons ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 13px;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* About split - image + checklist */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--charcoal-light);
}

.check-list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

/* ========== NUMBERED FEATURES ========== */
.numbered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.numbered-item {
  padding: 40px;
  border: 1px solid var(--gray-border);
  position: relative;
  transition: background var(--transition);
}

.numbered-item:hover {
  background: var(--gray-bg);
}

.numbered-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.numbered-item h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.numbered-item p {
  font-size: 13px;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ========== GALLERY GRID ========== */
.gallery-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-tab {
  padding: 10px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: var(--transition);
}

.gallery-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-panels {
  width: 100%;
  min-width: 0;
}

.gallery-panel {
  display: none;
  width: 100%;
  min-width: 0;
}

.gallery-panel.is-active {
  display: block;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.gallery-photo-grid img {
  width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gray-border);
  cursor: zoom-in;
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-photo-grid img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.gallery-offer-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid var(--gray-border);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-dialog {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  padding: 32px;
}

.lightbox-figure {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.lightbox-img {
  max-width: min(100%, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #111;
}

.lightbox-caption {
  max-width: 1100px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 768px) {
  .lightbox-dialog {
    grid-template-columns: 44px 1fr 44px;
    padding: 18px;
  }

  .lightbox-img {
    max-height: 72vh;
  }
}

.gallery-offer-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gallery-offer-item p {
  font-size: 12px;
  color: var(--charcoal-light);
}

/* ========== ACCOMMODATIONS (Rooms) ========== */
.accom-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 26px auto 34px;
  width: min(920px, 100%);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.accom-tab {
  flex: 1;
  min-width: 0;
  padding: 12px 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(229, 75, 53, 0.15);
}

.accom-tab.is-active {
  background: var(--accent);
  color: var(--white);
}

.accom-panel {
  display: none;
}

.accom-panel.is-active {
  display: block;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.nearby-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 16px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.nearby-card strong {
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.nearby-card .nearby-distance {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 992px) {
  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }
}

.accom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.accom-bed-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accom-bed-main {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--gray-border);
  display: block;
}

.accom-bed-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.accom-bed-thumbs img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--gray-border);
  display: block;
}

.accom-body h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.accom-body p {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 18px;
}

.accom-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.accom-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--charcoal-light);
}

.accom-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ========== MINI FACILITIES (Home short) ========== */
.mini-fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mini-fac-card {
  border: 1px solid var(--gray-border);
  background: var(--white);
  padding: 22px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.mini-fac-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.mini-fac-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mini-fac-card p {
  font-size: 12px;
  color: var(--charcoal-light);
}

/* ========== PARTNERS ========== */
.partners-section {
  background: linear-gradient(160deg, #fff9f8 0%, #f8f4ff 45%, #fff5f8 100%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.partner-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 30px rgba(45, 45, 45, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.12);
}

.partner-card-accent {
  height: 5px;
  width: 100%;
}

.partner-card--booking .partner-card-accent {
  background: linear-gradient(90deg, #003580, #0057b8);
}

.partner-card--makemytrip .partner-card-accent {
  background: linear-gradient(90deg, #008cff, #eb2226);
}

.partner-card--goibibo .partner-card-accent {
  background: linear-gradient(90deg, #f26722, #ff8c42);
}

.partner-card--airbnb .partner-card-accent {
  background: linear-gradient(90deg, #ff5a5f, #ff7e82);
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin: 20px 20px 12px;
  padding: 16px 20px;
  border-radius: 14px;
}

.partner-card--booking .partner-logo-wrap {
  background: linear-gradient(145deg, #eef4fc 0%, #f8fbff 100%);
}

.partner-card--makemytrip .partner-logo-wrap {
  background: linear-gradient(145deg, #fff0f0 0%, #fff8f8 100%);
}

.partner-card--goibibo .partner-logo-wrap {
  background: linear-gradient(145deg, #fff4ee 0%, #fffaf6 100%);
}

.partner-card--airbnb .partner-logo-wrap {
  background: linear-gradient(145deg, #fff0f1 0%, #fff8f8 100%);
}

.partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.partner-tagline {
  font-size: 14px;
  color: #777;
  margin: 0 20px 20px;
  line-height: 1.5;
  min-height: 42px;
}

.partner-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 20px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.partner-book-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.partner-book-btn svg {
  transition: transform var(--transition);
}

.partner-book-btn:hover svg {
  transform: translateX(3px);
}

.partner-card--booking .partner-book-btn {
  background: linear-gradient(135deg, #003580, #004a9e);
}

.partner-card--makemytrip .partner-book-btn {
  background: linear-gradient(135deg, #eb2226, #ff4448);
}

.partner-card--goibibo .partner-book-btn {
  background: linear-gradient(135deg, #f26722, #ff8533);
}

.partner-card--airbnb .partner-book-btn {
  background: linear-gradient(135deg, #ff5a5f, #ff787c);
}

/* ========== GUEST EXPERIENCE (embedded) ========== */
.testimonials-section-inner {
  max-width: 760px;
}

.testimonials-section-inner .testimonial-quote-big {
  margin-bottom: 14px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  text-align: center;
  padding: 90px 0;
  background: var(--gray-bg);
}

.testimonial-quote-big {
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 30px;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  min-height: 100px;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

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

.testimonial-item p {
  font-size: 16px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 20px;
}

.testimonial-item cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.testimonial-dots button.active {
  background: var(--accent);
}

/* ========== CONTACT ========== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.contact-split.contact-split-single {
  grid-template-columns: 1fr;
}

.contact-map-side {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

/* ========== FLOATING CHAT BUTTON ========== */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
}

.fab-main {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-main:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.fab-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fab-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.fab-icon-close {
  display: none;
}

.fab.open .fab-icon-chat {
  display: none;
}

.fab.open .fab-icon-close {
  display: inline-flex;
}

.fab-menu {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.fab.open .fab-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-action {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-bg);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 190px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.fab-action:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.fab-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fab-dot svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.fab-action span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fab-action.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .fab {
    right: 16px;
    bottom: 16px;
  }

  .fab-action {
    min-width: 170px;
  }
}

.contact-map-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, transparent 48%);
  z-index: 1;
  pointer-events: none;
}

.contact-map-side:not(.contact-map-embed)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
}

.contact-map-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  z-index: 2;
  width: min(440px, 42%);
  padding: 48px 40px;
  color: var(--white);
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
}

.contact-pin {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 24px;
}

.contact-map-content h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-map-content p {
  font-size: 14px;
  opacity: 1;
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-map-content .contact-phone {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 1;
  margin-bottom: 14px;
}

.contact-map-content .contact-check-times {
  font-size: 14px;
  font-weight: 600;
  opacity: 1;
  margin-bottom: 16px;
  padding-top: 4px;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-quick-actions .btn {
  padding: 10px 18px;
  font-size: 12px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.contact-form-side {
  padding: 60px 50px;
  background: var(--gray-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-side h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-form-side .section-divider {
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-border);
  background: var(--white);
  font-family: inherit;
  font-size: 13px;
  margin-bottom: 14px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero-bar {
  margin-top: 70px;
  padding: 70px 0;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.page-hero-bar h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero-bar p {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.page-hero-bar .accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 24px;
}

/* ========== PLACES PAGE ========== */
.places-page .container {
  max-width: var(--container);
}

.places-intro {
  margin-bottom: 36px;
}

.places-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 12px;
}

.places-page.is-detail-view .places-intro,
.places-page.is-detail-view .places-overview {
  display: none;
}

.places-details {
  width: 100%;
  min-width: 0;
}

.places-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  min-width: 0;
}

.places-category-card {
  border: 1px solid var(--gray-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow var(--transition);
}

.places-category-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.places-category-card > img {
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.places-category-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.places-category-card-body h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.places-intro .section-subtitle {
  font-size: 17px;
  line-height: 1.75;
}

.places-category-card-body > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 22px;
  flex: 1;
}

.places-read-more {
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 11px;
}

.places-category-detail[hidden] {
  display: none !important;
}

.places-category-detail:not([hidden]) {
  display: block;
}

.places-back-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 24px;
}

.places-back-link:hover {
  text-decoration: underline;
}

.places-detail-heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.places-detail-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal-light);
  max-width: 720px;
  margin-bottom: 36px;
}

.places-spots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
  min-width: 0;
}

.place-spot {
  border: 1px solid var(--gray-border);
  overflow: hidden;
  min-width: 0;
  transition: box-shadow var(--transition);
}

.place-spot:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.place-spot img {
  width: 100%;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity var(--transition);
}

.place-spot img:hover {
  opacity: 0.92;
}

.place-spot h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 22px 24px 8px;
  color: var(--charcoal);
}

.place-spot p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal-light);
  padding: 0 24px 24px;
}

.place-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-border);
  margin-bottom: 50px;
}

.place-featured img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.place-featured-body {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.place-featured-body h2 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.place-featured-body > p {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 24px;
}

.places-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.place-card {
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.place-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.place-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.place-card-body {
  padding: 28px;
}

.place-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.place-card-body > p {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

/* ========== FACILITIES PAGE ========== */
.facility-numbered-list {
  display: flex;
  flex-direction: column;
}

.facility-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-border);
  align-items: start;
}

.facility-row:first-child {
  border-top: 1px solid var(--gray-border);
}

.facility-row .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.facility-row h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.facility-row p {
  font-size: 13px;
  color: var(--charcoal-light);
  max-width: 600px;
}

.facility-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facility-icon-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}

.facility-icon-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.facility-icon-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--accent);
}

.facility-icon-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.facility-icon-card p {
  font-size: 12px;
  color: var(--charcoal-light);
}

.facilities-read-more {
  margin-top: 32px;
}

.facility-icons-grid--index {
  margin-top: 8px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--accent);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 14px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.8;
  margin-top: 16px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-col a {
  display: block;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.4;
}

/* ========== STATS ROW ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-border);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .places-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-side {
    height: 45vh;
  }

  .hero-nav-btn {
    width: 38px;
    height: 38px;
  }

  .hero-nav-prev {
    left: 10px;
  }

  .hero-nav-next {
    right: 10px;
  }

  .hero-dots {
    bottom: 14px;
  }

  .section-layout {
    grid-template-columns: 1fr;
  }

  .section-label {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 2px solid var(--gray-border);
    padding-right: 0;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }

  .values-grid,
  .gallery-photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .places-overview {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .places-spots-grid {
    grid-template-columns: 1fr;
  }

  .gallery-offer-grid,
  .facility-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-photo-grid img {
    height: 200px;
  }

  .accom-grid {
    grid-template-columns: 1fr;
  }

  .accom-tabs {
    flex-wrap: wrap;
    border-radius: 14px;
    overflow: visible;
    gap: 4px;
    padding: 4px;
  }

  .accom-tab {
    flex: 1 1 calc(33.333% - 4px);
    min-width: 130px;
    padding: 12px 14px;
    font-size: 10px;
    border-radius: 10px;
  }

  .mini-fac-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split,
  .contact-split,
  .place-featured {
    grid-template-columns: 1fr;
  }

  .numbered-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-top {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    margin-left: 0;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 32px;
  }

  .logo img {
    height: 72px;
  }

  .nav-top.open {
    display: flex;
  }

  .nav-top a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-top a::after {
    display: none;
  }

  .nav-top a.nav-login {
    margin-top: 8px;
    margin-left: 0;
    align-self: stretch;
    text-align: center;
    border-bottom: none;
  }

  .values-grid,
  .gallery-offer-grid,
  .places-overview {
    grid-template-columns: 1fr;
  }

  .gallery-photo-grid,
  .places-cards-grid,
  .places-spots-grid,
  .facility-icons-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-grid img {
    height: 140px;
  }

  .place-spot img {
    height: 200px;
  }

  .mini-fac-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .accom-bed-main {
    height: 260px;
  }

  .accom-bed-thumbs img {
    height: 120px;
  }

  .accom-tabs {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 20px 0 28px;
    border-radius: 12px;
    overflow: hidden;
    gap: 0;
    position: relative;
    z-index: 2;
  }

  .accom-tab {
    flex: none;
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.6px;
    white-space: normal;
    text-align: center;
    border-bottom: 1px solid var(--gray-border);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .accom-tab:last-child {
    border-bottom: none;
  }

  .accom-tab.is-active {
    box-shadow: inset 4px 0 0 var(--accent-dark);
  }

  .hero-text-side {
    padding: 40px 32px;
  }

  .contact-form-side,
  .contact-map-content {
    padding: 40px 32px;
  }

  .contact-map-side.contact-map-embed {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .contact-map-side.contact-map-embed iframe {
    position: relative;
    inset: auto;
    min-height: 280px;
    flex: 1 1 auto;
  }

  .contact-map-embed::after {
    display: none;
  }

  .contact-map-content {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
  }
}
