/* ============================================================
   CROSSWINDS — style.css
   ============================================================ */

:root {
  --navy: #0f1d2e;
  --navy-deep: #0a1623;
  --ivory: #faf6ef;
  --beige: #e9dec9;
  --gold: #c8a35c;
  --gold-dark: #a88543;
  --ink: #1f2933;
  --ink-soft: #5a6470;
  --line: rgba(15, 29, 46, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  min-height: 100vh
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap');

.serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.wrap-md {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.wrap-sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 2.5rem
}

@media(max-width:640px) {

  .wrap,
  .wrap-md,
  .wrap-sm {
    padding: 0 1.25rem
  }
}




/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: .5rem;
  font-size: .9375rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  white-space: nowrap
}

.btn-lg {
  padding: .8rem 1.6rem;
  font-size: 1rem
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold)
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark)
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep)
}

.btn-ow {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.btn-ow:hover {
  background: rgba(255, 255, 255, .1)
}

.btn-on {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15, 29, 46, .2)
}

.btn-on:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

/* Section heading */
.sec-head {
  max-width: 53rem;
  margin: 0 auto 3rem;
  text-align: center
}

.sec-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .75rem;
  margin-bottom: 1rem;
  color: var(--gold-dark)
}

.sec-eyebrow.light {
  color: var(--gold)
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy)
}

.sec-title.light {
  color: #fff
}

.sec-title.font-size-lg {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}

.section-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray) #6B6B6B;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1rem;
}


.sec-sub {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft)
}

.sec-sub.light {
  color: rgba(255, 255, 255, .75)
}

/* NAV */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 29, 46, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s ease
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85)
}

.nav-links a,
.mobile-menu a {
  transition: color .2s ease
}

.nav-links a:hover,
.nav-links a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold)
}

.nav-links a.active,
.mobile-menu a.active {
  font-weight: 600
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: var(--gold)
}

.nav-cta:hover {
  color: #fff
}

.nav-cta svg {
  width: 1rem;
  height: 1rem
}

@media(max-width:767px) {
  #site-nav.nav-hidden {
    transform: translateY(-100%)
  }

  .nav-links,
  .nav-cta,
  .btn-call-nav {
    display: none
  }

  .nav-inner {
    padding: 1rem 1rem;
    position: relative
  }




  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: .25rem;
    padding: .35rem .35rem .35rem .35rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-toggle span {
    display: block;
    width: 1.35rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .75rem;
    background: rgba(15, 29, 46, .98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
  }

  .mobile-menu a {
    color: #fff;
    padding: .4rem .4rem .8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
    width: fit-content;
  }
}

@media(min-width:768px) {

  .nav-toggle,
  .mobile-menu {
    display: none
  }
}

/* HERO */
#hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(15, 29, 46, .95);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}



.hero-content {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 2.5rem 1rem;
  color: #fff
}

.hero-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 1.5rem
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.05;
  max-width: 38rem
}

.hero-sub {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85)
}

.hero-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.hero-badge {
  display: inline-flex;
  gap: .4rem;
  padding: .475rem 2.25rem .475rem .875rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(4px);
  font-size: .8rem;
  color: rgba(255, 255, 255, .9);
  line-height: 16px;
}

.hero-badge svg {
  width: .875rem;
  height: .875rem;
  color: var(--gold)
}

.hero-ctas {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

.hero-urgency {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--gold)
}

.hero-urgency svg {
  width: 1rem;
  height: 1rem
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-decoration: none
}

.hero-scroll-cue:hover {
  color: #fff
}

.hero-scroll-cue svg {
  width: 1.25rem;
  height: 1.25rem
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

.anim-bounce {
  animation: bounce 1.6s ease-in-out infinite
}

@media(max-width:767px) {
  .hero-content {
    padding: 5rem 1rem 8px;
    display: flex;
    flex-direction: column;
    height: 100vh;
  }



  .hero-scroll-cue {
    display: none
  }
}

/* POSITIONING */
#positioning {
  padding: 5rem 0;
  background: var(--ivory)
}

.pos-grid {
  display: grid;
  gap: 3rem 4rem;
  align-items: center
}

@media(min-width:768px) {
  .pos-grid {
    grid-template-columns: 1fr 1fr
  }
}

.pos-eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .75rem;
  color: var(--gold-dark);
  margin-bottom: 1.25rem
}

.pos-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--navy)
}

.pos-title em {
  color: var(--gold-dark);
  font-style: normal
}

.pos-body {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft)
}

.pos-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

.pos-img-wrap {
  position: relative;
  max-width: 560px;

}

.pos-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .2)
}

.pos-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy);
  color: #fff;
  padding: 1.5rem;
  border-radius: .75rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
  max-width: 220px;
  display: none;
  z-index: 9;
}

.pos-card-stars {
  display: flex;
  gap: .15rem;
  color: var(--gold);
  margin-bottom: .5rem
}

.pos-card-stars svg {
  width: 1rem;
  height: 1rem
}

.pos-card-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem
}

.pos-card-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem
}

@media(min-width:768px) {
  .pos-card {
    display: block
  }

  .pos-img {
    height: 560px
  }
}

/* USP */
#usp {
  padding: 5rem 0;
  background: rgba(233, 222, 201, .3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.usp-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 2fr)
}

@media(min-width:1024px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .usp-grid .usp-card:last-child {
    grid-column: 1 / -1
  }
}

.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
  transition: box-shadow .2s;
  flex-direction: column;
  display: flex;
  height: 100%;
}

.pricimgeimgnew {
  display: none;
}

#whycrawinds .owl-item {

  height: 100%;
}

#whycrawinds .item {
  height: 100%;

}

.usp-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

.usp-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}

.usp-icon svg {
  width: 1.25rem;
  height: 1.25rem
}

.usp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy)
}

.usp-body {
  margin-top: .5rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft)
}

.usp-body p {
  margin-bottom: .45rem
}

.extra-charge-title {
  margin: 1rem 0 .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--navy);
  text-align: center
}

.extra-charge-table {
  width: min(100%, 720px);
  margin: 0 auto 1rem;
  border-collapse: collapse;
  background: #fff;
  color: var(--navy);
  text-align: center
}

.extra-charge-table th,
.extra-charge-table td {
  border: 1px solid var(--line);
  padding: .65rem .8rem
}

.extra-charge-table th {
  background: rgba(233, 222, 201, .45);
  font-weight: 700;
  white-space: nowrap;

}

.extra-charge-table th:first-child,
.extra-charge-table td:first-child {
  text-align: left
}

@media(max-width:767px) {
  .usp-grid {
    grid-template-columns: 1fr;
    gap: .75rem
  }

  .usp-card {
    position: relative;
    padding: 1rem 1rem 1rem 1rem;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: .75rem
  }



  .usp-card::after {
    content: '';
    position: absolute;
    top: 1.55rem;
    right: 1.55rem;
    width: .65rem;
    height: .65rem;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform .25s ease
  }






  .usp-card.open::after {
    transform: rotate(225deg)
  }

  .usp-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0
  }

  .usp-title {
    font-size: 1.2rem;
    text-align: left;
  }

  .usp-body {
    grid-column: 1 / -1;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, margin-top .3s ease, opacity .25s ease
  }

  .usp-card.open .usp-body {
    max-height: 99rem;
    margin-top: .5rem;
    opacity: 1
  }
}

.usp-cta {
  margin-top: 3rem;
  text-align: center
}

/* VILLAS */
#villas {
  padding: 5rem 0;
  background: var(--ivory)
}

.villas-grid {
  display: grid;
  gap: 1.75rem
}

@media(min-width:768px) {
  .villas-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .villas-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.villa-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
  transition: box-shadow .25s
}

.villa-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12)
}

.villa-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden
}

.villa-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}

.villa-card:hover .villa-img-wrap img {
  transform: scale(1.05)
}

.villa-loc {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .25rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(4px);
  color: var(--navy);
  font-size: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem
}

.villa-loc svg {
  width: .75rem;
  height: .75rem;
  color: var(--gold-dark)
}

.villa-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.villa-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--navy)
}

.villa-meta {
  margin-top: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1rem;
  font-size: .875rem;
  color: var(--ink-soft)
}

.villa-meta span {
  display: inline-flex;
  align-items: center;
  gap: .4rem
}

.villa-meta svg {
  width: .875rem;
  height: .875rem;
  color: var(--gold-dark)
}

.villa-features {
  margin-top: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .9rem;
  color: var(--ink-soft)
}

.villa-feature {
  display: flex;
  align-items: flex-start;
  gap: .5rem
}

.villa-feature svg {
  width: .875rem;
  height: .875rem;
  margin-top: .2rem;
  color: var(--gold-dark);
  flex-shrink: 0
}

.villa-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .75rem
}

.villa-price-label {
  font-size: .75rem;
  color: var(--ink-soft)
}

.villa-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy)
}

.villa-price small {
  font-size: .8rem;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif
}

.villa-cta-banner {
  margin-top: 3.5rem;
  border-radius: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start
}

@media(min-width:768px) {
  .villa-cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem
  }
}

.villa-cta-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2
}

.villa-cta-banner p {
  margin-top: .75rem;
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40rem
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

/* EXPERIENCE */
#experience {
  padding: 5rem 0 2rem;
  background: rgba(233, 222, 201, .7)
}

.exp-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:768px) {
  .exp-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  aspect-ratio: 4/5;
  background: var(--navy)
}

.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: opacity .7s, transform .7s
}

.exp-card:hover img {
  opacity: 1;
  transform: scale(1.05)
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 35, .9) 0%, rgba(15, 29, 46, .2) 50%, transparent 100%)
}

.exp-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: #fff;
  transform: translateY(1.35rem);
  transition: transform .45s ease
}

.exp-card:hover .exp-text {
  transform: translateY(0)
}

.exp-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem
}

.exp-text p {
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  line-height: 1.5;
  margin-top: .2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.45rem);
  transition: opacity .35s ease, visibility .35s ease, transform .45s ease
}

.exp-card:hover .exp-text p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

/* AMENITIES */
#amenities {
  padding: 5rem 0;
  background: var(--ivory)
}

.am-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:640px) {
  .am-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .am-grid {
    grid-template-columns: repeat(5, 1fr)
  }
}

.am-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: .5rem;
  transition: border-color .2s
}

.am-item:hover {
  border-color: var(--gold)
}

.am-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-dark)
}

.am-item span {
  font-size: .85rem;
  line-height: 1.3;
  color: var(--navy)
}

.am-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
  color: var(--ink-soft);
  font-style: italic
}

.am-cta {
  text-align: center;
  margin-top: 1.5rem
}

/* TESTIMONIALS */
#testimonials {
  padding: 5rem 0;
  background: rgba(233, 222, 201, .3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.test-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem
}

.test-stars-row .stars {
  display: flex;
  gap: .15rem;
  color: var(--gold)
}

.test-stars-row .stars svg {
  width: 1.25rem;
  height: 1.25rem
}

.test-stars-row span {
  font-size: .9rem;
  color: var(--ink-soft)
}

.test-grid {
  display: grid;
  gap: 1.25rem
}

.text-centerviegale {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  ;


}

@media(min-width:768px) {
  .test-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.test-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column
}

#experienceList .owl-item {

  height: 100%;
}

#experienceList .item {
  height: 100%;

}



.test-card-stars {
  display: flex;
  gap: .15rem;
  color: var(--gold);
  margin-bottom: .75rem
}

.test-card-stars svg {
  width: 1rem;
  height: 1rem
}

#experienceList .owl-stage {
  display: flex;


}

#experienceList .owl-stage-outer {
  display: flex;
  height: 100%;
}

.test-quote {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic
}

.test-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line)
}

.test-name {
  font-size: .95rem;
  color: var(--navy)
}

.test-from {
  font-size: .8rem;
  color: var(--ink-soft)
}

.test-cta {
  text-align: center;
  margin-top: 3rem
}

/* URGENCY */
#urgency {
  position: relative;
  padding: 6rem 0;
  overflow: hidden
}

.urgency-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.urgency-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 35, .95), rgba(15, 29, 46, .85), rgba(10, 22, 35, .95))
}

.urgency-content {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
  color: #fff
}

.urgency-eyebrow {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 1.25rem
}

.urgency-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1
}

.urgency-sub {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .8);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto
}

.urgency-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center
}

@media(max-width:640px) {
  .urgency-content {
    padding: 0 1.25rem
  }
}

/* GALLERY */
#gallery {
  padding: 0rem 0 30px;
  background: rgba(233, 222, 201, .7);
  text-align: center;
}

.gal-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:768px) {
  .gal-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.gal-item {
  overflow: hidden;
  border-radius: .75rem
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}

.gal-item:hover img {
  transform: scale(1.05)
}

.gal-item.sq {
  aspect-ratio: 1/1
}

.gal-item.tall {
  aspect-ratio: 3/5
}

@media(min-width:768px) {
  .gal-item.tall {
    grid-row: span 2;
    aspect-ratio: auto
  }
}

.gal-cta {
  text-align: center;
  margin-top: 3rem
}

.gal-cta p {
  color: var(--ink-soft);
  margin-bottom: 1rem
}

.mfp-gallery-with-thumbs .mfp-content {
  padding-bottom: 5rem
}

.mfp-counter {
  display: none
}

.mfp-gallery-thumbs {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 100000000;
  display: flex;
  gap: .5rem;
  max-width: calc(100vw - 2rem);
  padding: .5rem;
  overflow-x: auto;
  border-radius: 999px;
  transform: translateX(-50%);
  scrollbar-width: none
}

.mfp-gallery-thumbs::-webkit-scrollbar {
  display: none
}

.mfp-gallery-thumb {
  flex: 0 0 auto;
  width: 4rem;
  height: 3rem;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: .45rem;
  opacity: .68;
  transition: border-color .25s ease, opacity .25s ease, transform .25s ease
}

.mfp-gallery-thumb:hover,
.mfp-gallery-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-2px)
}

.mfp-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media(max-width:640px) {
  .mfp-gallery-thumb {
    width: 3.25rem;
    height: 2.5rem
  }
}

/* LOCATION */
#location {
  padding: 5rem 0;
  background: var(--ivory)
}

.loc-grid {
  display: grid;
  gap: 1.75rem
}

@media(min-width:768px) {
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Location-specific layout: main map (75%) + aside (25%) */
  #location .loc-grid {
    grid-template-columns: 60% 40%;
    align-items: start;
    gap: 1.75rem 0rem;
  }
}

.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden
}

.loc-map-wrap {
  aspect-ratio: 16/10;
  background: rgba(233, 222, 201, .4)
}

.loc-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.loc-body {
  padding: 1.75rem;

}

.loc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--navy)
}

.loc-copy {
  margin-top: .75rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft)
}

/* Location info (right column) */
#location .loc-info {
  background: #ddd3c4;
  color: #fff;
  padding: 2.25rem;
  border-radius: 0rem .75rem .75rem 0rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  justify-content: flex-start;

}

/* Desktop: remove right border-radius from map card */
@media(min-width:768px) {
  #location .loc-card {
    border-radius: 1rem 0rem 0rem 1rem;
  }
}

.loc-top {
  height: 100%;
}

.loc-body {
  text-align: center;
}

#location .loc-info .loc-title {
  color: #fff;
  font-size: 1.85rem;
  margin-bottom: .25rem;
}

#location .loc-info .loc-copy {
  color: #0f1d2e;
}

.loc-body .btn-gold {
  color: #ffffff
}

#location .loc-list {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  color: #0f1d2e;
  list-style: disc;
}

#location .loc-list li {
  margin-bottom: .6rem;
  line-height: 1.6;
}

/* Make the right panel visually align with the map height */
#location .loc-card,
#location .loc-info {
  align-self: stretch;
}

@media(max-width:767px) {
  #location .loc-info {
    padding: 1rem;
    border-radius: .75rem;
  }

  #location .loc-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
#faq {
  padding: 5rem 0;
  background: rgba(233, 222, 201, .3);
}

.acc-list {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  overflow: hidden
}

.acc-trig {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: var(--navy);
  font-family: inherit;
  cursor: pointer
}

.acc-trig:hover {
  color: var(--gold-dark)
}

.acc-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--ink-soft);
  transition: transform .3s
}

.acc-item.open .acc-icon {
  transform: rotate(180deg)
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.acc-item.open .acc-body {
  max-height: 500px
}

.acc-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft)
}

/* ENQUIRY */
#enquiry {
  padding: 5rem 0;
  background: var(--navy);
  color: #fff
}

.enq-grid {
  display: grid;
  gap: 3rem
}

@media(min-width:1024px) {
  .enq-grid {
    grid-template-columns: 3fr 3fr;
    align-items: start
  }
}

.enq-side-eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 1rem
}

.enq-side-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15
}

.enq-side-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .75)
}

.enq-quick {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: .75rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1)
}

.enq-quick p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  margin-bottom: 1rem
}

.enq-card {
  background: #fff;
  color: var(--ink);
  border-radius: 1rem;
  padding: 2rem 2.25rem
}

.enq-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem
}

.enq-form .full {
  grid-column: 1/-1
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.form-group label {
  font-size: .875rem;
  color: var(--navy);
  font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .6rem .875rem;
  border: 1px solid var(--line);
  border-radius: .5rem;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy)
}

.form-group textarea {
  resize: vertical
}

.form-actions {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: .5rem
}

.form-actions .btn {
  flex: 1;
  justify-content: center
}

@media(max-width:640px) {
  .enq-form {
    grid-template-columns: 1fr
  }

  .enq-form .full {
    grid-column: 1
  }
}

/* WHY DIRECT */
#why-direct {
  padding: 5rem 0;
  background: var(--ivory)
}

.wd-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:1024px) {
  .wd-grid {
    grid-template-columns: repeat(5, 1fr)
  }
}

.wd-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  padding: 1.5rem;
  text-align: center
}

.wd-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(233, 222, 201, .6);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin: 0 auto .75rem
}

.wd-card p {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--navy)
}

.wd-cta {
  text-align: center;
  margin-top: 3rem
}

/* FOOTER */
#site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .5);
  padding: 2rem 0;
  text-align: center;
  font-size: .85rem
}

/* STICKY */
.sticky-mob {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 22, 35, .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: .75rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem
}

.sticky-mob .btn {
  justify-content: center
}

@media(min-width:768px) {
  .sticky-mob {
    display: none
  }
}

.sticky-desk {
  position: fixed;
  right: 1.25rem;
  bottom: 2rem;
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: .75rem
}

@media(min-width:768px) {
  .sticky-desk {
    display: flex
  }
}

.fab {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: background .2s, transform .2s;
  border: none;
  text-decoration: none
}

.fab:hover {
  transform: scale(1.08)
}

.fab svg {
  width: 1.25rem;
  height: 1.25rem
}

.fab-phone {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, .1)
}

.fab-phone:hover {
  background: var(--navy-deep)
}

.fab-wa {
  background: #25D366;
  color: #fff
}

.fab-wa:hover {
  background: #1ebe5d
}

@media(min-width:1024px) {
  .am-grid.mobihide {
    grid-template-columns: repeat(10, 1fr);
  }

  .am-grid.mobihide>.am-item {
    grid-column: span 2;
  }

  .am-grid.mobihide>.am-item:nth-last-child(2) {
    grid-column: 4 / span 2;
  }

  .am-grid.mobihide>.am-item:last-child {
    grid-column: 6 / span 2;
  }
}

@media(max-width:767px) {
  main {
    padding-bottom: 72px
  }
}

/* TOAST */
#toast-wrap {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  pointer-events: none
}

.toast {
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  font-size: .9rem;
  max-width: 28rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s, transform .3s;
  pointer-events: auto
}

.toast.show {
  opacity: 1;
  transform: translateY(0)
}

.btn-call-nav {
  padding: 0.5rem .5rem;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.pricing-main {
  padding: 3rem 2rem;
}

/* === PRICING === */
.pricing-main {
  background: #ddd3c4;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-label {
  color: var(--brown);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.pricing-divider {
  height: 1px;
  background: rgba(212, 184, 150, 0.4);
  margin: 1rem 0;
}

.pricing-includes-label {
  color: var(--brown);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pricing-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  gap: 1rem 1.5rem;
}

.rate-note {
  background: #f5f1e7;
  border: 1px solid #e5dccf;
  border-radius: 1rem;
  color: #5f5444;
  padding: 1rem !important;
  margin: 16px 0px;
}

.text-center {
  text-align: center !important;
}

.rate-note p {
  display: inline-flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.rate-note .info-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  stroke: #5f5444;
}

.pricing-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8375rem;
  color: var(--navy);
}

.pricing-include-item::before {
  content: '✓';
  color: var(--brown);
  font-weight: bold;
  line-height: 1.1;
  margin-top: 0.1rem;
}

.pricing-details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-section-label {
  color: var(--brown);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .pricing-includes {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 767px) {
  .pricing-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }



}

.pricing-item-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

.pricing-item-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
}

.pricing-item-note {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.pricing-item-price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.mt-4 {
  margin-top: 1rem !important;
}

@media (max-width: 767px) {

  #site-nav .btn-gold.destop {
    display: none;
  }

  .btn-lg {
    padding: 0.75rem .75rem;
  }

  .loc-grid {
    display: block;
  }

  .loc-top {
    margin-bottom: 1.75rem;
  }

  .btn {
    font-size: 0.8rem;
  }
}

.gfield_label {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  display: inline-block;
  margin-bottom: .4rem;
}

.inquiry-form .form-input::placeholde {
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-input {
  width: 100%;
  background: #f3f3f5;
  border: 1px solid rgba(0, 0, 1, 0.01);
  border-radius: 8px;
  padding: 0rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: border-color 0.3s ease;
  height: 44px;
  line-height: 44px;
}

.form-input.roomestype {
  width: 100%;
  background: #f3f3f5;
  border: 1px solid rgba(0, 0, 1, 0.01);
  border-radius: 8px;
  padding: 0rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: border-color 0.3s ease;
  height: 44px;
  line-height: 44px;
  appearance: none;
  background-image: url(./images/ic_arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px auto;
}

.form-input.calendeicon {
  height: 44px;
  line-height: 44px;
  padding: 0 16px 0 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-image: url('./images/calendar.gif');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
  -webkit-appearance: none;
  appearance: none;
}




select {
  appearance: none;
  -webkit-appearance: none;
  /* Chrome, Safari, iPhone */
  -moz-appearance: none;
  /* Firefox */
  border-radius: 8px;
  outline: none;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  /* Chrome, Safari, iPhone */
  -moz-appearance: none;
  /* Firefox */
  outline: none;
}

.flatpickr-calendar {
  z-index: 99999 !important;
}


.form-input:focus-visible {
  border-color: #cfcfcf;
  outline: none;

}

#checkin,
#checkout {
  text-align: left;
  -webkit-appearance: auto;
  appearance: auto;
}

#checkin::-webkit-calendar-picker-indicator,
#checkout::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--brown);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
}

.summitbtn {
  margin: 1rem 0px;

}

.thankypag.hero-content {
  text-align: center;
  padding: 4rem 2.5rem 7rem;
}

.thankypag.hero-content .hero-logo {
  width: fit-content;
  margin: 0 auto;

}

.thankypag.hero-content .hero-title {
  width: 100%;
  max-width: 100%;
  margin-top: 15px;
}

.thankypag.hero-content .hero-description {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.thankypag.hero-content .hero-rating {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.thankypag.hero-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #8b7355;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  justify-content: center;
  width: fit-content;
  margin: 0px auto;
}

.gfield_label span {
  font-style: italic;
}

.form-note {
  font-size: 0.8125rem;
}

.btn-gold-border {
  border: 1px solid #ffffff;
  padding: 0.49rem 1rem;
  border-radius: 6px;
}

.btn-whatsup {
  background: #25D366;
  color: #fff;
  padding: 0.5rem .5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;

}

#pricing {
  background-color: rgba(233, 222, 201, .7);
  padding: 5rem 0px;

}

.btn-whatsup img {
  width: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#mountain.owl-carousel .owl-nav .owl-prev {
  background-color: transparent;
  background-repeat: no-repeat;
  cursor: pointer;
  height: 30px;
  width: 30px;
  background-image: url(./images/left.svg);
  float: left;
  background-position: 0 0;
  background-size: auto 100%;
  margin-left: 15px;


}


#mountain.owl-carousel .owl-nav .owl-next {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: auto 100%;
  cursor: pointer;
  height: 30px;
  width: 30px;
  background-image: url(images/right.svg);
  float: right;
  margin-right: 10px;
  background-position: right;

}

#mountain.owl-carousel .owl-nav .owl-next span,
#mountain.owl-carousel .owl-nav .owl-prev span {
  display: none;
}

#mountain.owl-carousel.owl-drag .owl-nav {
  width: 100%;
  left: 0;
}

#mountain.owl-theme .owl-nav {
  top: 40%;
  position: absolute;
  z-index: 1;
}

.dsktopnone {
  display: none;
}

.desktophide {
  display: none;

}

.listinarea ul {
  display: flex;
  padding-left: 0;
  list-style-type: none;
  padding-top: 16px;


}

.listinarea ul li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #cecbcb;
  padding-right: 15px;
  padding-left: 22px;
  position: relative;
}

.listinarea ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23c6a15b'/%3E%3Cpath d='M3.8 7.2L6 9.3L10.4 4.7' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.desktophide-new {
  display: none !important;
}



@media (max-width: 767px) {
  .enq-card {
    padding: 1.5rem 1rem
  }

  .pricing-main {
    padding: 1rem 1.5rem;
  }



  .mfp-arrow {
    width: 70px;
  }



  button.mfp-arrow {
    background-size: 18px auto;
  }

  .mfp-iframe-holder .mfp-close,
  .mfp-image-holder .mfp-close {
    right: -11px;
    top: 10px;

  }

  .hero-badge {
    width: 48%;
    padding: 0.55rem 1rem;
  }

  .btn-whatsup.destop {
    display: none;
  }

  .nav-logo img {
    height: 2rem;
  }

  .hero-title {
    text-align: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-sub br {
    display: none;
  }

  .hero-badge br {
    display: none;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-urgency {
    margin-top: 1.5rem;
    text-align: center;
  }

  .hero-sub {
    font-size: .89rem
  }

  #positioning {
    padding: 3rem 0rem;
    text-align: center;
  }

  .pos-grid {
    display: flex;
    flex-direction: column;
  }

  .pos-img-wrap {
    width: 100%;
  }

  .pos-body {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 0px;
  }

  .pos-ctas {
    justify-content: center;
  }


  #experience,
  #amenities,
  #testimonials,
  #location {
    padding: 2rem 0 2rem;
    text-align: center;
  }

  #usp {
    padding: 2rem 0 2rem;
  }

  #enquiry {
    padding: 3rem 0;

  }

  #enquiry p {
    text-align: center;
  }

  #enquiry .enq-side-title {
    text-align: center;
  }

  .sec-head {
    margin: 0 auto 1rem;
  }

  .sec-head br {
    display: none;
  }

  .btn-gold-border {
    display: none;
  }

  .btn-gold-border-mob {
    border: 1px solid #ffffff !important;
    padding: 0.49rem 1rem;
    border-radius: 6px;
  }





  #pricing .section-description {
    padding-top: 10px;
    line-height: 22px;


  }

  #pricing .sec-eyebrow {
    margin-bottom: 0px;

  }

  /* Center pricing card section */
  #pricing .loc-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  #pricing .loc-grid>.loc-top {
    justify-self: center;
    width: 100%;
    max-width: 760px;
    display: flex;
    justify-content: center;
  }





  @media(min-width: 640px) {
    #pricing .pricing-includes {
      grid-template-columns: 1fr 1fr;
    }
  }

  #pricing .pricing-include-item {
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
    color: rgba(15, 29, 46, 0.9);
  }

  #pricing .pricing-include-item::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .pricimgeimgnew {
    display: block;
  }



  #pricing .rate-note {
    background: rgba(255, 255, 255, 0.85);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(10, 15, 20, 0.04);
    margin-top: 1rem;
    width: 100%;
    text-align: left;
  }

  #pricing .rate-note .info-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: rgba(15, 29, 46, 0.7);
  }

  #faq {
    padding: 3rem 0;
  }

  .cta-btn-group {
    justify-content: center;
  }

  main {
    padding-bottom: 0px;
  }

  .exp-text {
    padding: 10px 5px
  }

  .pos-img {
    height: 360px;
  }

  .exp-card {
    aspect-ratio: 6/5;
  }

  .exp-text p {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .smnone {
    display: none;
  }

  .dsktopnone {
    display: block;
  }

  .exp-text {
    position: relative;
    padding: 10px 10px;
    background: var(--navy);
    transform: translateY(0);
    border-radius: 0px 0px 8px 8px;
  }

  .exp-card {
    border-radius: 8px 8px 0px 0px;
  }

  .mobihide {
    display: none !important;
  }

  .desktophide {
    display: block;
  }

  .am-item {
    margin-bottom: 5px;
  }

  .gal-item.tall {
    aspect-ratio: 5/5;
  }

  .gal-item {
    margin-bottom: 10px;
  }

  button.mfp-arrow.mfp-arrow-left {
    background-size: 18px;
  }

  .viewall {
    border: 1px solid #0f1d2e;
    padding: 8px 30px;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
  }

  .gal-cta {
    margin-top: 1.5rem;
  }

  .btn-whatsup {
    border: 0px;

  }

  #location .loc-list li {
    text-align: left;
  }

  .pos-card-score {
    text-align: left;
  }

  #location .loc-info .loc-copy {
    text-align: left;
  }

  .pos-card-score span {
    font-size: .8rem
  }

  .hero-urgency {
    align-items: start;
  }

  .usp-card.open .usp-body {
    text-align: left;
  }

  .am-item {
    height: 140px;
  }

  .navmobaction {
    display: flex;
    margin-bottom: 10px;
  }

  .navmobaction a {
    padding: 4px 8px;
    margin-right: 5px;

  }

  #inclusions.owl-carousel .owl-item img {
    width: 30px;
  }

  .pos-card {
    display: block;
    position: absolute;
    bottom: -30px;
    left: 0rem;
    padding: .5rem;
    max-width: 169px;


  }

  .sticky-mob .btn-ow img {
    width: 16px;
  }

  .pricing-main br {
    display: none;
  }

  .exp-overlay {

    background: transparent;
  }

  #hero {

    align-items: start;

  }

  .hero-badges {
    margin-top: auto;
  }

  .thankypag.hero-content {
    padding: 4rem 1.5rem 4rem
  }

  .listinarea ul {
    display: block;
    margin: 0px auto;
    text-align: center;
    width: fit-content;
  }



  .listinarea ul li {
    padding: 5px 20px 5px 33px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(4px);
    font-size: 12px;
    color: rgba(255, 255, 255, .9);
    line-height: 16px;
    margin-right: 5px;
    width: fit-content;
    display: inline-block;
    margin: 0px auto 10px;
  }

  .listinarea ul li::before {
    left: 10px
  }

  #inclusions .item {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, 1fr)
  }

  .extra-charge-table th:first-child,
  .extra-charge-table td:first-child {
    width: 115px;
  }


}

@media(max-width:480px) {
  .cf-turnstile {
    transform: scale(0.80);
    margin-left: -20px;
  }

  .gfield_label {
    width: 90%;
  }

  .form-input {
    max-width: 400px;
  }

  input[type="date"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }



}


@media(max-width:359px) {

  .form-input {
    width: 248px;
  }

  .navmobaction a {
    padding: 4px 6px;
    font-size: 11px;
  }

}