/* ================================================================
   home.css
   Home page only â€” hero section, search bar, trust strip.
   Depends on the tokens defined in common.css.

   NOTE: child element selectors are scoped under their parent block
   (e.g. `.trust-item .trust-title`). Only the region root `.hero`
   is written unscoped.
   ================================================================ */

/* ----------------------------------------------------------------
   HERO SHELL
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}

.hero .hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/hero-img.png");
  background-size: cover;
  background-position: 62% center;
  z-index: -3;
}

.hero .hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0000004d;
}

.hero .hero__foot {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(14, 11, 8, 0.35) 72%,
    rgba(12, 10, 7, 0.9) 100%
  );
  pointer-events: none;
}

/* ----------------------------------------------------------------
   HERO BODY
   ---------------------------------------------------------------- */
.hero .hero__body {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.hero__body .wrap {
  width: 100%;
}

.hero__body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.hero__body .eyebrow::after {
  content: "";
  width: 46px;
  height: 1.5px;
  background: var(--orange);
}

.hero__body .hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0;
}

.hero__title .accent {
  font-style: italic;
  color: var(--orange);
}

.hero__body .title-rule {
  width: 66px;
  height: 2px;
  background: var(--orange);
  margin: 20px 0 16px;
}

.hero__body .hero__lead {
  font-size: 1.18rem;
  line-height: 1.5;
  color: #fff;
  max-width: 27ch;
  font-weight: 400;
  margin: 0 0 16px;
}

.hero__body .cta-row {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.cta-row .btn-primary-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 18px 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-row .btn-primary-cta:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  color: #fff;
}

.cta-row .btn-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #fff;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cta-row .btn-link-cta:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* location badge -------------------------------------------------- */
.hero__body .locale {
  position: absolute;
  top: 6px;
  right: 40px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.locale .locale__pin {
  color: #fff;
  margin-top: 2px;
}

.locale .locale__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
}

.locale .locale__place {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 4px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--orange);
  display: inline-block;
}

/* ----------------------------------------------------------------
   SEARCH BAR
   ---------------------------------------------------------------- */
.hero .search-shell {
  position: relative;
  z-index: 5;
  padding-bottom: 30px;
}

.search-shell .search-bar {
  display: flex;
  align-items: stretch;
  background: var(--glass);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.search-bar .search-seg {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  position: relative;
  color: #fff;
  cursor: pointer;
}

.search-bar .search-seg + .search-seg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line-dark);
}

.search-seg .seg-icon {
  color: var(--orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.search-seg .seg-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.search-seg .seg-value {
  display: block;
  font-size: 1.02rem;
  color: #fff;
  font-weight: 500;
  margin-top: 3px;
}

.search-seg .seg-chev {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.search-bar .search-go {
  flex: 0 0 auto;
  width: 76px;
  display: grid;
  place-items: center;
}

.search-go button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-go button:hover {
  background: var(--orange-600);
  transform: scale(1.05);
}

/* ----------------------------------------------------------------
   TRUST BAR
   ---------------------------------------------------------------- */
.hero .trust {
  position: relative;
  z-index: 5;
  padding-bottom: 34px;
}

.trust .trust-row {
  display: flex;
  align-items: center;
}

.trust-row .trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 15px;
  position: relative;
}

.trust-row .trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.trust-item .trust-icon {
  color: var(--orange);
  font-size: 1.55rem;
  flex-shrink: 0;
}

.trust-item .trust-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
}

.trust-item .trust-sub {
  margin: 3px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.trust-sub .star {
  color: var(--orange);
}

/* ----------------------------------------------------------------
   HOME RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero__body .hero__lead {
    max-width: 34ch;
  }
}

@media (max-width: 992px) {
  .hero__body .locale {
    display: none;
  }

  .search-shell .search-bar {
    flex-wrap: wrap;
    border-radius: 22px;
  }
  .search-bar .search-seg {
    flex: 1 1 45%;
    padding: 16px 18px;
  }
  .search-bar .search-seg + .search-seg::before {
    display: none;
  }
  .search-bar .search-go {
    flex: 1 1 100%;
    padding: 6px;
  }
  .search-go button {
    width: 100%;
    border-radius: 14px;
    height: 54px;
  }

  .trust .trust-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .trust-row .trust-item {
    flex: 1 1 44%;
  }
  .trust-row .trust-item + .trust-item::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero .hero__wash {
    background: linear-gradient(
      180deg,
      rgba(236, 229, 219, 0.95) 0%,
      rgba(236, 229, 219, 0.7) 45%,
      rgba(236, 229, 219, 0.1) 70%
    );
  }
  .hero__body .hero__title {
    font-size: 2.5rem;
  }
  .hero__body .cta-row {
    gap: 18px;
  }
  .cta-row .btn-primary-cta,
  .cta-row .btn-link-cta {
    width: 100%;
    justify-content: center;
  }
  .search-bar .search-seg {
    flex: 1 1 100%;
  }
  .trust-row .trust-item {
    flex: 1 1 100%;
  }
}

/* ================================================================
   FEATURED STAYS
   (child selectors scoped under their parent block, like the rest)
   ================================================================ */
.featured-stays {
  background:
    radial-gradient(1200px 420px at 50% -8%, #15272f 0%, rgba(21, 39, 47, 0) 62%),
    #0d181e;
  /* padding: 90px 0 100px; */
  background: #fff;
}

.featured-stays .stays-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.stays-head .stays-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 18px;
}

.stays-head .stays-eyebrow::after {
  content: "";
  width: 84px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--orange), rgba(224, 90, 30, 0));
}

.stays-head .stays-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0;
}

.stays-head .stays-browse {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--orange);
  transition: color 0.2s ease;
  transition: gap 0.2s ease;
}

.stays-browse i {
  color: var(--orange);
}

.stays-head .stays-browse:hover {
  /* color: #fff; */
  gap: 16px;
}

.featured-stays .stays-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stays-grid .stay-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgb(255 255 255);
  /*background: linear-gradient(180deg, #16262e 0%, #0e1a21 100%);*/
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  background-size: cover;
  position: relative;
  overflow:hidden;
}
.stays-grid .stay-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, #16262e 0%, #0e1a21 100%);
  opacity: 0.5;
}
.stays-grid .stay-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  /* background: linear-gradient(180deg, #1b2731 0%, #131f28 100%); */
  box-shadow: 0 0 0 1px rgba(224, 90, 30, 0.35), 0 20px 45px rgba(0, 0, 0, 0.4);
}
.stays-grid .stay-card:hover .stay-card__icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.stays-grid .stay-card:hover .stay-card__badge {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.stays-grid .stay-card:hover .stay-card__go {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.stay-card .stay-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  position: relative;
}

.stay-card__top .stay-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
}

.stay-card__top .stay-card__badge {
  font-size: 0.64rem;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.stay-card .stay-card__body {
  margin-top: 0;
  position: relative;
}

.stay-card__body .stay-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #f3ece1;
  margin: 0 0 4px;
}

.stay-card__body .stay-card__tag {
  font-size: 0.9rem;
  color: rgb(255 255 255);
  margin: 0;
}

.stay-card .stay-card__explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgb(255 255 255 / 29%);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
}

.stay-card__explore .stay-card__go {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.stay-card__explore:hover .stay-card__go {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* featured card variant */
.stays-grid .stay-card--featured {
  /* border-color: var(--orange); */
  /* background: linear-gradient(180deg, #1b2731 0%, #131f28 100%); */
  /* box-shadow: 0 0 0 1px rgba(224, 90, 30, 0.35), 0 20px 45px rgba(0, 0, 0, 0.4); */
}

.stay-card--featured .stay-card__icon {
  /* background: var(--orange); */
  /* border-color: var(--orange); */
  /* color: #fff; */
}

.stay-card--featured .stay-card__badge {
  /* background: var(--orange); */
  /* border-color: var(--orange); */
  /* color: #1a1205; */
}

.stay-card--featured .stay-card__name {
  /* color: var(--orange); */
}

.stay-card--featured .stay-card__go {
  /* background: var(--orange); */
  /* border-color: var(--orange); */
  /* color: #fff; */
}

/* featured stays â€” responsive */
@media (max-width: 1200px) {
  .featured-stays .stays-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-stays .stays-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .featured-stays .stays-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stays-grid .stay-card {
    min-height: 340px;
  }
}

@media (max-width: 520px) {
  .featured-stays .stays-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   FEATURED PROPERTIES (Owl Carousel)
   child selectors scoped under their parent block, as elsewhere
   ================================================================ */
.properties {
  position: relative;
  overflow: hidden;
  background: #f3efe8;
  /* padding: 86px 0 70px; */
}

/* decorative palm-frond shadow, top-left */
.properties .props__palm {
  position: absolute;
  top: -30px;
  left: -50px;
  width: 270px;
  height: 230px;
  color: #b7b0a3;
  opacity: 0.45;
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

/* ---- header ---- */
.properties .properties__head {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.properties__head .props__seal {
  position: absolute;
  right: -150px;
  top: 36px;
  width: 150px;
  height: 150px;
  color: var(--orange);
  opacity: 0.5;
  pointer-events: none;
}

.properties__head .properties__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 18px;
}

.properties__eyebrow .rule {
  width: 46px;
  height: 1.5px;
  background: var(--orange);
  opacity: 0.75;
}

.properties__head .properties__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0 0 20px;
}

.properties__head .properties__lead {
  font-size: 1.08rem;
  line-height: 1.5;
  color: #6d675e;
  max-width: 30rem;
  margin: 0 auto 20px;
}

.properties__head .properties__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  transition: gap 0.2s ease;
}

.properties__head .properties__link:hover {
  gap: 16px;
}

/* ---- carousel shell ---- */
.properties .properties__carousel-wrap {
  position: relative;
  z-index: 2;
  margin-top: 48px;
}

/* ---- property card ---- */
.properties__carousel .property-card {
  position: relative;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 18px 40px rgba(20, 18, 15, 0.18); */
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.properties__carousel .owl-item .property-card {
  transform: scale(1);
  opacity: 1;
}

.properties__carousel .owl-item.center .property-card {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
  /* box-shadow: 0 26px 60px rgba(20, 18, 15, 0.32); */
}

.properties__carousel .owl-item .property-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card .property-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 12, 0.93) 0%,
    rgba(10, 10, 12, 0.55) 34%,
    rgba(10, 10, 12, 0.04) 62%
  );
}

.property-card .property-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0px;
  padding: 6px 10px;
  border-radius: 999px;
}

.property-card .property-card__fav {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 2;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  border: 0px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  /* backdrop-filter: blur(4px); */
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.property-card .property-card__fav:hover {
  /* background: #fff; */
  color: var(--orange);
}

.property-card .property-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px;
  color: #fff;
}

.property-card__content .property-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.property-card__content .property-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 5px;
}

.property-card__loc i {
  color: #fff;
}

.property-card__content .property-card__desc {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42ch;
  margin: 0 0 10px;
}

.property-card .property-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 10px;
}

.property-card__meta .property-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.property-card__specs li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.property-card__specs .spec-ic {
  color: #fff;
  flex-shrink: 0;
}

.property-card__meta .property-card__price {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.property-card__price .amt {
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}

/* ---- owl nav (custom) ---- */
.properties .properties__carousel .owl-nav {
  margin: 0;
}

.properties .properties__carousel .owl-nav button.owl-prev,
.properties .properties__carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  z-index: 20;
  transition: background 0.2s ease, color 0.2s ease;
}

.properties .properties__carousel .owl-nav button.owl-prev {
  left: 14px;
}

.properties .properties__carousel .owl-nav button.owl-next {
  right: 14px;
}

.properties .properties__carousel .owl-nav button.owl-prev:hover,
.properties .properties__carousel .owl-nav button.owl-next:hover {
  background: var(--orange);
  color: #fff;
}

.properties .owl-nav .oc-nav-ic {
  font-size: 1.3rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

/* ---- owl dots (custom) ---- */
.properties .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.properties .owl-dots .owl-dot span {
  display: block;
  width: 26px;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  background: #d8d0c4;
  transition: width 0.25s ease, background 0.25s ease;
}

.properties .owl-dots .owl-dot.active span {
  width: 42px;
  background: var(--orange);
}

.properties .owl-dots .owl-dot:hover span {
  background: #c7bfb2;
}
.map{position:relative;width:100%}
.map-img{display:block;width:100%;height:auto;border-radius:12px;opacity:0;transform:scale(1.04);filter:blur(8px);
  transition:opacity 1.2s var(--ease),transform 1.4s var(--ease),filter 1.2s var(--ease)}
.map.in .map-img{opacity:1;transform:scale(1);filter:blur(0)}
.map-glow{position:absolute;left:61%;top:33%;width:74px;height:74px;transform:translate(-50%,-50%);border-radius:50%;pointer-events:none;opacity:0;transition:opacity .8s ease .8s}
.map.in .map-glow{opacity:1}
.map-glow::before{content:"";position:absolute;inset:0;border-radius:50%;border:2px solid var(--orange);animation:pulse 2.8s ease-out infinite}
@keyframes pulse{0%{transform:scale(.55);opacity:.7}100%{transform:scale(2.6);opacity:0}}

.hotspot{position:absolute;left:var(--x);top:var(--y);width:clamp(34px,6.5%,58px);aspect-ratio:1;
  transform:translate(-50%,-50%);border:none;background:transparent;cursor:pointer;border-radius:50%;padding:0;z-index:5}
.hotspot::before{content:"";position:absolute;inset:-45%;border-radius:50%;
  background:radial-gradient(circle, rgba(229,121,58,.6), rgba(229,121,58,0) 68%);
  opacity:0;transform:scale(.6);transition:opacity .35s var(--ease),transform .4s var(--ease)}
.hotspot::after{content:"";position:absolute;inset:6%;border-radius:50%;border:2px solid var(--orange);
  box-shadow:0 0 20px var(--orange-glow);opacity:0;transform:scale(.5);
  transition:opacity .35s var(--ease),transform .4s var(--ease)}
.hotspot:hover::before,.hotspot.lit::before{opacity:1;transform:scale(1)}
.hotspot:hover::after,.hotspot.lit::after{opacity:1;transform:scale(1)}
.hotspot:focus-visible{outline:2px solid var(--orange-2);outline-offset:3px;border-radius:8px}
/* purana:  .card.flash{animation:flash 1.5s var(--ease)}  */
.stay-card.flash { animation: flash 1.5s ease; }
section.map-sec {
    padding: 0;
    overflow: hidden;
}
section.map-sec .container-fluid{
  padding: 0;
}
/* pin hover par card highlight */
.stay-card.hl { box-shadow: 0 0 0 2px var(--orange), 0 18px 40px rgba(0,0,0,.35); }
@keyframes flash{0%,100%{box-shadow:0 0 0 0 rgba(229,121,58,0)}22%{box-shadow:0 0 0 3px var(--orange),0 26px 46px rgba(0,0,0,.5)}}
/* ---- featured properties responsive ---- */
@media (max-width: 1200px) {
  .properties__head .props__seal {
    display: none;
  }
}

@media (max-width: 768px) {
  .properties {
    padding: 64px 0 56px;
  }
  .properties .props__palm {
    width: 320px;
    height: 300px;
    top: -50px;
    left: -60px;
  }
  .properties .properties__carousel .owl-nav button.owl-prev,
  .properties .properties__carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
  }
  .properties__carousel .property-card {
    height: 420px;
  }
  .property-card__content .property-card__title {
    font-size: 1.45rem;
  }
}

/* ============================================================
   WHY BOOK WITH US
   ============================================================ */
.why-book {
  position: relative;
  background: #fff;
}

.why-book .why-book__head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.why-book__head .why-book__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 14px;
}

.why-book__eyebrow .rule {
  width: 46px;
  height: 1.5px;
  background: var(--orange);
  opacity: 0.75;
}

.why-book__head .why-book__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0 0 18px;
}

.why-book__head .why-book__title em {
  font-style: italic;
  color: var(--orange);
}

.why-book__head .why-book__lead {
  font-size: 1.06rem;
  line-height: 1.55;
  color: #6d675e;
  max-width: 40rem;
  margin: 0 auto;
}

/* ---- layout: image + card grid ---- */
.why-book .why-book__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: stretch;
}

.why-book .why-book__media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  min-height: 100%;
}

.why-book__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* ---- cards ---- */
.why-book .why-book__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-book__grid .wb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fbfaf6;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 12px;
  padding: 34px 26px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-book__grid .wb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 30, 0.28);
  box-shadow: 0 18px 34px -20px rgba(58, 40, 24, 0.42);
}

.wb-card .wb-card__ic {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(224, 90, 30, 0.09);
  color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.25s ease;
}

.wb-card__ic svg {
  width: 30px;
  height: 30px;
}

.wb-card:hover .wb-card__ic {
  background: rgba(224, 90, 30, 0.16);
}

.wb-card .wb-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin: 0 0 14px;
}

.wb-card .wb-card__text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #7c766c;
  max-width: 22ch;
  margin: 0;
}

.wb-card .wb-card__rule {
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 22px;
}
.videos {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}
.videos video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ---- responsive ---- */
@media (max-width: 992px) {
  .why-book .why-book__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .why-book__media img {
    min-height: 300px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .why-book .why-book__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-book .why-book__head {
    margin-bottom: 40px;
  }
  .why-book .why-book__grid {
    grid-template-columns: 1fr;
  }
  .why-book__grid .wb-card {
    padding: 30px 24px 26px;
  }
}
