* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}
:root {
  /* Primary Brand */
  --primary: #0F3D3E;        /* Deep Ocean Green */
  --secondary: #2E6F6A;      /* Sea Green */

  /* Accent (Logo Match) */
  --accent-gold: #C9A24D;    /* Palm Gold */
  --accent-gold-dark: #B08C3A;

  /* Neutral / Sand */
  --sand: #F5F1E8;

  /* Text */
  --text-dark: #1E2E2F;
  --text-muted: #5F6F73;
  --text-light: #FFFFFF;

  /* Backgrounds */
  --nav-bg: #0C2F30;
  --page-bg: #FAFAF8;
  --card-bg: #FFFFFF;

  /* Buttons */
  --btn-primary-bg: #C9A24D;
  --btn-primary-text: #0C2F30;
  --btn-hover-bg: #B08C3A;

  /* Hero Overlay */
  --hero-overlay: linear-gradient(
    90deg,
    rgba(12,47,48,0.85) 20%,
    rgba(12,47,48,0.45) 60%,
    rgba(12,47,48,0.15)
  );
}

@media (max-width: 768px) {
  /* body {
    overflow-x: hidden;
  } */
}
::-webkit-scrollbar {
    width:10px;
}



::-webkit-scrollbar-thumb {
    background:#0f4d4d;
    border-radius:10px;
}
::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #C9A24D, #0f4d4d);
}
::-webkit-scrollbar-thumb:hover {
    background:#C9A24D;
}
html {
    scrollbar-width: thin;
    scrollbar-color: #0f4d4d #C9A24D;
}
.map-section {
  width: 100%;
  height: 450px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-section {
    height: 300px;
  }
}
.map-section {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.lp-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #0C2F30;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    z-index: 1000;
}

.lp-header-inner {
    width: 100%;
    max-width: 1500px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 28px;

    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 140px;
    align-items: center;
    gap: 20px;
}


/* =========================================================
   LOGO
========================================================= */

.lp-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lp-logo img {
    display: block;
    width: 164px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.lp-main-nav {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(12px, 1.8vw, 28px);
}

.lp-main-nav a {
    position: relative;

    color: #fff;
    text-decoration: none;
    white-space: nowrap;

    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 500;

    padding: 9px 0;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.lp-main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #C9A24D;

    transition: width 0.3s ease;
}

.lp-main-nav a:hover {
    color: #fff;
}

.lp-main-nav a:hover::after,
.lp-main-nav a.active::after {
    width: 100%;
}


/* =========================================================
   RIGHT ACTION
========================================================= */

.lp-header-action {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;
}


/* =========================================================
   BOOK NOW
========================================================= */

.lp-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 44px;

    padding: 0 18px;

    background: #C9A24D;
    color: #0C2F30;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.lp-cta:hover {
    background: #B08C3A;
    color: #0C2F30;
    transform: translateY(-1px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.lp-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;

    color: #fff;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 5px;
}

.lp-menu-btn span {
    display: block;

    width: 21px;
    height: 2px;

    background: #fff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.lp-mobile-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.55);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 1998;
}

.lp-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MOBILE SIDE MENU
========================================================= */

.lp-mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 88vw);
    height: 100dvh;

    background: #0C2F30;
    color: #fff;

    display: flex;
    flex-direction: column;

    padding: 24px;

    overflow-y: auto;
    overflow-x: hidden;

    transform: translateX(100%);
    visibility: hidden;

    transition:
        transform 0.35s ease,
        visibility 0.35s ease;

    z-index: 1999;

    box-shadow: -20px 0 60px rgba(0,0,0,0.25);
}

.lp-mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}


/* =========================================================
   MOBILE MENU HEADER
========================================================= */

.lp-mobile-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lp-mobile-logo {
    display: inline-flex;
}

.lp-mobile-logo img {
    width: 125px;
    height: auto;

    display: block;

    background: #fff;
    border-radius: 4px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.lp-close {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;

    color: #fff;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.lp-mobile-nav {
    display: flex;
    flex-direction: column;

    margin-top: 20px;
}

.lp-mobile-nav a {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 15px 4px;

    color: #fff;
    text-decoration: none;

    font-size: 17px;
    line-height: 1.3;

    border-bottom: 1px solid rgba(255,255,255,0.10);

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.lp-mobile-nav a span {
    min-width: 25px;

    color: #C9A24D;

    font-size: 11px;
    letter-spacing: 1px;
}

.lp-mobile-nav a:hover {
    color: #C9A24D;
    padding-left: 9px;
}


/* =========================================================
   MOBILE BOTTOM
========================================================= */

.lp-mobile-bottom {
    margin-top: auto;

    padding-top: 25px;
}

.lp-mobile-bottom p {
    margin-top: 20px;

    color: rgba(255,255,255,0.6);

    font-size: 12px;
    line-height: 1.6;

    letter-spacing: 1px;
}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-cta {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 18px;

    background: #C9A24D;
    color: #0C2F30;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.mobile-cta span {
    font-size: 20px;
}

.mobile-cta:hover {
    background: #B08C3A;
}


/* =========================================================
   DESKTOP - LARGE
========================================================= */

@media (max-width: 1366px) {

    .lp-header-inner {
        grid-template-columns: 175px minmax(0, 1fr) 130px;
        padding: 0 22px;
        gap: 15px;
    }

    .lp-logo img {
        width: 155px;
        height: 57px;
    }

    .lp-main-nav {
        gap: 17px;
    }

    .lp-main-nav a {
        font-size: 12.5px;
    }
}


/* =========================================================
   1280
========================================================= */

@media (max-width: 1280px) {

    .lp-header-inner {
        grid-template-columns: 160px minmax(0, 1fr) 115px;
        padding: 0 18px;
        gap: 12px;
    }

    .lp-logo img {
        width: 145px;
        height: 54px;
    }

    .lp-main-nav {
        gap: 13px;
    }

    .lp-main-nav a {
        font-size: 11.5px;
    }

    .lp-cta {
        min-width: 105px;
        height: 40px;
        font-size: 11px;
    }
}


/* =========================================================
   1100
========================================================= */

@media (max-width: 1100px) {

    .lp-header-inner {
        grid-template-columns: 145px minmax(0, 1fr) 105px;
        padding: 0 15px;
        gap: 10px;
    }

    .lp-logo img {
        width: 135px;
        height: 50px;
    }

    .lp-main-nav {
        gap: 10px;
    }

    .lp-main-nav a {
        font-size: 10.5px;
    }

    .lp-cta {
        min-width: 95px;
        padding: 0 12px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .lp-header-inner {
        min-height: 68px;

        grid-template-columns: minmax(0, 1fr) auto;

        padding: 0 15px;
    }

    .lp-main-nav {
        display: none;
    }

    .lp-header-action {
        gap: 10px;
    }

    .lp-cta {
        display: none;
    }

    .lp-menu-btn {
        display: inline-flex;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .lp-header-inner {
        min-height: 64px;
        padding: 0 12px;
    }

    .lp-logo img {
        width: 126px;
        height: 48px;
    }

    .lp-menu-btn {
        width: 40px;
        height: 40px;
    }

    .lp-mobile-menu {
        padding: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .lp-header-inner {
        min-height: 62px;
        padding: 0 10px;
    }

    .lp-logo img {
        width: 118px;
        height: 44px;
    }

    .lp-menu-btn {
        width: 39px;
        height: 39px;
    }

    .lp-mobile-menu {
        width: min(360px, 92vw);
        padding: 18px;
    }

    .lp-mobile-nav a {
        font-size: 16px;
        padding: 14px 3px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .lp-header-inner {
        min-height: 60px;
        padding: 0 8px;
    }

    .lp-logo img {
        width: 110px;
        height: 42px;
    }

    .lp-menu-btn {
        width: 38px;
        height: 38px;
    }

    .lp-mobile-menu {
        width: 94vw;
        padding: 16px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .lp-header-inner {
        padding: 0 7px;
    }

    .lp-logo img {
        width: 102px;
        height: 39px;
    }

    .lp-menu-btn {
        width: 36px;
        height: 36px;
    }

    .lp-mobile-nav a {
        font-size: 15px;
        padding: 13px 2px;
    }

}


/* =========================================================
   360px
========================================================= */

@media (max-width: 360px) {

    .lp-logo img {
        width: 96px;
        height: 37px;
    }

    .lp-menu-btn {
        width: 35px;
        height: 35px;
    }

    .lp-mobile-menu {
        width: 96vw;
        padding: 14px;
    }

}


/* =========================================================
   320px
========================================================= */

@media (max-width: 320px) {

    .lp-header-inner {
        padding: 0 6px;
    }

    .lp-logo img {
        width: 90px;
        height: 35px;
    }

    .lp-menu-btn {
        width: 34px;
        height: 34px;
    }

    .lp-mobile-nav a {
        font-size: 14px;
    }

}
/* ================= HERO ================= */
.hero {
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: #fff;
  font-size: 48px;
}

/* ================= CONTENT ================= */
.content {
  padding: 100px 30px;
}

/* ================= FOOTER ================= */
footer {
  background: var(--nav-bg);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

footer h2 span {
  color: #d1b48c;
}

.footer-links a {
  color: #d8e3ea;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 768px) {
  .menu-content {
    flex-direction: column;
    text-align: center;
  }
}


.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
  90deg,
  rgba(15,61,62,0.82) 0%,
  rgba(15,61,62,0.55) 40%,
  rgba(15,61,62,0.25) 65%,
  rgba(15,61,62,0.1) 85%,
  rgba(15,61,62,0) 100%
);
}

/* Content */
.content {
  position: absolute;
  left: 13%;
  bottom: 10%;
  max-width: 1000px;
  color: #fff;
}

.content h1 {
  font-size: 58px;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.content h1 span {
  display: block;
}

.content p {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

.content .btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent-gold);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.content .btn:hover {
  background: var(--accent-gold-dark);
}

/* Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: var(--accent-gold);
  color: var(--primary); */
  /* width: 44px;
  height: 44px; */
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
  width: 52px;
  height: 52px;
  background: var(--accent-gold);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.nav:hover {
  background: var(--accent-gold-dark);
}
.nav.prev {
  left: 80px;
}

.nav.next {
  right: 80px;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    left: 6%;
    right: 6%;
    bottom: 15%;
  }

  .content h1 {
    font-size: 40px;
  }

  .nav {
    width: 38px;
    height: 38px;
    top: 80%;
  }
  .nav.prev {
    left: 35px;
  }

  .nav.next {
    right: 35px;
  }
}


.story-section {
  background: var(--sand);
  padding: 20px 6%;
}

/* Layout */
.story-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns:0.8fr 1.8fr;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Floating Card */
.story-card {
  background: #0F3D3E;
  color: #fff;
  padding: 64px;
  max-width: 440px;
  z-index: 2;
  box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

.story-card h2 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.story-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #d6d6d6;
  margin-bottom: 32px;
}

/* Button */
.story-btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--accent-gold);
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}

.story-btn:hover {
  background: var(--accent-gold-dark);
}

/* Media */
.story-media img,
.story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop overlap */
@media (min-width: 992px) {
  .story-card {
    margin-right: -140px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .story-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-card {
    margin: 0;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .story-section {
    padding: 80px 20px;
  }

  .story-card {
    padding: 42px 28px;
  }

  .story-card h2 {
    font-size: 32px;
  }
}

.booking-bar {
  background: #F5F1E8;
  border-bottom: 1px solid #ddd;
}

.booking-container {
  max-width: 1400px;
  margin: auto;
  padding: 26px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Title */
.booking-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Form */
.booking-form {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}

.field.wide {
  flex: 1;
}

.field label {
  font-size: 11px;
  color: #555;
}

.field select,
.field input {
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 6px 2px;
  font-size: 13px;
  outline: none;
}

/* Search Button */
.search-btn {
  background: #0F3D3E;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 12px;
  cursor: pointer;
  height: 38px;
}
.search-btn:hover {
  background: #082728;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .booking-container {
    padding: 26px 40px;
  }
}

@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .booking-form {
    flex-direction: column;
    gap: 20px;
  }

  .search-btn {
    width: 100%;
  }
}

.openings-section {
  background: #F5F1E8;
  padding: 30px 0;
  overflow: hidden;
}

.openings-container {
  max-width: 1400px;
  margin: auto;
  padding-left: 80px;
}

/* Header */
.openings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 80px;
  margin-bottom: 40px;
}

.openings-header h2 {
  font-size: 28px;
  letter-spacing: 1px;
}

/* Arrows */
.openings-arrows button {
  background: none;
  border: 1px solid #000;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 20px;
}

/* Slider */
.openings-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.openings-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.opening-card {
  min-width: 360px;
  transition: transform 0.4s ease;
}
.opening-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.12); */
}
.opening-card:hover img {
  transform: scale(1.05);
}

.opening-card h3::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 6px;
  transition: width 0.4s ease;
}

.opening-card:hover h3::after {
  width: 40px;
}
.opening-card:hover a {
  transform: translateX(6px);
  opacity: 0.9;
}
.opening-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 16px;
  transition: transform 0.6s ease;
}

.country {
  font-size: 11px;
  color: #666;
}

.opening-card h3 {
  font-size: 16px;
  margin: 6px 0 10px;
}

.opening-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.opening-card a {
  font-size: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .opening-card {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .openings-container {
    padding-left: 20px;
  }

  .openings-header {
    padding-right: 20px;
  }

  .opening-card {
    min-width: 260px;
  }
}

.our-hotels {
  background: #0F3D3E;
  color: #fff;
  padding: 30px 0;
  overflow: hidden;
}

/* HEADER */
.our-hotels-header {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.our-hotels-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.our-hotels-header p {
  font-size: 14px;
  max-width: 520px;
  color: #ccc;
}

.hotels-btn {
  background: #fff;
  color: #000;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 13px;
}

/* ROW */
.hotel-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.hotel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 45s linear infinite;
}

.row-right .hotel-track {
  animation: scroll-right 45s linear infinite;
}

/* CARD */
.hotel-card {
  position: relative;
  min-width: 360px;
  height: 220px;
  margin-right: 20px;
  /* cursor: pointer; */
  display: block;          /* ADD THIS */
  text-decoration: none; 
  color: inherit; 
  color: #fff;
}

.hotel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hotel-card:hover img {
  transform: scale(1.1);
}
.hotel-card span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 13px;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
}
.hotel-row:hover .hotel-track {
  animation-play-state: paused;
}
/* ANIMATIONS */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .our-hotels-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px 40px;
  }

  .hotel-card {
    min-width: 260px;
    height: 180px;
  }
}
/* Dark Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

/* Show overlay on hover */
.hotel-card:hover .card-overlay {
  opacity: 1;
}

/* Button Style */
.view-btn {
  padding: 10px 22px;
  border: 1px solid #fff;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.view-btn:hover {
  background: #fff;
  color: #000;
}

.testimonials-section {
  background: #F5F1E8;
  padding: 40px 0;
}

.testimonials-header {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px 60px;
}

.testimonials-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.testimonials-header p {
  color: #555;
  font-size: 14px;
}

/* SLIDER */
.testimonials-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* padding-left: 80px; */
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.testimonial-card {
  min-width: 450px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 60px rgba(0,0,0,0.12);
}

/* MEDIA */
.testimonial-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.testimonial-media img,
.testimonial-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button */
.play-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  font-size: 48px;
  cursor: pointer;
}

.stars {
  color: #C9A24D;
  font-size: 14px;
  margin-bottom: 10px;
}

.quote {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.guest-info span {
  display: block;
  font-size: 12px;
  color: #666;
}

/* ARROWS */
.testimonial-arrows {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 30px 80px 0;
}

.testimonial-arrows button {
  width: 38px;
  height: 38px;
  border: 1px solid #000;
  background: none;
  font-size: 20px;
  cursor: pointer;
}
.testimonial-content {
  padding: 20px;
}

.quote {
  font-size: 13px;
  line-height: 1.6;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-header {
    padding: 0 20px 40px;
  }

  .testimonials-slider {
    padding-left: 20px;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .testimonial-media {
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: 280px; /* 2 cards */
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%; /* 1 card */
  }
}

.blogs-section {
  background: #FAFAF8;
  padding: 40px 0;
  margin-bottom: 10px;
}

.blogs-header {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px 50px;
}

.blogs-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.blogs-header p {
  font-size: 14px;
  color: #555;
}

/* SLIDER */
.blogs-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-left: 80px;
  scrollbar-width: none;
}

.blogs-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.blog-card {
  min-width: 320px;
  background: #fff;
  padding-bottom: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 16px;
  margin: 18px 18px 10px;
}

.blog-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0 18px 14px;
}

.blog-card a {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-left: 18px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-card {
    min-width: 280px; /* 2 cards */
  }
}

@media (max-width: 768px) {
  .blogs-header {
    padding: 0 20px 40px;
  }

  .blogs-slider {
    padding-left: 20px;
  }

  .blog-card {
    min-width: 100%; /* 1 card */
  }
}
.location-reviews {
  background: linear-gradient(180deg, #FAFAF8 0%, #F2EFE8 100%);
  padding: 40px 0;
}

.lr-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* MAP */
.lr-map {
  height: 420px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.lr-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTENT */
.lr-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.lr-ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-box img {
  width: 44px;
}

.rating-box strong {
  font-size: 20px;
}

.rating-box span {
  display: block;
  font-size: 13px;
  color: #666;
}

/* TEXT */
.lr-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 460px;
  margin-bottom: 36px;
}

/* BUTTON */
.lr-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-gold);
  color: #0C2F30;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lr-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }

  .lr-map {
    height: 300px;
  }

  .lr-ratings {
    grid-template-columns: 1fr;
  }
}
.section-divider {
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.02),
    rgba(0,0,0,0)
  );
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0C2F30;
  color: #fff;
  padding: 34px 0 27px;
  font-family: "Arial", sans-serif;
}

/* GRID */
.footer-container {

  max-width: 1400px;
  margin: auto;
  padding: 4px 22px;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 1.5fr;
  gap: 94px;
  align-items: start;
}

/* BRAND */

/* SOCIAL */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;   
  text-align: center;   
  gap: 28px;
}

.footer-brand h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.footer-brand h2 span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 4px;
  color: #C9A24D;
}
.footer-brand .logo img {
  padding: 8px 18px;
  background: #ffffff;
  border-radius: 4px;
  width: 164px;   
  height: 60px;
}


  /* height:38px;
  border-radius:40px;
  background:none;
  padding:0;
  box-shadow:none; */
  /* height:38px;
  border-radius:40px;
  background:none;
  padding:0;
  box-shadow:none; */

/* Social icons center */
/* .social-links {
  display: flex;
  justify-content: center;  
  gap: 18px;
}


.social-links a {
  color: #fff;
  font-size: 18px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
} */

/* FIXED SOCIAL BAR */
.fixed-social{
  position:fixed;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  z-index:1000;

  display:flex;
  flex-direction:column;
  gap:12px;
}

/* ICON STYLE */
.fixed-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#C9A24D;
  color:#0C2F30;

  border-radius:50%;
  font-size:16px;
  text-decoration:none;

  box-shadow:0 6px 18px rgba(0,0,0,0.2);
  transition:all .3s ease;
}

/* HOVER EFFECT */
.fixed-social a:hover{
  background:#0C2F30;
  color:#C9A24D;
  transform:translateX(-6px);
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .fixed-social{
    right:8px;
    transform:translateY(-50%);
  }

  .fixed-social a{
    width:36px;
    height:36px;
    font-size:14px;
  }
}

/* COLUMNS */
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #bbb;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* BOTTOM BAR */
.footer-bottom {
  max-width: 1400px;
    margin: 32px auto 0;
    padding: 30px 90px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #aaa;
}

/* LEGAL */
.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
}

/* FLOATING BOOK */
.floating-book {
  position: fixed;
  right: 26px;
  bottom: 73px;
  background: #C9A24D;
  color: #0C2F30;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.floating-book:hover{
  background:#0C2F30;
  color:#B08C3A;
  transition: color 0.3s ease;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 30px 40px 0;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .floating-book {
    right: 16px;
    bottom: 13px;
  }
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #cccccc; /* ya apna brand color */
}





/* ===== PROPERTY HERO ===== */
.property-hero{
  width:100%;
  background:#fff;
  padding: 0px 60px;
}

/* TOP INFO BAR */
.property-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  border-bottom:1px solid #e5e5e5;
}

.property-left{
  display:flex;
  align-items:center;
  gap:14px;
}
.property-left h1{
  font-size:20px;
  letter-spacing:1px;
  color:#000;
}
.badge{
  border:1px solid #000;
  padding:4px 10px;
  font-size:11px;
  letter-spacing:1px;
}

.property-right a{
  margin-left:20px;
  text-decoration:none;
  font-size:13px;
  color:#000;
}

/* BOOKING BAR */
.booking-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 40px;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  position:relative;
  z-index:2;
}

.booking-item small{
  display:block;
  font-size:11px;
  letter-spacing:1px;
  opacity:.6;
}
.booking-item strong{
  font-size:14px;
}

.divider{
  width:1px;
  height:40px;
  background:#ddd;
}

.booking-btn{
  background:#000;
  color:#fff;
  border:none;
  padding:14px 28px;
  border-radius:30px;
  font-size:13px;
  cursor:pointer;
}

/* HERO IMAGE */
.hero-image{
  height:70vh;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("./asset/image/hero-resort.jpg") center/cover no-repeat;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

  .property-top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .booking-bar{
    flex-direction:column;
    gap:18px;
    padding:20px;
  }

  .divider{
    display:none;
  }

  .booking-btn{
    width:100%;
    text-align:center;
  }
}


/* DATE OVERLAY */
.date-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* MODAL */
.date-modal{
  background:#fff;
  width:90%;
  max-width:900px;
  padding:30px;
  border-radius:12px;
  position:relative;
}

/* CLOSE */
.date-close{
  position:absolute;
  right:20px;
  top:20px;
  border:none;
  background:none;
  font-size:22px;
  cursor:pointer;
}

/* TABS */
.date-tabs{
  display:flex;
  gap:10px;
  margin-bottom:25px;
}
.tab{
  padding:10px 22px;
  border-radius:30px;
  border:1px solid #ccc;
  background:#fff;
  cursor:pointer;
}
.tab.active{
  background:#000;
  color:#fff;
}

/* CALENDAR */
.calendar{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.month h4{
  margin-bottom:15px;
  font-size:14px;
  letter-spacing:1px;
}

.days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
}

.days span{
  padding:10px 0;
  text-align:center;
  cursor:pointer;
  border-radius:50%;
}
.days span:hover{
  background:#eee;
}
.active-day{
  background:#000;
  color:#fff;
}

/* APPLY */
.apply-btn{
  margin-top:30px;
  width:100%;
  padding:14px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:30px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .calendar{
    grid-template-columns:1fr;
  }
}
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal{
  background:#fff;
  padding:30px;
  width:90%;
  max-width:420px;
  border-radius:14px;
}

.modal h3{
  margin-bottom:20px;
}

.close{
  position:absolute;
  top:16px;
  right:20px;
  border:none;
  background:none;
  font-size:20px;
  cursor:pointer;
}

.apply{
  margin-top:20px;
  width:100%;
  padding:12px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:30px;
}

.date-inputs{
  display:flex;
  gap:10px;
}
.date-inputs input{
  flex:1;
  padding:10px;
}

.counter{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
}
.counter button{
  width:30px;
  height:30px;
}

.rate-list li{
  padding:12px;
  border-bottom:1px solid #eee;
  cursor:pointer;
}
.rate-list li:hover{
  background:#f5f5f5;
}


/* MODAL BACKGROUND */
.enquiry-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:5000;
}

/* BOX */
.enquiry-box{
  background:#fff;
  width:100%;
  max-width:600px;
  padding:40px;
  border-radius:16px;
  position:relative;
  animation:popup 0.35s ease;
}
#enquiryModal.active{
  display: flex;
}
/* CLOSE */
.close-modal{
  position:absolute;
  top:15px;
  right:15px;
  background:none;
  border:none;
  font-size:20px;
  cursor:pointer;
}

/* TEXT */
.enquiry-box h2{
  font-size:26px;
  margin-bottom:8px;
}

.enquiry-box p{
  font-size:14px;
  color:#666;
  margin-bottom:25px;
}

/* FORM */
.enquiry-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-bottom:15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  font-size:14px;
}

.enquiry-form textarea{
  resize:none;
  height:90px;
  margin-bottom:20px;
}

/* BUTTON */
.submit-btn{
  width:100%;
  padding:14px;
  background:#0C2F30;
  color:#fff;
  border:none;
  font-size:14px;
  letter-spacing:1px;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#B08C3A;
  color:#0C2F30;
}

/* ANIMATION */
@keyframes popup{
  from{opacity:0; transform:scale(0.9);}
  to{opacity:1; transform:scale(1);}
}

/* RESPONSIVE */
@media(max-width:600px){
  .enquiry-form .form-row{
    grid-template-columns:1fr;
  }

  .enquiry-box{
    padding:25px;
  }
}



/* MODAL BACKGROUND */
.book-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:5000;
}

/* BOX */
.book-box{
  background:#fff;
  width:100%;
  max-width:600px;
  padding:40px;
  border-radius:16px;
  position:relative;
  animation:popup 0.35s ease;
}

/* TEXT */
.book-box h2{
  font-size:26px;
  margin-bottom:8px;
}

.book-box p{
  font-size:14px;
  color:#666;
  margin-bottom:25px;
}

/* FORM */
.book-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-bottom:15px;
}

.book-form input,
.book-form select,
.book-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  font-size:14px;
}

.book-form textarea{
  resize:none;
  height:90px;
  margin-bottom:20px;
}
/* RESPONSIVE */
@media(max-width:600px){
  .book-form .form-row{
    grid-template-columns:1fr;
  }

  .book-box{
    padding:25px;
  }
}

.success-image{
  text-align:center;
  margin-bottom:25px;
}

.success-image img{
  width:130px;
  opacity:0.95;
}

.book-box h2{
  text-align:center;
  font-size:32px;
  font-weight:600;
  margin-bottom:15px;
  color:#2d3748;
}

.book-box p{
  text-align:center;
  font-size:16px;
  color:#6b7280;
  line-height:1.6;
  margin-bottom:30px;
}

.submit-btn{
  display:block;
  width:220px;
  margin:0 auto;
  padding:14px;
  text-align:center;
  border-radius:30px;
  background:#0C2F30;
  color:#C9A24D;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.submit-btn:hover{
  background:#C9A24D;
  color:#0C2F30;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
.room-suite-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    text-decoration:none;
    color:#C9A24D;
    padding-bottom:4px;
    transition:.3s ease;
}

/* Animated underline */
.room-suite-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#C9A24D;
    transition:.4s ease;
}

.room-suite-link:hover::after{
    width:100%;
}

/* Arrow animation */
.room-suite-link .arrow{
    transition:.4s ease;
}

.room-suite-link:hover .arrow{
    transform:translateX(6px);
}

/* Subtle hover lift */
.room-suite-link:hover{
    color:#0f4d4d;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    animation: pulse 1.8s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================
   HOTEL SPA SECTION
========================= */

.spa-booking-section {
  position: relative;
  padding: 100px 20px;
  background:
    linear-gradient(
      135deg,
      rgba(15, 61, 62, 0.96),
      rgba(46, 111, 106, 0.92)
    );
  overflow: hidden;
}

.spa-booking-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(201, 162, 77, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(10px);
}

.spa-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================
   LEFT CONTENT
========================= */

.spa-content {
  color: var(--text-light);
}

.spa-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(201, 162, 77, 0.12);
  border: 1px solid rgba(201, 162, 77, 0.3);
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.spa-content h2 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 620px;
}

.spa-content h2 span {
  color: var(--accent-gold);
}

.spa-content p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 40px;
}

.spa-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 24px;
  flex: 1;
  min-width: 220px;
}

.feature-card h4 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

/* =========================
   FORM
========================= */

.spa-form-wrapper {
  display: flex;
  justify-content: center;
}

.spa-form {
  width: 100%;
  background: rgba(255,255,255,0.97);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.3);
}

.spa-form h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 18px;
}

.spa-form input,
.spa-form select {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid #dfe5e4;
  padding: 0 18px;
  font-size: 15px;
  background: #fff;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.spa-form input:focus,
.spa-form select:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.12);
}

.spa-form button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.spa-form button:hover {
  background: var(--btn-hover-bg);
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .spa-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .spa-content {
    text-align: center;
  }

  .spa-content p {
    margin-inline: auto;
  }

  .spa-features {
    justify-content: center;
  }

  .spa-content h2 {
    max-width: 100%;
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .spa-booking-section {
    padding: 80px 18px;
  }

  .spa-content h2 {
    font-size: 38px;
  }

  .spa-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .spa-form {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .spa-form h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .spa-content h2 {
    font-size: 32px;
  }

  .spa-tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .feature-card {
    min-width: 100%;
  }

  .spa-form {
    padding: 24px 18px;
  }
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    width: 100%;
    min-height: 32px;
    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #082F30;
    color: #ffffff;

    font-size: 12px;
    line-height: 1;
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar a:hover {
    color: #C9A24D;
}


.location-reviews {
  background: linear-gradient(180deg, #FAFAF8 0%, #F2EFE8 100%);
  padding: 40px 0;
}

.lr-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* MAP */
.lr-map {
  height: 420px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.lr-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTENT */
.lr-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.lr-ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-box img {
  width: 44px;
}

.rating-box strong {
  font-size: 20px;
}

.rating-box span {
  display: block;
  font-size: 13px;
  color: #666;
}

/* TEXT */
.lr-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 460px;
  margin-bottom: 36px;
}

/* BUTTON */
.lr-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-gold);
  color: #0C2F30;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lr-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }

  .lr-map {
    height: 300px;
  }

  .lr-ratings {
    grid-template-columns: 1fr;
  }
}
.section-divider {
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.02),
    rgba(0,0,0,0)
  );
}


.contact-section{
  padding:80px 20px;
  background:#f9f9f9;
}

.contact-container{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.contact-info h2{
  font-size:32px;
  margin-bottom:16px;
}

.contact-info p{
  font-size:15px;
  line-height:1.6;
  color:#555;
  margin-bottom:24px;
}

.contact-details p{
  font-size:14px;
  margin-bottom:10px;
}

/* FORM */
.contact-form-box{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

.contact-form textarea{
  resize:none;
  margin-bottom:20px;
}

.contact-form button{
  background:#C9A24D;
  color:#0C2F30;
  border:none;
  padding:14px 28px;
  font-size:14px;
  border-radius:30px;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  background:#0C2F30;
  color:#C9A24D;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }

  .contact-form .form-row{
    grid-template-columns:1fr;
  }
}

.contact-cta{
  padding:70px 20px;
  background:#0C2F30;
  color:#fff;
  text-align:center;
}

.cta-container{
  max-width:700px;
  margin:0 auto;
}

.cta-container h3{
  font-size:28px;
  margin-bottom:14px;
}

.cta-container p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:24px;
  color:#ddd;
}

.cta-btn{
  display:inline-block;
  padding:14px 32px;
  background:#C9A24D;
  color:#0C2F30;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.cta-btn:hover{
  background:#fff;
}
/* =========================================================
   CBV UTILITY TOP BAR
   Prefix: cbv-util-
========================================================= */

.cbv-util-bar {
    width: 100%;
    background: #ffffff;
    padding: 0px 0;
    position: relative;
    z-index: 1200;
}

.cbv-util-inner {
    width: calc(100% - 0px);
    max-width: auto;
    height: 35px;
    margin: 0 auto;

    background: #3f3e3c;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 45px 0 45px;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.cbv-util-left {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
}


/* LANGUAGE */

.cbv-util-language {
    height: 22px;
    padding: 0 9px;

    display: flex;
    align-items: center;
    gap: 5px;

    border: none;
    border-radius: 12px;

    background: #111111;
    color: #ffffff;

    font-size: 11px;
    line-height: 1;

    cursor: pointer;
    white-space: nowrap;
}

.cbv-util-chevron {
    font-size: 10px;
    opacity: .8;
}


/* PHONE */

.cbv-util-phone {
    height: 22px;
    padding: 0 9px;

    display: flex;
    align-items: center;
    gap: 5px;

    border-radius: 12px;

    background: #111111;
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    white-space: nowrap;

    transition: .25s ease;
}

.cbv-util-phone:hover {
    color: #c9a24d;
}

.cbv-util-flag {
    font-size: 11px;
}


/* =========================================================
   SEARCH
========================================================= */

.cbv-util-search {
    width: 200px;
    height: 25px;

    background: #ffffff;
    border-radius: 12px;

    display: flex;
    align-items: center;

    padding: 0 8px;

    margin-left: 3px;
}

.cbv-util-search-icon {
    color: #777;
    font-size: 18px;
    /* line-height: 1; */
    margin-right: 11px;
    align-self: center;
}

.cbv-util-search input {
    width: 100%;
    border: none;
    outline: none;

    background: transparent;

    color: #333;
    font-size: 11px;

    padding: 0;
}

.cbv-util-search input::placeholder {
    color: #777;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.cbv-util-right {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 17px;
}

.cbv-util-link {
    color: #ffffff;
    text-decoration: none;

    font-size: 11px;
    white-space: nowrap;

    transition: color .25s ease;
}

.cbv-util-link:hover {
    color: #c9a24d;
}


/* WISHLIST */

.cbv-util-wishlist {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cbv-util-heart {
    font-size: 17px;
    line-height: 0;
}


/* START HERE */

.cbv-util-start {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 21px;
    padding: 0 11px;

    background: #d5a343;
    color: #ffffff;

    border-radius: 12px;

    font-size: 9px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition: .25s ease;
}

.cbv-util-start:hover {
    background: #b98930;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1280px) {

    .cbv-util-inner {
        padding-left: 28px;
        padding-right: 28px;
    }

    .cbv-util-right {
        gap: 13px;
    }

    .cbv-util-search {
        width: 170px;
    }
}

@media (max-width: 1200px) {

    .cbv-util-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cbv-util-search {
        width: 150px;
    }
}

@media (max-width: 1100px) {

    .cbv-util-inner {
        width: calc(100% - 22px);
        padding: 0 10px;
        min-height: 34px;
    }

    .cbv-util-right {
        gap: 10px;
    }

    .cbv-util-search {
        width: 120px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .cbv-util-bar {
        padding: 4px 0;
    }

    .cbv-util-inner {
        width: calc(100% - 14px);
        min-height: 36px;
        height: auto;
        padding: 5px 8px;
        gap: 6px 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cbv-util-left,
    .cbv-util-center,
    .cbv-util-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cbv-util-right {
        gap: 7px 10px;
        width: 100%;
    }

    .cbv-util-search {
        width: min(100%, 180px);
        flex: 1 1 160px;
        min-width: 120px;
    }

    .cbv-util-link,
    .cbv-util-language,
    .cbv-util-phone,
    .cbv-util-start {
        font-size: 9px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .cbv-util-bar {
        padding: 5px 0;
    }

    .cbv-util-inner {
        width: calc(100% - 10px);
        min-height: 38px;
        padding: 6px 8px;
        overflow: visible;
        gap: 6px 8px;
    }

    .cbv-util-left,
    .cbv-util-center,
    .cbv-util-right {
        width: 100%;
    }

    .cbv-util-left,
    .cbv-util-right {
        min-width: 0;
    }

    .cbv-util-left {
        justify-content: center;
    }

    .cbv-util-language,
    .cbv-util-phone {
        font-size: 8px;
        padding: 0 7px;
    }

    .cbv-util-search {
        display: none;
    }

    .cbv-util-right {
        gap: 6px 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cbv-util-link {
        font-size: 8px;
    }

    .cbv-util-start {
        height: 22px;
        padding: 0 9px;
        font-size: 8px;
    }
}

@media (max-width: 600px) {

    .cbv-util-inner {
        width: calc(100% - 8px);
        padding-left: 6px;
        padding-right: 6px;
    }

    .cbv-util-left,
    .cbv-util-right {
        gap: 5px;
    }

    .cbv-util-language {
        font-size: 7px;
        padding: 0 6px;
    }

    .cbv-util-phone {
        font-size: 7px;
        padding: 0 6px;
    }

    .cbv-util-link {
        font-size: 7px;
    }

    .cbv-util-start {
        font-size: 7px;
        padding: 0 8px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cbv-util-inner {
        width: calc(100% - 6px);
        padding: 5px 6px;
    }

    .cbv-util-left {
        gap: 4px;
    }

    .cbv-util-phone .cbv-util-flag {
        display: none;
    }

    .cbv-util-right {
        gap: 5px;
    }
}

@media (max-width: 390px) {

    .cbv-util-language,
    .cbv-util-phone,
    .cbv-util-link,
    .cbv-util-start {
        font-size: 6.8px;
    }
}

@media (max-width: 375px) {

    .cbv-util-inner {
        padding-left: 4px;
        padding-right: 4px;
    }

    .cbv-util-left,
    .cbv-util-right {
        gap: 4px;
    }
}

@media (max-width: 360px) {

    .cbv-util-language,
    .cbv-util-phone,
    .cbv-util-link,
    .cbv-util-start {
        letter-spacing: 0;
    }
}

@media (max-width: 320px) {

    .cbv-util-inner {
        width: calc(100% - 4px);
        padding-left: 4px;
        padding-right: 4px;
    }

    .cbv-util-language {
        padding: 0 5px;
    }

    .cbv-util-phone {
        padding: 0 5px;
    }

    .cbv-util-link {
        font-size: 6.5px;
    }

    .cbv-util-start {
        padding: 0 7px;
    }
}
/* FORCE HIDE OLD / MEGA NAVIGATION */
.lp-mobile-menu,
.lp-mobile-overlay {
    display: none !important;
}

/* Only show actual header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #0C2F30;
}

.lp-header-inner {
    position: relative;
    z-index: 10000;
}

/* Hide any unexpected navigation containers */
.mega-menu,
.mega-nav,
.dropdown-menu,
.navigation-menu {
    display: none !important;
}

/* =========================================================
   MOBILE MENU - FINAL FIX
========================================================= */

.lp-mobile-overlay {
    position: fixed !important;
    inset: 0 !important;

    background: rgba(0, 0, 0, 0.55) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    pointer-events: none !important;

    z-index: 9998 !important;

    transition: opacity .3s ease, visibility .3s ease;
}


.lp-mobile-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


/* MOBILE DRAWER */

.lp-mobile-menu {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: min(360px, 88vw) !important;
    height: 100vh !important;

    background: #0C2F30 !important;

    z-index: 9999 !important;

    display: flex !important;
    flex-direction: column !important;

    padding: 22px 24px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    transform: translate3d(100%, 0, 0) !important;

    visibility: hidden !important;

    opacity: 1 !important;

    transition:
        transform .35s ease,
        visibility .35s ease !important;

    box-shadow: -10px 0 35px rgba(0,0,0,.3);
}


/* OPEN */

.lp-mobile-menu.active {
    transform: translate3d(0, 0, 0) !important;

    visibility: visible !important;
}


/* =========================================================
   HEADER
========================================================= */

.lp-mobile-header {
    flex-shrink: 0;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.15);
}


.lp-mobile-logo img {
    display: block;

    width: 125px;
    height: 48px;

    object-fit: contain;

    background: #fff;

    border-radius: 4px;
}


.lp-close {
    width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: transparent !important;

    border: 1px solid rgba(255,255,255,.35) !important;

    color: #fff !important;

    font-size: 28px !important;

    cursor: pointer;

    flex-shrink: 0;
}


/* =========================================================
   NAVIGATION
========================================================= */

.lp-mobile-nav {
    display: flex !important;

    flex-direction: column !important;

    width: 100%;

    margin-top: 20px;
}


.lp-mobile-nav a {
    display: flex !important;

    align-items: center;

    gap: 14px;

    width: 100%;

    padding: 14px 2px;

    color: #fff !important;

    text-decoration: none !important;

    font-size: 16px;

    border-bottom: 1px solid rgba(255,255,255,.1);

    transition: .25s ease;
}


.lp-mobile-nav a span {
    color: #C9A24D;

    font-size: 11px;

    min-width: 24px;
}


.lp-mobile-nav a:hover {
    color: #C9A24D !important;

    padding-left: 8px;
}


/* =========================================================
   BOTTOM
========================================================= */

.lp-mobile-bottom {
    margin-top: auto;

    padding-top: 25px;
}


.lp-mobile-bottom .mobile-cta {
    display: flex !important;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding: 15px 18px;

    background: #C9A24D !important;

    color: #0C2F30 !important;

    text-decoration: none;

    font-weight: 700;
}


.lp-mobile-bottom p {
    color: rgba(255,255,255,.6);

    font-size: 12px;

    line-height: 1.6;

    margin-top: 18px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.lp-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px !important;

    background: transparent !important;

    border: 1px solid rgba(255,255,255,.4) !important;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    position: relative;

    z-index: 10001;
}


.lp-menu-btn span {
    display: block;

    width: 24px;
    height: 2px;

    background: #fff;

    transition: .3s ease;
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .lp-main-nav {
        display: none !important;
    }

    .lp-cta {
        display: none !important;
    }

    .lp-menu-btn {
        display: flex !important;
    }

}


/* =========================================================
   IMPORTANT
   DON'T LOCK BODY SCROLL
========================================================= */

/* REMOVE overflow:hidden from body */

body.lp-menu-open {
    overflow: visible !important;
}


/* =========================================================
   MOBILE SIZE
========================================================= */

@media (max-width: 480px) {

    .lp-mobile-menu {
        width: 90vw !important;

        padding: 18px 20px !important;
    }

    .lp-mobile-nav a {
        font-size: 15px;

        padding: 13px 2px;
    }

}