@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/avenir-lt-pro");
:root {
  --color1:#00684f;
  --primary-light:#02906E;
  --primary-dark:#014837;
  --primary-darker:#01241B;
  --color2:#a59967;
  --text-color:#7A7A7A;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  background: transparent;
  text-decoration: none;
  quotes: none;
  list-style: none;
}

html, body {
  height: 100%;
}

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

body:unresolved {
  opacity: 0;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  opacity: 1;
  position: relative;
  -webkit-text-size-adjust: none;
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
  overflow-x: hidden;
}

::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: var(--color1);
}

::selection {
  color: #ffffff;
  background: var(--color1);
}

article, aside, footer, header, hgroup, nav, section, figure, figcaption {
  display: block;
  margin: 0px 0 0 0;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input, textarea {
  border-radius: 0;
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
}

button {
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

::-moz-focus-inner {
  border: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

*, *:after, *:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.9s ease;
  outline: none;
  text-decoration: none;
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: var(--color1);
  font-weight: 400;
}

a:hover {
  color: var(--text-color);
}

.clearfloat {
  clear: both;
}

img {
  width: 100%;
  display: block;
  transition: all 1s ease;
  margin: auto;
}

body h1 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h2 {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
  line-height: 1.4;
}

body h3 {
  font-size: 1.6rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h4 {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h5 {
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h6 {
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body p {
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 300;
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

.container-rigid {
  width: 85%;
  max-width: 1500px;
  margin: auto;
}

header {
  width: 100%;
  float: left;
}
header .desktop-navigation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}
header .desktop-navigation-wrapper .desktop-navigation {
  transform: translateY(-100%);
  opacity: 0;
  animation: slideDown 0.8s ease-out forwards;
}
header .desktop-navigation-wrapper .mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none; /* hidden by default */
  z-index: 999;
}
header .desktop-navigation-wrapper .menu {
  width: 148px;
  height: -moz-fit-content;
  height: fit-content;
}
header .desktop-navigation-wrapper .menu svg {
  cursor: pointer;
}
header .desktop-navigation-wrapper .mega-menu-content {
  position: fixed;
  top: 0;
  right: -100%; /* hidden off screen */
  width: 100%;
  max-width: 550px;
  height: 100%;
  background: #f8f8f2;
  color: var(--primary-darker);
  z-index: 1000;
  padding: 1rem 2.5rem 1rem;
  padding: 0;
  transition: right 0.4s ease;
  overflow: auto;
}
header .desktop-navigation-wrapper .mega-menu-content .logo {
  width: 100px;
}
header .desktop-navigation-wrapper .mega-menu-links {
  padding-top: 0.5rem;
  padding: 0.8rem 2rem 1rem;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top {
  display: flex;
  flex-direction: column;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a {
  color: var(--primary-darker);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
  border-bottom: rgba(0, 104, 80, 0.415) 1px solid;
  padding: 0.9rem 0 0.9rem;
  position: relative;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a::after {
  content: "";
  position: absolute;
  left: 0; /* start from center */
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light); /* underline color */
  transition: all 0.3s ease;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a:hover {
  color: var(--color1);
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a:hover::after {
  width: 100%; /* expand underline */
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a.active {
  font-weight: 700;
  color: var(--color1);
  padding: 0.9rem 0.9rem 0.9rem 1.7rem;
  transition: all 0.3s ease;
  background: #d1faf0;
  position: relative;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a.active::after {
  width: 100%;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a.active::before {
  content: "➤";
  position: absolute;
  left: 0.4rem;
  top: 35%;
  color: var(--color1);
  font-size: 0.8rem;
  transform: rotate(180deg) translateY(0%);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-link {
  position: relative;
  display: block;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .has-dropdown {
  width: 100%;
  float: left;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .has-dropdown::before {
  content: " ▼";
  font-size: 0.7em;
  color: #888;
  margin-left: 4px;
  position: absolute;
  right: 0;
  top: 30%;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-menu {
  display: open;
  position: relative;
  left: 0;
  top: 0px;
  width: 100%;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  z-index: 10;
  padding: 0px 0;
  float: left;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--text-color);
  border-bottom: rgba(0, 104, 80, 0.415) 1px solid;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-menu a:hover {
  background: #f5f5f5;
  background: #d1faf0;
  background: #e8fff9;
  color: var(--color1);
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-menu a.active {
  background: #e8fff9;
  color: var(--color1);
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-menu a.active:before {
  display: none;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .has-dropdown.active {
  padding: 0.9rem;
}
header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .has-dropdown.active::before {
  content: " ▼";
  font-size: 0.7em;
  color: #888;
  margin-left: 4px;
  position: absolute;
  right: 0.9rem;
  top: 30%;
  left: unset;
}
header .desktop-navigation-wrapper .mega-menu-logo {
  padding: 12px 2rem;
  background: var(--color1);
}
header .desktop-navigation-wrapper .mega-menu-logo img {
  filter: brightness(0) invert(1);
}
header .desktop-navigation-wrapper .mega-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #444;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
header .desktop-navigation-wrapper .mega-links-book {
  margin-bottom: 1.2rem;
}
header .desktop-navigation-wrapper .mega-links-book a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color1);
  margin-top: 20px;
  float: left;
  display: flex;
  text-align: center;
  align-items: center;
}
header .desktop-navigation-wrapper .mega-links-book a i {
  font-size: 0.85rem;
  line-height: 0;
}
header .desktop-navigation-wrapper .mega-links-book a:hover {
  background: var(--color1);
  border-color: var(--color1);
  color: white;
}
header .desktop-navigation-wrapper .mega-links-global {
  border-bottom: rgba(0, 104, 80, 0.415) 1px solid !important;
}
header .desktop-navigation-wrapper .mega-links-global a {
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 400;
}
header .desktop-navigation-wrapper .mega-links-global a:hover {
  color: var(--color1);
}
header .desktop-navigation-wrapper .mega-socials a {
  width: 28px !important;
  height: 28px !important;
  background: transparent;
  border-radius: 30px;
  float: left;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--color1) 1px solid;
  color: var(--color1);
}
header .desktop-navigation-wrapper .mega-socials a i {
  line-height: 1;
  font-size: 13px;
  margin: 0 !important;
}
header .desktop-navigation-wrapper .mega-socials a:hover {
  background: var(--color1);
  color: white;
}
header .desktop-navigation-wrapper .mega-tripadvisor img {
  width: 70px;
}
header .mobile-navigation-wrapper {
  display: none;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.desktop-navigation .logo {
  width: 180px;
}
.desktop-navigation li a {
  display: inline-block;
  position: relative;
}
.desktop-navigation li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.08em;
  bottom: -2px;
  left: 0;
  background: var(--color1);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.desktop-navigation li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.desktop-navigation li a.active {
  font-weight: 700;
  color: #666;
}
.desktop-navigation li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 5px;
  height: 0.09em;
  bottom: -3px;
  left: 0;
  background: #666;
  transform: scaleX(1);
}
.desktop-navigation .book-now a {
  padding: 20px 35px;
  border-radius: 45px;
  color: var(--color1);
  background: white;
  border: 1px solid var(--color1);
  font-size: 0.8rem;
  line-height: 0.8;
  font-weight: 600;
}
.desktop-navigation .book-now a:hover {
  color: white;
  background: var(--color1);
}

.homepage-wrapper {
  width: 100%;
  float: left;
}

.home-banner-wrapper {
  width: 100%;
  float: left;
  height: 100%;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}
.home-banner-wrapper .mySwiper {
  width: 100%;
  height: 100%;
}
.home-banner-wrapper .mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  height: 100%;
}
.home-banner-wrapper .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-banner-wrapper .home-banner-content {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.home-banner-wrapper .home-banner-content h1 {
  color: white;
}
.home-banner-wrapper .home-banner-content p {
  max-width: 1000px;
  color: white;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 10px;
  padding-right: 10px;
}
.home-banner-wrapper .home-banner-content p strong {
  font-weight: 600;
}
.home-banner-wrapper .home-banner-content .banner-links a {
  padding: 15px 25px;
  background: white;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 30px;
}
.home-banner-wrapper .home-banner-content .banner-links a:hover {
  background: transparent;
  color: white;
}
.home-banner-wrapper .home-banner-content .banner-links a:last-child {
  color: white;
  background: var(--color1);
  border: 1px solid var(--color1);
}
.home-banner-wrapper .home-banner-content .banner-links a:last-child:hover {
  background: transparent;
  color: white;
  border-color: white;
}
.home-banner-wrapper .home-banner-content .banner-tripadvisor a {
  width: 80px;
}

/* Add this CSS to your style.css file for floating form styling */
.floating-check-form-bottom {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 100%;
  width: 100%;
}

.floating-check-form-bottom h4 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.check-form-content {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 180px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  overflow: hidden;
}

.floating-check-form-bottom .form-row {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.floating-check-form-bottom input {
  padding: 15px 20px;
  border: none;
  font-size: 1rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
}

.floating-check-form-bottom button {
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 8px 0;
}

.home-intro-wrapper {
  width: 100%;
  float: left;
  padding: 4rem 0;
}
.home-intro-wrapper .row {
  justify-content: space-between;
  padding: 0 !important;
}
.home-intro-wrapper .row .col, .home-intro-wrapper .row .col-lg-3, .home-intro-wrapper .row .col-lg-8 {
  padding: 0 !important;
}
.home-intro-wrapper .row h2 {
  font-size: 2.5rem;
}

.home-banner-video-container {
  height: 100%;
  width: 100%;
  float: left;
  min-height: 100vh;
  background: var(--color1);
}
.home-banner-video-container #banner-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}
.home-banner-video-container video {
  min-height: 100%;
}

#banner-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#banner-background-video.playing {
  opacity: 1;
}

.home-service-wrapper {
  width: 100%;
  float: left;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.home-service-wrapper .home-service {
  width: 100%;
  float: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-service-wrapper .home-service .home-service-content {
  width: 40%;
  padding: 3.2rem 2.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: white;
  background: #fbfaf8;
  position: relative;
  z-index: 2;
}
.home-service-wrapper .home-service .home-service-content a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-top: 5px;
  float: left;
}
.home-service-wrapper .home-service .home-service-content a i {
  font-size: 1rem;
  line-height: 0;
}
.home-service-wrapper .home-service .home-service-content a:hover {
  background: var(--color1);
  color: white;
}
.home-service-wrapper .home-service .home-service-content p {
  font-size: 0.85rem;
}
.home-service-wrapper .home-service .home-service-image {
  width: 50%;
}
.home-service-wrapper .home-service-left .home-service-content {
  left: 3.5%;
}
.home-service-wrapper .home-service-right {
  justify-content: flex-start;
}
.home-service-wrapper .home-service-right .home-service-content {
  right: 3.5%;
}

.home-aminities-wrapper {
  width: 100%;
  float: left;
  background: #fbfaf8;
  background: var(--color1);
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}
.home-aminities-wrapper .home-aminities-intro {
  padding: 4rem 0 2rem;
}
.home-aminities-wrapper .home-aminities-intro p {
  color: white;
}
.home-aminities-wrapper .home-aminities-intro h2 {
  color: white;
}

.home-aminities-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.home-aminities-slider .amenity-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-aminities-slider .amenity-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-aminities-slider .slick-slider-wrapper {
  padding-left: 0;
  overflow: hidden;
  position: relative;
}
.home-aminities-slider .slick-slider-wrapper .slick-arrow {
  position: absolute;
  top: 40%;
  width: 3rem;
  height: 3rem;
  z-index: 12345;
  border: none;
  background: rgba(0, 0, 0, 0.647);
  color: white;
  font-size: 1.5rem;
}
.home-aminities-slider .slick-slider-wrapper .custom-prev {
  left: 1.5rem;
}
.home-aminities-slider .slick-slider-wrapper .custom-next {
  right: 2rem;
}
.home-aminities-slider .amenity-slide {
  margin: 0 10px;
}
.home-aminities-slider .amenity-slide .amenity-slide-content {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.01) 0px 3px 12px;
}
.home-aminities-slider .amenity-slide .amenity-content {
  height: 100%;
  min-height: 150px;
}
.home-aminities-slider .slick-list {
  overflow: hidden;
  padding: 0;
}

.amenity-content h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.amenity-content p {
  font-size: 0.8rem;
  color: #555;
}

.home-dine-wrapper {
  width: 100%;
  float: left;
}
.home-dine-wrapper .home-dine {
  width: 100%;
  float: left;
  position: relative;
}
.home-dine-wrapper .home-dine img {
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-dine-wrapper .home-dine-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.home-dine-wrapper .home-dine-content h2 {
  color: white;
  padding-bottom: 10px;
  font-size: 2rem;
}
.home-dine-wrapper .home-dine-content p {
  max-width: 800px;
  color: white;
  text-align: center;
  padding-bottom: 25px;
}
.home-dine-wrapper .home-dine-content .home-dine-links {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-dine-wrapper .home-dine-content a {
  color: white;
  background: var(--color1);
  border: var(--color1) 1px solid;
  padding: 12px 20px;
  float: left;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.home-dine-wrapper .home-dine-content a:hover {
  background: #544819;
  border-color: #544819;
}

footer {
  width: 100%;
  float: left;
}
footer .footer-newsletter-wrapper {
  width: 100%;
  float: left;
  padding: 3rem 0;
}
footer .footer-newsletter {
  width: 100%;
  max-width: 1200px;
}
footer .footer-newsletter h3 {
  font-size: 1.8rem;
}
footer .footer-newsletter p {
  font-size: 1rem;
}
footer .footer-newsletter form {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-end;
}
footer .footer-newsletter form .input-group {
  width: 100%;
}
footer .footer-newsletter form .input-group label, footer .footer-newsletter form .input-group input {
  display: block;
  width: 100%;
}
footer .footer-newsletter form .input-group label {
  font-size: 0.85rem;
  padding-bottom: 8px;
  color: var(--text-color);
  font-weight: 400;
}
footer .footer-newsletter form .input-group input {
  border: var(--color1) 1px solid;
  padding: 10px;
}
footer .footer-newsletter form button {
  color: white;
  background: var(--color1);
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}
footer .footer-newsletter form button:hover {
  background: #544819;
}

.footer-main-wrapper {
  background: var(--color1);
  padding: 3rem 0;
}
.footer-main-wrapper a {
  color: white;
  font-size: 0.8rem;
  line-height: 1.5;
}
.footer-main-wrapper a .fa-whatsapp {
  margin-left: -2px;
}
.footer-main-wrapper a i {
  line-height: 0;
}
.footer-main-wrapper a span {
  font-size: 0.9rem;
}
.footer-main-wrapper h2 {
  color: white;
}
.footer-main-wrapper p {
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
}
.footer-main-wrapper .footer-main {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 30px;
}
.footer-main-wrapper .footer-main .footer-logo {
  width: 11rem;
}
.footer-main-wrapper .footer-main .footer-column h2 {
  font-family: Lato;
  text-transform: uppercase;
  padding-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}
.footer-main-wrapper .footer-main .footer-column ul li {
  padding: 8px 0;
  text-transform: uppercase;
}
.footer-main-wrapper .footer-main .footer-column iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.footer-main-wrapper .footer-main .footer-column iframe .gm-style .place-card, .footer-main-wrapper .footer-main .footer-column iframe .gm-style .default-card, .footer-main-wrapper .footer-main .footer-column iframe .gm-style .directions-card {
  display: none;
}

.footer-bottom p, .footer-bottom a {
  color: var(--color1);
  font-size: 0.85rem;
  font-weight: 500;
}
.footer-bottom .footer-socials a {
  width: 25px !important;
  height: 25px !important;
  background: var(--color1);
  border-radius: 30px;
  float: left;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom .footer-socials a i {
  line-height: 1;
}

.sticky-contact-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 1.7rem;
  transition: box-shadow 0.2s;
  border: none;
  text-decoration: none;
  transition: all 0.5s ease;
}

.sticky-btn.sticky-call {
  color: var(--color1);
  font-size: 1.2rem;
}

.sticky-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  color: white;
  background: #25d366;
}

.sticky-btn.sticky-call:hover {
  color: white;
  background: var(--color1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top {
  position: fixed;
  right: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1, #014837);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  right: unset;
  left: 24px;
}

.back-to-top:hover {
  color: white;
  animation: shakeY 0.5s ease-in-out;
}

.back-to-top i {
  font-size: 16px;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes shakeY {
  0%, 100% {
    transform: translateY(0);
  }
  20%, 60% {
    transform: translateY(-4px);
  }
  40%, 80% {
    transform: translateY(4px);
  }
}
.home-intro-list ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-intro-list ul li img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.hotel-aminities-slider-wrapper {
  width: 100%;
  float: left;
  /* Slide backgrounds */
}
.hotel-aminities-slider-wrapper .slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hotel-aminities-slider-wrapper .slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hotel-aminities-slider-wrapper .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hotel-aminities-slider-wrapper .slide.active {
  opacity: 1;
}
.hotel-aminities-slider-wrapper .slide-resorts {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/curated.webp");
}
.hotel-aminities-slider-wrapper .slide-pools {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/main-pool-banner.webp");
}
.hotel-aminities-slider-wrapper .slide-restaurants {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/dining-banner2.webp");
}
.hotel-aminities-slider-wrapper .slide-bars {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/lounge-banner.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
}
.hotel-aminities-slider-wrapper .slide-islands {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/excursion-banner.webp");
}
.hotel-aminities-slider-wrapper .slide-spas {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/spa-banner.webp");
}
.hotel-aminities-slider-wrapper .slide-content {
  text-align: center;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  display: none;
}
.hotel-aminities-slider-wrapper .slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}
.hotel-aminities-slider-wrapper .amenity-number {
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hotel-aminities-slider-wrapper .amenity-name {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hotel-aminities-slider-wrapper .center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.hotel-aminities-slider-wrapper .logo-circle {
  width: 200px;
  height: 200px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.hotel-aminities-slider-wrapper .logo-text {
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hotel-aminities-slider-wrapper .logo-subtext {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hotel-aminities-slider-wrapper .custom-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 10;
}
.hotel-aminities-slider-wrapper .pagination-item {
  cursor: pointer;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateY(10px) scale(0.9);
}
.hotel-aminities-slider-wrapper .pagination-item:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(5px) scale(0.95);
}
.hotel-aminities-slider-wrapper .pagination-item.active {
  color: white;
  transform: translateY(0) scale(1);
}
.hotel-aminities-slider-wrapper .pagination-item.active .pagination-number {
  font-size: 3.5rem;
}
.hotel-aminities-slider-wrapper .pagination-number {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 15px;
}
.hotel-aminities-slider-wrapper .pagination-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.hotel-aminities-slider-wrapper .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.hotel-aminities-slider-wrapper .nav-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hotel-aminities-slider-wrapper .nav-prev {
  left: 30px;
}
.hotel-aminities-slider-wrapper .nav-next {
  right: 30px;
}
.hotel-aminities-slider-wrapper .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: transparent;
  width: 100%;
  z-index: 10;
}
.hotel-aminities-slider-wrapper .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), transparent);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0);
}

.home-stay-wrapper {
  background: #f8f8f2;
}
.home-stay-wrapper h4 {
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-color);
  font-style: normal;
  font-weight: 400;
}
.home-stay-wrapper .home-stay-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}
.home-stay-wrapper .home-stay-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-stay-wrapper a {
  padding: 0.5rem 1rem;
  padding: 0.8rem 1.3rem;
  border: var(--color1) solid 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: transparent;
  float: left;
}
.home-stay-wrapper a:hover {
  color: white;
  background: var(--color1);
}

body .fi {
  vertical-align: middle;
}

.home-experiences-wrapper .swiper {
  width: 100%;
  height: 100%;
}
.home-experiences-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100%;
}
.home-experiences-wrapper .experience-slide {
  display: flex;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.home-experiences-wrapper .experience-slide img {
  width: 62%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-experiences-wrapper .experience-slide-content {
  padding: 2.5rem;
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
}
.home-experiences-wrapper .experience-slide-content h4 {
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-color);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding-bottom: 8px;
}
.home-experiences-wrapper .experience-slide-content h3 {
  font-size: 1.8rem;
  padding-bottom: 15px;
  color: #666;
}
.home-experiences-wrapper .experience-slide-content p {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.home-experiences-wrapper .experience-slide-content a.cta {
  font-weight: 600;
  color: var(--color1);
  color: var(--primary-light);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.home-experiences-wrapper .experience-slide-content a.cta:hover i {
  transform: translateX(-8px);
}
.home-experiences-wrapper .swiper-button-next:after, .home-experiences-wrapper .swiper-button-prev:after {
  font-size: 1.2rem;
}
.home-experiences-wrapper .swiper-button-next,
.home-experiences-wrapper .swiper-button-prev {
  position: absolute;
  width: 35px;
  height: 35px;
  font-size: 16px;
  background: var(--color1);
  color: white;
  border: 1.4px solid var(--color1);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-experiences-wrapper .swiper-button-next:hover,
.home-experiences-wrapper .swiper-button-prev:hover {
  background: var(--primary-dark);
  color: white;
}
.home-experiences-wrapper .swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.home-experiences-wrapper .swiper-pagination-bullets-dynamic {
  bottom: 12px;
  display: flex;
  align-items: center;
  height: 20px;
}
.home-experiences-wrapper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1.5);
  background: var(--color1);
}
.home-experiences-wrapper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(1);
}
.home-experiences-wrapper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.home-experiences-wrapper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.8);
}
.home-about-offers-wrapper {
  background: #f8f8f2;
}
.home-about-offers-wrapper h4 {
  font-family: "Avenir LT Pro", "Montserrat", "Roboto", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-color);
  font-style: normal;
  font-weight: 400;
}
.home-about-offers-wrapper .home-stay-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.home-about-offers-wrapper .home-stay-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-about-offers-wrapper a {
  padding: 0.5rem 1rem;
  padding: 0.8rem 1.3rem;
  border: var(--color1) solid 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: transparent;
}
.home-about-offers-wrapper a:hover {
  color: white;
  background: var(--color1);
}

.home-testimonials-wrapper {
  width: 100%;
  float: left;
  padding: 5rem 0;
}
.home-testimonials-wrapper .section-title {
  color: var(--color1);
  font-weight: 600;
}
.home-testimonials-wrapper .section-title img {
  width: 80px;
}
.home-testimonials-wrapper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.home-testimonials-wrapper .feedback-card {
  background: #fff;
  padding: 30px 20px 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.home-testimonials-wrapper .swiper-slide {
  display: flex;
  height: auto !important;
}
.home-testimonials-wrapper .feedback-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.4rem;
  text-align: center;
  font-size: 0.9rem;
}
.home-testimonials-wrapper .feedback-author {
  font-weight: bold;
  font-size: 15px;
  color: #666;
  text-align: center;
}
.home-testimonials-wrapper .feedback-author span {
  font-weight: normal;
  color: #666;
  font-style: italic;
}
.home-testimonials-wrapper .feedback-swiper {
  padding: 0 50px;
}
.home-testimonials-wrapper .swiper-button-next, .home-testimonials-wrapper .swiper-button-prev {
  top: 40%;
  z-index: 1234;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 30px;
  background: var(--primary-light);
  color: white;
}
.home-testimonials-wrapper .swiper-button-next::after, .home-testimonials-wrapper .swiper-button-prev::after {
  font-size: 1rem;
}
.home-testimonials-wrapper .swiper-button-next {
  right: 0px;
}
.home-testimonials-wrapper .swiper-button-prev {
  left: 0px;
}

.home-intro-contact a i {
  line-height: 0;
}
.home-intro-contact a span {
  line-height: 1.6;
}

.home-experiences-wrapper .experience-slide img {
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.stay-banner-wrapper {
  width: 100%;
  float: left;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/home-stay.webp) center/cover no-repeat fixed;
  overflow: hidden;
  position: relative;
  /* Scroll Indicator */
}
.stay-banner-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.stay-banner-wrapper .stay-banner-content {
  position: relative;
  z-index: 2;
}
.stay-banner-wrapper .stay-banner-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.stay-banner-wrapper .stay-banner-content .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  opacity: 0.95;
  color: white;
}
.stay-banner-wrapper .stay-banner-content .hero-description {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  color: white;
}
.stay-banner-wrapper .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.stay-banner-wrapper .scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.stay-banner-wrapper .scroll-wheel {
  width: 4px;
  height: 12px;
  background: white;
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.home-banner-wrapper .home-banner-content h1 {
  font-size: 2.5rem;
}

.spa-banner-wrapper {
  height: 70vh;
  min-height: 100%;
  max-height: 700px;
  position: relative;
  background: var(--primary-dark);
}
.spa-banner-wrapper .home-banner-content {
  background: rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.35) 100%);
}
.spa-banner-wrapper .home-banner-content p {
  font-size: 1.2rem;
}
.spa-banner-wrapper figure {
  height: 100%;
}
.spa-banner-wrapper figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.dining-banner-wrapper {
  height: 70vh;
  min-height: 100%;
  max-height: 700px;
  position: relative;
  background: var(--primary-dark);
}
.dining-banner-wrapper .home-banner-content {
  background: rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.35) 100%);
}
.dining-banner-wrapper .home-banner-content p {
  font-size: 1.1rem;
}
.dining-banner-wrapper .home-banner-content h1 {
  font-size: 2rem;
}
.dining-banner-wrapper figure {
  height: 100%;
}
.dining-banner-wrapper figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.stay-types-list {
  width: 100%;
  float: left;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.stay-types-list .stay-type .stay-type-content {
  padding: 1.2rem;
}
.stay-types-list .stay-type .stay-type-content h3 {
  font-size: 1.2rem;
  padding-bottom: 8px;
  position: relative;
  display: flex;
  align-items: flex-end;
  align-items: center;
}
.stay-types-list .stay-type .stay-type-content h3 span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color1);
  margin-right: 10px;
  font-size: 2rem;
  padding-bottom: 8px;
  line-height: 0;
  color: white;
}
.stay-types-list .stay-type .stay-type-content a {
  display: flex;
  font-weight: 300;
  font-size: 0.85rem;
  border-bottom: 1px var(--color1) solid;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: ease 0.3s all;
}
.stay-types-list .stay-type .stay-type-content a i {
  line-height: 1;
  height: 10px;
  font-size: 0.8rem;
}
.stay-types-list .stay-type .stay-type-content ul {
  padding-left: 20px;
}
.stay-types-list .stay-type .stay-type-content ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-color);
  list-style: circle;
}
.stay-types-list .stay-type:hover .stay-type-content a {
  opacity: 1;
  transform: translateY(0px);
}
.stay-types-list .stay-type:nth-child(1) {
  margin-top: 3rem;
}
.stay-types-list .stay-type:nth-child(3) {
  margin-top: 5rem;
}
.stay-types-list .stay-type:nth-child(4) {
  margin-top: 1rem;
}
.stay-types-list .stay-type:nth-child(5) {
  margin-top: -2rem;
}
.stay-types-list .stay-type:nth-child(6) {
  margin-top: 3rem;
}

.stay-intro-details {
  max-width: 850px;
  margin: 0 auto;
}
.stay-intro-details p {
  line-height: 1.7;
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.stay-intro-details h2 {
  font-size: 2.5rem;
  color: var(--color1);
  padding-bottom: 1rem;
}

.stay-intro-wrapper {
  background: #f8f8f2;
}

.stay-types-wrapper {
  background: #f8f8f2;
}

.stay-types-wrapper-2 {
  background: white;
}
.stay-types-wrapper-2 .stay-type-row h4 {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--text-color);
  font-style: normal;
  font-weight: 400;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background: var(--color1);
  color: white;
  line-height: 1;
}
.stay-types-wrapper-2 .stay-type-row ul.room-list {
  padding-left: 20px;
  padding-bottom: 20px;
}
.stay-types-wrapper-2 .stay-type-row ul.room-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-color);
  list-style: circle;
  font-weight: 300;
}
.stay-types-wrapper-2 .stay-type-row h2 {
  font-size: 1.5rem;
}
.stay-types-wrapper-2 .stay-type-row a {
  margin-top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 20px 10px;
  border: 1px solid var(--color1);
}
.stay-types-wrapper-2 .stay-type-row:nth-child(2) {
  background: #f8f8f2;
}

.extras-wrapper {
  background: #01E5AE;
  background: #d1faf0;
}
.extras-wrapper .extras-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.extras-wrapper .extras-title p {
  font-size: 1rem;
}
.extras-wrapper .premium-box {
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.424), rgba(255, 255, 255, 0.39));
  border: 2px solid rgba(0, 104, 80, 0.33);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px -10px rgba(166, 124, 82, 0.2);
  height: 100%;
}
.extras-wrapper .premium-title {
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.extras-wrapper .meal-note {
  font-size: 0.875rem;
  color: var(--gray-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.extras-wrapper .extras-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.extras-wrapper .extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(166, 124, 82, 0.2);
}
.extras-wrapper .extra-item:last-child {
  border-bottom: none;
}
.extras-wrapper .extra-name {
  font-weight: 500;
  color: var(--black);
}
.extras-wrapper .extra-name-group .extra-name {
  display: block;
  margin-bottom: 0.25rem;
}
.extras-wrapper .extra-note {
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin: 0;
}
.extras-wrapper .extra-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-primary);
}
.extras-wrapper .extra-price.free {
  color: #059669;
}
.extras-wrapper .extras-book a {
  padding: 14px 25px 12px;
  color: white;
  border: var(--color1) 1px solid;
}
.extras-wrapper .extras-book a:hover {
  color: var(--color1);
}

.single-stay-banner-wrapper {
  height: 70vh;
  min-height: 100%;
  max-height: 700px;
  position: relative;
}
.single-stay-banner-wrapper h2 {
  color: white;
}

.home-intro-wrapper .row h1 {
  font-size: 2rem;
  color: var(--color1);
}

.single-stay-intro a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  float: left;
  color: white;
  background: var(--color1);
}

.single-stay-contacts strong {
  text-transform: uppercase;
  font-weight: 600;
}
.single-stay-contacts p {
  line-height: 1.2;
  float: left;
}

.single-stay-intro-wrapper {
  background: white;
}

.stay-inclusions-wrapper {
  width: 100%;
  float: left;
}
.stay-inclusions-wrapper .stay-inclusions {
  width: 100%;
  float: left;
  padding: 3rem 3rem 2.5rem;
  background: var(--color1);
}
.stay-inclusions-wrapper .stay-inclusions h3 {
  color: white;
  font-size: 1.8rem;
  padding-bottom: 2.4rem;
  position: relative;
}
.stay-inclusions-wrapper .stay-inclusions h3:before {
  content: "";
  position: absolute;
  left: 0.75rem;
  bottom: 1.4rem;
  width: 80px;
  height: 1.5px;
  background: white;
}
.stay-inclusions-wrapper .stay-inclusions ul li {
  color: white;
  font-size: 0.9rem;
  padding-bottom: 20px;
  position: relative;
  padding-left: 20px;
}
.stay-inclusions-wrapper .stay-inclusions ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.single-stay-gallery-wrapper {
  width: 100%;
  float: left;
  padding: 1rem 0 4rem;
}
.single-stay-gallery-wrapper .single-stay-gallery {
  width: 100%;
  float: left;
  overflow: hidden;
}
.single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-slide {
  width: 450px; /* or your preferred width */
  transition-timing-function: linear !important;
}
.single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.stay-options-wrapper {
  width: 100%;
  float: left;
  background: #f8f8f2;
  padding: 4rem 0;
}
.stay-options-wrapper .stay-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.stay-options-wrapper .stay-options-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stay-options-wrapper .stay-options-header p {
  max-width: 800px;
}
.stay-options-wrapper .stay-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.stay-options-wrapper .stay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.stay-options-wrapper .card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.stay-options-wrapper .stay-card:hover .card-image {
  transform: scale(1.05);
}
.stay-options-wrapper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.2em;
  color: white;
}
.stay-options-wrapper .stay-card:hover .card-overlay {
  opacity: 1;
}
.stay-options-wrapper .overlay-content {
  text-align: center;
}
.stay-options-wrapper .overlay-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.stay-options-wrapper .overlay-description {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  color: white;
}
.stay-options-wrapper .amenities {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.stay-options-wrapper .amenity {
  font-size: 0.8rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.stay-options-wrapper .book-button {
  background: white;
  color: var(--color1);
  padding: 10px 20px;
  border: none;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 5px 5px;
  height: 40px;
}
.stay-options-wrapper .book-button:hover {
  background: var(--color1);
  color: white;
  transform: translateY(-2px);
}
.stay-options-wrapper .book-button::after {
  font-family: "Font Awesome 5 Free"; /* FA5 Free */
  font-weight: 900; /* Solid style */
  content: "\f133"; /* Calendar icon */
  display: inline-block;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  transform: translateY(0px);
}
.stay-options-wrapper .book-button:hover::after {
  transform: translateX(3px);
}
.stay-options-wrapper .explore-more-btn {
  background: white;
  color: var(--color1);
  padding: 10px 20px;
  border: none;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 5px 5px;
  height: 40px;
}
.stay-options-wrapper .explore-more-btn:hover {
  background: var(--color1);
  color: white;
  transform: translateY(-2px);
}
.stay-options-wrapper .explore-more-btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s ease;
  transform: translateY(-2px);
}
.stay-options-wrapper .explore-more-btn:hover::after {
  transform: translateX(3px);
}
.stay-options-wrapper .card-footer {
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(184, 149, 106, 0.9));
  background: var(--color1);
  padding: 1.2rem 1.5rem;
}
.stay-options-wrapper .footer-title {
  font-size: 1.2rem;
  line-height: 1.2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Playfair Display", serif;
}
.stay-options-wrapper .footer-arrow {
  font-size: 1.7rem;
  transition: transform 0.3s ease;
  padding-left: 15px;
}
.stay-options-wrapper .stay-card:hover .footer-arrow {
  transform: translateX(10px);
}
.stay-options-wrapper .explore-more {
  text-align: center;
}
.stay-options-wrapper .explore-button {
  background: transparent;
  color: var(--color1);
  padding: 12px 25px;
  border: 1.5px solid var(--color1);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.stay-options-wrapper .explore-button:hover {
  background: var(--color1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 149, 106, 0.3);
}
.stay-options-wrapper .explore-button::after {
  content: "→";
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  transform: translateY(-3px);
}
.stay-options-wrapper .explore-button:hover::after {
  transform: translateX(5px);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stay-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.stay-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stay-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stay-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dining-intro-wrapper {
  background: white;
}
.dining-intro-wrapper .stay-ctas {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.dining-intro-wrapper .stay-ctas a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-right: 15px;
  margin-bottom: 10px;
}
.dining-intro-wrapper .stay-ctas a:hover {
  background: var(--color1);
  color: white;
}
.dining-intro-wrapper .stay-ctas a:first-child {
  color: white;
  background: var(--color1);
}

.dining-content-wrapper {
  width: 100%;
  float: left;
  padding: 4rem 0;
  background: #fbfaf8;
  background: #f8f8f2;
}
.dining-content-wrapper h3 {
  line-height: 1.6;
}

.dining-content-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: start;
  /* First card - Gourmet dish */
  /* Second card - Beach dining */
  /* Third card - Wine cellar */
  /* Fourth card - Additional content area */
  /* Decorative elements */
  /* Animation on scroll */
  /* Typography enhancements */
}
.dining-content-cards .culinary-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: white;
}
.dining-content-cards .culinary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.dining-content-cards .card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
  transition: transform 0.6s ease;
}
.dining-content-cards .culinary-card:hover .card-image {
  transform: scale(1.05);
}
.dining-content-cards .gourmet-card {
  grid-column: 1;
  grid-row: 1/3;
  height: 600px;
}
.dining-content-cards .gourmet-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.8));
  padding: 30px 30px 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.dining-content-cards .gourmet-title {
  color: #444;
  padding-bottom: 10px;
}
.dining-content-cards .gourmet-text {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}
.dining-content-cards .beach-card {
  grid-column: 2;
  grid-row: 1;
  height: 400px;
  position: relative;
}
.dining-content-cards .beach-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.dining-content-cards .beach-text {
  color: #4a5c42;
  font-size: 0.9rem;
  line-height: 1.6;
}
.dining-content-cards .wine-card {
  grid-column: 3;
  grid-row: 1;
  height: 400px;
}
.dining-content-cards .wine-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.dining-content-cards .wine-text {
  color: #4a5c42;
  font-size: 0.9rem;
  line-height: 1.6;
}
.dining-content-cards .content-card {
  grid-column: 2/4;
  grid-row: 2;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px 40px;
}
.dining-content-cards .additional-content {
  text-align: center;
  color: #5a6b4f;
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  max-width: 700px;
}
.dining-content-cards .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.dining-content-cards .culinary-card:hover .card-overlay {
  opacity: 1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dining-content-cards .culinary-card {
  animation: fadeInUp 0.8s ease-out forwards;
}
.dining-content-cards .culinary-card:nth-child(1) {
  animation-delay: 0.1s;
}
.dining-content-cards .culinary-card:nth-child(2) {
  animation-delay: 0.2s;
}
.dining-content-cards .culinary-card:nth-child(3) {
  animation-delay: 0.3s;
}
.dining-content-cards .culinary-card:nth-child(4) {
  animation-delay: 0.4s;
}
.dining-content-cards .highlight {
  color: #8b7355;
  font-weight: 500;
}
.dining-content-cards .elegant-separator {
  width: 40px;
  height: 2px;
  background: var(--color1);
  margin: 15px auto;
  border-radius: 1px;
}

.dining-offers-wrapper {
  width: 100%;
  float: left;
}
.dining-offers-wrapper a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-right: 15px;
  margin-bottom: 10px;
}
.dining-offers-wrapper a:hover {
  background: var(--color1);
  color: white;
}

.single-stay-gallery-wrapper .swiper-button-next,
.single-stay-gallery-wrapper .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  opacity: 0.95;
  color: #fff;
}

.single-stay-gallery-wrapper .swiper-button-next:after,
.single-stay-gallery-wrapper .swiper-button-prev:after {
  font-size: 16px;
}

.btn-fill-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  /* Background wipe effect */
  background: linear-gradient(135deg, white 50%, var(--color1) 50%);
  background-size: 200% 200%;
  background-position: bottom right;
  color: white;
  border: 1px solid white;
  transition: background-position 0.7s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.btn-fill-hover i {
  transition: transform 0.4s ease, color 0.4s ease-in-out;
}

.btn-fill-hover:hover {
  background-position: top left; /* diagonal wipe */
  color: var(--color1);
  border-color: var(--color1); /* border animates in */
}

.btn-fill-hover:hover i {
  transform: translateX(4px) rotate(-10deg);
  color: var(--color1);
}

.spa-intro-wrapper {
  background: #f8f8f2;
}
.spa-intro-wrapper p {
  font-size: 1rem;
}

.dining-intro-wrapper .stay-ctas a {
  padding: 16px 20px 12px;
}

.spa-treatments-title h3 {
  font-size: 1.8rem;
}
.spa-treatments-title p {
  font-size: 1rem;
}

.spa-treatments {
  /* Spa Services Grid */
}
.spa-treatments .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 30px;
}
.spa-treatments .service-card {
  background: white;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spa-treatments .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.spa-treatments .service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: white;
}
.spa-treatments .service-icon img {
  width: 55px;
  filter: grayscale(1) brightness(0) invert(1);
}
.spa-treatments .service-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: var(--color1);
  color: #666;
  font-weight: 600;
}
.spa-treatments .service-card p {
  color: var(--text-color);
  line-height: 1.7;
}

.spa-facilities {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.15) 100%), url(../images/spa-treatments.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.spa-facilities .facilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.spa-facilities .facility-item {
  background: linear-gradient(135deg, #d1faf0, #dffaf6);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border-left: rgba(0, 104, 80, 0.9) 4px solid;
  width: 100%;
  max-width: 300px;
}
.spa-facilities .facility-item h4 {
  color: var(--color1);
  margin-bottom: 10px;
  font-size: 1.2em;
}
.spa-facilities .spa-facilities-content {
  width: 100%;
  max-width: 90rem;
}
.spa-facilities .spa-facilities-title h3 {
  color: white;
}
.spa-facilities .spa-facilities-title p {
  color: white;
}

.spa-booking-wrapper {
  background: var(--color1);
  background: #d1faf0;
}
.spa-booking-wrapper .contact-info {
  color: white;
  border-radius: 20px;
  text-align: center;
}
.spa-booking-wrapper .contact-info h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.spa-booking-wrapper .book-intro {
  line-height: 1.7;
}
.spa-booking-wrapper .contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.spa-booking-wrapper .contact-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.424), rgba(255, 255, 255, 0.39));
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spa-booking-wrapper .contact-item h4 {
  padding-bottom: 8px;
  font-size: 1.2rem;
}
.spa-booking-wrapper .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.spa-booking-wrapper .btn {
  display: inline-block;
  padding: 10px 20px;
  border: solid 1.5px var(--color1);
  color: var(--color1);
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 25px;
  border-radius: 0 !important;
}
.spa-booking-wrapper .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(33, 122, 88, 0.3);
  color: white;
  background: var(--color1);
}

.spa-gallery-title h3 {
  font-size: 1.8rem;
}
.spa-gallery-title p {
  font-size: 1rem;
}

.about-banner-wrapper {
  height: 80vh;
  max-height: 800px;
}
.about-banner-wrapper figure img {
  -o-object-position: center;
     object-position: center;
}

.about-content-wrapper {
  background: #f8f8f2;
}
.about-content-wrapper .home-stay-image {
  height: 100%;
}
.about-content-wrapper .home-stay-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-values-wrapper .service-card {
  padding: 40px 30px;
}
.about-values-wrapper .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-experiences-wrapper {
  background: #f8f8f2;
}
.about-experiences-wrapper .experience-slide-content {
  background: #f8f8f2;
}

.about-testimonials-wrapper {
  padding: 4rem 0 5rem;
}

.gym-content-wrapper p {
  font-size: 0.95rem;
}
.gym-content-wrapper ul {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.gym-content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0; /* no extra space — marker is pseudo-element */
  line-height: 1.35;
  color: var(--text-color);
  font-weight: 300;
  font-size: 0.9rem;
}
.gym-content-wrapper ul li:before {
  content: "";
  flex: 0 0 1.25rem; /* marker width */
  height: 1.25rem;
  background-image: url('data:image/svg+xml;utf8,                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">                <circle cx="12" cy="12" r="11" fill="%2334a853"/>                <path d="M7.5 12.5l2.5 2.5 6-7" stroke="%23fff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>                </svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* optional subtle entrance */
  transform: translateY(0);
}

.gym-content-wrapper2 {
  background: white;
}

.gym-paddle-details {
  background: #f8f8f2;
}
.gym-paddle-details .gym-paddle-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
}
.gym-paddle-details .gym-paddle-grid .service-card {
  padding: 35px 25px;
}

.gym-intro-wrapper {
  background: white;
}
.gym-intro-wrapper ul {
  gap: 20px;
  justify-content: center;
}
.gym-intro-wrapper ul li {
  color: var(--text-color);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.5;
  width: auto;
  min-width: 200px;
}
.gym-intro-wrapper ul li img {
  width: 45px;
}

.stay-options-wrapper .stay-options {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
}

.paddle-book {
  float: left;
}
.paddle-book a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-right: 15px;
  margin-bottom: 10px;
  color: white;
  background: var(--color1);
  float: left;
}

.paddle-intro p {
  font-size: 1em;
}

.home-intro-wrapper .row h2 {
  font-size: 2rem;
  color: var(--color1);
}

.pool-intro-wrapper .row {
  display: flex;
  align-items: stretch;
}

.pool-intro-wrapper .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pool-intro-wrapper .col-lg-6 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pool-intro-wrapper p {
  font-size: 0.95em;
}
.pool-intro-wrapper ul li {
  color: var(--text-color);
  font-weight: 300;
  font-size: 0.9em;
  line-height: 1.45;
}
.pool-intro-wrapper ul li i {
  color: var(--color1);
}

.gym-paddle-details .pool-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
}
.gym-paddle-details .pool-grid .service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
}
.gym-paddle-details .pool-grid .service-card-text {
  padding: 5px 15px 20px;
}
.gym-paddle-details .pool-grid .service-card-text p {
  text-align: left;
}
.gym-paddle-details .pool-grid .service-card-text h3 {
  text-align: left;
  font-size: 1.2em;
  color: var(--color1);
}
.gym-paddle-details .pool-grid .service-icon {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}
.gym-paddle-details .pool-grid .service-icon img {
  width: 100%;
  margin: 0;
  filter: unset;
}

.tanzanite-intro-wrapper {
  background: #f8f8f2;
}
.tanzanite-intro-wrapper p {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-hero-wrapper {
  height: 55vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--color1);
}
.gallery-hero-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.gallery-hero-wrapper .gallery-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  padding-top: 6rem;
}
.gallery-hero-wrapper .gallery-hero-content h1 {
  font-size: 2.5rem;
  padding-bottom: 0.8rem;
  color: white;
}
.gallery-hero-wrapper .gallery-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
}

.privacy-hero-wrapper {
  height: 40vh;
  min-height: 400px;
}
.privacy-hero-wrapper .gallery-hero-content {
  padding-top: 8rem;
}

.gallery-grid-wrapper {
  /* Stack images in preview */
  /* Expanded gallery modal */
}
.gallery-grid-wrapper h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}
.gallery-grid-wrapper .gallery-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-grid-wrapper .gallery-card:hover {
  transform: translateY(-3px);
}
.gallery-grid-wrapper .gallery-stack {
  display: grid;
}
.gallery-grid-wrapper .gallery-stack img {
  width: 100%;
  grid-area: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.gallery-grid-wrapper .gallery-stack img:nth-child(2) {
  transform: rotate(-2deg) translateY(4px);
}
.gallery-grid-wrapper .gallery-stack img:nth-child(3) {
  transform: rotate(2deg) translateY(8px);
}
.gallery-grid-wrapper .gallery-stack img:nth-child(4) {
  transform: rotate(-3deg) translateY(12px);
}
.gallery-grid-wrapper .gallery-stack img:nth-child(5) {
  transform: rotate(3deg) translateY(16px);
}
.gallery-grid-wrapper .gallery-title {
  position: relative;
  bottom: -1rem;
  color: var(--text-color);
  padding: 15px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.gallery-grid-wrapper .modal-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-grid-wrapper .modal-lg, .gallery-grid-wrapper .modal-xl {
  max-width: 1100px;
}
.gallery-grid-wrapper .modal-content {
  overflow: hidden;
}
.gallery-grid-wrapper .modal-content .modal-body {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
}
.gallery-grid-wrapper .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.home-dine-wrapper .gallery-dine-content {
  background: rgba(0, 0, 0, 0.32);
}
.home-dine-wrapper .gallery-dine-content p {
  padding-bottom: 15px;
}
.home-dine-wrapper .gallery-dine-content h2 {
  font-size: 1.8rem;
}

.contact-section-wrapper .contact-info p strong {
  display: flex;
  width: 100%;
  align-items: flex-end;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 3px;
}
.contact-section-wrapper .contact-info p strong span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-right: 8px;
}
.contact-section-wrapper .contact-form {
  background: #d1faf0;
  padding: 35px;
}
.contact-section-wrapper .contact-form h3 {
  font-size: 1.4rem;
  padding-bottom: 10px;
}
.contact-section-wrapper .contact-form input, .contact-section-wrapper .contact-form textarea {
  padding: 8px;
  border: 1px solid #5d9c8d;
  padding: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-color);
}
.contact-section-wrapper .contact-form input::-moz-placeholder, .contact-section-wrapper .contact-form textarea::-moz-placeholder {
  color: #979797;
}
.contact-section-wrapper .contact-form input::placeholder, .contact-section-wrapper .contact-form textarea::placeholder {
  color: #979797;
}
.contact-section-wrapper .contact-form button {
  color: white;
  background: var(--color1);
  border: var(--color1) 1px solid;
  padding: 12px 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.privacy-section .last-updated p {
  background: #d1faf0;
  padding: 15px 20px;
  border-left: 4px solid var(--color1);
  font-size: 0.95em;
  color: var(--color1);
  max-width: 300px;
}
.privacy-section .last-updated p strong {
  font-weight: 700;
}
.privacy-section .privacy-content h2 {
  color: var(--color1);
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: 400;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}
.privacy-section .privacy-content h3 {
  color: var(--color1);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}
.privacy-section .privacy-content p {
  margin-bottom: 10px;
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.6;
}
.privacy-section .privacy-content p:last-child {
  margin-bottom: 0;
  margin-top: 10px;
}
.privacy-section .privacy-content ul {
  margin-bottom: 20px;
  margin-left: 20px;
}
.privacy-section .privacy-content li {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text-color);
  list-style-type: disc;
  font-weight: 300;
  line-height: 1.6;
}
.privacy-section .privacy-content .contact-box {
  background: #d1faf0;
  padding: 30px;
  margin-top: 25px;
  border: 1px solid #1fa281;
}
.privacy-section .privacy-content .contact-box h3 {
  margin-top: 0;
  color: var(--color1);
}
.privacy-section .privacy-content .contact-info {
  margin-top: 10px;
}
.privacy-section .privacy-content .contact-info p {
  margin-bottom: 3px;
}
.privacy-section .privacy-content .contact-info strong {
  color: var(--color1);
}
.privacy-section .privacy-content a {
  color: var(--color1);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s;
}
.privacy-section .privacy-content a:hover {
  border-bottom: 1px solid var(--color1);
}
.privacy-section .privacy-content .privacy-bottom {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 2px solid #e0e0e0;
}

.hotel-aminities-slider-wrapper .pagination-name {
  padding-bottom: 10px;
}

.hotel-aminities-slider-wrapper .pagination-item.active .pagination-name {
  border-bottom: white 2px solid;
  padding: 0 8px 8px;
}

@media handheld, only screen and (min-width: 1920px) {
  .container-rigid {
    max-width: 1800px;
  }
  .spa-treatments .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
  .about-values-wrapper .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media (max-width: 1450px) {
  .single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-slide {
    width: 350px;
  }
  .gym-intro-wrapper ul li {
    width: calc(22% - 15px);
  }
  .spa-treatments .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .about-values-wrapper .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
  .about-values-wrapper .service-card {
    padding: 30px 25px;
  }
  .desktop-navigation .logo {
    width: 140px;
  }
  .spa-facilities .facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .spa-facilities .facility-item {
    max-width: 100%;
  }
  .hotel-aminities-slider-wrapper .slider-container {
    height: 90vh;
  }
  .home-experiences-wrapper .experience-slide img {
    min-height: 450px;
  }
  .stay-types-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .stay-banner-wrapper .stay-banner-content h1 {
    font-size: 2.4rem;
  }
  .stay-intro-details h2 {
    font-size: 1.8rem;
  }
  .stay-banner-wrapper {
    height: 80vh;
    max-height: 600px;
    min-height: 400px;
  }
  .stay-types-list .stay-type:nth-child(1),
  .stay-types-list .stay-type:nth-child(3),
  .stay-types-list .stay-type:nth-child(5) {
    margin-top: 0;
  }
  .stay-types-list .stay-type:nth-child(2),
  .stay-types-list .stay-type:nth-child(4),
  .stay-types-list .stay-type:nth-child(6) {
    margin-top: 1.5rem;
  }
  .stay-types-list {
    grid-row-gap: 1rem;
  }
  .stay-types-list .stay-type .stay-type-content a {
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px;
  }
  .home-intro-wrapper .row h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-slide {
    width: 320px;
  }
  .dining-banner-wrapper .home-banner-content p {
    font-size: 1rem;
  }
  .home-experiences-wrapper .experience-slide img {
    min-height: 420px;
  }
  .spa-treatments .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }
  .stay-intro-wrapper {
    padding-top: 2rem !important;
  }
  .spa-facilities .facilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .gym-intro-wrapper ul li {
    width: calc(25% - 15px);
    min-width: auto;
  }
  .gym-paddle-details .gym-paddle-grid {
    flex-wrap: wrap;
  }
  .gym-paddle-details .gym-paddle-grid .service-card {
    width: calc(50% - 10px);
  }
  .home-experiences-wrapper .experience-slide img {
    width: 60%;
  }
  .home-experiences-wrapper .experience-slide .experience-slide-content {
    width: 40%;
  }
  .gym-paddle-details .pool-grid, .stay-options-wrapper .stay-options {
    flex-wrap: wrap;
  }
  .gym-paddle-details .pool-grid .service-card, .gym-paddle-details .gym-paddle-grid .service-card,
  .stay-options-wrapper .stay-options .stay-card {
    width: calc(50% - 10px);
  }
  .home-banner-wrapper .home-banner-content h1 {
    font-size: 2rem;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.6rem;
  }
  .hotel-aminities-slider-wrapper .slider-container {
    height: 75vh;
  }
  body h2, .home-experiences-wrapper .experience-slide-content h3 {
    font-size: 1.6rem;
  }
  .home-testimonials-wrapper {
    padding: 3rem 0;
  }
  .footer-main-wrapper .footer-main {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-column1 {
    width: calc(50% - 15px);
  }
  .footer-column2 {
    width: calc(50% - 15px);
  }
  .footer-column3 {
    width: 100%;
  }
  .home-about-offers-wrapper .home-stay-image, .home-stay-wrapper .home-stay-image {
    min-height: 450px;
  }
  .home-banner-video-container {
    min-height: 80vh;
  }
  .spa-banner-wrapper {
    height: 60vh;
    max-height: 500px;
  }
  .stay-banner-wrapper {
    height: 60vh;
    max-height: 500px;
    min-height: 300px;
  }
  .hotel-aminities-slider-wrapper .logo-text {
    font-size: 2.5rem;
  }
  .hotel-aminities-slider-wrapper .logo-subtext {
    font-size: 0.8rem;
  }
  .hotel-aminities-slider-wrapper .logo-circle {
    width: 180px;
    height: 180px;
  }
  .stay-banner-wrapper .stay-banner-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-top: 2rem;
  }
  .stay-intro-details h2 {
    font-size: 1.8rem;
  }
  .stay-banner-wrapper .stay-banner-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  .stay-banner-wrapper .stay-banner-content .hero-description {
    font-size: 1rem;
  }
  .stay-banner-wrapper {
    background: url("../images/home-stay.webp") center bottom/cover no-repeat;
  }
  .extras-wrapper .extras-title h2 {
    font-size: 1.8rem;
  }
  .home-intro-wrapper .row h1 {
    font-size: 1.6rem;
  }
  .single-stay-banner-wrapper, .dining-banner-wrapper {
    height: 60vh;
    max-height: 500px;
  }
  .single-stay-intro-wrapper {
    padding-bottom: 3rem !important;
  }
  .dining-intro-wrapper {
    padding: 3rem 0 !important;
  }
  .stay-inclusions-wrapper .stay-inclusions {
    padding: 2rem;
  }
  .stay-inclusions-wrapper .stay-inclusions h3 {
    font-size: 1.6rem;
    padding-bottom: 1.8rem;
  }
  .stay-inclusions-wrapper .stay-inclusions h3:before {
    bottom: 1.2rem;
  }
  .stay-options-wrapper {
    padding: 3rem 0;
  }
  .dining-content-wrapper {
    padding: 3rem 0;
  }
  .dining-content-wrapper h3 {
    padding-top: 0 !important;
    font-size: 1.2rem;
    padding-bottom: 0.8rem !important;
  }
  .dining-content-cards .gourmet-title {
    font-size: 1.2rem;
  }
  .dining-content-cards {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .dining-content-cards .gourmet-card {
    grid-column: 1/3;
    grid-row: 1;
  }
  .dining-content-cards .beach-card {
    grid-column: 1/2;
    grid-row: 2;
  }
  .dining-content-cards .wine-card {
    grid-column: 2/3;
    grid-row: 2;
  }
  .dining-content-cards .content-card {
    grid-column: 1/3;
    grid-row: 3;
    min-height: 100px;
    padding: 0;
  }
  .dining-content-cards .elegant-separator {
    margin: 8px auto;
  }
  .spa-treatments-title h3 {
    font-size: 1.6rem;
  }
  .gallery-hero-wrapper .gallery-hero-content h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 991.8px) {
  .home-experiences-wrapper .experience-slide img,
  .home-experiences-wrapper .experience-slide .experience-slide-content {
    width: 100%;
  }
  .single-stay-intro-wrapper {
    padding-bottom: 1rem !important;
  }
  .home-experiences-wrapper .experience-slide {
    flex-wrap: wrap;
  }
  .home-experiences-wrapper .experience-slide .experience-slide-content {
    border: 1px solid #eee;
  }
  .single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-slide {
    width: 300px;
  }
  .gym-intro-wrapper ul li {
    width: calc(40% - 10px);
    min-width: 200px;
  }
  .home-stay-wrapper {
    padding: 10px 0 !important;
  }
  .home-experiences-wrapper .swiper {
    padding-bottom: 4rem !important;
  }
  .home-testimonials-wrapper {
    padding: 2rem 0;
  }
  .home-experiences-wrapper .swiper-pagination-bullets-dynamic {
    bottom: 1rem;
  }
  .experience-swiper .swiper-button-next,
  .experience-swiper .swiper-button-prev {
    top: unset;
    bottom: 1rem;
  }
  .single-stay-gallery-wrapper {
    padding: 1rem 0 3rem;
  }
  .stay-options-wrapper {
    padding: 2rem 0;
  }
  .dining-intro-wrapper {
    padding: 2rem 0 !important;
  }
  .dining-content-wrapper {
    padding: 2rem 0;
  }
  .dining-offers-wrapper a {
    float: left;
  }
}
@media (max-width: 960px) {
  .home-experiences-wrapper .experience-slide-content {
    padding: 1.8rem;
  }
  .single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-slide {
    width: 280px;
  }
  .privacy-section-wrapper {
    margin: 0 !important;
  }
  .dining-intro-wrapper .stay-ctas a {
    padding: 12px 15px 10px;
  }
  .dining-banner-wrapper .home-banner-content p {
    font-size: 1rem;
  }
  .dining-content-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 400;
  }
  .privacy-section .privacy-content .contact-box {
    padding: 20px;
    margin-top: 20px;
  }
  .privacy-section .privacy-content h2 {
    padding-bottom: 8px;
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 1.3rem;
  }
  .privacy-section .privacy-content h3 {
    margin-top: 12px;
    margin-bottom: 8px;
  }
  .hotel-aminities-slider-wrapper .nav-button {
    width: 45px;
    height: 45px;
  }
  .hotel-aminities-slider-wrapper .nav-button {
    font-size: 1rem;
  }
  .stay-inclusions-wrapper .stay-inclusions {
    padding: 1.8rem 1.8rem 1.5rem;
  }
  .stay-inclusions-wrapper .stay-inclusions h3 {
    font-size: 1.4rem;
    padding-bottom: 1.6rem;
  }
  .stay-inclusions-wrapper .stay-inclusions h3:before {
    bottom: 1rem;
  }
  .single-stay-intro-wrapper {
    padding-bottom: 0rem !important;
  }
  .single-stay-intro-wrapper .container-rigid {
    padding-bottom: 0;
  }
  .gallery-hero-wrapper .gallery-hero-content p {
    font-size: 0.9rem;
  }
  .privacy-section .privacy-content .privacy-bottom {
    margin-top: 25px;
    padding-top: 10px;
  }
  body h3 {
    font-size: 1.4rem;
  }
  .spa-treatments-title h3 {
    font-size: 1.4rem;
  }
  .dining-intro-wrapper {
    padding: 0.5rem 0 !important;
  }
  .dining-content-wrapper {
    padding: 0.5rem 0;
  }
  .dining-content-wrapper .w-75 {
    width: 100% !important;
  }
  .dining-content-cards {
    gap: 20px;
  }
  .single-stay-gallery-wrapper {
    padding: 0 0 2rem;
  }
  .stay-banner-wrapper .stay-banner-content .hero-subtitle {
    display: none;
  }
  .spa-treatments .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .home-intro-wrapper .row h1 {
    font-size: 1.4rem;
  }
  .container-rigid {
    width: 100%;
    padding: 20px;
  }
  .stay-intro-wrapper {
    padding-top: 0px !important;
  }
  footer .footer-newsletter-wrapper {
    padding: 1rem 0;
  }
  .footer-main-wrapper {
    padding: 0rem 0 1rem;
  }
  .footer-main-wrapper .footer-main .footer-column h2 {
    padding-bottom: 8px;
    font-size: 1.2rem;
  }
  .footer-main-wrapper .footer-main .footer-column ul li {
    padding: 5px 0;
  }
  .footer-main-wrapper .footer-main {
    gap: 20px;
  }
  footer .footer-newsletter h3 {
    font-size: 1.6rem;
  }
  footer .footer-newsletter-wrapper {
    padding: 10px 0;
  }
  .gym-paddle-details .pool-grid .service-card, .gym-paddle-details .gym-paddle-grid .service-card,
  .stay-options-wrapper .stay-options .stay-card {
    width: 100%;
  }
  .gym-intro-wrapper ul li {
    width: calc(42% - 10px);
    min-width: 200px;
  }
  .gym-intro-wrapper ul {
    gap: 10px;
  }
  .home-intro-wrapper {
    padding: 1rem 0;
  }
  .home-banner-wrapper .home-banner-content h1 {
    font-size: 1.6rem;
    padding-bottom: 0 !important;
    padding-top: 2rem !important;
  }
  .spa-treatments {
    padding: 0 !important;
  }
  .home-banner-wrapper .home-banner-content .banner-tripadvisor a {
    width: 60px;
  }
  .home-intro-contact {
    padding-top: 1rem !important;
  }
  .hotel-aminities-slider-wrapper {
    background: #f8f8f2;
  }
  .hotel-aminities-slider-wrapper .slider-container {
    height: 55vh;
  }
  .hotel-aminities-slider-wrapper .center-logo {
    top: 2.5rem;
  }
  .hotel-aminities-slider-wrapper .logo-circle {
    background: transparent;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    border: none;
    flex-direction: row;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    gap: 8px;
  }
  .hotel-aminities-slider-wrapper .custom-pagination {
    bottom: 20px;
    gap: 20px;
  }
  .hotel-aminities-slider-wrapper .pagination-number {
    margin-bottom: 12px;
  }
  .hotel-aminities-slider-wrapper .pagination-name {
    padding-bottom: 8px;
  }
  .hotel-aminities-slider-wrapper .pagination-item.active .pagination-name {
    border-bottom: white 2px solid;
    padding: 0 5px 8px;
  }
  .hotel-aminities-slider-wrapper .logo-text {
    font-size: 1.6rem;
  }
  .hotel-aminities-slider-wrapper .logo-subtext {
    font-size: 1.2rem;
  }
  .home-testimonials-wrapper {
    padding: 0;
  }
  .home-testimonials-wrapper .feedback-card {
    padding: 10px 20px;
  }
  .home-dine-wrapper .home-dine-content h2 {
    font-size: 1.6rem;
    padding-bottom: 5px;
  }
  .home-dine-wrapper .home-dine-content p {
    padding-bottom: 15px;
  }
  footer .footer-newsletter form {
    gap: 15px;
  }
  .home-about-offers-wrapper .home-stay-image, .home-stay-wrapper .home-stay-image {
    min-height: 450px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .footer-bottom p {
    width: 100%;
    text-align: center;
    line-height: 1.2;
  }
  .footer-bottom ul {
    width: 100%;
    justify-content: center;
    padding-top: 15px;
  }
  .footer-bottom-wrapper {
    padding: 0 !important;
  }
  .desktop-navigation {
    padding-top: 0 !important;
  }
  .home-banner-video-container {
    min-height: 65vh;
  }
  .spa-banner-wrapper .home-banner-content p {
    font-size: 1rem;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.4rem;
  }
  .dining-offers-wrapper {
    padding: 0.5rem 0 !important;
  }
  .spa-gallery-title h3 {
    font-size: 1.6rem;
  }
  .spa-booking-wrapper .contact-info h3 {
    font-size: 1.6rem;
  }
  .spa-booking-wrapper .btn {
    margin-top: 20px;
  }
  .back-to-top {
    right: unset;
    left: 30px;
    bottom: 40px;
  }
  .stay-banner-wrapper .stay-banner-content h1 {
    font-size: 1.6rem;
  }
  .stay-intro-details h2 {
    font-size: 1.5rem;
    padding-top: 0 !important;
  }
  .stay-types-wrapper {
    padding-top: 0 !important;
  }
  .stay-types-wrapper .container-rigid {
    padding: 0 20px;
  }
  .stay-intro-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
  .stay-types-wrapper-2 .stay-type-row h4 {
    position: absolute;
    top: 1.4rem;
  }
  .stay-types-wrapper-2 .stay-type-row h2 {
    margin-left: 3rem;
    font-size: 1.3rem;
    padding-top: 0 !important;
  }
  .extras-wrapper {
    padding: 0 !important;
  }
  .extras-wrapper .extras-title h2 {
    font-size: 1.6rem;
  }
  .extras-wrapper .extras-title p {
    font-size: 0.9rem;
  }
  .extras-wrapper .premium-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .extras-wrapper .premium-box {
    padding: 1.8rem;
  }
  .extras-wrapper .extras-list {
    gap: 0.8rem;
  }
  .extras-wrapper .extra-item {
    padding: 0.8rem 0;
  }
  .single-stay-banner-wrapper, .dining-banner-wrapper, .spa-banner-wrapper {
    height: 50vh;
    max-height: 400px;
  }
  body h2, .home-experiences-wrapper .experience-slide-content h3 {
    font-size: 1.4rem;
  }
  .stay-options-wrapper {
    padding: 10px 0;
  }
  .stay-options-wrapper .card-overlay {
    opacity: 1;
    z-index: 2;
  }
  .stay-options-wrapper img.card-image {
    position: relative;
    z-index: 1;
  }
  .spa-treatments-title p {
    font-size: 0.9rem;
  }
  .stay-options-wrapper .overlay-description {
    max-width: 650px;
  }
  .stay-options-wrapper .card-footer {
    position: relative;
    z-index: 3;
  }
  .spa-treatments .service-card h3 {
    font-size: 1.2rem;
  }
  .spa-treatments .service-card {
    padding: 30px;
  }
  .dining-intro-wrapper .stay-ctas {
    padding-top: 8px;
  }
  .spa-facilities .facilities {
    gap: 20px;
  }
  .gym-paddle-details .gym-paddle-grid .service-card {
    padding: 30px;
  }
  .spa-treatments .service-icon {
    width: 80px;
    height: 80px;
  }
  .spa-treatments .service-icon img {
    width: 42px;
  }
  .pool-intro-wrapper p {
    font-size: 0.9rem;
  }
  .home-dine-wrapper .home-dine img {
    height: 100%;
  }
  .home-dine-wrapper .home-dine {
    height: 500px;
  }
  .gallery-hero-wrapper .gallery-hero-content h1 {
    font-size: 1.6rem;
  }
  .gallery-hero-wrapper .gallery-hero-content {
    padding-top: 4rem;
  }
  .gallery-hero-wrapper {
    height: 45vh;
    min-height: 300px;
  }
  .contact-section-wrapper .contact-form {
    padding: 25px;
  }
  .gallery-hero-wrapper .gallery-hero-content h1 {
    padding-bottom: 5px;
  }
  .desktop-navigation .logo {
    width: 120px;
  }
  header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a {
    font-size: 1rem;
  }
  header .desktop-navigation-wrapper .mega-menu-content {
    padding: 0px 0px 12px;
  }
  header .desktop-navigation-wrapper .mega-menu-links {
    padding-top: 0.5rem;
  }
  header .desktop-navigation-wrapper .mega-links-book a {
    padding: 12px 15px;
  }
  header .desktop-navigation-wrapper .mega-menu-links .mega-links-top a.active::before {
    font-size: 0.8rem;
    left: -1.3rem;
  }
  header .desktop-navigation-wrapper .mega-menu-links .mega-links-top .dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .single-stay-gallery-wrapper .swiper.smoothSwiper .swiper-slide {
    width: 240px;
  }
  body h3 {
    font-size: 1.3rem;
  }
  .dining-intro-wrapper {
    padding-bottom: 0 !important;
  }
  .dining-banner-wrapper .home-banner-content p {
    font-size: 0.9rem;
  }
  header .desktop-navigation-wrapper .mega-menu-content {
    max-width: 400px;
  }
  .gallery-hero-wrapper {
    height: 40vh;
    min-height: 300px;
  }
  .gallery-hero-wrapper .gallery-hero-content {
    padding-top: 3.5rem;
  }
  .gallery-hero-wrapper .gallery-hero-content h1 {
    font-size: 1.4rem;
  }
  .spa-treatments .service-card h3 {
    font-size: 1.1rem;
  }
  .gym-paddle-details .gym-paddle-grid .service-card {
    padding: 20px;
  }
  .spa-treatments .service-card {
    padding: 20px;
  }
  .hotel-aminities-slider-wrapper .slider-container {
    height: 45vh;
  }
  .dining-content-wrapper h3 {
    font-size: 1rem;
    font-weight: 400;
  }
  .spa-treatments-title h3 {
    font-size: 1.3rem;
  }
  .home-intro-wrapper .row h1 {
    font-size: 1.3rem;
  }
  .stay-types-list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 1.8rem;
  }
  .stay-types-list .stay-type {
    padding: 0px 0px 10px;
    background: #ecfffa;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .home-dine-wrapper .home-dine {
    height: 400px;
  }
  .dining-content-cards {
    display: flex;
    flex-wrap: wrap;
  }
  .dining-content-cards .culinary-card {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 450px;
  }
  .single-stay-banner-wrapper, .dining-banner-wrapper, .spa-banner-wrapper {
    height: 40vh;
    max-height: 320px;
  }
  .stay-types-list .stay-type .stay-type-content {
    padding: 1.8rem;
  }
  .stay-types-list .stay-type .stay-type-content a {
    padding: 12px 20px !important;
    border: 1px var(--color1) solid !important;
    background: transparent;
  }
  .stay-types-list .stay-type .stay-type-content a:hover {
    background: var(--color1);
    color: white;
  }
  .stay-types-list .stay-type:nth-child(2), .stay-types-list .stay-type:nth-child(4), .stay-types-list .stay-type:nth-child(6) {
    margin-top: 0;
  }
  .stay-banner-wrapper .scroll-indicator {
    display: none;
  }
  .home-experiences-wrapper .experience-slide img {
    min-height: 340px;
  }
  .home-about-offers-wrapper .home-stay-image, .home-stay-wrapper .home-stay-image {
    min-height: 380px;
  }
  .dining-offers-wrapper {
    padding: 0rem 0 !important;
  }
  .home-banner-video-container {
    min-height: 65vh;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.4rem;
  }
  .spa-gallery-title h3 {
    font-size: 1.4rem;
  }
  .spa-booking-wrapper .contact-info h3 {
    font-size: 1.4rem;
  }
  footer .footer-newsletter h3 {
    font-size: 1.4rem;
  }
  .spa-booking-wrapper .btn {
    margin-top: 15px;
  }
  .spa-gallery-title {
    padding-bottom: 10px !important;
  }
  .spa-booking-wrapper {
    padding: 0 !important;
  }
  .spa-gallery-title p {
    font-size: 0.9rem;
  }
  body h2, .home-experiences-wrapper .experience-slide-content h3 {
    font-size: 1.3rem;
  }
  .gym-intro-wrapper ul li img {
    width: 40px;
  }
  .spa-treatments .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .footer-newsletter p {
    padding-bottom: 10px !important;
  }
  .container-rigid {
    padding: 20px 10px;
  }
  footer .footer-newsletter form {
    flex-wrap: wrap;
    gap: 20px;
  }
  .home-banner-wrapper .home-banner-content h1 {
    font-size: 1.5rem;
    padding-top: 3rem !important;
  }
  .home-banner-wrapper .home-banner-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .home-banner-wrapper .home-banner-content .banner-links {
    flex-wrap: wrap;
  }
  .home-banner-wrapper .home-banner-content .banner-links a {
    padding: 12px 20px;
  }
  .footer-column1, .footer-column2 {
    width: 100%;
    padding-bottom: 10px;
  }
  .home-intro-wrapper {
    padding: 0;
  }
  .hotel-aminities-slider-wrapper .amenity-number {
    font-size: 5rem;
  }
  .hotel-aminities-slider-wrapper .amenity-name {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  .hotel-aminities-slider-wrapper .custom-pagination {
    bottom: 15px;
    gap: 10px;
  }
  .hotel-aminities-slider-wrapper .pagination-number {
    font-size: 1.8rem;
  }
  .hotel-aminities-slider-wrapper .pagination-name {
    font-size: 0.7rem;
  }
  .hotel-aminities-slider-wrapper .nav-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .hotel-aminities-slider-wrapper .nav-prev {
    left: 15px;
  }
  .hotel-aminities-slider-wrapper .nav-next {
    right: 15px;
  }
  .home-experiences-wrapper .experience-slide {
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: visible;
  }
  .home-experiences-wrapper .experience-slide img,
  .home-experiences-wrapper .experience-slide .experience-slide-content {
    width: 100%;
  }
  .home-experiences-wrapper .swiper-slide {
    margin-bottom: 25px;
  }
  .experience-slide-content {
    padding: 30px 20px;
    text-align: center;
  }
  .home-experiences-wrapper .swiper-button-next, .home-experiences-wrapper .swiper-button-prev {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    display: none;
  }
  .home-experiences-wrapper .swiper {
    padding-bottom: 1rem !important;
  }
  .home-experiences-wrapper .swiper-pagination-bullets-dynamic {
    bottom: 2px;
  }
  .home-experiences-wrapper .swiper-button-next {
    right: 20px;
  }
  .home-experiences-wrapper .swiper-button-prev {
    left: 20px;
  }
  .home-experiences-wrapper .experience-slide-content {
    padding: 1.5rem;
  }
  .home-experiences-wrapper .experience-slide-content h3 {
    font-size: 1.4rem;
    padding-bottom: 8px;
  }
  .home-experiences-wrapper .experience-slide-content a.cta {
    padding: 0.5rem 1rem;
    border: var(--primary-light) solid 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: transparent;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 400;
  }
  .extras-wrapper .extras-title h2 {
    font-size: 1.4rem;
  }
  .home-dine-wrapper .home-dine-content h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .spa-facilities .facilities {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .desktop-navigation .book-now {
    display: none;
  }
  .home-about-offers-wrapper .home-stay-image, .home-stay-wrapper .home-stay-image {
    min-height: 320px;
  }
  .home-experiences-wrapper .experience-slide img {
    min-height: 300px;
  }
  header .desktop-navigation-wrapper .menu {
    order: 2;
    width: -moz-fit-content;
    width: fit-content;
  }
  .desktop-navigation .logo {
    width: 100px;
  }
  .spa-gallery-title h3 {
    font-size: 1.2rem;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.2rem;
  }
  .spa-booking-wrapper .contact-info h3 {
    font-size: 1.2rem;
  }
  body h2, .home-experiences-wrapper .experience-slide-content h3 {
    font-size: 1.2rem;
  }
  .hotel-aminities-slider-wrapper .logo-circle {
    width: 300px;
  }
  .extras-wrapper .extras-title h2 {
    font-size: 1.2rem;
  }
  .stay-options-wrapper .footer-title {
    font-size: 1.1rem;
  }
  .dining-content-cards .gourmet-card {
    max-height: 600px;
  }
  .dining-content-cards .gourmet-card .card-content {
    position: relative;
    padding: 20px;
  }
  .gym-intro-wrapper ul li {
    width: calc(100% - 10px);
    min-width: 200px;
  }
  .dining-content-cards .gourmet-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 420px) {
  .gym-intro-wrapper ul li {
    width: auto;
    min-width: 200px;
  }
  .spa-gallery-title h3 {
    font-size: 1.2rem;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.2rem;
  }
  .spa-booking-wrapper .contact-info h3 {
    font-size: 1.2rem;
  }
  body h2, .home-experiences-wrapper .experience-slide-content h3 {
    font-size: 1.2rem;
  }
  .home-about-offers-wrapper .home-stay-image, .home-stay-wrapper .home-stay-image {
    min-height: 250px;
  }
  .home-experiences-wrapper .experience-slide img {
    min-height: 260px;
  }
  .spa-treatments-title h3 {
    font-size: 1.2rem;
  }
  body h3 {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */