/* GLOBAL DESIGN SYSTEM*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap");
:root {
  /* Colors */
  --color-primary: #17212b;
  --color-primary-light: #22313d;
  --color-gold: #c6a15b;
  --color-gold-light: #dfc98f;
  --color-gold-dark: #9f7a38;
  --color-ivory: #f8f5ef;
  --color-white: #ffffff;
  --color-text: #30343a;
  --color-text-light: #73777c;
  --color-border: #e4dfd5;

  /* Fonts */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;

  /* Animation */
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s ease;
  --transition: 0.5s var(--ease-luxury);
  --transition-slow: 0.8s var(--ease-luxury);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--color-ivory);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-primary);
}
h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}
h4 {
  font-size: 2rem;
}
p {
  margin-top: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-gold {
  color: var(--color-gold) !important;
}
.text-white {
  color: var(--color-white) !important;
}
.text-muted {
  color: var(--color-text-light) !important;
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-ivory {
  background-color: var(--color-ivory) !important;
}
.bg-white {
  background-color: var(--color-white) !important;
}
.bg-gold {
  background-color: var(--color-gold) !important;
}
.gold-line {
  width: 55px;
  height: 1px;
  margin: 20px 0;
  background-color: var(--color-gold);
}
.gold-line-center {
  width: 55px;
  height: 1px;
  margin: 20px auto;
  background-color: var(--color-gold);
}
.luxury-title {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-primary);
}
.luxury-subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-gold);
}
.anim {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-luxury),
    transform 0.9s var(--ease-luxury);
}
.fade-up {
  transform: translateY(40px);
}
.fade-down {
  transform: translateY(-40px);
}
.fade-left {
  transform: translateX(-50px);
}
.fade-right {
  transform: translateX(50px);
}
.zoom-in {
  transform: scale(0.92);
}
.fade {
  transform: none;
}
.anim.show {
  opacity: 1;
  transform: translate(0) scale(1);
}
.fade-in {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-up {
  animation-name: fadeUp;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-down {
  animation-name: fadeDown;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-left {
  animation-name: fadeLeft;
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  animation-name: fadeRight;
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.scale-in {
  animation-name: scaleIn;
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.blur-in {
  animation-name: blurIn;
}
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.hero-reveal {
  animation-name: heroReveal;
  animation-duration: 1.2s;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(45px);
    letter-spacing: 0.12em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}
.stagger > * {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) forwards;
}
.stagger > *:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger > *:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger > *:nth-child(3) {
  animation-delay: 0.3s;
}
.stagger > *:nth-child(4) {
  animation-delay: 0.4s;
}
.stagger > *:nth-child(5) {
  animation-delay: 0.5s;
}
.stagger > *:nth-child(6) {
  animation-delay: 0.6s;
}
.hover-lift {
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(23, 33, 43, 0.14);
}
.hover-zoom {
  overflow: hidden;
}
.hover-zoom img {
  transition: transform 0.9s var(--ease-luxury);
}
.hover-zoom:hover img {
  transform: scale(1.06);
}
.hover-line {
  position: relative;
}
.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-luxury);
}
.hover-line:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.float {
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.gold-shimmer {
  color: transparent;
  background: linear-gradient(
    110deg,
    var(--color-gold-dark) 20%,
    var(--color-gold-light) 40%,
    #fff1c7 50%,
    var(--color-gold) 60%,
    var(--color-gold-dark) 80%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
  to {
    background-position: 200% center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .anim,
  .stagger > *,
  .float,
  .gold-shimmer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .hover-lift,
  .hover-zoom img,
  .hover-line::after {
    transition: none !important;
  }
}

/* NAVBAR */
.navbar {
  min-height: 82px;
  padding: 10px 0;
  background: rgba(23, 33, 43, 0.96) !important;
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 40px;
}
.navbar-logo {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: contain;
  transition:
    transform 0.4s var(--ease-luxury),
    opacity 0.3s ease;
}
.navbar-brand:hover .navbar-logo {
  transform: scale(1.03);
  opacity: 0.9;
}
.navbar-nav {
  gap: 6px;
}
.nav-item {
  display: flex;
  align-items: center;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  background: transparent !important;
  border: 0;
  transition:
    color 0.3s ease,
    letter-spacing 0.4s var(--ease-luxury);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  width: auto;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-luxury);
}
.nav-link:hover {
  color: var(--color-gold-light) !important;
  letter-spacing: 0.16em;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link.active {
  color: var(--color-gold-light) !important;
}
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.language-nav {
  margin-left: 8px;
}
.language-toggle {
  cursor: pointer;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.88) !important;
}
.language-toggle::after {
  margin-left: 8px;
  border-top-color: var(--color-gold);
  transform: none;
}
.language-nav .dropdown-menu {
  min-width: 190px;
  margin-top: 15px !important;
  padding: 8px;
  background-color: var(--color-primary);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.language-nav .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    padding-left 0.3s var(--ease-luxury);
}
.language-nav .dropdown-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.language-nav .dropdown-item:hover,
.language-nav .dropdown-item:focus {
  color: var(--color-gold-light);
  background-color: var(--color-primary-light);
  padding-left: 20px;
}
.booking-nav {
  margin-left: 18px;
}
.book-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  padding: 12px 22px;
  color: var(--color-white);
  background-color: transparent;
  border: 1px solid var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.4s ease,
    transform 0.4s var(--ease-luxury),
    box-shadow 0.4s ease;
}
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-luxury);
  z-index: -1;
}
.book-btn:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198, 161, 91, 0.2);
}
.book-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar-toggler {
  padding: 8px 10px;
  border: 1px solid rgba(198, 161, 91, 0.55);
  border-radius: 0;
  box-shadow: none !important;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.12) !important;
}
.navbar-toggler-icon {
  width: 22px;
  height: 18px;
  background-image: none !important;
  position: relative;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}
.navbar-toggler-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
}
.luxury-navbar {
  background: transparent !important;
  border-bottom-color: transparent;
  box-shadow: none;
  transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease,
    padding 0.5s var(--ease-luxury);
}
.luxury-navbar.scrolled {
  background: rgba(23, 33, 43, 0.97) !important;
  border-bottom-color: rgba(198, 161, 91, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 5px;
  padding-bottom: 5px;
}
.luxury-navbar.scrolled .navbar-logo {
  width: 100px;
  height: 75px;
}
.luxury-navbar.scrolled .nav-link {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.navbar-logo {
  transition:
    width 0.5s var(--ease-luxury),
    height 0.5s var(--ease-luxury),
    transform 0.4s ease;
}
@media (max-width: 991.98px) {
  .navbar {
    padding: 8px 0;
  }
  .navbar-logo {
    width: 100px;
    height: 72px;
  }
  .navbar-collapse {
    margin-top: 10px;
    padding: 15px 0 20px;
    border-top: 1px solid rgba(198, 161, 91, 0.15);
  }
  .navbar-nav {
    gap: 0;
    align-items: stretch !important;
  }
  .nav-item {
    display: block;
  }
  .nav-link {
    padding: 12px 5px !important;
    font-size: 12px;
  }
  .nav-link::after {
    left: 5px;
    right: auto;
    width: 35px;
    bottom: 5px;
  }
  .language-nav {
    margin-left: 0;
  }
  .language-toggle {
    width: 100%;
    justify-content: flex-start;
  }
  .language-nav .dropdown-menu {
    margin-top: 5px !important;
    border-left: 1px solid rgba(198, 161, 91, 0.3);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    box-shadow: none;
  }
  .booking-nav {
    margin: 15px 0 0;
  }
  .book-btn {
    width: 100%;
    min-height: 48px;
  }
}
@media (max-width: 576px) {
  .navbar {
    min-height: 68px;
  }
  .navbar-logo {
    width: 90px;
    height: 65px;
  }
}

/*  LUXURY HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  margin: 0 !important;
}
.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide-1 {
  background-image:
    url("image/carousel-1.JPG");
}
.hero-slide-2 {
  background-image:
    url("image/carousel-2.JPG");
}
.hero-slide-3 {
  background-image:
    url("image/carousel-3.JPG");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 16, 21, 0.78) 0%,
      rgba(10, 16, 21, 0.52) 45%,
      rgba(10, 16, 21, 0.28) 100%
    );
  z-index: 1;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(198, 161, 91, 0.10),
      transparent 40%
    );
  pointer-events: none;
}
.hero-slide .container {
  position: relative;
  height: 100%;
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(700px, 90%);
  transform: translateY(-42%);
  text-align: left;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--color-gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.hero-eyebrow::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
}
.hero-title {
  margin: 0;
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-size: clamp(
    3.5rem,
    7vw,
    6.8rem
  );
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.hero-title span {
  display: block;
  color: var(--color-gold-light);
}
.hero-description {
  max-width: 520px;
  margin: 25px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.hero-action {
  display: flex;
  align-items: center;
}
.hero-control {
  width: 90px;
  opacity: 1;
  transition:
    opacity 0.3s ease;
}
.hero-control:hover {
  opacity: 1;
}
.hero-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    border-color 0.4s ease,
    background-color 0.4s ease,
    transform 0.4s var(--ease-luxury);
}
.hero-arrow span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--color-gold-light);
  border-right: 1px solid var(--color-gold-light);
}
.hero-arrow-prev span {
  transform: rotate(-135deg);
  margin-left: 5px;
}
.hero-arrow-next span {
  transform: rotate(45deg);
  margin-right: 5px;
}
.hero-control:hover .hero-arrow {
  background-color: rgba(198, 161, 91, 0.15);
  border-color: var(--color-gold);
  transform: scale(1.05);
}
.hero-indicators {
  position: absolute;
  right: 8%;
  bottom: 45px;
  left: auto;
  width: auto;
  margin: 0;
  justify-content: flex-end;
  z-index: 5;
}
.hero-indicators button {
  width: 35px;
  height: 2px;
  margin: 0 5px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition:
    width 0.5s var(--ease-luxury),
    background-color 0.4s ease;
}
.hero-indicators button.active {
  width: 60px;
  background-color: var(--color-gold);
}
.hero-slide {
  transform: scale(1);
}
.carousel-item.active {
  animation: heroImageZoom 7s ease-out both;
}
@keyframes heroImageZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}
.carousel-item.active .hero-eyebrow {
  animation-name: fadeUp;
}
.carousel-item.active .hero-title {
  animation-name: heroReveal;
}
.carousel-item.active .hero-description {
  animation-name: fadeUp;
}
.carousel-item.active .hero-action {
  animation-name: fadeUp;
}
@media (max-width: 991.98px) {
  .hero-carousel,
  .hero-slide {
    min-height: 650px;
    height: 75vh;
  }
  .hero-content {
    left: 5%;
    width: 85%;
    transform: translateY(-40%);
  }
  .hero-title {
    font-size: clamp(
      3.2rem,
      11vw,
      5rem
    );
  }
  .hero-description {
    max-width: 450px;
    font-size: 15px;
  }
  .hero-control {
    width: 65px;
  }
  .hero-arrow {
    width: 42px;
    height: 42px;
  }
  .hero-indicators {
    right: 5%;
    bottom: 30px;
  }
}
@media (max-width: 576px) {
  .hero-carousel,
  .hero-slide {
    height: 65vh;
    min-height: 600px;
  }
  .hero-slide {
    background-position: 60% center;
  }
  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(10, 16, 21, 0.78),
        rgba(10, 16, 21, 0.48)
      );
  }
  .hero-content {
    left: 7%;
    width: 86%;
    transform: translateY(-35%);
  }
  .hero-eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
  .hero-eyebrow::before {
    width: 30px;
  }
  .hero-title {
    font-size: 3.4rem;
    line-height: 0.95;
  }
  .hero-description {
    margin: 20px 0 25px;
    font-size: 14px;
  }
  .hero-control {
    display: none;
  }
  .hero-indicators {
    right: 7%;
    bottom: 25px;
  }
  .hero-indicators button {
    width: 22px;
  }
  .hero-indicators button.active {
    width: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item.active {
    animation: none;
  }
  .hero-arrow,
  .hero-indicators button {
    transition: none;
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 110px 0;
  background-color: var(--color-white);
}
.book-btn1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  padding: 12px 22px;
  color: var(--color-gold);
  background-color: transparent;
  border: 1px solid var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.4s ease,
    transform 0.4s var(--ease-luxury),
    box-shadow 0.4s ease;
}
.book-btn1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-luxury);
  z-index: -1;
}
.book-btn1:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198, 161, 91, 0.2);
}
.book-btn1:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.about-image {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(198, 161, 91, 0.55);
  z-index: 2;
  pointer-events: none;
}
.about-image img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}
.about-content {
  max-width: 650px;
  padding-left: 35px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.section-eyebrow::before {
  content: "";
  width: 45px;
  height: 1px;
  background-color: var(--color-gold);
}
.section-title {
  margin-bottom: 25px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}
.section-title span {
  display: block;
  color: var(--color-gold);
}
.about-text {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}
.about-action {
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 80px 0;
  }
  .about-content {
    max-width: 100%;
    padding-left: 0;
  }
  .about-image img {
    min-height: 450px;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 65px 0;
  }
  .about-image img {
    min-height: 350px;
  }
  .about-image::before {
    inset: 10px;
  }
  .section-title {
    font-size: 3rem;
  }
  .about-text {
    font-size: 14px;
  }
}

/* FACILITIES SECTION */
.facilities-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-ivory);
  overflow: hidden;
}
.section-heading {
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-heading .section-eyebrow {
  justify-content: center;
}
.section-heading .section-title {
  margin-bottom: 20px;
}
.section-intro {
  max-width: 580px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
.facility-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding: 45px 35px 35px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition:
    transform 0.6s var(--ease-luxury),
    border-color 0.5s ease,
    box-shadow 0.6s var(--ease-luxury);
}
.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.6s var(--ease-luxury);
}
.facility-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 45px;
  background-color: var(--color-gold);
  transition: height 0.6s var(--ease-luxury);
}
.facility-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 161, 91, 0.45);
  box-shadow: 0 25px 50px rgba(23, 33, 43, 0.10);
}
.facility-card:hover::before {
  width: 100px;
}
.facility-card:hover::after {
  height: 100px;
}
.facility-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin-bottom: 30px;
  color: var(--color-gold);
  border: 1px solid rgba(198, 161, 91, 0.35);
  font-size: 25px;
  transition:
    color 0.4s ease,
    background-color 0.4s ease,
    transform 0.5s var(--ease-luxury);
}
.facility-card:hover .facility-icon {
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: rotate(-3deg);
}
.facility-content {
  position: relative;
  z-index: 2;
}
.facility-content h3 {
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}
.facility-content p {
  margin: 0;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
}
.facility-number {
  position: absolute;
  right: 25px;
  bottom: 20px;
  color: rgba(198, 161, 91, 0.22);
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  transition:
    color 0.4s ease,
    transform 0.5s var(--ease-luxury);
}
.facility-card:hover .facility-number {
  color: rgba(198, 161, 91, 0.38);
  transform: translateY(-5px);
}
@media (max-width: 991.98px) {
  .facilities-section {
    padding: 85px 0;
  }
  .section-heading {
    margin-bottom: 45px;
  }
  .facility-card {
    min-height: 330px;
    padding: 35px 30px;
  }
  .facility-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .facilities-section {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-intro {
    font-size: 14px;
  }
  .facility-card {
    min-height: 320px;
    padding: 32px 28px;
  }
  .facility-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    font-size: 23px;
  }
  .facility-content h3 {
    font-size: 25px;
  }
  .facility-content p {
    font-size: 13px;
    line-height: 1.75;
  }
  .facility-number {
    right: 20px;
    bottom: 18px;
    font-size: 48px;
  }
}
@media (max-width: 575.98px) {
  .facilities-section {
    padding: 60px 0;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .facility-card {
    min-height: 300px;
    padding: 30px 24px;
  }
  .facility-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    font-size: 21px;
  }
  .facility-content h3 {
    font-size: 23px;
  }
  .facility-content p {
    font-size: 13px;
    line-height: 1.7;
  }
  .facility-number {
    right: 18px;
    bottom: 15px;
    font-size: 42px;
  }

}
@media (max-width: 400px) {
  .facility-card {
    min-height: 290px;
    padding: 27px 21px;
  }
  .facility-content h3 {
    font-size: 21px;
  }
  .facility-icon {
    width: 52px;
    height: 52px;
    font-size: 19px;
  }
}

/* ACCOMMODATION SECTION */
.accommodation-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-white);
  overflow: hidden;
}
.accommodation-header {
  margin-bottom: 55px;
}
.accommodation-header .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.accommodation-header .section-title {
  margin-bottom: 0;
}
.header-info {
  max-width: 720px;
  margin: 0 0 0 auto;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.9;
}
.accommodation-carousel {
  position: relative;
  padding: 5px 0;
}
.accommodation-carousel .owl-stage {
  display: flex;
}
.accommodation-carousel .owl-item {
  display: flex;
}
.accommodation-carousel .room-item {
  display: flex;
  width: 100%;
  padding: 0 2px;
}
.accommodation-carousel .owl-dots {
  display: none;
}
.room-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-luxury),
    box-shadow 0.5s var(--ease-luxury),
    border-color 0.5s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 161, 91, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}
.room-image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background-color: #eee;
}
.room-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.room-card:hover .room-image img {
  transform: scale(1.06);
}
.room-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 35%,
      rgba(0, 0, 0, 0.45) 100%
    );

  pointer-events: none;
}
.room-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  z-index: 2;
}
.room-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 24px;
}
.room-title {
  min-height: 58px;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}
.room-line {
  width: 35px;
  height: 1px;
  margin: 17px 0 18px;
  background-color: var(--color-gold);
}
.room-description {
  margin: 0 0 25px;
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.8;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.room-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
}
.room-feature i {
  color: var(--color-gold);
  font-size: 13px;
}
.room-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 105px;
  padding: 10px 17px;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal);
}
.room-button:hover {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}
.accommodation-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}
.accommodation-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.accommodation-prev,
.accommodation-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  padding: 0;

  color: var(--color-primary);
  background-color: transparent;

  border: 1px solid rgba(0, 0, 0, 0.15);

  cursor: pointer;

  transition:
    color var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal);
}
.accommodation-prev:hover,
.accommodation-next:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.accommodation-prev i,
.accommodation-next i {
  font-size: 12px;
}
.accommodation-action {
  text-align: right;
}
.accommodation-action .booking-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.accommodation-carousel .owl-nav {
  display: none;
}
@media (max-width: 1199.98px) {
  .accommodation-section {
    padding: 90px 0;
  }
  .accommodation-header {
    margin-bottom: 45px;
  }
  .room-image {
    height: 260px;
  }
  .room-content {
    padding: 25px 24px 22px;
  }
  .room-title {
    font-size: 21px;
  }
}
@media (max-width: 991.98px) {
  .accommodation-section {
    padding: 80px 0;
  }
  .accommodation-header {
    margin-bottom: 40px;
  }
  .header-info {
    max-width: none;
    margin: 0;
  }
  .room-image {
    height: 270px;
  }
  .room-content {
    padding: 25px;
  }
  .room-title {
    min-height: auto;
    font-size: 21px;
  }
  .accommodation-bottom {
    margin-top: 35px;
  }
}
@media (max-width: 767.98px) {
  .accommodation-section {
    padding: 65px 0;
  }
  .accommodation-header {
    margin-bottom: 35px;
  }
  .header-info {
    font-size: 14px;
    line-height: 1.8;
  }
  .accommodation-carousel {
    padding: 0;
  }
  .accommodation-carousel .room-item {
    padding: 0;
  }
  .room-image {
    height: 280px;
  }
  .room-content {
    padding: 24px 22px 20px;
  }
  .room-title {
    font-size: 22px;
  }
  .room-description {
    font-size: 13px;
  }
  .accommodation-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .accommodation-nav {
    order: 2;
  }
  .accommodation-action {
    order: 1;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .accommodation-section {
    padding: 55px 0;
  }
  .accommodation-header {
    margin-bottom: 30px;
  }
  .room-image {
    height: 245px;
  }
  .room-label {
    top: 15px;
    left: 15px;
    padding: 7px 11px;
  }
  .room-content {
    padding: 22px 20px 20px;
  }
  .room-title {
    font-size: 20px;
    line-height: 1.4;
  }
  .room-description {
    margin-bottom: 20px;
    font-size: 12.5px;
    line-height: 1.75;
  }
  .room-footer {
    gap: 10px;
  }
  .room-button {
    min-width: 95px;
    padding: 10px 13px;
    font-size: 9px;
  }
  .room-feature {
    font-size: 11px;
  }
  .accommodation-prev,
  .accommodation-next {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 380px) {
  .room-image {
    height: 220px;
  }
  .room-content {
    padding: 20px 17px;
  }
  .room-title {
    font-size: 19px;
  }
  .room-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .room-button {
    width: 100%;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-ivory);
  overflow: hidden;
}
.testimonials-section .section-heading {
  max-width: 700px;
  margin: 0 auto 60px;
}
.testimonials-section .section-eyebrow {
  justify-content: center;
}
.testimonials-section .section-title {
  margin-bottom: 20px;
}
.testimonials-carousel {
  position: relative;
  padding: 10px 5px 50px;
}
.testimonials-carousel .owl-stage {
  display: flex;
}
.testimonials-carousel .owl-item {
  display: flex;
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 390px;
  padding: 45px 45px 35px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition:
    transform 0.6s var(--ease-luxury),
    box-shadow 0.6s var(--ease-luxury),
    border-color 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: 0 25px 55px rgba(23, 33, 43, 0.10);
}
.testimonial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 30px;
  color: var(--color-gold);
  border: 1px solid rgba(198, 161, 91, 0.4);
  font-size: 20px;
  transition:
    color 0.4s ease,
    background-color 0.4s ease,
    transform 0.5s var(--ease-luxury);
}
.testimonial-card:hover .testimonial-quote {
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: rotate(-3deg);
}
.testimonial-content {
  flex: 1;
  display: flex;
  align-items: center;
}
.testimonial-text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}
.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.testimonial-guest h3 {
  margin: 0 0 5px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
}
.testimonial-guest span {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.testimonial-mark {
  color: rgba(198, 161, 91, 0.25);
  font-size: 35px;
  line-height: 1;
  transition:
    color 0.4s ease,
    transform 0.5s var(--ease-luxury);
}
.testimonial-card:hover .testimonial-mark {
  color: rgba(198, 161, 91, 0.55);
  transform: translateX(-5px);
}
.testimonials-carousel .owl-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0;
  color: var(--color-primary) !important;
  background-color: transparent !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 0;
  font-size: 18px !important;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.testimonials-carousel .owl-nav button:hover {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.testimonials-carousel .owl-dots {
  margin-top: 25px;
}
.testimonials-carousel .owl-dot span {
  width: 25px !important;
  height: 2px !important;
  margin: 5px !important;
  background-color: #d4d0c8 !important;
  border-radius: 0 !important;
  transition:
    width 0.4s var(--ease-luxury),
    background-color 0.3s ease;
}
.testimonials-carousel .owl-dot.active span {
  width: 45px !important;
  background-color: var(--color-gold) !important;
}
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 85px 0;
  }
  .testimonials-section .section-heading {
    margin-bottom: 45px;
  }
  .testimonial-card {
    min-height: 370px;
    padding: 35px;
  }
  .testimonial-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .testimonials-section {
    padding: 70px 0;
  }
  .testimonials-section .section-heading {
    margin-bottom: 35px;
  }
  .testimonial-card {
    min-height: 390px;
    padding: 30px 25px;
  }
  .testimonial-quote {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    font-size: 18px;
  }
  .testimonial-text {
    font-size: 17px;
    line-height: 1.6;
  }
  .testimonial-guest h3 {
    font-size: 19px;
  }
}

/* BOOKING CTA */
#booknow {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background-image: url("image/booking.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.booking-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 23, 30, 0.82) 0%,
      rgba(15, 23, 30, 0.65) 45%,
      rgba(15, 23, 30, 0.35) 100%
    );
  z-index: 1;
}
.booking-cta .container {
  position: relative;
  z-index: 2;
}
.booking-cta-content {
  max-width: 800px;
  margin-left: auto;
  text-align: right;
}
.booking-eyebrow {
  justify-content: flex-end;
  margin-bottom: 25px;
  color: var(--color-gold);
}
.booking-eyebrow::before {
  display: none;
}
.booking-eyebrow::after {
  content: "";
  width: 45px;
  height: 1px;
  background-color: var(--color-gold);
}
.booking-title {
  margin: 0 0 25px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.booking-title span {
  display: block;
  color: var(--color-gold);
}
.booking-text {
  max-width: 600px;
  margin: 0 0 35px auto;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}
.booking-action {
  display: flex;
  justify-content: flex-end;
}
.booking-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 190px;
  padding: 18px 28px;
  color: var(--color-white);
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  overflow: hidden;
  transition:
    color 0.4s ease,
    background-color 0.4s ease,
    border-color 0.4s ease;
}
.booking-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  transform: translateX(-101%);
  transition:
    transform 0.5s var(--ease-luxury);
}
.booking-button span,
.booking-button i {
  position: relative;
  z-index: 2;
}
.booking-button i {
  font-size: 13px;
  transition: transform 0.4s var(--ease-luxury);
}
.booking-button:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.booking-button:hover::before {
  transform: translateX(0);
}
.booking-button:hover i {
  transform: translateX(5px);
}
.booking-cta-content::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin: 45px 0 0 auto;
  background-color: rgba(198, 161, 91, 0.6);
}
@media (max-width: 991.98px) {
  #booknow {
    min-height: 600px;
    padding: 100px 0;
    background-attachment: scroll;
  }
  .booking-cta-content {
    max-width: 700px;
  }
  .booking-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
  }
}
@media (max-width: 767.98px) {
  #booknow {
    min-height: 580px;
    padding: 80px 0;
  }
  .booking-cta-content {
    margin-left: 0;
    text-align: left;
  }
  .booking-eyebrow {
    justify-content: flex-start;
  }
  .booking-title {
    font-size: 3.2rem;
  }
  .booking-text {
    margin-left: 0;
  }
  .booking-action {
    justify-content: flex-start;
  }
  .booking-cta-content::after {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  #booknow {
    min-height: 550px;
    padding: 70px 0;
  }
  .booking-title {
    font-size: 2.8rem;
  }
  .booking-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .booking-button {
    width: 100%;
    min-width: 0;
  }
}

/*  GALLERY SECTION */
.gallery-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-ivory);
  overflow: hidden;
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}
.gallery-heading {
  max-width: 700px;
}
.gallery-heading .section-eyebrow {
  margin-bottom: 18px;
}
.gallery-heading .section-title {
  margin-bottom: 20px;
}
.gallery-intro {
  max-width: 550px;
  margin: 0;
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
.gallery-action {
  flex-shrink: 0;
  padding-bottom: 5px;
}
.gallery-action .button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.gallery-action .button i {
  font-size: 12px;
  transition: transform 0.4s var(--ease-luxury);
}
.gallery-action .button:hover i {
  transform: translateX(5px);
}
.gallery-carousel {
  position: relative;
  padding: 10px 5px 55px;
}
.gallery-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.gallery-carousel .owl-item {
  display: flex;
  padding: 0 9px;
}
.gallery-carousel .owl-stage-outer {
  margin: 0 -9px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background-color: var(--color-primary);
  text-decoration: none;
  isolation: isolate;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 1s var(--ease-luxury),
    opacity 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
  opacity: 0.9;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(23, 33, 43, 0.50) 0%,
      rgba(23, 33, 43, 0.15) 35%,
      transparent 65%
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-luxury);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(223, 201, 143, 0.75);
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.6s var(--ease-luxury),
    transform 0.6s var(--ease-luxury);
}
.gallery-item:hover::before {
  opacity: 1;
  transform: scale(1);
}
.gallery-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 20px 5px 0;
}
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0;
  padding: 0 !important;
  color: var(--color-primary) !important;
  background-color: transparent !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 0;
  font-size: 15px !important;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s var(--ease-luxury);
}
.gallery-carousel .owl-nav button.owl-prev:hover,
.gallery-carousel .owl-nav button.owl-next:hover {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-2px);
}
.gallery-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 25px;
}
.gallery-carousel .owl-dot {
  margin: 0;
  padding: 5px !important;
  background: transparent !important;
  border: 0 !important;
}
.gallery-carousel .owl-dot span {
  display: block;
  width: 25px !important;
  height: 2px !important;
  margin: 0 !important;
  background-color: #d4d0c8 !important;
  border-radius: 0 !important;
  transition:
    width 0.4s var(--ease-luxury),
    background-color 0.3s ease;
}
.gallery-carousel .owl-dot.active span {
  width: 45px !important;
  background-color: var(--color-gold) !important;
}
@media (max-width: 991.98px) {
  .gallery-section {
    padding: 85px 0;
  }
  .gallery-header {
    align-items: flex-start;
    margin-bottom: 45px;
  }
  .gallery-carousel {
    padding: 10px 5px 50px;
  }
  .gallery-carousel .owl-item {
    padding: 0 7px;
  }
  .gallery-carousel .owl-stage-outer {
    margin: 0 -7px;
  }
  .gallery-carousel .gallery-item {
    height: 380px;
  }
  .gallery-carousel .owl-nav {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .gallery-section {
    padding: 70px 0;
  }
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
  }
  .gallery-action {
    padding-bottom: 0;
  }
  .gallery-carousel {
    padding: 5px 0 45px;
  }
  .gallery-carousel .owl-item {
    padding: 0 6px;
  }
  .gallery-carousel .owl-stage-outer {
    margin: 0 -6px;
  }
  .gallery-carousel .gallery-item {
    height: 350px;
  }
  .gallery-carousel .owl-nav {
    justify-content: center;
    margin-top: 20px;
  }
  .gallery-carousel .owl-dots {
    margin-top: 20px;
  }
  .gallery-intro {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .gallery-section {
    padding: 65px 0;
  }
  .gallery-header {
    gap: 25px;
    margin-bottom: 35px;
  }
  .gallery-carousel {
    padding: 5px 0 40px;
  }
  .gallery-carousel .owl-item {
    padding: 0 5px;
  }
  .gallery-carousel .owl-stage-outer {
    margin: 0 -5px;
  }
  .gallery-carousel .gallery-item {
    height: 260px;
  }
  .gallery-item::before {
    inset: 8px;
  }
  .gallery-carousel .owl-nav {
    gap: 8px;
    margin-top: 18px;
  }
  .gallery-carousel .owl-nav button.owl-prev,
  .gallery-carousel .owl-nav button.owl-next {
    width: 42px;
    height: 42px;
  }
  .gallery-carousel .owl-dots {
    margin-top: 18px;
  }
  .gallery-carousel .owl-dot span {
    width: 20px !important;
  }
  .gallery-carousel .owl-dot.active span {
    width: 38px !important;
  }
}
@media (max-width: 400px) {
  .gallery-carousel .gallery-item {
    height: 240px;
  }
  .gallery-carousel .owl-item {
    padding: 0 4px;
  }
  .gallery-carousel .owl-stage-outer {
    margin: 0 -4px;
  }
}


/* FOOTER */
.site-footer {
  position: relative;
  padding: 70px 10px 15px;
  color: rgba(255, 255, 255, 0.75);
  background-color: var(--color-primary);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
  opacity: 0.7;
}
.footer-main {
  padding-bottom: 20px;
}
.footer-brand {
  min-width: 0;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 0;
}
.footer-logo img {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}
.footer-description {
  max-width: 360px;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.9;
}
.footer-booking-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 13px 22px;
  color: var(--color-primary);
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition:
    color var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal);
}
.footer-booking-button i {
  transition: transform 0.4s var(--ease-luxury);
}
.footer-booking-button:hover {
  color: var(--color-white);
  background-color: transparent;
  border-color: var(--color-gold);
}
.footer-booking-button:hover i {
  transform: translateX(5px);
}
.footer-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}
.footer-heading::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 12px;
  background-color: var(--color-gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition:
    color var(--transition-fast),
    transform var(--transition-normal);
}
.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-normal);
}
.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}
.footer-links a:hover::before {
  width: 100%;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-contact a i {
  flex-shrink: 0;
  width: 18px;
  margin-top: 5px;
  color: var(--color-gold);
  font-size: 13px;
  text-align: center;
}
.footer-contact a:hover {
  color: var(--color-gold-light);
}
.footer-map {
  position: relative;
  height: 250px;
  overflow: hidden;
  border: none;
}
.footer-map::after {
  display: none;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  opacity: 0.8;
  transition:
    filter 0.6s ease,
    opacity 0.6s ease;
}
.footer-map:hover iframe {
  filter: grayscale(20%) contrast(95%);
  opacity: 1;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.6;
}
.footer-powered {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}
.footer-powered img {
  display: block;
  width: 100px;
  height: auto;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}
.footer-powered img:hover {
  opacity: 1;
}
.footer-powered a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-powered a:hover {
  color: var(--color-white);
}
.footer-booking-partner {
  margin-left: 10px;
}
@media (max-width: 991.98px) {
  .site-footer {
    padding: 60px 0 20px;
  }
  .footer-description {
    max-width: 420px;
  }
  .footer-heading {
    margin-bottom: 22px;
    font-size: 20px;
  }
  .footer-heading::after {
    margin-top: 10px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-contact {
    gap: 16px;
  }
  .footer-contact a {
    font-size: 13px;
  }
  .footer-map {
    height: 250px;
  }
  .footer-bottom {
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .site-footer {
    padding: 55px 0 20px;
  }
  .footer-main {
    padding-bottom: 35px;
  }
  .footer-logo img {
    width: 140px;
  }
  .footer-description {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.8;
  }
  .footer-booking-button {
    padding: 12px 19px;
    gap: 13px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  .footer-heading {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .footer-heading::after {
    width: 28px;
    margin-top: 9px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-contact {
    gap: 15px;
  }
  .footer-contact a {
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
  }
  .footer-contact a i {
    width: 17px;
    margin-top: 4px;
  }
  .footer-map {
    height: 230px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 18px;
  }
  .footer-bottom p {
    font-size: 11px;
  }
  .footer-powered {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 10px;
  }
  .footer-powered img {
    width: 90px;
  }
  .footer-booking-partner {
    margin-left: 5px;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 48px 0 18px;
  }
  .footer-main {
    padding-bottom: 30px;
  }
  .footer-logo img {
    width: 130px;
  }
  .footer-description {
    font-size: 12.5px;
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .footer-booking-button {
    padding: 11px 17px;
    gap: 12px;
    font-size: 9px;
  }
  .footer-heading {
    margin-bottom: 18px;
    font-size: 19px;
  }
  .footer-links {
    gap: 9px;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-contact {
    gap: 13px;
  }
  .footer-contact a {
    font-size: 12.5px;
  }
  .footer-map {
    height: 210px;
  }
  .footer-bottom {
    gap: 14px;
  }
  .footer-bottom p {
    font-size: 10.5px;
  }
  .footer-powered {
    flex-direction: row;
    align-items: center;
    gap: 7px;
    font-size: 9.5px;
  }
  .footer-powered img {
    width: 85px;
  }
  .footer-booking-partner {
    margin-left: 3px;
  }
}
@media (max-width: 360px) {
  .site-footer {
    padding-top: 42px;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-description {
    font-size: 12px;
  }
  .footer-booking-button {
    padding: 10px 15px;
    gap: 10px;
    font-size: 8.5px;
  }
  .footer-heading {
    font-size: 18px;
  }
  .footer-contact a {
    font-size: 12px;
  }
  .footer-map {
    height: 190px;
  }
  .footer-powered {
    font-size: 9px;
  }
  .footer-powered img {
    width: 78px;
  }
}
@media (hover: none) {
  .footer-links a:hover {
    transform: none;
  }
  .footer-booking-button:hover i {
    transform: none;
  }
  .footer-map:hover iframe {
    filter: none;
    opacity: 0.8;
  }
}














/* PAGE HEADERS */
.inner-page-header {
  position: relative;
  display: flex;
  align-items: center;
  height: 600px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.inner-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.62)
    );
  z-index: 1;
}
.inner-page-header .container {
  position: relative;
  z-index: 2;
}
#about-header {
  background-image: url("image/about-bg.JPG");
}
#gallery-header {
  background-image: url("image/gallery-bg.JPG");
}
#contact-header {
  background-image: url("image/contact-bg.JPG");
}
#accomodation-header {
  background-image: url("image/accomodation-bg.JPG");
}
.header-content {
  padding-top: 120px;
}
.header-eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.header-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 12px auto 0;
  background-color: var(--color-gold);
}
.header-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: capitalize;
}
.inner-page-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: 70px;
  height: 1px;
  background-color: var(--color-gold);
  transform: translateX(-50%);
  opacity: 0.8;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .inner-page-header {
    height: 500px;
  }
  .header-content {
    padding-top: 80px;
  }
  .header-eyebrow {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .header-title {
    font-size: 58px;
  }
}
@media (max-width: 767.98px) {
  .inner-page-header {
    height: 430px;
  }
  .header-content {
    padding-top: 60px;
  }
  .header-eyebrow {
    max-width: 90%;
    margin-bottom: 15px;
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.6;
  }
  .header-eyebrow::after {
    margin-top: 10px;
  }
  .header-title {
    font-size: 48px;
  }
  .inner-page-header::after {
    bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  .inner-page-header {
    height: 390px;
  }
  .header-content {
    padding-top: 45px;
  }
  .header-eyebrow {
    font-size: 10px;
  }
  .header-title {
    font-size: 42px;
  }
  .inner-page-header::after {
    width: 50px;
    bottom: 20px;
  }
}
@media (max-width: 400px) {
  .inner-page-header {
    height: 360px;
  }
  .header-title {
    font-size: 38px;
  }
}









/* ROOMS PAGE */
.rooms-page {
  width: 100%;
  overflow: hidden;
}
.room-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.room-section-light {
  background-color: #f1efec;
  color: var(--color-primary);
}
.room-section-white {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.room-content {
  max-width: 580px;
  padding: 20px 20px 20px 0;
}
.room-section:nth-child(even) .room-content {
  padding-left: 20px;
  padding-right: 0;
}
.room-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.rooms-title {
  margin: 0 0 30px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}
.rooms-title span {
  display: block;
  color: var(--color-gold);
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(23, 33, 43, 0.12);
}
.room-features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.5;
}
.room-features i {
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 12px;
}
.room-beds {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}
.room-beds div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}
.room-beds i {
  color: var(--color-gold);
  font-size: 15px;
}
.room-description {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
}
.room-book-button {
  display: inline-block !important;
  width: auto !important;
  max-width: fit-content;
  padding: 13px 35px;
  border: 1px solid var(--color-gold);
  background-color: var(--color-gold);
  color: var(--color-primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: all 0.35s ease;
}
.room-book-button i {
  transition: transform 0.35s ease;
}
.room-book-button:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.room-book-button:hover i {
  transform: translateX(5px);
}
.room-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ddd;
}
.room-carousel .carousel-item {
  position: relative;
  height: 560px;
}
.room-carousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03) 40%,
      rgba(0, 0, 0, 0.25)
    );
  pointer-events: none;
}
.room-carousel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.room-carousel .carousel-control-prev,
.room-carousel .carousel-control-next {
  width: 60px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.room-carousel:hover .carousel-control-prev,
.room-carousel:hover .carousel-control-next {
  opacity: 1;
}
.room-carousel .carousel-control-prev-icon,
.room-carousel .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(23, 33, 43, 0.75);
  background-size: 45%;
  border-radius: 0;
}
.room-carousel .carousel-indicators {
  z-index: 5;
  margin-bottom: 20px;
}
.room-carousel .carousel-indicators button {
  width: 25px;
  height: 2px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 0;
  opacity: 1;
  transition:
    width 0.35s ease,
    background-color 0.35s ease;
}
.room-carousel .carousel-indicators button.active {
  width: 45px;
  background-color: var(--color-gold);
}
.room-carousel::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 3;
  pointer-events: none;
}
.room-section-light .room-content::before,
.room-section-white .room-content::before {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  margin-bottom: 25px;
  background-color: var(--color-gold);
}
@media (max-width: 1199.98px) {
  .room-section {
    padding: 85px 0;
  }
  .room-content {
    padding-right: 10px;
  }
  .room-section:nth-child(even) .room-content {
    padding-left: 10px;
  }
  .rooms-title {
    font-size: 46px;
  }
  .room-carousel .carousel-item {
    height: 500px;
  }
}
@media (max-width: 991.98px) {
  .room-section {
    padding: 70px 0;
  }
  .room-content,
  .room-section:nth-child(even) .room-content {
    max-width: 100%;
    padding: 10px 0;
  }
  .rooms-title {
    font-size: 44px;
  }
  .room-description {
    max-width: 100%;
  }
  .room-carousel .carousel-item {
    height: 480px;
  }
  .room-carousel::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .room-carousel .carousel-control-prev,
  .room-carousel .carousel-control-next {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .room-section {
    padding: 55px 0;
  }
  .room-content,
  .room-section:nth-child(even) .room-content {
    padding: 5px 0;
  }
  .rooms-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }
  .rooms-title {
    margin-bottom: 25px;
    font-size: 38px;
    line-height: 1.1;
  }
  .room-features {
    gap: 10px 15px;
    margin-bottom: 22px;
    padding-bottom: 20px;
  }
  .room-features span {
    font-size: 12px;
  }
  .room-beds {
    gap: 18px;
    margin-bottom: 20px;
  }
  .room-beds div {
    font-size: 13px;
  }
  .room-description {
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.8;
  }
  .room-book-button {
    padding: 13px 21px;
    font-size: 10px;
  }
  .room-carousel .carousel-item {
    height: 400px;
  }
  .room-carousel .carousel-control-prev,
  .room-carousel .carousel-control-next {
    width: 45px;
  }
  .room-carousel .carousel-control-prev-icon,
  .room-carousel .carousel-control-next-icon {
    width: 34px;
    height: 34px;
  }
  .room-carousel .carousel-indicators {
    margin-bottom: 12px;
  }
  .room-carousel .carousel-indicators button {
    width: 18px;
  }
  .room-carousel .carousel-indicators button.active {
    width: 32px;
  }
}
@media (max-width: 575.98px) {
  .room-section {
    padding: 45px 0;
  }
  .rooms-title {
    font-size: 34px;
  }
  .room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 12px;
  }
  .room-features span {
    align-items: flex-start;
    font-size: 11.5px;
  }
  .room-features i {
    margin-top: 3px;
  }
  .room-beds {
    flex-direction: column;
    gap: 12px;
  }
  .room-description {
    font-size: 13px;
  }
  .room-carousel .carousel-item {
    height: 330px;
  }
  .room-carousel::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .room-carousel .carousel-control-prev-icon,
  .room-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }
  .room-book-button {
    width: 100%;
    justify-content: center;
  }

}
@media (max-width: 380px) {
  .rooms-title {
    font-size: 30px;
  }
  .room-features {
    grid-template-columns: 1fr;
  }
  .room-carousel .carousel-item {
    height: 290px;
  }
}











/* GALLERY SECTION */
.gallery-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-ivory);
}
.gallery-section .section-intro {
  max-width: 620px;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.8;
}
.gallery-grid {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: var(--color-primary);
  cursor: pointer;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(23, 33, 43, 0.35)
    );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease-luxury),
    filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}
.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.gallery-grid .col-md-4 .gallery-item {
  height: 400px;
}
.gallery-modal .modal-dialog {
  max-width: 100%;
  margin: 0;
}
.gallery-modal .modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: rgba(12, 18, 24, 0.97);
  border: 0;
  border-radius: 0;
}
.gallery-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 70px 100px;
}
.gallery-modal .modal-body img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}
.gallery-close {
  position: absolute;
  z-index: 20;
  top: 25px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.gallery-close:hover {
  color: var(--color-primary);
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}
.gallery-prev,
.gallery-next {
  position: absolute;
  z-index: 20;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 18px;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.gallery-prev {
  left: 30px;
}
.gallery-next {
  right: 30px;
}
.gallery-prev:hover,
.gallery-next:hover {
  color: var(--color-primary);
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}
.gallery-counter {
  position: absolute;
  z-index: 20;
  bottom: 25px;
  left: 50%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}
.gallery-counter #galleryCurrent {
  color: var(--color-gold);
}
@media (max-width: 991.98px) {
  .gallery-section {
    padding: 80px 0;
  }
  .gallery-item {
    height: 280px;
  }
  .gallery-grid .col-md-4 .gallery-item {
    height: 350px;
  }
  .gallery-modal .modal-body {
    padding: 60px 80px;
  }
  .gallery-modal .modal-body img {
    max-width: 85vw;
    max-height: 80vh;
  }
  .gallery-prev {
    left: 20px;
  }
  .gallery-next {
    right: 20px;
  }
}
@media (max-width: 767.98px) {
  .gallery-section {
    padding: 65px 0;
  }
  .gallery-grid {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }
  .gallery-item,
  .gallery-grid .col-md-4 .gallery-item {
    height: 230px;
  }
  .gallery-item::before {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  .gallery-modal .modal-body {
    padding: 60px 20px;
  }
  .gallery-modal .modal-body img {
    max-width: 92vw;
    max-height: 75vh;
  }
  .gallery-close {
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
  .gallery-prev,
  .gallery-next {
    top: auto;
    bottom: 25px;
    width: 45px;
    height: 45px;
    transform: none;
  }
  .gallery-prev {
    left: 20px;
  }
  .gallery-next {
    right: 20px;
  }
  .gallery-counter {
    bottom: 40px;
  }
}
@media (max-width: 480px) {
  .gallery-item,
  .gallery-grid .col-md-4 .gallery-item {
    height: 190px;
  }
  .gallery-section .section-intro {
    font-size: 13px;
  }
  .gallery-modal .modal-body {
    padding: 50px 10px 100px;
  }
  .gallery-modal .modal-body img {
    max-width: 96vw;
    max-height: 70vh;
  }
}




/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  position: relative;
  padding: 70px 0;
  background-color: var(--color-white);
  overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.contact-header {
  max-width: 620px;
}

.contact-header .section-eyebrow {
  margin-bottom: 18px;
}

.contact-header .section-title {
  margin-bottom: 0;
  color: var(--color-primary);
}

.contact-header .section-title span {
  color: var(--color-gold);
}


/* =========================================
   MAP
========================================= */

.contact-map {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #eee;
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(198, 161, 91, 0.25);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%);
  transition:
    filter 0.5s ease,
    transform 0.6s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0%);
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 30px;
  background-color: #f1efec;
  border: 1px solid rgba(198, 161, 91, 0.15);
  overflow: hidden;

  transition:
    transform 0.5s var(--ease-luxury),
    box-shadow 0.5s var(--ease-luxury),
    border-color 0.4s ease;
}


/* Gold corner */

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 1px;
  background-color: var(--color-gold);

  transition: width 0.5s var(--ease-luxury);
}


/* Right corner */

.contact-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 45px;
  background-color: var(--color-gold);

  transition: height 0.5s var(--ease-luxury);
}


.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.08);
}

.contact-card:hover::before {
  width: 85px;
}

.contact-card:hover::after {
  height: 85px;
}


/* =========================================
   ICON
========================================= */

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;
  margin-bottom: 25px;

  color: var(--color-gold);
  border: 1px solid rgba(198, 161, 91, 0.35);

  font-size: 22px;

  transition:
    color 0.4s ease,
    background-color 0.4s ease,
    transform 0.5s var(--ease-luxury);
}

.contact-card:hover .contact-icon {
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: rotate(-3deg);
}


/* =========================================
   CARD TEXT
========================================= */

.contact-card h3 {
  margin: 0 0 14px;

  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-card a {
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;

  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--color-gold);
}


/* =========================================
   BEACH LIST
========================================= */

.beach-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.beach-list p {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin: 0;

  color: var(--color-text-light);
  font-size: 12px;
  line-height: 1.5;
}

.beach-list span {
  flex-shrink: 0;
  color: var(--color-gold);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199.98px) {

  .contact-card {
    padding: 25px;
  }

  .contact-map {
    height: 380px;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-header {
    max-width: 700px;
  }

  .contact-map {
    height: 400px;
  }

  .contact-card {
    min-height: 210px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .contact-section {
    padding: 50px 0;
  }

  .contact-map {
    height: 350px;
  }

  .contact-card {
    min-height: 200px;
    padding: 25px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .contact-card h3 {
    font-size: 21px;
  }

  .contact-card a {
    font-size: 13px;
  }

}


@media (max-width: 575.98px) {

  .contact-section {
    padding: 45px 0;
  }

  .contact-map {
    height: 300px;
  }

  .contact-card {
    min-height: auto;
    padding: 25px 22px;
  }
  .beach-list p {
    font-size: 12px;
  }
}
