/* ============================================================
   THE GRAND VELORA — Shared Design System
   Bootstrap 5.3 + Custom CSS Variables + Modern Aesthetics
   ============================================================ */

/* ===== 1. DESIGN TOKENS ===== */
:root {
  --primary: #0D1B2A;
  --primary-light: #1B263B;
  --primary-mid: #162032;
  --accent: #C9A84C;
  --accent-light: #E5C46E;
  --accent-dark: #A8852F;
  --accent-rgb: 201, 168, 76;
  --bg-ivory: #FAF8F4;
  --bg-card: #FFFFFF;
  --bg-subtle: #F4F1EC;
  --text-dark: #2D2D2D;
  --text-muted: #6C757D;
  --text-light: rgba(255, 255, 255, 0.85);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 168, 76, 0.3);
  --shadow-sm: 0 4px 15px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 10px 35px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 20px 60px rgba(13, 27, 42, 0.16);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 2. GLOBAL BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== 3. CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== 4. TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.75;
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent) !important;
}

.text-primary-v {
  color: var(--primary) !important;
}

.text-ivory {
  color: var(--bg-ivory) !important;
}

.bg-primary-v {
  background-color: var(--primary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-ivory {
  background-color: var(--bg-ivory) !important;
}

.bg-subtle {
  background-color: var(--bg-subtle) !important;
}

/* Gradient heading */
.heading-gradient {
  background: linear-gradient(135deg, #C9A84C 0%, #F0D080 40%, #C9A84C 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Decorative divider */
.gold-divider {
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 1.25rem auto 0;
}

.gold-divider.left {
  margin-left: 0;
}

/* ===== 5. SKIP LINK (ACCESSIBILITY) ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* ===== 6. NAVBAR ===== */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 1.25rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

#mainNav.nav-solid {
  background-color: var(--primary);
  padding: 0.65rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-gold);
}

/* Logo */
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--accent);
}

/* Nav links */
#mainNav .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color var(--transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #fff !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}

/* Book Now CTA */
.btn-nav-cta {
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--cta-text) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem !important;
  border-radius: 30px;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
  text-decoration: none;
}

#mainNav .navbar-nav {
  gap: 0.5rem !important;
  row-gap: 0.75rem !important;
}

/* Compact layout for medium screens to prevent layout wrapping */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-brand {
    font-size: 1.25rem;
  }
  #mainNav .nav-link {
    font-size: 0.8rem;
    padding: 0.5rem 0.5rem !important;
  }
  .btn-nav-cta {
    font-size: 0.75rem;
    padding: 0.45rem 1.1rem !important;
  }
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.5);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

/* Toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.4) !important;
}

.navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

/* ===== 7. BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--primary);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--accent);
  text-decoration: none;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== 8. HERO — HOME ===== */
.hero-home-carousel-wrapper {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-home-carousel-wrapper #heroCarousel,
.hero-home-carousel-wrapper .carousel-inner,
.hero-home-carousel-wrapper .carousel-item {
  height: 100%;
  width: 100%;
}

.hero-home-carousel-wrapper .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-home {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(0.1, 0.8, 0.2, 1);
  will-change: transform;
}

.carousel-item.active .hero-home-bg {
  transform: scale(1);
}

.hero-home-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.45) 0%,
      rgba(13, 27, 42, 0.65) 50%,
      rgba(13, 27, 42, 0.85) 100%);
}

/* Custom Carousel Controls */
.hero-home-carousel-wrapper .carousel-control-prev,
.hero-home-carousel-wrapper .carousel-control-next {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 30px;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-home-carousel-wrapper:hover .carousel-control-prev,
.hero-home-carousel-wrapper:hover .carousel-control-next {
  opacity: 0.8;
}

.hero-home-carousel-wrapper .carousel-control-prev:hover,
.hero-home-carousel-wrapper .carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.hero-home-carousel-wrapper .carousel-control-prev-icon,
.hero-home-carousel-wrapper .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Custom Indicators */
.hero-home-carousel-wrapper .carousel-indicators {
  margin-bottom: 2.5rem;
  gap: 8px;
}

.hero-home-carousel-wrapper .carousel-indicators button {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.hero-home-carousel-wrapper .carousel-indicators button.active {
  width: 36px;
  background-color: var(--accent);
}

/* Keyframe Text Animations on Active Slide */
.carousel-item.active .hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.carousel-item.active .hero-title {
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.carousel-item.active .hero-subtitle {
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.carousel-item.active .hero-cta-group {
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title .accent-word {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

/* ===== 9. PAGE HERO BANNERS (inner pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
  padding-top: 100px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(13, 27, 42, 0.5) 0%,
      rgba(13, 27, 42, 0.82) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.page-hero-breadcrumb a:hover {
  color: var(--accent-light);
}

/* ===== 10. SECTION WRAPPER ===== */
.section-wrap {
  padding: 6rem 0;
}

.section-wrap-sm {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0;
}

/* ===== 11. HOME — BOOKING BAR ===== */
.booking-float {
  margin-top: -70px;
  position: relative;
  z-index: 20;
}

.booking-glass {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.booking-glass label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.booking-glass .form-control,
.booking-glass .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-glass .form-control:focus,
.booking-glass .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
  color: #fff;
  outline: none;
}

.booking-glass .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.booking-glass select option {
  background: var(--primary);
}

.booking-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  margin: 0 0.5rem;
}

@media (max-width: 991px) {
  .booking-divider {
    display: none;
  }
}

/* --- Branch Selector Tabs --- */
.branch-tabs {
  display: flex;
  background: rgba(5, 12, 22, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.branch-tabs::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.branch-tab {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  outline: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.branch-tab:last-child {
  border-right: none;
}

.branch-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.95);
}

.branch-tab.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-bottom: 3px solid var(--accent);
}

.branch-tab i {
  font-size: 1.35rem;
  color: rgba(201, 168, 76, 0.7);
  transition: transform var(--transition), color var(--transition);
}

.branch-tab.active i,
.branch-tab:hover i {
  color: var(--accent-light);
  transform: translateY(-1px);
}

.branch-tab div {
  display: flex;
  flex-direction: column;
}

.branch-tab-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.branch-tab-city {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 3px;
}

.branch-tab.active .branch-tab-city {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Active Branch Info Bar --- */
.branch-info-bar {
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 2rem;
}

.branch-info-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.branch-info-inner>i {
  color: var(--accent);
  font-size: 1.1rem;
}

.branch-info-inner strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

.branch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.8rem;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.branch-badge i {
  color: var(--accent);
}

.branch-badge.available-badge {
  background: rgba(38, 208, 102, 0.1);
  border: 1px solid rgba(38, 208, 102, 0.25);
  color: #26d066;
}

.branch-badge.available-badge i {
  color: #26d066 !important;
}

@keyframes branchPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

.branch-badge.available-badge i {
  animation: branchPulse 2s infinite ease-in-out;
}

@keyframes slideInLeftMini {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.branch-info-inner.animating {
  animation: slideInLeftMini 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== 12. HOME — STATS STRIP ===== */
.stats-strip {
  background: var(--primary);
  padding: 3rem 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

/* ===== 13. HOME — FEATURED ROOMS STRIP ===== */
.featured-room-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.featured-room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-room-card:hover img {
  transform: scale(1.08);
}

.featured-room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.featured-room-card:hover .featured-room-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(13, 27, 42, 0.96) 100%);
}

.featured-room-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

/* ===== 14. HOME — CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

/* ===== 15. ROOMS PAGE ===== */
.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-img-wrap img {
  transform: scale(1.07);
}

.room-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 42, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--transition);
}

.room-img-wrap:hover .room-zoom-hint {
  opacity: 1;
}

.room-zoom-hint i {
  font-size: 2rem;
  color: var(--accent);
}

.room-avail-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.badge-available {
  background: rgba(20, 180, 80, 0.15);
  color: #14b450;
  border: 1px solid rgba(20, 180, 80, 0.3);
}

.badge-limited {
  background: rgba(220, 100, 20, 0.15);
  color: #e86419;
  border: 1px solid rgba(220, 100, 20, 0.3);
}

.room-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-name {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.room-card:hover .room-name {
  color: var(--accent);
}

.room-desc {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.room-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-dark);
}

.spec i {
  color: var(--accent);
  font-size: 0.95rem;
}

.room-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-price-tag {
  font-family: var(--font-heading);
}

.room-price-num {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.room-price-period {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== 16. AMENITIES PAGE ===== */
.amenity-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  cursor: default;
  height: 100%;
}

.amenity-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.amenity-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}

.amenity-card:hover .amenity-icon-ring {
  background: var(--accent);
  transform: scale(1.1);
}

.amenity-icon-ring i {
  font-size: 1.75rem;
  color: var(--accent);
  transition: color var(--transition), transform var(--transition);
}

.amenity-card:hover .amenity-icon-ring i {
  color: var(--primary);
  transform: scale(1.1);
}

.amenity-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  transition: color var(--transition);
}

.amenity-card:hover .amenity-name {
  color: #fff;
}

.amenity-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  transition: color var(--transition);
}

.amenity-card:hover .amenity-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== 17. TARIFF PAGE ===== */
.plan-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.plan-card.plan-featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(160deg, #fff 0%, #FFFDF8 100%);
}

.plan-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.4);
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.plan-price-wrap {
  margin-bottom: 2rem;
}

.plan-price-currency {
  font-size: 1.25rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  vertical-align: top;
  line-height: 2;
}

.plan-price-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.plan-price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Plan icon header */
.plan-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.plan-icon-wrap i {
  font-size: 1.6rem;
  color: var(--accent);
}

.plan-featured .plan-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.plan-featured .plan-icon-wrap i {
  color: var(--primary);
}

/* Seasonal note */
.seasonal-note {
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--primary);
}

.seasonal-note i {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-card);
  box-shadow: none;
  padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.04);
}

.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.92rem;
}

/* ===== 18. REVIEWS PAGE ===== */
.reviews-section-wrap {
  background: var(--primary);
  padding: 6rem 0;
}

.review-carousel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.review-stars i {
  color: var(--accent);
  font-size: 1.15rem;
}

.review-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
}

.review-avatar-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.review-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.review-country {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.review-source {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Carousel controls */
.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15);
  border: 1px solid var(--border-gold);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Rating breakdown card */
.rating-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.rating-big {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.rating-bar-label {
  width: 38px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
}

.rating-bar-pct {
  width: 34px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 19. ABOUT PAGE ===== */
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.collage-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
}

.collage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collage-img-wrap:hover img {
  transform: scale(1.06);
}

.collage-img-wrap:first-child {
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-sm) var(--radius-lg);
}

.milestone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.milestone-item:last-child {
  border-bottom: none;
}

.milestone-icon {
  width: 42px;
  height: 42px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.milestone-icon i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Counters */
.counter-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.counter-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
}

.timeline-dot {
  position: absolute;
  left: -2.45rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-ivory);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-year {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.88rem;
}

/* ===== 20. CONTACT PAGE ===== */
.contact-form-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-box label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.contact-info-panel {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  color: var(--accent);
  font-size: 1.1rem;
}

.ci-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}

.ci-value {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

.ci-value a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}

.ci-value a:hover {
  color: var(--accent);
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ===== 21. SOCIAL BUTTONS ===== */
.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== 22. FOOTER ===== */
.site-footer {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  padding: 5rem 0 0;
  font-size: 0.9rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  max-width: 240px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.4rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.newsletter-input-group {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-input-group input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.7rem 1.25rem;
  flex: 1;
  font-size: 0.88rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-input-group button {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.newsletter-input-group button:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  margin-top: 4rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ===== 23. LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 18, 0.96);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.lightbox-close-btn {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10000;
}

.lightbox-close-btn:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* ===== 24. BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 900;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.5);
}

/* ===== 25. TOAST ===== */
.toast-container-custom {
  position: fixed;
  bottom: 5.5rem;
  left: 2rem;
  z-index: 9000;
  max-width: 360px;
}

.toast-custom {
  background: var(--primary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: #fff;
}

.toast-custom .toast-header {
  background: var(--primary-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.toast-custom .toast-header .btn-close {
  filter: invert(1) brightness(0.7);
}

/* ===== 26. REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ===== 27. KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes shimmerGold {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Gold shimmer utility */
.shimmer-gold {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 40%, var(--accent) 60%, #F5E2A0 80%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 3s linear infinite;
}

/* ===== 28. RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-wrap {
    padding: 4rem 0;
  }

  .section-wrap-sm {
    padding: 3rem 0;
  }

  #mainNav .navbar-collapse {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    border: 1px solid var(--border-gold);
  }

  .booking-float {
    margin-top: 2rem;
  }

  .booking-glass {
    padding: 1.75rem;
  }

  .contact-form-box,
  .contact-info-panel {
    padding: 2rem;
  }

  .plan-card {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 575px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline-white,
  .btn-outline-gold {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .contact-form-box {
    padding: 1.5rem;
  }
}

/* ===== 29. TEAM CARDS (About Page) ===== */
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.07);
}

.team-social-hover {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-social-hover {
  opacity: 1;
}

.team-social-hover a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}

.team-social-hover a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.team-info {
  padding: 1.5rem 1rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* ===== 30. CAROUSEL DOTS ===== */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

/* ===== 31. ABOUT COLLAGE GRID ===== */
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 520px;
}

.about-img-collage .collage-img-wrap:first-child {
  grid-row: 1 / 3;
}

@media (max-width: 575px) {
  .about-img-collage {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-img-collage .collage-img-wrap:first-child {
    grid-row: auto;
  }
}
/* ============================================================
   TARIFF PAGE — cards, season toggle & rate table
   ============================================================ */

/* ── Season toggle ─────────────────────────────────────────── */
.season-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.season-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.season-label.active { color: var(--primary); }
.toggle-switch { cursor: pointer; display: inline-flex; }
.toggle-switch input { display: none; }
.toggle-track {
  position: relative;
  width: 56px;
  height: 30px;
  background: var(--primary-light);
  border-radius: 50px;
  transition: background var(--transition);
}
.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-track {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}
.toggle-switch input:checked + .toggle-track .toggle-thumb {
  transform: translateX(26px);
}
.peak-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-dark);
  border: 1px solid var(--border-gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition), transform var(--transition);
}
.peak-badge.show { opacity: 1; transform: scale(1); }

/* ── Tariff cards ──────────────────────────────────────────── */
.tariff-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tariff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.tariff-card.featured-room {
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.tc-img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.tc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.tariff-card:hover .tc-img-wrap img { transform: scale(1.06); }
.tc-category-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(13, 27, 42, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.tc-featured-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.tc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tc-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.tc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.tc-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.tc-spec i { color: var(--accent-dark); }
.tc-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.tc-price-left { display: flex; flex-direction: column; }
.tc-price-label,
.tc-weekend-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.tc-price-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.tc-price-per { font-size: 0.75rem; color: var(--text-muted); }
.tc-weekend-price {
  text-align: right;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
}
.tc-weekend-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.tc-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition);
}
.tc-book-btn:hover {
  color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ── Rate table (modern, bordered) ─────────────────────────── */
.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
}
.rate-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 2px solid var(--accent);
  white-space: nowrap;
}
.rate-table tbody td {
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}
.rate-table tbody td:last-child { border-right: none; }
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr:nth-child(even) { background: var(--bg-subtle); }
.rate-table tbody tr:hover { background: rgba(var(--accent-rgb), 0.08); }
.rate-table tbody tr.table-active-row,
.rate-table tbody tr.table-active-row:hover {
  background: rgba(var(--accent-rgb), 0.10);
}
.rate-table .rt-num { font-weight: 600; }

/* ============================================================
   CONCIERGE CHATBOT (home page)
   ============================================================ */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 1200; }

.chat-toggle {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-size: 1.6rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.chat-toggle:hover { transform: translateY(-3px) scale(1.05); }
.chat-toggle .bi-x-lg { display: none; }
.chat-widget.open .chat-toggle .bi-chat-dots-fill { display: none; }
.chat-widget.open .chat-toggle .bi-x-lg { display: inline-block; }

.chat-panel {
  position: absolute;
  right: 0; bottom: 78px;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatPop 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes chatPop { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: none; } }

.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--primary);
  color: #fff;
}
.chat-header-info { display: flex; align-items: center; gap: 0.7rem; }
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.chat-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; line-height: 1.1; }
.chat-status { font-size: 0.72rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.3rem; }
.chat-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 1rem; cursor: pointer; padding: 4px; }
.chat-close:hover { color: #fff; }

.chat-body {
  flex: 1; overflow-y: auto;
  padding: 1.15rem;
  background: var(--bg-subtle);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.chat-msg { max-width: 85%; font-size: 0.9rem; line-height: 1.5; }
.chat-msg-bot .chat-bubble {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px 16px 16px 16px;
  padding: 0.7rem 0.9rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}
.chat-msg-user { align-self: flex-end; }
.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  border-radius: 16px 4px 16px 16px;
  padding: 0.7rem 0.9rem;
  font-weight: 500;
}
.chat-bubble a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; }
.chat-msg-user .chat-bubble a { color: var(--primary); }
.chat-bubble .chat-list { margin: 0.5rem 0 0.4rem; padding-left: 1.1rem; }
.chat-bubble .chat-list li { margin-bottom: 0.35rem; }
.chat-bubble .chat-muted { color: var(--text-muted); font-size: 0.82rem; }

.chat-typing { display: inline-flex; gap: 4px; padding: 0.8rem 0.9rem; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted);
  animation: chatBlink 1.2s infinite ease-in-out both;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatBlink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }

.chat-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0.6rem 0.9rem 0; background: var(--bg-card); }
.chat-chip {
  border: 1px solid var(--border-gold);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-dark);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.chat-chip:hover { background: var(--accent); color: var(--primary); }

.chat-input {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.chat-input input {
  flex: 1; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50px; padding: 0.55rem 1rem; font-size: 0.88rem;
  outline: none; transition: border-color 0.2s;
}
.chat-input input:focus { border-color: var(--accent); }
.chat-input button {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary); font-size: 0.95rem; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.chat-input button:hover { transform: scale(1.08); }

@media (max-width: 480px) {
  .chat-panel { height: calc(100vh - 110px); }
}
