:root {
  --color-primary: #42C7C1;
  --color-white: #fff;
  --color-black: #000;
  --color-gray:#F5F7FF;
  --color-light-blue:#eff9ff;
  --font-primary: 'Satoshi', sans-serif;
  --font-secondary: 'Satoshi', sans-serif;
}

.gap-1x {
  gap: 1px;
}

.gap-2x {
  gap: 2px;
}

.gap-3x {
  gap: 3px;
}

.gap-4x {
  gap: 4px;
}

.gap-5x {
  gap: 5px;
}

.gap-6x {
  gap: 6px;
}

.gap-7x {
  gap: 7px;
}

.gap-8x {
  gap: 8px;
}

.gap-9x {
  gap: 9px;
}

.gap-10x {
  gap: 10px;
}

.gap-11x {
  gap: 11px;
}

.gap-12x {
  gap: 12px;
}

.gap-13x {
  gap: 13px;
}

.gap-14x {
  gap: 14px;
}

.gap-15x {
  gap: 15px;
}

.gap-16x {
  gap: 16px;
}

.gap-17x {
  gap: 17px;
}

.gap-18x {
  gap: 18px;
}

.gap-19x {
  gap: 19px;
}

.gap-20x {
  gap: 20px;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-17 {
  font-size: 17px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-19 {
  font-size: 19px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-21 {
  font-size: 21px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-23 {
  font-size: 23px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-25 {
  font-size: 25px !important;
}

.font-26 {
  font-size: 26px !important;
}

.font-27 {
  font-size: 27px !important;
}

.font-28 {
  font-size: 28px !important;
}

.font-29 {
  font-size: 29px !important;
}

.font-30 {
  font-size: 30px !important;
}

@font-face {
  font-family: "Californian FB";
  src: url("../assets/fonts/CalifornianFB-Reg.eot");
  src: url("../assets/fonts/CalifornianFB-Reg.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/CalifornianFB-Reg.woff2") format("woff2"), url("../assets/fonts/CalifornianFB-Reg.woff") format("woff"), url("../assets/fonts/CalifornianFB-Reg.ttf") format("truetype"), url("../assets/fonts/CalifornianFB-Reg.svg#CalifornianFB-Reg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flavellya";
  src: url("../assets/fonts/Flavellya.eot");
  src: url("../assets/fonts/Flavellya.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Flavellya.woff2") format("woff2"), url("../assets/fonts/Flavellya.woff") format("woff"), url("../assets/fonts/Flavellya.ttf") format("truetype"), url("../assets/fonts/Flavellya.svg#Flavellya") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background: var(--color-white);
  font-size: 15px;
  color: var(--color-black);
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: clip;
}

::-moz-selection {
  background: rgba(17, 17, 17, 0.5);
  color: var(--color-white);
}

::selection {
  background: rgba(17, 17, 17, 0.5);
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 15px;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: var(--color-black);
  font-family: var(--font-secondary);
  line-height: 1.1;
}

figure {
  margin: 0;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 10px;
  font-size: 20px;
}

iframe {
  display: block;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.hover-underline a:not(.btn):hover {
  text-decoration: underline;
}

.form-control, .form-select {
  padding: 13px 20px 10px;
  border: solid 1px #E2E1E8;
  background-color: var(--color-white);
  font-size: 15px;
  color: var(--color-black);
  border-radius: 0px;
  font-weight: 500;
}
.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: #999;
}
.form-select {
  background-size: 9px !important;
  padding-right: 30px !important;
}
.form-label {
  color: var(--color-black);
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 3px;
}

textarea {
  height: 60px;
  resize: none;
}

.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.fancy-text {
  font-family: "Flavellya";
  font-size: 60px;
}
@media (min-width: 992px) {
  .fancy-text {
    font-size: 73px;
  }
}

.text-heading {
  font-size: 33px;
  font-weight: 200;
}
@media (min-width: 576px) {
  .text-heading {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .text-heading {
    font-size: 48px;
  }
}
@media (min-width: 1600px) {
  .text-heading {
    font-size: 50px;
  }
}
.text-heading span {
  font-weight: 700;
}
.text-heading-sm {
  font-size: 30px;
}
@media (min-width: 576px) {
  .text-heading-sm {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .text-heading-sm {
    font-size: 40px;
  }
}
@media (min-width: 1600px) {
  .text-heading-sm {
    font-size: 50px;
  }
}
.text-heading-sm span {
  font-weight: 700;
}
.text-large {
  font-size: 22px;
}
@media (min-width: 576px) {
  .text-large {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .text-large {
    font-size: 32px;
  }
}
.text-black {
  color: var(--color-black) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-white {
  color: var(--color-white) !important;
}

.fw-200 {
  font-weight: 200 !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-secondary {
  background-color: #F8F5EF !important;
}

@media (max-width: 767px) {
  .font-18 {
    font-size: 17px !important;
  }
}
.font-secondary {
  font-family: var(--font-secondary) !important;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}
.py-lg {
  padding-block: 60px;
}

.default-padding {
  padding-block: 50px;
}
@media (min-width: 768px) {
  .default-padding {
    padding-block: 65px;
  }
}
@media (min-width: 992px) {
  .default-padding {
    padding-block: 85px;
  }
}
@media (min-width: 1600px) {
  .default-padding {
    padding-block: 110px;
  }
}

.vertical {
  display: flex;
  flex-direction: column;
}
.vertical p {
  margin: 0;
}

.y-center {
  display: flex;
  align-items: center;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.min-w-0 {
  min-width: 0 !important;
}

.btn-primary-white {
  color: var(--color-black);
  background: var(--color-white);
  padding: 14px 25px;
  white-space: nowrap;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  line-height: normal;
  font-size: 18px;
  border-radius: 0px;
  border: 0;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.btn-primary-white:hover {
  color: var(--color-primary) !important;
  border: 0;
  border-radius: 0px;
}

.btn-primary-orange {
    background: #F2914A;
    color: #fff;
  padding: 14px 25px;
  white-space: nowrap;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  line-height: normal;
  font-size: 18px;
  border-radius: 0px;
  border: 0;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.btn-primary-orange:hover {
  color: var(--color-primary) !important;
  border: 0;
  border-radius: 0px;
}

.btn-primary-black {
  background: var(--color-black);
  color: #fff;
  padding: 14px 25px;
  white-space: nowrap;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  line-height: normal;
  font-size: 18px;
  border: 0;
  border-radius: 0px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.btn-primary-black:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white);
  border: 0;
  border-radius: 0px;
}
.btn-primary-black img {
  width: 18px;
}

@media (max-width: 768px) {
.btn-primary-white.orange {
    background: #F2914A !important;
    color: #fff !important;
  }
}

@media (min-width: 992px) {
  .btn-primary {
    min-height: 52px;
    min-width: 226px;
  }
}
.btn-sm {
  min-width: 154px;
  min-height: 44px;
  padding-inline: 20px;
}

.social-media {
  margin-top: 20px;
}
.social-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--color-white);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .social-media {
    margin-top: 25px;
  }
}

.icon-facebook {
  width: 14px;
  height: 27px;
  background: url('data:image/svg+xml,<svg width="14" height="27" viewBox="0 0 14 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.988 26.6669V14.5029H13.0707L13.6827 9.76293H8.98933V6.73626C8.98933 5.36293 9.36933 4.42826 11.3373 4.42826L13.848 4.42693V0.186929C12.6332 0.0577354 11.4123 -0.00458094 10.1907 0.000261929C6.57067 0.000261929 4.09333 2.2096 4.09333 6.26693V9.76293H0V14.5029H4.09333V26.6669H8.988Z" fill="%23333333"/></svg>') no-repeat center/8px;
}

.icon-linkedin {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.26875 28H0.4625V9.30625H6.26875V28ZM3.3625 6.75625C1.50625 6.75625 0 5.21875 0 3.3625C0 2.46875 0.35625 1.61875 0.9875 0.9875C1.61875 0.35625 2.475 0 3.3625 0C4.25 0 5.10625 0.35625 5.7375 0.9875C6.36875 1.61875 6.725 2.475 6.725 3.3625C6.725 5.21875 5.21875 6.75625 3.3625 6.75625ZM27.9937 28H22.2V18.9C22.2 16.7312 22.1562 13.95 19.1812 13.95C16.1625 13.95 15.7 16.3062 15.7 18.7437V28H9.9V9.30625H15.4688V11.8562H15.55C16.325 10.3875 18.2188 8.8375 21.0438 8.8375C26.9188 8.8375 28 12.7063 28 17.7313V28H27.9937Z" fill="%23333333"/></svg>') no-repeat center/12px;
}

.icon-instagram {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg width="27" height="27" viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.73333 0H18.9333C23.2 0 26.6667 3.46667 26.6667 7.73333V18.9333C26.6667 20.9843 25.8519 22.9513 24.4016 24.4016C22.9513 25.8519 20.9843 26.6667 18.9333 26.6667H7.73333C3.46667 26.6667 0 23.2 0 18.9333V7.73333C0 5.68233 0.81476 3.71532 2.26504 2.26504C3.71532 0.81476 5.68233 0 7.73333 0ZM7.46667 2.66667C6.19363 2.66667 4.97273 3.17238 4.07255 4.07255C3.17238 4.97273 2.66667 6.19363 2.66667 7.46667V19.2C2.66667 21.8533 4.81333 24 7.46667 24H19.2C20.473 24 21.6939 23.4943 22.5941 22.5941C23.4943 21.6939 24 20.473 24 19.2V7.46667C24 4.81333 21.8533 2.66667 19.2 2.66667H7.46667ZM20.3333 4.66667C20.7754 4.66667 21.1993 4.84226 21.5118 5.15482C21.8244 5.46738 22 5.89131 22 6.33333C22 6.77536 21.8244 7.19928 21.5118 7.51184C21.1993 7.82441 20.7754 8 20.3333 8C19.8913 8 19.4674 7.82441 19.1548 7.51184C18.8423 7.19928 18.6667 6.77536 18.6667 6.33333C18.6667 5.89131 18.8423 5.46738 19.1548 5.15482C19.4674 4.84226 19.8913 4.66667 20.3333 4.66667ZM13.3333 6.66667C15.1014 6.66667 16.7971 7.36905 18.0474 8.61929C19.2976 9.86953 20 11.5652 20 13.3333C20 15.1014 19.2976 16.7971 18.0474 18.0474C16.7971 19.2976 15.1014 20 13.3333 20C11.5652 20 9.86953 19.2976 8.61929 18.0474C7.36905 16.7971 6.66667 15.1014 6.66667 13.3333C6.66667 11.5652 7.36905 9.86953 8.61929 8.61929C9.86953 7.36905 11.5652 6.66667 13.3333 6.66667ZM13.3333 9.33333C12.2725 9.33333 11.2551 9.75476 10.5049 10.5049C9.75476 11.2551 9.33333 12.2725 9.33333 13.3333C9.33333 14.3942 9.75476 15.4116 10.5049 16.1618C11.2551 16.9119 12.2725 17.3333 13.3333 17.3333C14.3942 17.3333 15.4116 16.9119 16.1618 16.1618C16.9119 15.4116 17.3333 14.3942 17.3333 13.3333C17.3333 12.2725 16.9119 11.2551 16.1618 10.5049C15.4116 9.75476 14.3942 9.33333 13.3333 9.33333Z" fill="%23333333"/></svg>') no-repeat center/15px;
}

@media (min-width: 768px) {
  .gx-md-large {
    margin-inline: -30px;
  }
  .gx-md-large > [class*=col-] {
    padding-inline: 55px;
  }
}
@media (min-width: 992px) {
  .gx-md-large {
    margin-inline: -30px;
  }
  .gx-md-large > [class*=col-] {
    padding-inline: 65px;
  }
}

@media (min-width: 992px) {
  .gx-lg-large {
    margin-inline: -65px;
  }
  .gx-lg-large > [class*=col-] {
    padding-inline: 65px;
  }
}

.bg-arrow {
  background: url("../assets/images/bg-arrow.png") no-repeat top 55px center/50px;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .bg-arrow {
    background-position: top 40px center;
    background-size: 40px;
    padding-top: 90px;
  }
}

.Playwrite {
  font-family: "Playwrite PL", cursive;
}

.testimonials-section {
  display: none !important;
}

.color-black {
  color: #000;
}

.main-header {
  transition: all 0.4s ease-in-out;
  background: transparent;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.main-header .nav-link {
  font-size: 18px;
  padding: 0 25px !important;
  color: var(--color-white) !important;
}
.main-header .nav-link:hover {
  color: var(--color-primary) !important;
}
.main-header .logo-img {
  height: 80px;
  transition: filter 0.4s ease;
  filter: brightness(1);
}
.main-header a.phone-link {
  color: var(--color-white);
  font-size: 18px;
}
@media (max-width: 767px) {
  .main-header a.phone-link {
    text-align: center;
  }
}
.main-header.scrolled {
  background-color: var(--color-white) !important;
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.main-header.scrolled .nav-link {
  color: var(--color-black) !important;
}
.main-header.scrolled .nav-link:hover {
  color: var(--color-primary) !important;
}
@media (max-width: 767px) {
  .main-header.scrolled .nav-link {
    color: var(--color-white) !important;
  }
}
.main-header.scrolled a.phone-link {
  color: var(--color-black);
}
@media (max-width: 767px) {
  .main-header.scrolled a.phone-link {
    color: var(--color-white) !important;
  }
}
.main-header.scrolled .btn-contact {
  background-color: var(--color-black);
  color: var(--color-white);
}
.main-header.scrolled .btn-contact:hover {
  background-color: var(--color-primary);
}
.main-header.scrolled .btn-primary-white {
  background: var(--color-black);
  color: var(--color-white);
}
.main-header.scrolled .logo-img {
  filter: brightness(0);
  height: 50px;
}
.main-header.scrolled .navbar-toggler {
  filter: invert(1);
}
@media (max-width: 767px) {
  .main-header.scrolled .navbar-toggler {
    filter: none !important;
  }
}
@media (max-width: 767px) {
  .main-header .navbar-toggler {
    background: var(--color-primary) !important;
    padding: 12px;
  }
}

/* HERO SECTION */
.hero-section {
  height: 800px;
  position: relative;
}
@media (max-width: 767px) {
  .hero-section {
    height: auto;
  }
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/BANNER.png") center/cover no-repeat;
}

/* Optional dark overlay for readability */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* Top Heading */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 220px;
}
@media (max-width: 767px) {
  .hero-content {
    padding-top: 150px;
  }
}

.hero-title {
  font-size: 80px;
  font-family: var(--font-secondary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

/* Floating Blue Box */
.hero-card {
  position: absolute;
  margin-top: 0px;
  bottom: -100px;
  background: var(--color-primary);
  padding: 50px;
  max-width: 700px;
  z-index: 3;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-card {
    left: 0;
    position: relative;
    bottom: 0;
    padding: 25px;
  }
}

.hero-card h2 {
  font-size: 56px;
  color: var(--color-white);
  font-family: var(--font-secondary);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .hero-card h2 {
    font-size: 28px;
  }
}

/* TICKER WRAPPER */
.ticker {
  background: var(--color-gray);
  color: var(--color-black);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-family: var(--font-primary);
  position: relative;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .ticker {
    margin-top: 0px;
  }
}

/* MOVING TRACK */
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}

/* TEXT STYLE */
.ticker span {
  font-size: 16px;
  font-weight: 300;
  margin-right: 50px;
}

/* ANIMATION */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.properties-section {
  background-color: var(--color-white);
  margin-top: 150px;
}
.properties-section .section-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-black);
}
.properties-section .property-card {
  transition: transform 0.3s ease;
}
.properties-section .property-card .card-img-wrapper {
  height: 250px;
  overflow: hidden;
}
.properties-section .property-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.properties-section .property-card .card-content {
  padding: 1.5rem 0;
}
.properties-section .property-card .card-content .location {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.properties-section .property-card .card-content .property-name {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-black);
  margin: 0;
  line-height: 30px;
}
.properties-section .property-card .card-content .property-name a {
  color: var(--color-black);
}

.owl-theme .owl-dots {
  margin-top: 30px !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: #D1D5DB;
  width: 10px;
  height: 10px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-primary) !important;
}

.info-section {
  position: relative;
  padding-bottom: 5rem;
}
.info-section .info-hero-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.info-section .cards-container {
  margin-top: -200px;
  position: relative;
  z-index: 2;
}
.info-section .info-card {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, var(--color-white) 40%);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.info-section .info-card .info-title {
  font-family: var(--font-secondary);
  color: var(--color-black);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.info-section .info-card .info-text {
  font-family: var(--font-primary);
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.info-section .info-card .info-btn {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.info-section .info-card .info-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-black);
}
.info-section .info-card svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .info-section .cards-container {
    margin-top: -50px;
  }
  .info-card {
    min-height: auto;
    padding: 2rem;
  }

  .properties-section {
  background-color: var(--color-white);
  margin-top: 350px;
}
}
.badges-section {
  background-color: var(--color-white);
  padding: 4rem 0;
}
.badges-section .badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.badges-section .badge-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.02);
}
.badges-section .badge-circle img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
.badges-section .badge-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.badges-section .badge-label {
  font-family: var(--font-secondary);
  color: var(--color-black);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 576px) {
  .badge-circle {
    width: 120px;
    height: 120px;
  }
  .badge-label {
    font-size: 0.95rem;
  }
}
.testimonials-section {
  background-color: var(--color-white);
}
.testimonials-section .section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 500;
}
.testimonials-section .testimonial-card {
  background-color: var(--color-gray);
  padding: 3rem;
  border-radius: 4px;
  text-align: left;
}
.testimonials-section .testimonial-card .avatar {
  width: 70px;
  height: 70px;
  background-color: #D6E6F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8EADC1;
  font-size: 1.5rem;
}
.testimonials-section .testimonial-card .user-name {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin: 0;
}
.testimonials-section .testimonial-card .date {
  font-size: 0.85rem;
  color: #777;
}
.testimonials-section .testimonial-card .testimonial-heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-family: var(--font-primary);
  line-height: 1.8;
  color: #444;
  font-weight: 400;
  margin-bottom: 2rem;
}
.testimonials-section .testimonial-card .stars .fa-star {
  font-size: 1.2rem;
  margin-right: 5px;
}
.testimonials-section .testimonial-card .stars .fa-star.gold {
  color: #F2994A;
}
.testimonials-section .testimonial-card .stars .fa-star.gray {
  color: #D1D5DB;
}

.testimonial-carousel .owl-item {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.testimonial-carousel .owl-item.center {
  opacity: 1;
}

.blog-carousel .item {
  padding: 10px;
}
.blog-carousel .blog-card {
  background-color: var(--color-light-blue);
  transition: all 0.3s ease;
}
.blog-carousel .blog-card .blog-img {
  height: 220px;
}
.blog-carousel .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-carousel .blog-card .blog-content {
  padding: 1.5rem;
}
.blog-carousel .blog-card .blog-content .blog-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.blog-carousel .blog-card .blog-content .blog-excerpt {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
.blog-carousel .owl-dots {
  margin-top: 30px !important;
}
.blog-carousel .owl-dots .owl-dot span {
  background: #D1D5DB;
}
.blog-carousel .owl-dots .owl-dot.active span {
  background: var(--color-primary) !important;
}

.footer-section {
  background-color: var(--color-white);
  border-top: 1px solid #eee;
}
.footer-section .brand-desc {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000000;
}
.footer-section .footer-heading {
  font-family: var(--font-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.footer-section .footer-contact-list, .footer-section .footer-links {
  list-style: none;
  padding: 0;
}
.footer-section .footer-contact-list li, .footer-section .footer-links li {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #000000;
}
.footer-section .footer-contact-list li strong, .footer-section .footer-links li strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
}
.footer-section .footer-contact-list li a, .footer-section .footer-links li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  font-weight: 400;
}
.footer-section .footer-contact-list li a:hover, .footer-section .footer-links li a:hover {
  color: var(--color-primary);
}
.footer-section .legal-links {
  margin-top: 0;
}
.footer-section .social-links span {
  font-size: 0.9rem;
  color: #000000;
}
.footer-section .social-links a {
  color: var(--color-black);
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.footer-section .social-links a:hover {
  color: var(--color-primary);
}

/* HERO SECTION */
.hero-section-2 {
  height: 340px;
  position: relative;
}
@media (max-width: 767px) {
  .hero-section-2 {
    height: 340px;
  }
}
.hero-section-2 .hero-title {
  font-size: 48px;
}
@media (max-width: 767px) {
  .hero-section-2 .hero-title {
    font-size: 32px;
  }
}
.hero-section-2 .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}

.content-section {
  margin-top: 50px;
  border-bottom: 1px solid #eee;
  padding-bottom: 80px;
}
.content-section h3 {
  margin-bottom: 30px;
}

.booking-bar-section {
  padding: 2rem 0;
  position: relative;
  z-index: 99;
  top: 50px;
}

.booking-bar-section .booking-wrapper {
  background-color: var(--color-primary);
  padding: 30px 30px 5px 30px;
}
.booking-bar-section .booking-wrapper .form-control {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  color: var(--color-white);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-primary);
}
.booking-bar-section .booking-wrapper .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.booking-bar-section .booking-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.booking-bar-section .booking-wrapper .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  box-shadow: none;
  color: var(--color-white);
}
.booking-bar-section .booking-wrapper .btn-availability {
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 0;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  border: 1px solid var(--color-white);
  transition: all 0.3s ease;
}
.booking-bar-section .booking-wrapper .btn-availability:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.top-contact-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 20px;
}
.top-contact-bar .contact-item {
  padding: 0.5rem 1rem;
}
.top-contact-bar .contact-item a {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}
.top-contact-bar .contact-item a i {
  font-size: 1.1rem;
  font-weight: 300;
}
.top-contact-bar .contact-item a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .top-contact-bar .contact-item {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
  }

  .booking-bar-section {
  top: 0px;
}
}
.faq-section .section-title {
  font-family: var(--font-secondary);
  font-weight: 500;
}
.faq-section .custom-accordion .accordion-item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 4px;
  overflow: hidden;
}
.faq-section .custom-accordion .accordion-button {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 1.5rem 2rem;
  font-family: var(--font-primary);
  box-shadow: none;
  font-size: 20px;
}
.faq-section .custom-accordion .accordion-button .faq-title {
  font-weight: 700;
  margin-right: 5px;
}
.faq-section .custom-accordion .accordion-button .faq-desc {
  color: #000000;
  font-weight: 400;
}
.faq-section .custom-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  line-height: 1;
  width: auto;
  height: auto;
}
.faq-section .custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--color-white);
  color: var(--color-black);
}
.faq-section .custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.faq-section .custom-accordion .accordion-body {
  padding: 0 2rem 1.5rem 2rem;
  font-family: var(--font-primary);
  color: #000000;
  line-height: 1.6;
}
.faq-section .custom-accordion .accordion-body ul {
  list-style: disc;
  padding-left: 20px;
}
.faq-section .custom-accordion .accordion-body ul li {
  margin-bottom: 10px;
  font-size: 20px;
}
.faq-section .custom-accordion .accordion-body ol {
  list-style: decimal;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .custom-accordion .accordion-button {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-accordion .accordion-button .faq-desc {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
  }
  .custom-accordion .accordion-button::after {
    position: absolute;
    right: 1rem;
    top: 1.2rem;
  }
}
.secondary-nav-wrapper {
  background-color: var(--color-white);
  border-bottom: 1px solid #eee;
}
.secondary-nav-wrapper .secondary-nav {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.secondary-nav-wrapper .secondary-nav::-webkit-scrollbar {
  display: none;
}
.secondary-nav-wrapper .secondary-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: #666;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}
.secondary-nav-wrapper .secondary-nav .nav-item i {
  font-size: 22px;
  color: var(--color-primary);
  margin-right: 10px;
  display: inline-flex;
  padding: 2px;
  line-height: 1;
  vertical-align: middle;
}

.gallery-section .gallery-item {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0px;
}
.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-section .gallery-item.tall {
  height: 500px;
}
.gallery-section .gallery-item.half {
  height: 246px;
}

@media (max-width: 768px) {
  .gallery-section .gallery-item.tall,
  .gallery-section .gallery-item.half {
    height: 300px;
    margin-bottom: 0.5rem;
  }
}
.amenity-tags .tag-item {
  background-color: var(--color-gray);
  color: var(--color-black);
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
}
.amenity-tags .tag-item:hover {
  background-color: #F5F7FF;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .amenity-tags {
    justify-content: center;
  }
  .amenity-tags .tag-item {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}
.gallery-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-thumb .img-fluid {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(66, 199, 193, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-thumb .overlay i {
  color: var(--color-white);
  font-size: 2.5rem;
}
.gallery-thumb:hover img {
  transform: scale(1.1);
}
.gallery-thumb:hover .overlay {
  opacity: 1;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: var(--color-primary);
}

.control-group {
  margin-bottom: 15px;
}
.control-group label {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}
.control-group .controls input {
  border: 1px solid #9e9e9e;
  padding: 15px;
  border: 0;
}
.control-group .controls select {
  border: 1px solid #9e9e9e;
  padding: 15px;
  border: 0;
}
.control-group .controls textarea {
  border: 1px solid #9e9e9e;
  padding: 15px;
  border: 0;
}
.control-group .controls .btn-primary-black:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white);
  border: 0;
  border-radius: 0px;
}

.comments-area {
  display: none;
}

.blog-links {
  margin-bottom: 15px;
}
.blog-links ul {
  margin-top: 15px;
}
.blog-links ul li a {
  color: var(--color-black);
  margin-bottom: 5px;
}

.blog-content {
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 20px;
}
.blog-content h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.blog-content h2 a {
  color: var(--color-black);
}
.blog-content span {
  font-size: 14px;
}
.blog-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.bk_calendar_frame {
  width: 100% !important;
}

.image-gallery {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.image-gallery img {
  width: 100%;
}

.wp-block-image img:is([sizes=auto i], [sizes^="auto," i]) {
  contain-intrinsic-size: AUTO 100PX;
}

.pag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 3rem;
  font-family: var(--font-primary);
}
.pag .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 12px;
  text-decoration: none;
  color: var(--color-black);
  border: 1px solid #e0e0e0;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.pag .page-numbers.current {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  cursor: default;
}
.pag .page-numbers:hover:not(.current):not(.dots) {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}
.pag .page-numbers.dots {
  border: none;
  background: transparent;
  padding: 0;
  min-width: 30px;
}
.pag .page-numbers.next, .pag .page-numbers.prev {
  width: auto;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 576px) {
  .pag {
    gap: 5px;
  }
  .pag .page-numbers {
    min-width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .pag .page-numbers.next {
    padding: 0 12px;
  }
}
.common-template ul {
  list-style: disc;
  padding-left: 20px;
}
.common-template ul li {
  margin-bottom: 10px;
  font-size: 20px;
}
.common-template ol {
  list-style: decimal;
  padding-left: 20px;
}
.common-template ol li {
  margin-bottom: 10px;
  font-size: 20px;
}

.local {
  padding: 4rem 0;
}
.local .block {
  margin-bottom: 2rem;
  border: 1px solid #eee;
  padding: 20px;
  min-height: 300px;
}
.local .block h2 {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.local .block h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  margin-top: 8px;
}
.local .block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.local .block ul li {
  margin-bottom: 1px;
}
.local .block ul li a {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}
.local .block ul li a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}
.local .block ul li span, .local .block ul li p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .local .block {
    text-align: center;
  }
  .local .block h2::after {
    margin: 8px auto 0;
  }
  .local .block ul li a:hover {
    transform: none;
  }
}
.wpcf7-form {
  margin-bottom: 15px;
}
.wpcf7-form label {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}
.wpcf7-form input {
  border: 1px solid #9e9e9e;
  padding: 15px;
  width: 100%;
}
.wpcf7-form select {
  border: 1px solid #9e9e9e;
  padding: 15px;
  width: 100%;
}
.wpcf7-form textarea {
  border: 1px solid #9e9e9e;
  padding: 15px;
  width: 100%;
}
.wpcf7-form .wpcf7-submit {
  background: var(--color-black);
  color: #fff;
  padding: 14px 25px;
  white-space: nowrap;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  line-height: normal;
  font-size: 18px;
  border: 0;
  border-radius: 0px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  width: 100%;
}

.local-info-section .section-heading {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--color-black);
  font-size: 2.25rem;
}
.local-info-section .sub-heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-black);
  font-size: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.local-info-section .local-content-block a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  font-size: 20px;
}
.local-info-section .local-content-block a:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}
.local-info-section .local-img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0px;
}
.local-info-section .local-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.local-info-section .local-img-wrap.ratio-4x3 {
  padding-top: 75%;
}
.local-info-section .btn-teal-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 20px;
  border-radius: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.local-info-section .btn-teal-cta:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Standard List Styling for Blog Posts */
.blog-content ul {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style-type: disc; /* Standard round bullet */
}

.blog-content ol {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style-type: decimal; /* 1, 2, 3... */
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
	font-size:16px;
	font-weight: 400;
    color: #000; /* Dark gray for readability */
}

/* Optional: Change the bullet color to match your brand teal #03604f */
.blog-content ul li::marker {
    color: #000;
    font-size: 1.1em;
}

.blog-content ol li::marker {
    color: #000;
    font-weight: bold;
}

/* Handling Nested Lists */

@media (max-width: 768px) {
  .local-info-section .section-heading {
    font-size: 1.75rem;
  }
  .local-info-section .local-content-block {
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}/*# sourceMappingURL=main.css.map */