﻿    @font-face {
      font-family: 'Gerbil';
      src: url('../images/brand/Font-20260502T081021Z-3-001/Font/Gerbil.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
    }

    :root {
      --primary: #1C5252;
      --accent: #CC9932;
      --black: #000000;
      --light: #F4F3EF;
      --white: #FFFFFF;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 13px;
      /* Reduced global font size */
    }

    body {
      font-family: 'Gerbil', sans-serif;
      background-color: var(--light);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Gerbil', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .heading-large,
    .heading-medium {
      font-family: 'Gerbil', sans-serif;
    }

    h1.heading-large,
    .heading-large {
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 1.5rem !important;
      line-height: 1.2;
    }

    .heading-medium {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 1.6rem;
    }

    @media (max-width: 768px) {
      .heading-medium {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .heading-medium {
        font-size: 1.15rem;
      }
    }

    .label-gold {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.85rem;
      font-weight: 700;
      display: block;
      margin-bottom: 1rem;
    }

    p {
      font-family: 'Libre Baskerville', serif;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition);
    }

    .btn-gold {
      background-color: var(--accent);
      color: var(--white);
    }

    .btn-gold:hover {
      background-color: transparent;
      border-color: var(--accent);
      color: var(--accent);
    }

    .btn-teal {
      background-color: var(--primary);
      color: var(--white);
    }

    .btn-teal:hover {
      background-color: var(--black);
    }

    section {
      padding: 6rem 2rem;
      position: relative;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .delay-4 {
      transition-delay: 0.4s;
    }

    .delay-5 {
      transition-delay: 0.5s;
    }

    /* --- Navigation --- */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(244, 243, 239, 0.4);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.4s ease;
    }

    nav.nav-scrolled {
      background: rgba(244, 243, 239, 0.4);
      backdrop-filter: blur(12px);
      padding: 1.2rem 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    nav.nav-hidden {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }

    nav.nav-scrolled .nav-link {
      color: var(--black);
    }

    nav.nav-scrolled .nav-link::after {
      background-color: var(--accent);
    }

    nav.nav-scrolled .hamburger span {
      background-color: var(--black);
    }

    nav.nav-scrolled .hamburger.active span {
      background-color: var(--white);
    }

    /* Full-width nav: left links | center logo | right links+btn */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex: 1;
    }

    .nav-center {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      padding: 0 2rem;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex: 1;
      justify-content: flex-end;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
    }

    .logo-container img {
      max-height: 72px;
      width: auto;
    }

    .nav-link {
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.7rem;
      font-weight: 700;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 1px;
      bottom: -4px;
      left: 0;
      background-color: var(--accent);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* --- Nav Dropdown --- */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown > .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .nav-dropdown-arrow {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .nav-dropdown:hover .nav-dropdown-arrow {
      transform: rotate(-135deg) translateY(-1px);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 200px;
      background: rgba(244, 243, 239, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      padding: 0.8rem 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
      z-index: 1200;
    }

    .nav-dropdown-menu::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 12px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-dropdown-item {
      display: block;
      padding: 0.7rem 1.5rem;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.68rem;
      font-weight: 700;
      white-space: nowrap;
      transition: color 0.25s ease, background-color 0.25s ease;
      text-decoration: none;
    }

    .nav-dropdown-item:hover {
      color: var(--accent);
      background-color: rgba(255, 255, 255, 0.1);
    }

    nav.nav-scrolled .nav-dropdown-item {
      color: var(--black);
    }

    nav.nav-scrolled .nav-dropdown-item:hover {
      color: var(--accent);
    }

    .nav-btn {
      padding: 0.7rem 1.6rem;
      background-color: var(--accent);
      color: var(--white) !important;
      border: 1px solid var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .nav-btn::after {
      display: none !important;
    }

    .nav-btn:hover {
      background-color: transparent;
      color: var(--accent) !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 28px;
      height: 28px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 1.5px;
      background-color: var(--white);
      transition: transform 0.35s ease, opacity 0.25s ease, background-color 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* --- Mobile menu overlay --- */
    .nav-mobile-menu {
      display: none;
    }

    @media (max-width: 992px) {

      .nav-left,
      .nav-right {
        display: none;
      }

      .nav-center {
        flex: 1;
        justify-content: flex-start;
        padding: 0;
      }

      .hamburger {
        display: flex;
      }

      .nav-mobile-menu {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        padding: 6rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.8rem;
        background: rgba(28, 82, 82, 0.96);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease, visibility 0s linear 0.5s;
        z-index: 1050;
      }

      .nav-mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease;
      }

      .nav-mobile-link {
        font-family: 'Gerbil', sans-serif;
        font-size: 0.8rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--white);
        position: relative;
        padding-bottom: 0.4rem;
      }

      .nav-mobile-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background-color: var(--accent);
        transition: width 0.3s ease;
      }

      .nav-mobile-link:hover::after,
      .nav-mobile-link:active::after {
        width: 60%;
      }

      .nav-mobile-btn {
        margin-top: 0.6rem;
        padding: 0.9rem 2.4rem;
        font-size: 0.85rem;
        background-color: var(--accent);
        border: 1px solid var(--accent);
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      .nav-mobile-btn::after {
        display: none;
      }

      .nav-mobile-btn:hover {
        background-color: transparent;
        color: var(--accent);
      }
    }

    /* --- Mobile Nav Dropdown --- */
    .nav-mobile-dropdown {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .nav-mobile-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Gerbil', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--white);
      padding: 0;
      padding-bottom: 0.4rem;
    }

    .nav-mobile-dropdown-toggle .nav-dropdown-arrow {
      border-color: var(--white);
    }

    .nav-mobile-dropdown-sub {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      padding-top: 0.8rem;
    }

    .nav-mobile-dropdown.open .nav-mobile-dropdown-sub {
      display: flex;
    }

    .nav-mobile-dropdown.open .nav-dropdown-arrow {
      transform: rotate(-135deg) translateY(-1px);
    }

    .nav-mobile-dropdown-sub a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 400;
      transition: color 0.3s ease;
    }

    .nav-mobile-dropdown-sub a:hover {
      color: var(--accent);
    }

    @media (max-width: 992px) {
      .nav-mobile-dropdown {
        display: flex;
      }
    }

    body.nav-menu-open {
      overflow: hidden;
    }

    /* --- Hero --- */
    .hero {
      height: 100vh;
      background-color: var(--primary);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--white);
      padding: 0;
    }

    .hero-img-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }

    /* Slider: crossfade + zoom */
    @keyframes slider {
      0% {
        opacity: 0;
        transform: scale(1.15);
      }

      10% {
        opacity: 1;
        transform: scale(1.1);
      }

      25% {
        opacity: 1;
        transform: scale(1.05);
      }

      35% {
        opacity: 0;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(1);
      }
    }

    .hero-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: slider 20s infinite linear;
    }

    .hero-img:nth-child(1) {
      animation-delay: 0s;
    }

    .hero-img:nth-child(2) {
      animation-delay: 5s;
    }

    .hero-img:nth-child(3) {
      animation-delay: 10s;
    }

    .hero-img:nth-child(4) {
      animation-delay: 15s;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.25) 0%,
          rgba(0, 0, 0, 0.45) 60%,
          rgba(0, 0, 0, 0.6) 100%);
      z-index: 1;
    }

    .hero-booking {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 50%);
      width: 95%;
      max-width: 1200px;
      z-index: 10;
      font-family: 'Libre Baskerville', serif;
    }

    .hero-booking input,
    .hero-booking button {
      font-family: 'Libre Baskerville', serif;
    }

    .hero-booking .booking-bar {
      margin-bottom: 0 !important;
      padding: 0 !important;
      display: grid;
      grid-template-columns: 2fr 1.5fr 1.5fr auto;
      gap: 0;
      /*background-color: var(--white);*/
      border-radius: 0;
      /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
      align-items: center;
    }

    .hero-booking .input-group {
      padding: 1.2rem 1.5rem;
      border-right: 1px solid #eaeaea;
      display: flex;
      flex-direction: row;
      align-items: center;
      background-color: var(--white);
      gap: 1rem;
      cursor: pointer;
      height: 100%;
    }

    .discount-marquee-group {
      flex: 1;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
      background-color: var(--white);
    }

    .marquee-container {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
    }

    .marquee-text {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 15s linear infinite;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
    }

    @keyframes marquee {
      0% {
        transform: translate(0, 0);
      }

      100% {
        transform: translate(-100%, 0);
      }
    }

    .hero-booking .input-text-wrapper {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .hero-booking .input-group input {
      border: none;
      background-color: transparent;
      padding: 0;
      color: #555;
      font-size: 0.95rem;
      width: 100%;
      outline: none;
      font-family: inherit;
    }

    .hero-booking .input-group input::placeholder {
      color: #888;
    }

    .booking-icon {
      color: var(--accent);
      /* Website accent color */
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .hero-booking .btn-search {
      height: 100%;
      padding: 0 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--accent);
      color: var(--white);
      border: none;
      border-radius: 0;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .hero-booking .btn-search:hover {
      opacity: 0.9;
    }

    @keyframes pulse {
      0% {
        opacity: 0.5;
        transform: translate(-50%, 0);
      }

      50% {
        opacity: 1;
        transform: translate(-50%, 10px);
      }

      100% {
        opacity: 0.5;
        transform: translate(-50%, 0);
      }
    }

    /* --- About --- */
    .about {
      background-color: var(--light);
      padding: 5rem 2rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    /* Left: images */
    .about-imgs {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .about-img-wrap {
      overflow: hidden;
    }

    .about-img-wrap--sm {
      flex: 1;
      height: 500px;
    }

    .about-img-wrap--lg {
      flex: 1;
      height: 500px;
    }

    .about-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* Right: text column */
    .about-text {
      padding-left: 1rem;
      position: relative;
      overflow: hidden;
    }

    .about-text>* {
      position: relative;
      z-index: 1;
    }

    .about-text .label-gold {
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      margin-bottom: 1.2rem;
    }

    .about-text h2 {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      color: var(--black);
      line-height: 1.2;
      font-weight: 400;
      margin-bottom: 1.8rem;
    }

    .about-text p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }

    .about-text .about-tagline {
      color: var(--accent);
      font-family: 'Gerbil', sans-serif;
      font-size: 1.15rem;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .about-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 2.5rem;
      margin-top: 2rem;
    }

    .about-phone {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .about-phone-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-phone-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent);
    }

    .about-phone-icon svg[fill="currentColor"] {
      fill: var(--accent);
      stroke: none;
    }

    .about-phone-info {
      display: flex;
      flex-direction: column;
    }

    .about-phone-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #888;
      margin-bottom: 0.2rem;
    }

    .about-phone-number {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent);
      font-family: 'Gerbil', sans-serif;
      letter-spacing: 0.04em;
      text-decoration: none;
    }

    .review-icon {
      position: relative;
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Gerbil', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--white);
      overflow: hidden;
    }

    .review-icon--tripadvisor {
      background-color: #34E0A1;
      color: var(--black);
    }

    .review-icon--tripadvisor svg {
      width: 26px;
      height: 26px;
    }

    .review-icon--google {
      background-color: var(--white);
      border: 1px solid #e2ddd2;
    }

    .review-icon--google svg {
      width: 24px;
      height: 24px;
    }

    /* --- Rooms --- */
    .rooms {
      background-color: var(--light);
      padding: 5rem 2rem;
      overflow: hidden;
    }

    .rooms-header {
      max-width: 1200px;
      margin: 0 auto 3rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .rooms-title-wrap {
      display: flex;
      flex-direction: column;
    }

    .rooms-subtitle {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.8rem;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .rooms-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      color: var(--primary);
      margin: 0;
    }

    .rooms-controls {
      display: flex;
      gap: 1rem;
      padding-right: 2rem;
    }

    .slider-btn {
      width: 50px;
      height: 50px;
      background-color: var(--white);
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 0;
    }

    .slider-btn:hover {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--white);
    }

    .slider-btn svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }

    .rooms-grid {
      display: flex;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }

    .room-card {
      position: relative;
      height: 550px;
      flex: 1;
      min-width: 0;
      overflow: hidden;
      background-color: var(--black);
      transition: flex 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      cursor: pointer;
    }

    .room-card.active {
      flex: 1.85;
    }

    .room-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .room-card:hover .room-img,
    .room-card.active .room-img {
      transform: scale(1.05);
    }

    .room-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
      opacity: 1;
      transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .room-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      padding: 2.5rem;
      color: var(--white);
      opacity: 1;
      transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 2;
    }

    .room-book-tag {
      position: absolute;
      top: 2rem;
      right: 2rem;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      font-size: 0.75rem;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.4);
      padding: 1.2rem 0.6rem;
      transition: all 0.3s ease;
      text-decoration: none;
      color: var(--white);
    }

    .room-card:hover .room-book-tag,
    .room-card.active .room-book-tag {
      background-color: var(--white);
      color: var(--black);
    }

    .room-info {
      margin-top: auto;
      transform: translateY(0);
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .room-price {
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
      font-weight: 700;
      opacity: 0.9;
    }

    .room-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      font-weight: 400;
      color: var(--white);
    }

    .room-title a {
      color: inherit;
      text-decoration: none;
    }

    .room-line {
      width: 40px;
      height: 1px;
      background-color: var(--accent);
      transition: width 0.5s ease;
    }

    .room-card:hover .room-line,
    .room-card.active .room-line {
      width: 80px;
    }

    .room-hover-content {
      margin-top: 0.8rem;
      opacity: 1;
      transform: translateY(0);
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .room-features {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 0.7rem;
    }

    .feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      flex: 1;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature:last-child {
      border-right: none;
    }

    .feature svg {
      width: 16px;
      height: 16px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.5;
    }

    .feature span {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    /* --- Offers --- */
    .offers {
      background-color: var(--light);
      padding: 5rem 2rem;
    }

    .offers-header {
      margin-bottom: 2.5rem;
    }

    .offers-header-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .offers-title-wrap {
      display: flex;
      flex-direction: column;
    }

    .offers-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--black);
      letter-spacing: 0.01em;
      margin: 0;
      line-height: 1.2;
    }

    .offers-controls {
      display: flex;
      gap: 1rem;
    }

    /* Slider track */
    .offers-grid {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
    }

    .offers-grid:active {
      cursor: grabbing;
    }

    .offers-grid::-webkit-scrollbar {
      display: none;
    }

    .offer-card {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      height: 430px;
      min-width: calc((100% - 3rem) / 3);
      flex-shrink: 0;
      scroll-snap-align: start;
      cursor: pointer;
    }

    .offer-card-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .offer-card:hover .offer-card-img {
      transform: scale(1.05);
    }

    .offer-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
          rgba(0, 0, 0, 0.82) 0%,
          rgba(0, 0, 0, 0.22) 50%,
          rgba(0, 0, 0, 0.04) 100%);
    }

    .offer-badge {
      position: absolute;
      top: 1.6rem;
      left: -3.4rem;
      width: 150px;
      background-color: var(--accent);
      color: var(--white);
      padding: 0.4rem 0;
      text-align: center;
      font-family: 'Gerbil', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      transform: rotate(-45deg);
      transform-origin: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
      z-index: 3;
    }

    .offer-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      z-index: 2;
      transform: translateY(3.8rem);
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .offer-card:hover .offer-card-content,
    .offer-card.tapped .offer-card-content {
      transform: translateY(0);
    }

    .offer-category {
      display: block;
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0.5rem;
      font-family: 'Gerbil', sans-serif;
    }

    .offer-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 0.45rem;
    }

    .offer-cta {
      display: inline-flex;
      align-items: center;
      gap: 1.1rem;
      margin-top: 1.2rem;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.72rem;
      font-weight: 700;
      font-family: 'Gerbil', sans-serif;
      text-decoration: none;
      opacity: 0;
      transition: gap 0.35s ease, opacity 0.4s ease, color 0.35s ease;
    }

    .offer-cta-line {
      display: block;
      width: 40px;
      height: 1px;
      background-color: var(--white);
      flex-shrink: 0;
      transition: width 0.35s ease, background-color 0.35s ease;
    }

    .offer-card:hover .offer-cta,
    .offer-card.tapped .offer-cta {
      opacity: 1;
    }

    .offer-cta:hover {
      gap: 1.8rem;
      color: var(--accent);
    }

    .offer-cta:hover .offer-cta-line {
      width: 60px;
      background-color: var(--accent);
    }

    .offer-subtitle {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.65);
      letter-spacing: 0.03em;
      margin: 0;
    }

    @media (max-width: 992px) {
      .offer-card {
        min-width: calc((100% - 1.5rem) / 2);
      }
    }

    @media (max-width: 576px) {
      .offer-card {
        min-width: 100%;
        height: 340px;
      }

      .footer-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
      }

      .journey-step {
        flex: 0 0 100%;
      }
    }

    /* --- Nearby Attractions --- */
    .attractions {
      background-color: var(--light);
      padding: 5rem 2rem;
      overflow: hidden;
    }

    .attractions-section-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--black);
      letter-spacing: 0.01em;
      line-height: 1.2;
      margin: 0;
    }

    @media (max-width: 768px) {
      .attractions-section-heading {
        font-size: 1.6rem;
      }
    }

    .attractions-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .attractions-imgs {
      position: relative;
      height: 540px;
      cursor: grab;
      touch-action: pan-y;
    }

    .attractions-imgs.dragging {
      cursor: grabbing;
    }

    .attractions-img-main {
      position: relative;
      width: 100%;
      height: 100%;
      margin-left: 70px;
      overflow: hidden;
    }

    .attractions-img-main img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0;
      transition: opacity 0.45s ease, transform 0.45s ease;
      user-select: none;
      -webkit-user-drag: none;
    }

    .attractions-img-main img.active {
      opacity: 1;
    }

    .attractions-imgs.dragging .attractions-img-main img {
      transition: none;
    }

    .attractions-img-peek {
      position: absolute;
      top: 12%;
      left: -90px;
      width: 160px;
      height: 50%;
      overflow: hidden;
      opacity: 0.55;
      cursor: pointer;
      transition: opacity 0.4s ease;
    }

    .attractions-img-peek:hover {
      opacity: 0.85;
    }

    .attractions-img-peek img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .attractions-img-peek img.active {
      opacity: 1;
    }

    .attractions-content {
      padding-left: 1rem;
    }

    .attractions-content .label-gold {
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      margin-bottom: 1.2rem;
      display: block;
    }

    .attractions-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.75rem;
      line-height: 1.2;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--primary);
      margin-bottom: 2rem;
      transition: opacity 0.45s ease, transform 0.45s ease;
      min-height: 5.5rem;
    }

    .attractions-desc {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.85;
      max-width: 420px;
      margin-bottom: 2rem;
      min-height: 5.5rem;
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .attractions-distance {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2.2rem;
      margin-bottom: 2.5rem;
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .distance-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8rem;
      letter-spacing: 0.03em;
      color: var(--primary);
      font-family: 'Gerbil', sans-serif;
    }

    .distance-icon {
      width: 20px;
      height: 20px;
      stroke: var(--accent);
      flex-shrink: 0;
    }

    /* Slide transition states */
    .no-transition {
      transition: none !important;
    }

    .slide-out-left {
      opacity: 0 !important;
      transform: translateX(-40px);
    }

    .slide-out-right {
      opacity: 0 !important;
      transform: translateX(40px);
    }

    .slide-in-from-right {
      opacity: 0 !important;
      transform: translateX(40px);
    }

    .slide-in-from-left {
      opacity: 0 !important;
      transform: translateX(-40px);
    }

    .attractions-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #e2ddd2;
    }

    .attractions-counter {
      font-family: 'Gerbil', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      color: #999;
    }

    .attractions-counter #attractionCur {
      color: var(--accent);
      font-size: 1.4rem;
      letter-spacing: 0.04em;
    }

    .attractions-controls {
      display: flex;
      gap: 1rem;
    }

    @media (max-width: 992px) {
      .attractions-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .attractions-imgs {
        height: 420px;
        order: -1;
      }

      .attractions-img-main {
        margin-left: 50px;
      }

      .attractions-heading {
        font-size: 1.7rem;
      }
    }

    @media (max-width: 576px) {
      .attractions-img-peek {
        width: 90px;
        left: -45px;
      }

      .attractions-img-main {
        margin-left: 40px;
      }

      .attractions-heading {
        font-size: 1.7rem;
      }
    }

    /* --- Guest Journey --- */
    .journey {
      background-color: var(--light);
      padding: 5rem 2rem;
    }

    .journey-header {
      margin-bottom: 4.5rem;
    }

    .journey-header .label-gold {
      margin-bottom: 0.8rem;
    }

    .journey-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--black);
      letter-spacing: 0.01em;
      line-height: 1.2;
      margin: 0;
    }

    .journey-steps {
      position: relative;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    .journey-steps::before {
      content: '';
      position: absolute;
      top: 35px;
      left: calc((100% / 12) - 0.5px);
      right: calc((100% / 12) - 0.5px);
      height: 1px;
      background-color: #e7e3da;
      z-index: 1;
    }

    .journey-step {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 0.5rem;
    }

    .journey-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      background-color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background-color 0.35s ease, border-color 0.35s ease;
    }

    .journey-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--primary);
      transition: stroke 0.35s ease;
    }

    .journey-step:hover .journey-icon {
      background-color: var(--accent);
      border-color: var(--accent);
    }

    .journey-step:hover .journey-icon svg {
      stroke: var(--white);
    }

    .journey-number {
      display: block;
      font-family: 'Gerbil', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--accent);
      margin-bottom: 0.6rem;
    }

    .journey-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--black);
      margin: 0 0 0.7rem;
    }

    .journey-desc {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.8rem;
      line-height: 1.7;
      color: #8a8378;
      margin: 0;
    }

    /* --- Find Us / Location Section --- */
    .findus-section {
      display: flex;
      min-height: 600px;
      padding: 0;
    }

    .findus-panel {
      width: 44%;
      background-color: var(--primary);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .findus-panel::before {
      content: 'TR';
      position: absolute;
      bottom: -0.15em;
      right: -0.05em;
      font-size: 22rem;
      font-family: 'Gerbil', sans-serif;
      color: rgba(255, 255, 255, 0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.02em;
    }

    .findus-panel-inner {
      padding: 5rem 4rem 5rem 5rem;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .findus-panel .label-gold {
      display: block;
      margin-bottom: 1rem;
      font-size: 0.7rem;
      letter-spacing: 0.28em;
    }

    .findus-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 4.8rem;
      color: var(--white);
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.05;
      margin-bottom: 2rem;
    }

    .findus-rule {
      width: 40px;
      height: 1px;
      background: var(--accent);
      margin-bottom: 2.5rem;
    }

    .findus-items {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 3rem;
    }

    .findus-item {
      display: flex;
      gap: 1.4rem;
      align-items: flex-start;
      padding: 1.4rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .findus-item:first-child {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .findus-item-icon {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(204, 153, 50, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .findus-item-icon svg {
      width: 17px;
      height: 17px;
      stroke: var(--accent);
    }

    .findus-item-body {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      padding-top: 0.1rem;
    }

    .findus-item-label {
      font-family: 'Gerbil', sans-serif;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--accent);
    }

    .findus-item-value {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .findus-cta {
      display: inline-flex;
      align-items: center;
      gap: 1.1rem;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.73rem;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Gerbil', sans-serif;
      transition: gap 0.35s ease, color 0.35s ease;
      cursor: pointer;
    }

    .findus-cta:hover {
      gap: 1.8rem;
      color: var(--accent);
    }

    .findus-cta-line {
      display: block;
      width: 40px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
      transition: width 0.35s ease;
    }

    .findus-cta:hover .findus-cta-line {
      width: 60px;
    }

    .findus-map-wrap {
      flex: 1;
      position: relative;
      min-height: 600px;
    }

    .findus-map-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    @media (max-width: 992px) {
      .findus-section {
        flex-direction: column;
      }

      .findus-panel {
        width: 100%;
      }

      .findus-panel-inner {
        padding: 4rem 1.5rem 3.5rem;
      }

      .findus-panel::before {
        font-size: 14rem;
      }

      .findus-title {
        font-size: 3.4rem;
      }

      .findus-map-wrap {
        min-height: 380px;
        position: relative;
      }

      .findus-map-wrap iframe {
        position: relative;
        height: 380px;
      }
    }

    /* --- Footer --- */
    footer {
      position: relative;
      background-color: var(--primary);
      color: var(--white);
      padding: 5rem 2rem 2rem;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../images/Pictures/overlay 1 white.png');
      background-repeat: repeat;
      background-size: 800px;
      background-position: center;
      opacity: 0.1;
      pointer-events: none;
      z-index: 0;
    }

    footer .container {
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand .logo-container {
      margin-bottom: 1.5rem;
    }

    .footer-logo-wrap {
      margin-bottom: 1.5rem;
    }

    .footer-logo {
      max-width: 140px;
      height: auto;
      display: block;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.95rem;
    }

    .footer-tagline {
      color: var(--accent);
      font-style: italic;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .footer-col h4 {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.9rem;
      margin-bottom: 2rem;
      color: var(--white);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 1rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .footer-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    .social-links svg {
      width: 16px;
      height: 16px;
    }

    .social-links .fa {
      font-size: 16px;
      line-height: 1;
    }

    .social-links a:hover {
      color: var(--black);
      background-color: var(--accent);
      border-color: var(--accent);
    }

    .footer-credit {
      text-align: center;
      text-transform: none;
      letter-spacing: normal;
    }

    .footer-credit a {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.3s ease;
    }

    .footer-credit a:hover {
      color: var(--accent);
    }

    /* --- Responsive --- */
    @media (max-width: 1200px) {
      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-brand {
        grid-column: span 3;
      }
    }

    @media (max-width: 992px) {

      .about-grid,
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-brand {
        grid-column: span 1;
      }

      .rooms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
      }

      .room-card {
        flex: 1;
        min-width: 0;
      }

      .booking-bar,
      .hero-booking .booking-bar {
        grid-template-columns: 1fr 1fr;
      }

      .booking-bar .btn,
      .hero-booking .btn {
        grid-column: span 2;
      }

      .hero-booking .input-group {
        border-bottom: 1px solid #eaeaea;
        border-right: none;
      }

      .hero-booking .input-group:nth-child(odd) {
        border-right: 1px solid #eaeaea;
      }

      .journey-steps {
        flex-wrap: wrap;
        row-gap: 3rem;
      }

      .journey-steps::before {
        display: none;
      }

      .journey-step {
        flex: 0 0 calc(100% / 3);
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .journey-heading {
        font-size: 1.6rem;
      }

      .journey-step {
        flex: 0 0 calc(50% - 0.5rem);
      }

      nav {
        justify-content: space-between;
      }

      .heading-large {
        font-size: 1.2rem !important;
      }

      .about-imgs {
        flex-direction: column;
        gap: 1rem;
      }

      .about-img-wrap--sm,
      .about-img-wrap--lg {
        flex: none;
        width: 100%;
        height: 320px;
        margin-top: 0;
      }

      .about-text h2 {
        font-size: 1.9rem;
      }

      .about-actions {
        gap: 1.5rem;
      }

      .rooms-controls {
        display: none;
      }

      .rooms-grid {
        flex-direction: column;
        overflow: visible;
        gap: 1.5rem;
        padding: 0 1.25rem;
        max-width: 100%;
        margin: 0;
      }

      .room-card {
        flex: none;
        width: 100%;
        max-width: none;
        height: 420px;
        transition: none;
      }

      .room-card.active {
        flex: none;
        width: 100%;
        max-width: none;
        height: 420px;
      }

      .room-content {
        padding: 1.5rem;
      }

      .room-title {
        font-size: 1.4rem;
      }

      .room-features {
        gap: 0.4rem;
        padding-top: 0.5rem;
      }

      .feature {
        gap: 0.2rem;
        min-width: 0;
      }

      .feature svg {
        width: 13px;
        height: 13px;
      }

      .feature span {
        font-size: 0.55rem;
        letter-spacing: 0.02em;
        text-align: center;
        overflow-wrap: break-word;
      }

      .booking-bar,
      .hero-booking .booking-bar {
        grid-template-columns: 1fr;
      }

      .booking-bar .btn,
      .hero-booking .btn-search {
        grid-column: span 1;
      }

      .hero-booking .input-group {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
      }

      .hero-booking .input-group:nth-child(odd) {
        border-right: none;
      }

      .hero-booking .btn-search {
        padding: 1rem 1.5rem;
      }

      .hero-booking .guests-dropdown,
      .hero-booking .codes-dropdown {
        width: 100%;
        min-width: 0;
        max-width: calc(100vw - 3rem);
      }

      .hero-booking .codes-dropdown .code-field input {
        width: 110px;
      }

      .guest-group .input-text-wrapper {
        text-align: left;
      }

      /* Responsive Flatpickr calendar (single month on mobile) */
      .flatpickr-calendar {
        width: 300px !important;
        max-width: calc(100vw - 2rem) !important;
        box-sizing: border-box !important;
      }

      .flatpickr-days,
      .dayContainer,
      .flatpickr-innerContainer,
      .flatpickr-rContainer {
        width: 100% !important;
        max-width: 100% !important;
      }

      .flatpickr-current-month {
        font-size: 100% !important;
      }

      /* Defensive fallback: only ever show one month's grid on mobile */
      .flatpickr-months .flatpickr-month ~ .flatpickr-month,
      .dayContainer + .dayContainer {
        display: none !important;
      }
    }

    .guests-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      min-width: 250px;
      background: #fff;
      border: 1px solid #eaeaea;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: none;
      z-index: 100;
      flex-direction: column;
      gap: 1rem;
      cursor: default;
      border-radius: 4px;
      margin-top: 10px;
    }

    .guests-dropdown.show {
      display: flex;
    }

    .codes-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      width: 320px;
      background: #fff;
      padding: 2rem;
      border-radius: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      display: none;
      z-index: 100;
      flex-direction: column;
      gap: 1.5rem;
      cursor: default;
      margin-top: 10px;
    }

    .codes-dropdown.show {
      display: flex;
    }

    .codes-dropdown .btn-close-codes {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 1.2rem;
      color: var(--primary);
      cursor: pointer;
    }

    .code-field {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .code-field label {
      color: var(--primary);
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    .codes-dropdown .code-field input {
      border: 1px solid var(--accent);
      border-radius: 0;
      background: transparent;
      padding: 0.4rem 0.6rem;
      width: 140px;
      outline: none;
      color: var(--primary);
    }

    .codes-dropdown .code-field input:focus {
      border-color: var(--primary);
    }

    .guest-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      border-bottom: 1px solid #eaeaea;
    }

    .guest-label strong {
      display: block;
      color: #333;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .guest-label span {
      display: block;
      color: #888;
      font-size: 0.8rem;
    }

    .guest-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .btn-ctrl {
      width: 30px;
      height: 30px;
      border-radius: 4px;
      border: 1px solid var(--primary);
      background: #fff;
      color: var(--primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .btn-ctrl:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .btn-ok {
      background: var(--primary);
      color: var(--white);
      border: none;
      padding: 0.8rem;
      cursor: pointer;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-ok:hover {
      background: var(--accent);
    }

    /* Flatpickr Customization */
    .flatpickr-calendar {
      font-family: 'Libre Baskerville', serif !important;
      border: none !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
      padding: 10px !important;
      /* Keep padding outside the calendar's fixed content width so the day grid isn't squeezed and clipped */
      box-sizing: content-box !important;
    }

    .flatpickr-day {
      border-radius: 4px !important;
    }

    .flatpickr-day.selected,
    .flatpickr-day.startRange,
    .flatpickr-day.endRange,
    .flatpickr-day.selected.inRange,
    .flatpickr-day.startRange.inRange,
    .flatpickr-day.endRange.inRange,
    .flatpickr-day.selected:focus,
    .flatpickr-day.startRange:focus,
    .flatpickr-day.endRange:focus,
    .flatpickr-day.selected:hover,
    .flatpickr-day.startRange:hover,
    .flatpickr-day.endRange:hover,
    .flatpickr-day.selected.prevMonthDay,
    .flatpickr-day.startRange.prevMonthDay,
    .flatpickr-day.endRange.prevMonthDay,
    .flatpickr-day.selected.nextMonthDay,
    .flatpickr-day.startRange.nextMonthDay,
    .flatpickr-day.endRange.nextMonthDay {
      background: var(--primary) !important;
      border-color: var(--primary) !important;
    }

    .flatpickr-day.inRange,
    .flatpickr-day.prevMonthDay.inRange,
    .flatpickr-day.nextMonthDay.inRange,
    .flatpickr-day.today.inRange,
    .flatpickr-day.prevMonthDay.today.inRange,
    .flatpickr-day.nextMonthDay.today.inRange,
    .flatpickr-day:hover,
    .flatpickr-day.prevMonthDay:hover,
    .flatpickr-day.nextMonthDay:hover,
    .flatpickr-day:focus,
    .flatpickr-day.prevMonthDay:focus,
    .flatpickr-day.nextMonthDay:focus {
      background: var(--accent) !important;
      border-color: var(--accent) !important;
    }

    .flatpickr-months .flatpickr-month {
      height: 40px !important;
    }

    .flatpickr-current-month {
      padding-top: 5px !important;
    }

    /* --- Spa & Wellness CTA Section --- */
    .spa-cta {
      position: relative;
      width: 100%;
      height: 80vh;
      min-height: 600px;
      overflow: hidden;
      padding: 0;
    }

    .spa-cta-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.04);
      transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .spa-cta:hover .spa-cta-bg {
      transform: scale(1);
    }

    .spa-cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg,
          rgba(0, 0, 0, 0.65) 0%,
          rgba(0, 0, 0, 0.35) 45%,
          rgba(0, 0, 0, 0.05) 100%);
    }

    .spa-cta-container {
      position: absolute;
      inset: 0;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5rem;
      display: flex;
      align-items: flex-end;
      padding-bottom: 4.5rem;
    }

    .spa-cta-content {
      color: var(--white);
      max-width: 520px;
    }

    .spa-cta-label {
      display: block;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: var(--accent);
      margin-bottom: 1.4rem;
      font-family: 'Gerbil', sans-serif;
      font-weight: 400;
    }

    .spa-cta-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      font-weight: 400;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.2rem;
      color: var(--white);
    }

    .spa-cta-desc {
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.75);
      max-width: 380px;
      margin-bottom: 2.4rem;
      font-style: italic;
    }

    .spa-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 1.1rem;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      transition: gap 0.35s ease;
      font-family: 'Gerbil', sans-serif;
    }

    .spa-cta-btn:hover {
      gap: 1.8rem;
      color: var(--accent);
    }

    .spa-cta-btn-line {
      display: block;
      width: 40px;
      height: 1px;
      background-color: var(--white);
      transition: width 0.35s ease, background-color 0.35s ease;
      flex-shrink: 0;
    }

    .spa-cta-btn:hover .spa-cta-btn-line {
      width: 60px;
      background-color: var(--accent);
    }

    .about-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 1.1rem;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      transition: gap 0.35s ease;
      font-family: 'Gerbil', sans-serif;
    }

    .about-cta-btn:hover {
      gap: 1.8rem;
      color: var(--accent);
    }

    .about-cta-btn-line {
      display: block;
      width: 40px;
      height: 1px;
      background-color: var(--primary);
      transition: width 0.35s ease, background-color 0.35s ease;
      flex-shrink: 0;
    }

    .about-cta-btn:hover .about-cta-btn-line {
      width: 60px;
      background-color: var(--accent);
    }

    @media (max-width: 992px) {
      .spa-cta-heading {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 768px) {
      .spa-cta-container {
        padding: 0 2rem;
        padding-bottom: 3rem;
      }

      .spa-cta-content {
        max-width: 100%;
      }

      .spa-cta-heading {
        font-size: 1.6rem;
      }

      .spa-cta-desc {
        max-width: 100%;
      }

      .spa-cta-overlay {
        background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.05) 100%);
      }
    }

    /* --- Dining & Bars Section --- */
    .dining {
      position: relative;
      padding: 5rem 2rem;
      background-color: var(--light);
    }

    /* Slider viewport: image panel + content panel */
    .dining-slider {
      position: relative;
      max-width: 1600px;
      height: 640px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 55% 45%;
      background-color: #f4f3ef;
      cursor: grab;
    }

    .dining-slider.dragging {
      cursor: grabbing;
    }

    .dining-slider.dragging .dining-blocks-track {
      transition: none;
    }

    .dining-slider.dragging * {
      user-select: none;
    }

    /* ---- Left image panel ---- */
    .dining-image-panel {
      position: relative;
      height: 100%;
      padding: 2rem 0 2rem 2rem;
    }

    .dining-imgs-wrap {
      position: relative;
      height: 100%;
      overflow: hidden;
    }

    .dining-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .dining-img.active {
      opacity: 1;
    }

    /* ---- Right content panel ---- */
    .dining-content-panel {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .dining-content-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../images/Pictures/Pattern 1.png');
      background-repeat: no-repeat;
      background-size: 500px;
      background-position: center;
      opacity: 0.2;
      pointer-events: none;
      z-index: 0;
    }

    .dining-content-panel>* {
      position: relative;
      z-index: 1;
    }

    /* Track holds all blocks side-by-side and slides horizontally */
    .dining-blocks-track {
      display: flex;
      flex: 1;
      min-height: 0;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .dining-block {
      flex: 0 0 100%;
      min-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 3rem 0 2rem;
      box-sizing: border-box;
    }

    .dining-learn {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 2.2rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-weight: 700;
      color: #aaa;
      font-family: 'Gerbil', sans-serif;
    }

    .dining-learn strong {
      color: var(--accent);
    }

    .dining-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.75rem;
      font-weight: 400;
      line-height: 1.12;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--primary);
      margin-bottom: 1.4rem;
    }

    .dining-desc {
      font-size: 0.95rem;
      line-height: 1.9;
      color: #666;
      max-width: 360px;
      margin-bottom: 2.5rem;
    }

    /* Bottom row: progress dots + prev/next arrows */
    .dining-nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 3rem 0 2rem;
    }

    /* Step progress dots */
    .dining-dots {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .dining-dot {
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #ccc;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
    }

    .dining-dot.active {
      width: 22px;
      border-radius: 3px;
      background-color: var(--accent);
    }

    /* Prev / next arrows */
    .dining-arrows {
      display: flex;
      gap: 0.75rem;
    }

    .dining-arrows .slider-btn {
      width: 42px;
      height: 42px;
    }

    /* Step counter top-right */
    .dining-counter {
      position: absolute;
      top: 2.5rem;
      right: 2rem;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      color: #aaa;
      font-family: 'Gerbil', sans-serif;
    }

    .dining-counter strong {
      display: inline-block;
      width: 1.4em;
      color: var(--primary);
      font-variant-numeric: tabular-nums;
      text-align: center;
    }

    /* Responsive — stack panels and shrink slider on smaller screens */
    @media (max-width: 992px) {
      .dining {
        padding: 3.5rem 1.25rem;
      }

      .dining-slider {
        height: auto;
        grid-template-columns: 1fr;
      }

      .dining-image-panel {
        height: 60vw;
        min-height: 260px;
        padding: 0;
      }

      .dining-content-panel {
        padding-top: 1rem;
      }

      .dining-block {
        padding: 2.5rem 1.5rem 0;
        text-align: center;
        align-items: center;
      }

      .dining-nav-row {
        padding: 1rem 1.5rem 1.5rem;
      }

      .dining-counter {
        top: 1.25rem;
        right: 1.5rem;
      }

      .dining-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

    }

    @media (max-width: 768px) {
      .dining-heading {
        font-size: 1.6rem;
      }
    }

    /* --- Hotel Amenities Section --- */
    .amenities {
      background-color: var(--light);
      padding: 5rem 2rem;
    }

    .amenities-header {
      margin-bottom: 4rem;
    }

    .amenities-header .about-cta-btn {
      margin-top: 1.5rem;
    }

    .amenities-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin: 0;
      line-height: 1.15;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .amenity-card {
      position: relative;
      border: 1px solid #eaeaea;
      padding: 2.5rem 2rem 2rem;
      overflow: hidden;
      background-color: var(--white);
      transition: border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .amenity-card:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    }

    .amenity-icon {
      width: 48px;
      height: 48px;
      color: var(--accent);
      display: block;
      margin-bottom: 1.8rem;
      flex-shrink: 0;
    }

    .amenity-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.75rem;
    }

    .amenity-desc {
      font-size: 0.9rem;
      line-height: 1.78;
      color: #777;
      margin: 0;
    }

    /* Faded watermark icon — same icon, large, bottom-right */
    .amenity-watermark {
      position: absolute;
      bottom: -0.75rem;
      right: -0.75rem;
      width: 110px;
      height: 110px;
      opacity: 0.06;
      pointer-events: none;
      color: var(--primary);
    }

    .amenity-watermark svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* --- Restaurant Menu --- */
    .menu-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .menu-categories {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3.5rem 4rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .menu-category-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.1rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--primary);
      border-bottom: 1px solid var(--accent);
      padding-bottom: 0.8rem;
      margin-bottom: 1.5rem;
    }

    .menu-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .menu-item-info {
      flex: 1;
    }

    .menu-item-name {
      display: block;
      font-family: 'Gerbil', sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--black);
      margin-bottom: 0.35rem;
    }

    .menu-item-desc {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.85rem;
      color: #777;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .menu-item-price {
      font-family: 'Gerbil', sans-serif;
      font-size: 0.95rem;
      color: var(--accent);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .menu-note {
      text-align: center;
      font-family: 'Libre Baskerville', serif;
      font-style: italic;
      font-size: 0.8rem;
      color: #888;
      max-width: 700px;
      margin: 4rem auto 0;
    }

    @media (max-width: 768px) {
      .menu-categories {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 992px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenities-heading {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 576px) {
      .amenities-grid {
        grid-template-columns: 1fr;
      }

      .amenities-heading {
        font-size: 1.6rem;
      }
    }

    /* ===================== */
    /* Page Header (Rooms & Suites, etc.) */
    /* ===================== */

    .page-header {
      height: 60vh;
      min-height: 480px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      background-color: var(--primary);
      overflow: hidden;
    }

    .page-header-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .page-header-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .page-header-content {
      position: relative;
      z-index: 2;
      width: 90%;
      max-width: 800px;
    }

    .page-header-content .label-gold {
      text-align: center;
    }

    .page-header-content .heading-large {
      margin-bottom: 1rem;
      font-size: 1.5rem !important;
    }

    @media (max-width: 768px) {
      .page-header-content .heading-large {
        font-size: 1.3rem !important;
      }
    }

    .page-header-text {
      font-size: 1.05rem;
      opacity: 0.9;
    }

    /* ===================== */
    /* Rooms Listing Page */
    /* ===================== */

    .rooms-listing {
      background-color: var(--light);
    }

    .rooms-listing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .room-detail-card {
      height: 640px;
    }

    .room-detail-card .room-content {
      justify-content: flex-end;
    }

    .room-detail-card .room-info {
      margin-top: 0;
    }

    .room-detail-card .room-hover-content {
      margin-top: 1.5rem;
    }

    @media (max-width: 992px) {
      .room-detail-card {
        height: 600px;
      }
    }

    @media (max-width: 576px) {
      .page-header-content .heading-large {
        font-size: 1.15rem !important;
      }

      .room-detail-card {
        height: 640px;
      }
    }

    /* ===================== */
    /* Book Now Page */
    /* ===================== */

    .booking-page-section {
      background-color: var(--light);
      padding: 6rem 0;
    }

    .booking-page-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .booking-page-header .label-gold {
      display: block;
      margin-bottom: 0.5rem;
    }

    .booking-page-section .hero-booking.static-booking {
      position: static;
      transform: none;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ===================== */
    /* Contact Section */
    /* ===================== */

    .contact-section {
      background-color: var(--light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .contact-info-col p {
      color: #555;
      margin: 1rem 0 2rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-detail-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent);
    }

    .contact-detail-icon--fill svg {
      fill: var(--accent);
      stroke: none;
    }

    .contact-detail-info {
      display: flex;
      flex-direction: column;
    }

    .contact-detail-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #888;
      margin-bottom: 0.2rem;
    }

    .contact-detail-value {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.02em;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .form-group label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #888;
      margin-top: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      border: none;
      border-bottom: 1px solid #ddd;
      padding: 0.6rem 0;
      font-family: 'Libre Baskerville', serif;
      font-size: 0.95rem;
      color: var(--black);
      background-color: transparent;
      outline: none;
      resize: vertical;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
    }

    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      border: none;
      border-bottom: 1px solid #ddd;
      border-radius: 0;
      cursor: pointer;
      background-color: var(--light);
      padding: 0.6rem 1.6rem 0.6rem 0.6rem;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.5rem center;
      background-size: 14px;
      transition: border-color 0.3s ease;
    }

    .form-group select:focus {
      border-color: var(--accent);
    }

    .form-group select:invalid {
      color: #777;
    }

    .contact-form .btn {
      align-self: flex-start;
      border: none;
    }

    .form-submit-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.2rem;
    }

    #contactSubmitBtn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      position: relative;
    }

    #contactSubmitBtn .btn-sent-text {
      display: none;
    }

    #contactSubmitBtn .btn-check {
      display: none;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    #contactSubmitBtn.is-sent {
      background-color: var(--primary);
      cursor: default;
      pointer-events: none;
      animation: btn-sent-pop 0.4s ease;
    }

    #contactSubmitBtn.is-sent .btn-text {
      display: none;
    }

    #contactSubmitBtn.is-sent .btn-sent-text {
      display: inline;
    }

    #contactSubmitBtn.is-sent .btn-check {
      display: block;
      stroke-dasharray: 24;
      stroke-dashoffset: 24;
      animation: btn-check-draw 0.4s ease 0.15s forwards;
    }

    @keyframes btn-sent-pop {
      0% { transform: scale(1); }
      40% { transform: scale(1.06); }
      100% { transform: scale(1); }
    }

    @keyframes btn-check-draw {
      to { stroke-dashoffset: 0; }
    }

    .form-success-note {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #555;
      max-width: 480px;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transform: translateY(-6px);
      transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
    }

    .form-success-note a {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
    }

    .form-success-note.visible {
      opacity: 1;
      max-height: 200px;
      transform: translateY(0);
    }

    .contact-map {
      width: 100%;
      height: 420px;
      overflow: hidden;
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }

    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 576px) {
      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-map {
        height: 320px;
      }
    }

    /* ===================== */
    /* Offers Listing Page */
    /* ===================== */

    .offers-listing {
      background-color: var(--light);
      padding: 6rem 0;
    }

    .offers-listing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .offers-listing-grid .offer-card {
      height: 480px;
      min-width: 0;
    }

    .offers-listing-grid--single {
      grid-template-columns: 1fr;
      max-width: 560px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .offers-listing-grid {
        grid-template-columns: 1fr;
      }

      .offers-listing-grid .offer-card {
        height: 400px;
      }
    }

    /* ===================== */
    /* Room Detail Page */
    /* ===================== */

    .room-detail-hero {
      height: 70vh;
      min-height: 520px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
    }

    .room-detail-hero-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .room-detail-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
    }

    .room-detail-hero-content {
      position: relative;
      z-index: 2;
      width: 90%;
      max-width: 800px;
    }

    .room-detail-hero-content .label-gold {
      text-align: center;
    }

    .room-detail-hero-content .heading-large {
      margin-bottom: 1.5rem;
      font-size: 1.5rem !important;
    }

    .room-price-tag {
      display: inline-block;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: var(--white);
      font-family: 'Gerbil', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.85rem;
      font-weight: 700;
      padding: 0.6rem 1.6rem;
      margin-bottom: 1.5rem;
    }

    .room-detail-specs {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 0.7rem;
      margin-top: 0.5rem;
    }

    .room-detail-spec {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      flex: 1;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .room-detail-spec:last-child {
      border-right: none;
    }

    .room-detail-spec svg {
      width: 16px;
      height: 16px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.5;
    }

    /* Gallery */
    .room-gallery-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .room-gallery-main {
      position: relative;
      height: 600px;
      overflow: hidden;
    }

    .room-gallery-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease;
    }

    .room-gallery-track img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .room-gallery-controls {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      display: flex;
      gap: 1rem;
      z-index: 2;
    }

    /* Section header reused across detail sections */
    .section-header-center {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .section-header-center .label-gold {
      text-align: center;
    }

    .section-header-center p {
      color: #555;
      margin-bottom: 0;
    }

    .section-link {
      display: inline-flex;
      align-items: center;
      gap: 1.1rem;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Gerbil', sans-serif;
      margin-top: 1.5rem;
      transition: gap 0.35s ease, color 0.35s ease;
    }

    .section-link:hover {
      gap: 1.8rem;
      color: var(--accent);
    }

    .section-link-line {
      display: block;
      width: 40px;
      height: 1px;
      background-color: var(--accent);
      transition: width 0.35s ease;
    }

    .section-link:hover .section-link-line {
      width: 56px;
    }

    /* Room Overview */
    .room-overview-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .room-overview-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .room-overview-content p {
      color: #555;
    }

    .room-overview-content p:last-child {
      margin-bottom: 0;
    }

    /* Rates */
    .room-rates-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .room-rates-section .section-header-center p {
      max-width: 600px;
      margin: 0.8rem auto 0;
      color: #555;
    }

    .rate-plans {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      max-width: 900px;
      margin: 3rem auto 0;
    }

    .rate-plan-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-align: center;
      color: var(--black);
      margin-bottom: 1.2rem;
    }

    .rate-plan-title span {
      display: block;
      font-family: 'Libre Baskerville', serif;
      font-size: 0.75rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: normal;
      color: #777;
      margin-top: 0.3rem;
    }

    .rate-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .rate-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      background-color: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 1.8rem 0.75rem;
      text-align: center;
    }

    .rate-label {
      font-family: 'Gerbil', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary);
    }

    .rate-amount {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.5rem;
      color: var(--black);
    }

    .rate-unit {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.85rem;
      color: #777;
    }

    /* Facilities */
    .room-facilities-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .facility-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .facility-card {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      background-color: var(--white);
      padding: 2rem;
    }

    .facility-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .facility-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.5;
    }

    .facility-text h4 {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.05rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
      color: var(--black);
    }

    .facility-text p {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 0;
    }

    /* Image Carousel (reusable) */
    .gallery-carousel {
      margin-top: 3rem;
    }

    .gallery-carousel-track {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
    }

    .gallery-carousel-track:active {
      cursor: grabbing;
    }

    .gallery-carousel-track::-webkit-scrollbar {
      display: none;
    }

    .gallery-carousel-item {
      flex: 0 0 340px;
      height: 240px;
      scroll-snap-align: start;
      overflow: hidden;
    }

    .gallery-carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-carousel-item:hover img {
      transform: scale(1.06);
    }

    .gallery-carousel-controls {
      display: flex;
      justify-content: flex-end;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    /* 3-up variant — exactly 3 items visible, sliding one at a time */
    .gallery-carousel--3up .gallery-carousel-item {
      flex: 0 0 calc((100% - 3rem) / 3);
      height: 280px;
    }

    @media (max-width: 992px) {
      .gallery-carousel--3up .gallery-carousel-item {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        height: 240px;
      }
    }

    @media (max-width: 768px) {
      .gallery-carousel-item {
        flex: 0 0 78vw;
        height: 200px;
      }

      .gallery-carousel--3up .gallery-carousel-item {
        flex: 0 0 100%;
        height: 260px;
      }

      /* Menu page gallery: surface the prev/next controls on top of the image so they're easy to spot on mobile */
      .menu-gallery {
        position: relative;
      }

      .menu-gallery .gallery-carousel-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 0.75rem;
        margin-top: 0;
        pointer-events: none;
        z-index: 2;
      }

      .menu-gallery .gallery-carousel-controls .slider-btn {
        pointer-events: auto;
        width: 42px;
        height: 42px;
        background-color: rgba(0, 0, 0, 0.45);
        border-color: transparent;
        color: var(--white);
      }

      .menu-gallery .gallery-carousel-controls .slider-btn:hover {
        background-color: var(--primary);
      }
    }

    /* Hotel Rules */
    .hotel-rules-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .rules-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 4rem;
      max-width: 900px;
      margin: 0 auto 3rem;
    }

    .rule-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1rem;
    }

    .rule-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background-color: var(--accent);
      color: var(--white);
    }

    .rule-icon svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.5;
    }

    .cancellation-block {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding-top: 3rem;
      border-top: 1px solid #e2e0db;
    }

    .cancellation-block h3 {
      font-size: 1.3rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
    }

    .cancellation-block p {
      color: #555;
      margin-bottom: 0;
    }

    /* Related Rooms */
    .related-rooms-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .related-rooms-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .related-rooms-grid--single {
      grid-template-columns: 1fr;
      max-width: 700px;
      margin: 0 auto;
    }

    .related-rooms-grid--featured {
      grid-template-columns: 1fr;
    }

    .related-room-card--featured {
      padding: 0;
      gap: 0;
      align-items: stretch;
    }

    .related-room-card--featured .related-room-img {
      width: 50%;
      height: auto;
    }

    .related-room-card--featured .related-room-info {
      width: 50%;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .related-room-card--featured .btn {
      align-self: flex-start;
      margin-top: 0.5rem;
    }

    .related-room-card {
      display: flex;
      align-items: center;
      gap: 2rem;
      background-color: var(--white);
      padding: 1.5rem;
    }

    .related-room-img {
      width: 200px;
      height: 220px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .related-room-info {
      flex: 1;
    }

    .related-room-info .room-title {
      color: var(--black);
      font-size: 1.6rem;
    }

    .related-room-info p {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .related-room-specs {
      display: flex;
      gap: 1.5rem;
    }

    .related-room-spec {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--black);
    }

    .related-room-spec svg {
      width: 16px;
      height: 16px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.5;
    }

    .related-room-arrow {
      width: 56px;
      height: 56px;
      background-color: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .related-room-arrow:hover {
      background-color: var(--accent);
    }

    .related-room-arrow svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    @media (max-width: 992px) {
      .facility-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .related-rooms-grid {
        grid-template-columns: 1fr;
      }

      .rate-plans {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .room-detail-hero-content .heading-large {
        font-size: 1.3rem !important;
      }

      .room-detail-specs {
        gap: 0.4rem;
        padding-top: 0.5rem;
      }

      .room-detail-spec {
        gap: 0.2rem;
        min-width: 0;
      }

      .room-detail-spec svg {
        width: 13px;
        height: 13px;
      }

      .room-detail-spec span {
        font-size: 0.55rem;
        letter-spacing: 0.02em;
        text-align: center;
      }

      .room-gallery-main {
        height: 380px;
      }

      .facility-grid {
        grid-template-columns: 1fr;
      }

      .rules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .related-room-card {
        flex-direction: column;
        align-items: stretch;
      }

      .related-room-img {
        width: 100%;
        height: 220px;
      }

      .related-room-card--featured .related-room-img,
      .related-room-card--featured .related-room-info {
        width: 100%;
      }

      .related-room-card--featured .related-room-info {
        padding: 1.5rem;
      }
    }

    /* ===================== */
    /* Spa & Wellness Page */
    /* ===================== */

    .spa-intro-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .spa-treatments-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .spa-packages-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .package-card {
      background-color: var(--white);
      padding: 2.5rem 2rem;
      text-align: center;
    }

    .package-duration {
      display: inline-block;
      font-family: 'Gerbil', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid var(--accent);
      padding: 0.35rem 1rem;
      margin-bottom: 1.2rem;
    }

    .package-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.3rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--primary);
      margin-bottom: 0.8rem;
    }

    .package-desc {
      font-size: 0.9rem;
      line-height: 1.78;
      color: #777;
      margin-bottom: 0;
    }

    .package-price {
      display: block;
      font-family: 'Gerbil', sans-serif;
      font-size: 1.1rem;
      color: var(--accent);
      margin-top: 1.2rem;
    }

    @media (max-width: 992px) {
      .packages-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- Nearby Attractions (full list page) --- */
    .attractions-overview-section {
      padding: 5rem 0;
      background-color: var(--light);
    }

    .attractions-list-section {
      padding: 5rem 0;
      background-color: var(--light);
    }

    .attraction-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 3.5rem 0;
    }

    .attraction-row:not(:last-child) {
      border-bottom: 1px solid #e2ddd2;
    }

    .attraction-img {
      height: 440px;
      overflow: hidden;
    }

    .attraction-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .attraction-content {
      position: relative;
    }

    .attraction-content::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../images/Pictures/Pattern 1.png');
      background-repeat: no-repeat;
      background-size: 500px;
      background-position: center;
      opacity: 0.2;
      pointer-events: none;
      z-index: 0;
    }

    .attraction-content > * {
      position: relative;
      z-index: 1;
    }

    .attraction-content .label-gold {
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      margin-bottom: 1.2rem;
      display: block;
    }

    .attraction-heading {
      font-family: 'Gerbil', sans-serif;
      font-size: 2.6rem;
      line-height: 1.2;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .attraction-desc {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.85;
      max-width: 480px;
      margin-bottom: 0;
    }

    @media (max-width: 992px) {
      .attraction-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
      }

      .attraction-row .attraction-img {
        order: -1;
        height: 320px;
      }

      .attraction-heading {
        font-size: 2.1rem;
      }

      .attractions-overview-section .container,
      .attractions-list-section .container {
        padding: 0 1.5rem;
      }
    }

    /* FAQ Accordion */
    .faq-page-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .bg-overlay-1 {
      position: relative;
    }

    .bg-overlay-1::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../images/Pictures/overlay 1.png');
      background-repeat: repeat;
      background-size: 800px;
      background-position: center;
      opacity: 0.1;
      pointer-events: none;
      z-index: 0;
    }

    .bg-overlay-1>* {
      position: relative;
      z-index: 1;
    }

    .faq-group {
      max-width: 800px;
      margin: 0 auto 4rem;
    }

    .faq-group:last-child {
      margin-bottom: 0;
    }

    .faq-group-header {
      margin-bottom: 2rem;
    }

    .faq-group-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--black);
      margin-top: 0.5rem;
    }

    .faq-list {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .faq-item {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.6rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      cursor: pointer;
      text-align: left;
    }

    .faq-question-text {
      font-family: 'Gerbil', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--black);
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .faq-item.open .faq-question-text,
    .faq-question:hover .faq-question-text {
      color: var(--primary);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1.5px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background-color 0.3s ease;
    }

    .faq-icon svg {
      width: 12px;
      height: 12px;
      stroke: var(--accent);
      transition: transform 0.35s ease;
    }

    .faq-item.open .faq-icon {
      background-color: var(--accent);
    }

    .faq-item.open .faq-icon svg {
      stroke: var(--white);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.75s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 2000px;
    }

    .faq-answer-inner {
      padding: 0 0 1.8rem;
      font-family: 'Libre Baskerville', serif;
      font-size: 0.92rem;
      line-height: 1.8;
      color: #555;
    }

    .faq-answer-inner strong {
      font-family: 'Libre Baskerville', serif;
      font-weight: 700;
      color: #333;
    }

    @media (max-width: 768px) {
      .faq-question-text {
        font-size: 0.88rem;
      }
    }

    /* Gallery */
    .gallery-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .gallery-group {
      margin-bottom: 4rem;
    }

    .gallery-group:last-child {
      margin-bottom: 0;
    }

    .gallery-group .section-header-center {
      margin-bottom: 2.5rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding: 1.25rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }

    .gallery-item-caption {
      font-family: 'Gerbil', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--white);
    }

    .gallery-grid--feature {
      grid-template-columns: 1fr;
      max-width: 700px;
      margin: 0 auto;
    }

    .gallery-grid--feature .gallery-item {
      aspect-ratio: 16 / 9;
    }

    .gallery-grid--pair {
      grid-template-columns: repeat(2, 1fr);
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .gallery-section {
        padding: 3.5rem 0;
      }

      .gallery-group {
        margin-bottom: 2.5rem;
      }

      .gallery-group .section-header-center {
        margin-bottom: 1.5rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }

      .gallery-grid--feature {
        max-width: 100%;
      }

      .gallery-grid--feature .gallery-item {
        aspect-ratio: 4 / 3;
      }
    }

    @media (max-width: 480px) {
      .gallery-section {
        padding: 2.5rem 0;
      }

      .gallery-group {
        margin-bottom: 2rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
      }

      .gallery-item {
        aspect-ratio: 3 / 2;
      }

      .gallery-grid--feature .gallery-item {
        aspect-ratio: 3 / 2;
      }
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.92);
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-img {
      max-width: 85vw;
      max-height: 85vh;
      object-fit: contain;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      color: var(--white);
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
      color: var(--accent);
    }

    .lightbox-close svg,
    .lightbox-prev svg,
    .lightbox-next svg {
      fill: none;
      stroke: currentColor;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .lightbox-close {
      top: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
    }

    .lightbox-close svg {
      width: 26px;
      height: 26px;
    }

    .lightbox-prev,
    .lightbox-next {
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
      width: 32px;
      height: 32px;
    }

    .lightbox-prev {
      left: 1rem;
    }

    .lightbox-next {
      right: 1rem;
    }

    @media (max-width: 576px) {
      .rate-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
      }

      .lightbox-img {
        max-width: 95vw;
        max-height: 75vh;
      }

      .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 44px;
        height: 44px;
      }

      .lightbox-prev {
        left: 0.25rem;
      }

      .lightbox-next {
        right: 0.25rem;
      }

      .lightbox-prev,
      .lightbox-next {
        width: 44px;
        height: 44px;
      }

      .lightbox-prev svg,
      .lightbox-next svg {
        width: 22px;
        height: 22px;
      }
    }

    /* ===================== */
    /* Check Availability Page */
    /* ===================== */

    .availability-results-section {
      background-color: var(--light);
      padding: 0 0 6rem;
    }

    .availability-results-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .availability-results-header h2 {
      font-family: 'Gerbil', sans-serif;
      font-size: 2rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--black);
    }

    .availability-results-meta {
      font-family: 'Libre Baskerville', serif;
      color: #555;
    }

    .availability-room-list {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .availability-room-list.is-updating .availability-room-card {
      opacity: 0.35;
      filter: blur(1px);
      transition: opacity 0.35s ease, filter 0.35s ease;
      pointer-events: none;
    }

    .availability-room-card {
      display: grid;
      grid-template-columns: 320px 1fr 240px;
      transition: opacity 0.35s ease, filter 0.35s ease;
    }

    /* Loading spinner shown over the room list while rates are recalculated */
    .availability-loading-spinner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .availability-room-list.is-updating .availability-loading-spinner {
      opacity: 1;
    }

    .availability-loading-spinner::after {
      content: '';
      width: 40px;
      height: 40px;
      border: 3px solid rgba(28, 82, 82, 0.15);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: availability-spin 0.7s linear infinite;
    }

    @keyframes availability-spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Sold-out state */
    .availability-room-card.is-sold-out {
      opacity: 0.55;
    }

    .availability-room-status.is-sold-out {
      color: #b3453a;
    }

    .availability-reserve-btn.is-disabled {
      opacity: 0.6;
      pointer-events: none;
      cursor: not-allowed;
    }

    .availability-room-img-wrap {
      min-height: 240px;
      overflow: hidden;
    }

    .availability-room-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .availability-room-info {
      padding: 2rem;
      background-color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }

    .availability-room-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--black);
    }

    .availability-room-title a {
      color: inherit;
      text-decoration: none;
    }

    .availability-room-desc {
      font-family: 'Libre Baskerville', serif;
      color: #555;
      font-size: 0.95rem;
    }

    .availability-room-features {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .availability-room-features .feature {
      flex-direction: row;
      align-items: center;
      border-right: none;
      flex: none;
      gap: 0.5rem;
    }

    .availability-room-features .feature svg {
      stroke: var(--primary);
    }

    .availability-room-features .feature span {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      text-transform: none;
      color: #555;
    }

    .availability-room-price-box {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 0.6rem;
      background-color: var(--primary);
      color: var(--white);
    }

    .availability-room-status {
      font-family: 'Gerbil', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .availability-room-note {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.75rem;
      opacity: 0.7;
      margin-top: -0.3rem;
    }

    .availability-reserve-btn {
      margin-top: 0.5rem;
      width: 100%;
      text-align: center;
    }

    .availability-rate-breakdown {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      padding: 0.8rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .availability-rate-plan-title {
      display: block;
      font-family: 'Gerbil', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.3rem;
    }

    .availability-rate-line {
      display: flex;
      justify-content: space-between;
      font-family: 'Libre Baskerville', serif;
      font-size: 0.78rem;
      opacity: 0.9;
      padding: 0.15rem 0;
    }

    .availability-rate-line .rate-amount {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.85rem;
      color: var(--white);
    }

    @media (max-width: 992px) {
      .availability-room-card {
        grid-template-columns: 1fr;
      }

      .availability-room-img-wrap {
        height: 260px;
      }
    }

    @media (max-width: 576px) {
      .availability-results-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .availability-room-title {
        font-size: 1.2rem;
      }
    }

    /* ===================== */
    /* Homepage Section Headers - Mobile */
    /* ===================== */

    @media (max-width: 768px) {

      .about-text h2,
      .rooms-title,
      .spa-cta-heading,
      .dining-heading,
      .offers-heading,
      .amenities-heading,
      .attractions-heading,
      .attractions-section-heading,
      .journey-heading {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 576px) {

      .about-text h2,
      .rooms-title,
      .spa-cta-heading,
      .dining-heading,
      .offers-heading,
      .amenities-heading,
      .attractions-heading,
      .attractions-section-heading,
      .journey-heading {
        font-size: 1rem;
      }
    }

    /* ===================== */
    /* Card & Item Titles - Mobile */
    /* ===================== */

    @media (max-width: 768px) {
      .related-room-info .room-title,
      .offer-title,
      .package-title,
      .journey-title,
      .amenity-title,
      .faq-group-title {
        font-size: 1.1rem;
      }

      .attraction-heading {
        font-size: 1.7rem;
      }

      .findus-title {
        font-size: 2.6rem;
      }
    }

    @media (max-width: 480px) {
      .findus-title {
        font-size: 2.1rem;
      }
    }

    /* ===================== */
    /* Sustainability Vision & Mission */
    /* ===================== */

    .sustainability-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .sustainability-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .sustainability-card {
      background-color: var(--white);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .sustainability-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../images/Pictures/Pattern 1.png');
      background-repeat: no-repeat;
      background-size: 500px;
      background-position: center;
      opacity: 0.2;
      pointer-events: none;
      z-index: 0;
    }

    .sustainability-card > * {
      position: relative;
      z-index: 1;
    }

    .sustainability-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }

    @media (max-width: 768px) {
      .sustainability-title {
        font-size: 1.1rem;
      }
    }

    .sustainability-card p {
      color: #555;
      margin-bottom: 1.2rem;
    }

    .sustainability-card blockquote {
      margin: 0;
      padding-left: 1.2rem;
      border-left: 2px solid var(--accent);
    }

    .sustainability-card blockquote p {
      font-style: italic;
      color: var(--primary);
    }

    .sustainability-card blockquote p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 992px) {
      .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 576px) {
      .sustainability-section .heading-medium {
        font-size: 1rem;
        letter-spacing: 0.05em;
      }
    }

    /* ===================== */
    /* Our Team Section */
    /* ===================== */

    .team-section {
      padding: 5rem 0;
      background-color: var(--light);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 3rem;
    }

    .team-member {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-img-wrap {
      width: 100%;
      height: 350px;
      overflow: hidden;
      margin-bottom: 1.5rem;
    }

    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .team-name {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-weight: 400;
    }

    .team-designation {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      font-weight: 700;
    }

    @media (max-width: 992px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (max-width: 576px) {
      .team-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===================== */
    /* Reviews Section */
    /* ===================== */
    .reviews-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .review-card-ti {
      background-color: var(--white);
      padding: 2.5rem;
      border: 1px solid #e2ddd2;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .review-card-ti:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .review-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1rem;
    }

    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .reviewer-avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Gerbil', sans-serif;
      font-size: 1.2rem;
    }

    .reviewer-details {
      display: flex;
      flex-direction: column;
    }

    .reviewer-name {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.1rem;
      color: var(--black);
    }

    .review-date {
      font-size: 0.8rem;
      color: #888;
    }

    .review-stars-wrap {
      margin-bottom: 1rem;
      color: #fbbc04; /* Google yellow stars */
      font-size: 1.2rem;
      letter-spacing: 2px;
    }

    .review-text {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.7;
      font-style: italic;
    }

    /* ===================== */
    /* Review Platforms CTA */
    /* ===================== */
    .review-cta-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .review-cta-section .section-header-center p {
      max-width: 600px;
      margin: 0.8rem auto 0;
      color: #555;
    }

    .review-cta-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 800px;
      margin: 3rem auto 0;
    }

    .review-cta-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.9rem;
      background-color: var(--light);
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 3rem 2rem;
    }

    .review-cta-title {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.1rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--black);
    }

    .review-cta-desc {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 0.3rem;
    }

    @media (max-width: 576px) {
      .review-cta-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
      }
    }

    /* ===================== */
    /* Blog Section */
    /* ===================== */
    .blog-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 3rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-grid .offer-card {
      height: 430px;
      min-width: 0;
    }

    @media (max-width: 992px) {
      .reviews-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (max-width: 768px) {
      .reviews-grid, .blog-grid {
        grid-template-columns: 1fr;
      }

      .blog-grid .offer-card {
        height: 380px;
      }
    }

    /* ===================== */
    /* Blog Post Article */
    /* ===================== */
    .blog-post-section {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .blog-post-container {
      max-width: 760px;
      margin: 0 auto;
    }

    .blog-post-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
      color: var(--primary);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      text-decoration: none;
    }

    .blog-post-back svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .blog-post-back:hover {
      color: var(--accent);
    }

    .blog-post-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
      color: #888;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .blog-post-body p {
      color: #444;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      line-height: 1.85;
    }

    .blog-post-body h2 {
      font-family: 'Gerbil', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--black);
      margin: 2.5rem 0 1.2rem;
      line-height: 1.3;
    }

    .blog-post-body p:last-child {
      margin-bottom: 0;
    }

    .blog-post-quote {
      border-left: 3px solid var(--accent);
      padding: 0.3rem 0 0.3rem 1.5rem;
      margin: 2.5rem 0;
      font-family: 'Libre Baskerville', serif;
      font-style: italic;
      font-size: 1.3rem;
      color: var(--primary);
      line-height: 1.6;
    }

    .blog-post-image {
      width: 100%;
      height: 380px;
      object-fit: cover;
      margin: 2.5rem 0;
    }

    @media (max-width: 768px) {
      .blog-post-section {
        padding: 3.5rem 0;
      }

      .blog-post-body p {
        font-size: 1rem;
        line-height: 1.75;
      }

      .blog-post-quote {
        font-size: 1.1rem;
      }

      .blog-post-image {
        height: 240px;
        margin: 2rem 0;
      }
    }



