/* =========================================
   Base
========================================= */
:root {
  --lp-font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --lp-text: #03222F;
  --lp-border: rgba(0, 0, 0, .12);
  --lp-blue: #0095D2;
  /* BOOK NOW color */
  --lp-header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lp-font);
  color: var(--lp-text);
  background: #fff;
}

/* avoid anchor hidden behind sticky header */
:target {
  scroll-margin-top: calc(var(--lp-header-h) + 20px);
}

.container {
  max-width: 1380px;
}

/* =========================================
   Header (Sticky like your screenshot)
========================================= */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
}

.lp-header__container {
  max-width: 1380px;
  /* similar to wide layout */
}

.lp-header__inner {
  height: var(--lp-header-h);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo */
.lp-brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.lp-brand__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.lp-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  letter-spacing: .9px;
  font-weight: 600;
  font-size: 16px;
  margin-right: 20px;
}

.lp-nav__link {
  position: relative;
  padding: 10px 2px;
  color: #03222F;
  text-decoration: none;
  transition: opacity .15s ease;
}

.lp-nav__link.is-current,
.lp-nav__link:hover {
  opacity: .65;
}

/* Right CTA (BOOK NOW) */
.lp-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lp-book-now {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--lp-blue);
  text-decoration: none;
  padding: 8px 0;
}

.lp-book-now__underline {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -4px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Simple "wave underline" using inline SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='20' viewBox='0 0 180 20'%3E%3Cpath d='M5 12 C 25 5, 45 19, 65 12 S 105 5, 125 12 S 155 19, 175 12' fill='none' stroke='%230095D2' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Burger menu (mobile) */
.lp-burger {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lp-burger__icon {
  width: 46px;
  height: auto;
  display: block;
}

/* Mobile offcanvas styling */
.lp-offcanvas {
  background: #E9F4F8;
  color: #03222F;
}

.lp-nav-mobile {
  display: grid;
  gap: 14px;
}

.lp-nav-mobile a {
  color: #03222F;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.lp-nav-mobile__cta {
  margin-top: 10px;
  background: var(--lp-blue);
  color: #fff !important;
  border-bottom: none !important;
  padding: 12px 14px !important;
  border-radius: 12px;
  text-align: center;
}

.offcanvas .btn-close {
  filter: invert(0);
}

@media (max-width: 767px) {
  .lp-offcanvas {
    max-width: 300px;
  }
}

/* =========================================
   Demo sections (temporary)
========================================= */
.lp-hero {
  padding: 56px 0 50px;
}

.lp-hero__title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 10px;
}

.lp-hero__sub {
  margin: 0;
  opacity: .75;
  font-weight: 500;
}

.lp-hero__spacer {
  height: 26px;
}

/* Swiper placeholder look */
.lp-swiper {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  overflow: hidden;
}

.lp-slide {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .6px;
  background: #f6f7f9;
}

.lp-section {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.lp-section h2 {
  font-weight: 800;
  margin: 0 0 10px;
}

/* Responsive header layout */
@media (max-width: 991.98px) {
  .lp-header__inner {
    grid-template-columns: 1fr auto;
  }

  .lp-brand__logo {
    height: 40px;
  }
}


/* Hero Slider */
/* =========================
   Hero Slider
========================= */
.hero-slider {
  position: relative;
  width: 100%;
  /* easy overlay control */
  --hero-overlay: 50;
}

.heroSwiper {
  width: 100%;
  height: 80vh;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

/* Dark overlay layer (controlled by --hero-overlay %) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, calc(var(--hero-overlay) / 100));
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  /* TOP */
  justify-content: flex-start;
  padding: 80px 20px;
}

.hero-text {
  max-width: 860px;
}

.hero-title {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 48px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

/* Bottom-left nav */
.hero-nav {
  position: absolute;
  left: calc((100% - 1360px) / 2);
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .15s ease;
}

.hero-arrow:hover {
  scale: 1.1;
}

.hero-arrow span {
  font-size: 50px;
  line-height: 1;
  margin-top: -8px;
}

/* Pagination dots */
.hero-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(255, 255, 255, .35);
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .heroSwiper {
    height: 300px;
  }
  
  .hero-content {
    padding: 20px 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-nav {
    left: 20px;
    bottom: 20px;
  }
}

/* =========================
   Info Section (3 blocks + sliders)
========================= */
.lp-info-section {
  padding: 70px 0 0px;
}

.lp-info-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: clamp(46px, 6vw, 80px);
}

.lp-info-text {
  max-width: 580px;
}

.lp-info-title {
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.2;
  font-size: 48px;
  color: #0b1b2a;
}

.lp-info-desc {
  margin: 0 0 18px;
  color: rgba(11, 27, 42, .78);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
}

/* link with wave underline */
.lp-info-link {
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: .9px;
  font-size: 16px;
  color: var(--lp-blue);
  text-decoration: none;
  padding-bottom: 8px;
  text-transform: uppercase;
  margin-top: 10px;
}

.lp-info-link .lp-link-underline {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 0;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='20' viewBox='0 0 180 20'%3E%3Cpath d='M5 12 C 25 5, 45 19, 65 12 S 105 5, 125 12 S 155 19, 175 12' fill='none' stroke='%230b74c9' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: .95;
}

/* Slider card look */
.lp-info-media {
  width: 100%;
}

.lp-info-swiper {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  background: #e9eef2;
}

.lp-info-img {
  width: 100%;
  height: clamp(240px, 34vw, 420px);
  object-fit: cover;
  display: block;
}


.hero-arrow:hover {
  scale: 1.1;
}

.hero-arrow span {
  font-size: 50px;
  line-height: 1;
  margin-top: -8px;
}

/* Arrows (overlay like screenshot) */
.lp-info-prev,
.lp-info-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .15s ease;
}

.lp-info-prev:hover,
.lp-info-next:hover {
  scale: 1.1;
}

.lp-info-prev {
  left: 0px;
}

.lp-info-next {
  right: 0px;
}

/* Use pseudo elements for arrow icons */
.lp-info-prev::before,
.lp-info-next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(135deg);
  opacity: .95;
}

.lp-info-next::before {
  transform: rotate(-45deg);
}

/* Dots bottom center */
.lp-info-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px !important;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lp-info-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 1;
  background: rgba(255, 255, 255, .45);
  margin: 0 !important;
}

.lp-info-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/* Reverse layout on desktop */
.lp-info-block.is-reversed .lp-info-text {
  order: 2;
}

.lp-info-block.is-reversed .lp-info-media {
  order: 1;
}

.lp-info-block>* {
  min-width: 0;
  /* critical for grid/flex overflow issues */
}

.lp-info-swiper {
  width: 100%;
  max-width: 100%;
}

.lp-info-section {
  overflow-x: clip;
  /* or hidden if clip not supported */
}


/* Mobile: images first for ALL blocks */
@media (max-width: 991.98px) {
  .lp-info-section {
    padding: 20px 0px;
  }

  .lp-info-block {
    grid-template-columns: 1fr;
  }

  .lp-info-text {
    max-width: 100%;
    order: 2;
  }

  .lp-info-media {
    order: 1;
  }

  .lp-info-block.is-reversed .lp-info-text {
    order: 2;
  }

  .lp-info-block.is-reversed .lp-info-media {
    order: 1;
  }

  .lp-info-img {
    height: 280px;
  }

  .lp-info-title {
    font-size: 24px
  }
}

/* =========================
   What's Included (Icon Grid)
========================= */
.lp-includes {
  padding: 0px 0 70px;
}

.lp-includes__card {
  background: #eaf6fb;
  /* light blue like screenshot */
  border-radius: 56px;
  padding: clamp(34px, 4.5vw, 70px) clamp(18px, 4vw, 60px);
}

.lp-includes__title {
  margin: 0 0 clamp(26px, 3vw, 46px);
  text-align: center;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.2;
  color: #0b1b2a;
  font-size: 48px;
}

.lp-includes__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
}

.lp-include {
  text-align: center;
}

.lp-include__icon {
  width: clamp(100px, 6vw, 200px);
  height: auto;
  display: block;
  margin: 0 auto 0px;
}

.lp-include__label {
  font-weight: 700;
  letter-spacing: .2px;
  color: #0b1b2a;
  line-height: 1.2;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .lp-includes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .lp-includes__card {
    border-radius: 38px;
  }

  .lp-includes__title {
    font-size: 24px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .lp-includes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-include__icon {
    width: 100px;
  }
}

/* =========================
   Gallery Teaser
========================= */
.lp-gallery-teaser {
  padding: 0px 0 70px;
}

.lp-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 26px;
}

.lp-gallery-title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.05;
  color: #0b1b2a;
  font-size: 48px;
}

.lp-gallery-sub {
  margin: 0;
  max-width: 720px;
  color: rgba(11, 27, 42, .78);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

/* Right link with wave underline */
.lp-gallery-link {
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: .9px;
  font-size: 16px;
  color: var(--lp-blue);
  text-decoration: none;
  padding-bottom: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-gallery-link .lp-link-underline {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 0;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='20' viewBox='0 0 180 20'%3E%3Cpath d='M5 12 C 25 5, 45 19, 65 12 S 105 5, 125 12 S 155 19, 175 12' fill='none' stroke='%230b74c9' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* 3 images row */
.lp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  /* similar proportions as screenshot */
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}

.lp-gallery-card {
  display: block;
  border-radius: 50px;
  overflow: hidden;
  background: #e9eef2;
}

.lp-gallery-card img {
  transition: transform .4s ease;
  will-change: transform;
}

.lp-gallery-card:hover img {
  transform: scale(1.06);
}


.lp-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  /* keeps consistent shapes */
}

/* Responsive */
@media (max-width: 991.98px) {
  .lp-gallery-teaser {
    padding: 0px 0px 20px;
  }

  .lp-gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-gallery-title {
    font-size: 24px;
  }

  .lp-gallery-sub {
    font-size: 16px;
  }

  .lp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lp-gallery-card {
    border-radius: 28px;
  }

  .lp-gallery-card img {
    aspect-ratio: 16 / 10;
  }
}

/* =========================
   Image Modal
========================= */
.lp-img-modal .modal-dialog {
  padding: 18px;
}

.lp-img-modal__content {
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.lp-img-modal__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #03222F;
  max-height: 85vh;
  object-fit: cover;
}

.lp-img-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.lp-img-modal__close:hover {
  background: rgba(0, 0, 0, .8);
}


/* =========================
   CTA Banner (full width)
========================= */
.lp-cta-banner {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 58vh, 620px);
  display: grid;
  place-items: center;
  overflow: hidden;

  --cta-overlay: 50;
}

.lp-cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lp-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, calc(var(--cta-overlay) / 100));
}

.lp-cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: clamp(40px, 6vh, 70px) 16px;
  max-width: 1200px;
}

.lp-cta-banner__title {
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.05;
  font-size: 48px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.lp-cta-banner__text {
  margin: 0 auto 26px;
  max-width: 1200px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 1.5;
  font-size: 18px;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

.lp-cta-banner__text strong {
  font-weight: 800;
  color: #fff;
}

.lp-cta-banner__link {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.lp-cta-banner__link .lp-link-underline {
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: 0;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* white wave underline */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='24' viewBox='0 0 200 24'%3E%3Cpath d='M6 14 C 28 6, 50 22, 72 14 S 116 6, 138 14 S 172 22, 194 14' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: .95;
}

/* Optional: smoother hover */
.lp-cta-banner__link:hover {
  opacity: .9;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .lp-cta-banner {
    min-height: 520px;
    /* more space for long paragraph */
  }

  .lp-cta-banner__text {
    font-size: 16px;
  }

  .lp-cta-banner__title {
    font-size: 24px;
    max-width: 300px;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   Footer
========================= */
.lp-footer {
  background: #E9F4F8;
  padding: 50px 0px 30px;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
}

.lp-footer__logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.lp-footer__copyright {
  position: absolute;
  margin-top: clamp(18px, 3vw, 30px);
  font-size: 16px;
  color: rgba(11, 27, 42, .75);
  font-weight: 500;
  margin-top: 80px;
  bottom: 0px;
}

.lp-footer__title {
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.05;
  color: #0b1b2a;
  font-size: 48px;
}

.lp-footer__text {
  margin: 0 0 22px;
  color: rgba(11, 27, 42, .78);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  max-width: 640px;
}

.lp-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  align-items: center;
}

.lp-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--lp-blue);
  text-transform: uppercase;
  font-size: 16px;
}

.lp-footer__social-link:hover {
  opacity: 0.85;
}

.lp-footer__social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.lp-footer__grid {
  gap: 80px;
}

@media (max-width: 991.98px) {
  .lp-footer {
    padding: 20px 0px 20px;
  }
  .lp-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
  
  .lp-footer__right {
    width: 100%;
  }

  .lp-footer__logo {
    max-width: 320px;
  }

  .lp-footer__title {
    font-size: 24px;
    margin-top: 10px;
  }

  .lp-footer__text {
    font-size: 16px;
  }
  .lp-footer__copyright {
    position: relative !important;
    margin-top: 30px;
  }
}

/* add below your existing footer CSS */

/* Location link spacing */
.lp-footer__location-link{
  margin-top: 22px; /* below social links */
}

/* Map wrap */
.lp-footer__map{
  width: 100%;
  max-width: 700px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 36, 64, 0.08);
}

/* Make iframe responsive */
.lp-footer__map iframe{
  width: 100%;
  height: 320px;
  display: block;
}

.horizontal-divider-line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, .1);
  margin-top: 20px;
}

/* Slightly smaller on mobile */
@media (max-width: 991.98px){
  .lp-footer__location-link{
    margin-top: 18px;
  }
  .lp-footer__map iframe{
    height: 300px;
  }
}


/* =========================
   Button links with accessory line
========================= */
.lp-btn-link {
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 12px;
  line-height: 1;
}

.lp-btn-link .lp-link-underline {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.lp-btn-link.lp-book-now .lp-link-underline {
  background-size: contain;
}

/* Blue version */
.lp-btn-link--blue {
  color: var(--lp-blue);
}

.lp-btn-link--blue .lp-link-underline {
  background-image: url("/res/ic-accessory-line-blue.webp");
}

/* White version */
.lp-btn-link--white {
  color: #fff;
}

.lp-btn-link--white .lp-link-underline {
  background-image: url("/res/ic-accessory-line-white.webp");
}

/* Hover polish */
.lp-btn-link:hover {
  opacity: .85;
}

/* =========================
   Reveal on scroll
========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

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

/* Variants */
.reveal--up {
  transform: translateY(18px);
}

.reveal--down {
  transform: translateY(-18px);
}

.reveal--left {
  transform: translateX(18px);
}

.reveal--right {
  transform: translateX(-18px);
}

.reveal--zoom {
  transform: scale(.98);
}

.reveal--zoom.is-revealed {
  transform: scale(1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============ Language toggle ============ */
[lang] {
    display: none;
}

[lang=en] {
    display: block;
}

/* ============ Language picker (Select2) ============ */
.lp-lang {
  align-items: center;
  justify-content: flex-end;
}

.lp-lang__select {
  width: 100px;
}

/* Select2 overrides (match your header style) */
.select2-container--default .select2-selection--single {
  height: 44px;
  border-radius: 999px;
  background: #F8FEFF;
  border: none !important;
  display: flex;
  align-items: center;
  padding: 0 0px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--lp-blue) !important;
}

.select2-container--open .select2-dropdown--below {
  border: solid 1px var(--lp-blue) !important;
  border-radius: 8px !important;
}


.select2-container--default .select2-results__option--selected {
  background-color: #F8FEFF !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
  padding-left: 0;
  font-family: var(--lp-font);
  font-weight: 600;
  text-transform: uppercase;
  color: #03222F;
  letter-spacing: .2px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
  right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: rgb(0, 0, 0) transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  rotate: 180deg;
}

.select2-dropdown {
  border-radius: 14px;
  overflow: hidden;
}

.select2-results__option {
  padding: 10px 12px;
  font-family: var(--lp-font);
  font-weight: 600;
  text-transform: uppercase;
}

/* =========================
   Gallery Page Hero (short)
========================= */
.lp-gallery-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 42vh, 520px);
  overflow: hidden;

  --gallery-hero-overlay: 50;
}

.lp-gallery-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--gallery-hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lp-gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, calc(var(--gallery-hero-overlay) / 100));
}

.lp-gallery-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}

.lp-gallery-hero__title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.05;
  font-size: 48px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  text-transform: uppercase;
}

/* =========================
   Collage grid (2 landscape + 1 portrait, then flipped)
========================= */
.lp-collage {
  display: grid;
  gap: 20px;
  padding: 40px 0px;
}

/* each row is 3 columns */
.lp-collage-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  /* portrait is a bit narrower */
  gap: 20px;
  align-items: stretch;
}

/* flipped row */
.lp-collage-row--b {
  grid-template-columns: 0.6fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.lp-collage-card {
  display: block;
  border-radius: 50px;
  overflow: hidden;
  background: #e9eef2;
  position: relative;
}

/* image behavior */
.lp-collage-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
  will-change: transform;
}

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

/* Responsive: stack nicely */
@media (max-width: 991.98px) {

  .lp-collage-row,
  .lp-collage-row--b {
    grid-template-columns: 1fr 1fr;
  }

  /* portrait spans full width on mobile for cleaner rhythm */
  .lp-collage-card.lp-port {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .lp-collage-card {
    border-radius: 28px;
  }
}

@media (max-width: 575.98px) {

  .lp-collage-row,
  .lp-collage-row--b {
    grid-template-columns: 1fr;
  }

  .lp-collage-card.lp-land,
  .lp-collage-card.lp-port {
    aspect-ratio: 16 / 10;
  }
}


/* =========================
   Generic short page hero (Space/Gallery/etc.)
========================= */
.lp-page-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  --page-hero-overlay: 50;
}

.lp-page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lp-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, calc(var(--page-hero-overlay) / 100));
}

.lp-page-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}

.lp-page-hero__title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.05;
  font-size: 48px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  text-transform: uppercase;
}

@media(max-width: 767px) {
  .lp-page-hero {
    height: 300px;
  }
  .lp-page-hero__content {
    padding: 0px;
  }

  .lp-page-hero__title {
    font-size: 32px;
  }
}

/* =========================
   Space page (4 blocks)
========================= */
/* =========================
   Space rows (image + text)
========================= */
/* =========================
   Space rows (image + text)
========================= */
.lp-space {
  padding: 70px 0;
}

.lp-space-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

/* Desktop alternate layout */
@media (min-width: 992px) {
  .lp-space-row.is-reversed .lp-space-media {
    order: 2;
  }

  .lp-space-row.is-reversed .lp-space-content {
    order: 1;
  }
}

.lp-space-content {
  max-width: 560px;
}

.lp-space-item__icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin-left: -24px;
  margin-bottom: -20px;
  float: end;
}

.lp-space-row:nth-of-type(1) .lp-space-item__icon {
  margin-left: -40px;
}

.lp-space-item__title {
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.05;
  color: #0b1b2a;
  font-size: 48px;
  /* desktop */
}

.lp-space-item__text {
  margin: 0;
  color: rgba(11, 27, 42, .78);
  font-weight: 500;
  font-size: 18px;
  /* desktop */
  line-height: 1.5;
}

.lp-space-photo {
  display: block;
  border-radius: 44px;
  overflow: hidden;
  background: #e9eef2;
}

.lp-space-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Mobile: IMAGE FIRST for ALL rows */
@media (max-width: 991.98px) {
  .lp-space {
    padding: 20px 0;
  }

  .lp-space-row {
    grid-template-columns: 1fr;
  }

  /* ensure image always first */
  .lp-space-media {
    order: 1;
  }

  .lp-space-content {
    order: 2;
  }

  .lp-space-item__title {
    font-size: 24px;
    /* mobile */
  }

  .lp-space-item__text {
    font-size: 16px;
    /* mobile */
  }

  .lp-space-photo {
    border-radius: 28px;
  }

  .lp-space-photo img {
    aspect-ratio: 16 / 10;
  }

  .lp-space-item__icon {
    display: none;
  }
}

.lp-activities-placeholder {
  padding: 70px 0 90px;
}

.lp-activities-placeholder__box {
  background: #E9F4F8;
  border-radius: 44px;
  padding: clamp(28px, 4vw, 52px);
}

.lp-activities-placeholder__title {
  margin: 0 0 12px;
  font-weight: 900;
  color: #0b1b2a;
  font-size: 48px;
  line-height: 1.05;
}

.lp-activities-placeholder__text {
  margin: 0;
  color: rgba(11, 27, 42, .78);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .lp-activities-placeholder__title {
    font-size: 24px;
  }

  .lp-activities-placeholder__text {
    font-size: 16px;
  }

  .lp-activities-placeholder__box {
    border-radius: 28px;
  }
}

/* Hero (same idea as gallery, just different bg var name) */
.lp-rooms-hero {
  position: relative;
  overflow: hidden;
}

.lp-rooms-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--rooms-hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lp-rooms-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .25));
}

.lp-rooms-hero__content {
  position: relative;
  padding: 64px 0;
}

@media (min-width: 992px) {
  .lp-rooms-hero__content {
    padding: 86px 0;
  }
}


/* Rooms section */
.lp-rooms-page {
  background: #E9F4F8;
  padding: 20px 0 20px;
}

@media (min-width: 992px) {
  .lp-rooms-page {
    padding: 60px 0 60px;
  }
}

.lp-room-card {
  background: #fff;
  border-radius: 30px;
  padding: 26px 18px 18px;
  box-shadow: 0 10px 28px rgba(10, 36, 64, 0.08);
  overflow: hidden;
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .lp-room-card__meta {
    width: 100%;
  }
  .lp-room-card__meta > div {
    display: flex;
    border-top: solid 1px rgba(0, 0, 0, .1);
    justify-content: space-between;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .lp-room-card {
    padding: 34px 28px 22px;
    margin-bottom: 26px;
  }
}

.lp-room-card__top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lp-room-card__title {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.2vw, 44px);
  color: #0b1b2b;
  line-height: 1.12;
}

.lp-room-card__desc {
  margin: 12px 0 0;
  color: #3b4b5c;
  font-size: 16px;
  line-height: 1.55;
  max-width: 820px;
}

.lp-room-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  text-align: right;
  min-width: 200px;
}

.lp-room-card__price {
  font-weight: 850;
  font-size: 28px;
  color: #0b1b2b;
  margin-top: 10px;
  white-space: nowrap;
}

.lp-room-card__price small {
  font-weight: 750;
  font-size: 14px;
  opacity: .7;
  margin-left: 4px;
}

.lp-room-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-blue);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: .04em;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 10px;
  position: relative;
  padding-bottom: 6px;
}

.lp-room-card__cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lp-blue);
  border-radius: 99px;
  transform: scaleX(.78);
  transform-origin: left;
  opacity: .85;
}

/* Icons row */
.lp-room-icons {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  max-width: 880px;
}

@media (min-width: 576px) {
  .lp-room-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .lp-room-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px 16px;
  }
}

.lp-room-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 38px;
}

.lp-room-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.lp-room-icon span {
  font-size: 14px;
  line-height: 1.2;
  color: #0b1b2b;
  font-weight: 750;
}

/* Swiper */
.lp-room-swiper {
  margin-top: 32px;
  border-radius: 18px;
  overflow: hidden;
}

.lp-room-swiper .swiper-slide {
  border-radius: 18px;
  overflow: hidden;
  height: 210px;
}

.lp-room-card__meta .lp-info-link {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .lp-room-swiper .swiper-slide {
    height: 260px;
  }
}

.lp-room-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-room-swiper .swiper-pagination-bullets {
  bottom: 10px !important;
}

.lp-room-swiper .swiper-pagination-bullet-active {
  background: #fff;
}