@charset "utf-8";

@font-face {
  font-family: 'GeneralSans';
  src: url('../vendor/fonts/GeneralSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeneralSans';
  src: url('../vendor/fonts/GeneralSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeneralSans';
  src: url('../vendor/fonts/GeneralSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeneralSans';
  src: url('../vendor/fonts/GeneralSans-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  color: #2A2A2A;
  overflow-x: hidden;
}

.container {
  width: min(1360px, calc(100% - 80px));
  margin-inline: auto;
}

a {
  text-decoration: none;
  transition: all .5s ease;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

h1 {
  color: #fff;
}

h2 {
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 20%;
  text-align: center;
  font-size: 49px;
}

h3 {
  margin-bottom: .5em;
  color: #45241B;
  font-size: 40px;
  font-weight: 400;
}

.fade-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-visible {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-visible {
    display: block !important;
  }

  .desktop-visible {
    display: none !important;
  }

  .container {
    width: calc(100% - 40px);
  }

  p {
    font-size: 14px;
  }

  h3 {
    font-size: 32px;
  }

}


.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* =========================
   HEADER
========================= */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: transparent;

  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

#site-header .container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.site-logo img {
  width: 140px;
  display: block;

  /* #fff initially */
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: all 0.4s ease;
}


/* =========================
   MENU ICON
========================= */

.menu-toggle {
  width: 28px;
  height: 28px;

  position: relative;

  border: none;
  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  position: absolute;

  left: 0;

  width: 100%;
  height: 1px;

  background: #ffffff;

  transition: all 0.4s ease;
}

.menu-toggle span:nth-child(1) {
  top: 7px;
}

.menu-toggle span:nth-child(2) {
  top: 14px;
}

.menu-toggle span:nth-child(3) {
  top: 21px;
}


/* =========================
   ACTIVE MENU ICON
========================= */

.menu-toggle.active span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}


/* =========================
   SCROLLED HEADER
========================= */

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#site-header.scrolled .site-logo img {
  filter: brightness(0);
  opacity: 1;
}

#site-header.scrolled .menu-toggle span {
  background: #222;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;

  top: 90px;
  right: 40px;

  width: 320px;

  background: #f8f6f4;

  border-radius: 12px;

  padding: 20px;

  display: none;

  z-index: 998;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid #ddd;
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;

  padding: 18px 0;

  color: #333;

  text-decoration: none;

  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  padding-left: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  #site-header .container {
    height: 80px;
  }

  .site-logo img {
    width: 110px;
  }

  .mobile-menu {
    width: calc(100% - 40px);
    right: 20px;
  }

}

/* =========================
   HERO BANNER
========================= */

.home-section {
  position: relative;

  width: 100%;
  height: 100vh;
  min-height: 900px;

  overflow: hidden;
}


/* BACKGROUND IMAGE */

.hero-bg {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.08);

  animation: heroZoom 10s ease forwards;
}


/* DARK OVERLAY */


.home-section::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            178.35deg,
            rgba(0, 0, 0, 0.5) -20.9%,
            rgba(0, 0, 0, 0) 61.49%
        ),
        linear-gradient(
            190.41deg,
            rgba(0, 0, 0, 0.4) 22.93%,
            rgba(0, 0, 0, 0.4) 38.93%,
            rgba(0, 0, 0, 0) 58.63%
        );

    z-index: 1;
}

/* CENTER CONTENT */

.hero-content {
  position: relative;
  width: 100%;
  top: 30%;
  left: 0;
  text-align: center;
  will-change: top, position;
  z-index: 10;
  padding-inline: 2em;
  line-height: 3em;
}

.fixed-hero-text {
  position: fixed;
  top: 30%;
  z-index: 10;
  transition: none;
}

.unfixed-hero-text {
  position: absolute;
  transition: none;
}



.hero-logo {
  width: 480px;

  margin-bottom: 1.5em;

  opacity: 0;

  transform: translateY(50px);

  animation:
    fadeUp 1s ease .3s forwards;
}


.hero-content h2 {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease .8s forwards;
  border: 1px solid;
    padding: 10px 20px;
    display: inline-block;
    line-height: 1;
}

/* ENQUIRE BUTTON */

.enquire-btn {
  position: fixed;
  top: 50%;
  right: 0;
  border: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 15px 8px;
  z-index: 9999;
  letter-spacing: 1px;
  cursor: pointer;
}

.enquire-btn:hover {
  background: #202020;
  color: #fff;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


@keyframes heroZoom {

  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }

}

@media (max-width: 1024px) {

  .hero-logo {
    width: 260px;
  }

  .hero-content h2 {
    font-size: 32px;
    letter-spacing: 6px;
  }

}


@media (max-width: 768px) {

  .home-section {
    min-height: 700px;
  }

  .hero-logo {
    width: 225px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-bg {
    object-position: 15%;
  }

  .fixed-hero-text {
    top: 8em;
  }
}


/* Popup */
.popup-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup-form {
  background: #fdfaf2;
  padding: 50px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.popup-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 40px;
  color: #333;
  cursor: pointer;
}

.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-family: 'GeneralSans', sans-serif;
}

.popup-form textarea {
  resize: none;
  height: 50px;
}

.popup-form button {
  background: #2c2824;
  color: #fff;
  padding: 14px 0;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
}

#Thankyou {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.7) !important;
  z-index: 2000 !important;
  align-items: center !important;
  justify-content: center !important;
}

#Thankyou.show {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}



/* Intro section */
.intro-section {
  padding-block: 4em;
}

.intro-content {
  width: 67%;
    margin: 0 auto;
    text-align: center;
    padding: 3em;
    border: 1px solid #909090;
    position: relative;
}

.intro-content:before,
.intro-content:after {
  content: '';
  position: absolute;
  background-image: url(images/palm-vector.webp);
  width: 4em;
  height: 5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}

.intro-content:before {
  top: -1px;
  left: -1px;
 
}

.intro-content:after {
  bottom: -1px;
  right: -1px;
}

@media (max-width: 768px) {
  .intro-content:before, .intro-content:after {
    width: 2em;
    height: 3em;
  }

  .intro-content {
    width: 100%;
    padding: 3em 1em 1em;
  }

  .popup-form {
    padding-inline: 1em;
  }
}



/* Location section */
.location-tab-wrap {
  padding: 4em 0 2em;
}

.location-map-wrap {
  padding: 2em 0 4em;
}

.location-tab-wrap {
  background-color: #FFFAF6;
}

@media (min-width: 768px) {
  .location-header {
    width: 75%;
  }
}

/* ── TABS ────────────────────────────────────────────────────── */
.uniqloc-tabs-wrapper {
  display: flex;
  margin-top: 30px;
  overflow-x: auto;
}

.uniqloc-tabs {
  display: flex;
  gap: 24px;
  overflow-x: auto;
}

.uniqloc-tab {
  border: 1px solid transparent;
  background: transparent;
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 30px;
  flex-shrink: 0;
  transition: .3s;
}

.uniqloc-tab.active {
  font-weight: 500;
  border-color: #4b281d;
  background: #4b281d;
  color: #fff;
}

/* ── CONTENT PANELS ──────────────────────────────────────────── */
.uniqloc-content {
  display: none;
}

.uniqloc-content.active {
  display: block;
}

.location-section p.disclaimer {
  color: #121212;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  width: 100%;
}

/* ── MAP + SIDE LIST WRAPPER ─────────────────────────────────── */
.uniqloc-map-list-wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-end;
}

/* ── MAP ─────────────────────────────────────────────────────── */
.uniqloc-map-img {
  position: relative;
  flex: 1 1 55%;
  max-width: 55%;
  margin-bottom: 2em;
}

.uniqloc-map-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── MARKERS ─────────────────────────────────────────────────── */
.uniqloc-marker {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #00000047;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
  /* z-index: 2; */
}

.uniqloc-marker:hover,
.uniqloc-marker.active-marker {
  background: #45241B;;
  opacity: 1;
}

.uniqloc-label {
  z-index: 3;
  pointer-events: none;
}

/* ── TOOLTIP ─────────────────────────────────────────────────── */
.uniqloc-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #f6f4ee;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.uniqloc-marker:hover .uniqloc-tooltip,
.uniqloc-marker.active-marker .uniqloc-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ── DESKTOP SIDE LIST ───────────────────────────────────────── */
.uniqloc-side-list {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
}

.uniqloc-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.uniqloc-list-item:hover {
  background: #F6EDE6;
}

/* .uniqloc-list-item:hover .marker-num,
.uniqloc-list-item.active-hover .marker-num {
  background: #555;
} */

.marker-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: transparent;
  border: 1px solid #45241B;
  border-radius: 50%;
  color: #2A2A2A;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #45241B;
}

.location-time {
  font-size: 14px;
  font-weight: 600;
  color: #45241B;
  margin-top: 3px;
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .uniqloc-side-list {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .uniqloc-list-item {
    width: 48%;
    align-items: flex-start;
    /* padding: 0; */
  }

  .location-section p.disclaimer {
    margin-top: 2em;
  }

  .marker-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .uniqloc-tabs-wrapper {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-top: 20px;
  }

  .uniqloc-tabs {
    gap: 0;
    overflow-x: auto;
  }

  .uniqloc-tab {
    font-size: 13px;
    padding: 8px 14px;
    flex-shrink: 0;
  }

  /* Stack map on top, mobile list below */
  .uniqloc-map-list-wrap {
    flex-direction: column;
    gap: 0;
  }

  .uniqloc-map-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Markers smaller on mobile */
  .uniqloc-marker {
    width: 14px;
    height: 14px;
    font-size: 9px;
    opacity: 0.5;
  }

  .uniqloc-marker .uniqloc-tooltip {
    display: none !important;
  }

  .uniqloc-marker.active-marker {
    opacity: 1;
    background: #000;
  }

  /* Mobile list grid */
  .uniqloc-hover-texts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 10px 0;
  }

  .hover-text-block {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #3c2c22;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    padding: 6px 5px;
    text-align: left;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .hover-text-block:hover {
    background-color: #000;
    color: #fff;
    border-radius: 20px;
  }

  .hover-text-block:hover .marker-number {
    background-color: #fff;
    color: #000;
  }

  .marker-number {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }
}













/* walkthrough section  */
.location-video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Video thumbnail */
.location-video {
  position: relative;
  width: 100%;
  /* cursor: pointer; */
}

.location-video img {
  width: 100%;
  height: 35em;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.play-button svg {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.play-button:hover circle {
  fill: #45241B;
}

@media (max-width: 768px) {
  .location-video {
    border-radius: 12px;
    overflow: hidden;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .location-video img {
    height: 20em;
  }
}




/* Experience section */
/* Experience section */

.experience-section {
  padding-block: 4em;
}

.counter-box {
    display: flex;
    margin: .5em;
    border: 1px solid #ADADAD;
    border-radius: 5px;
    transition: all .5s ease;
    overflow: hidden;
}

.counter-box:hover img {
  transform: scale(1.1);
}

.counter-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px 0 0 4px;
  transition: all .5s ease;
}

.top-row > div:first-child {
  width: 240px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.counter-box > div:first-child {
  width: 240px;
  height: 220px;
}

.counter-box div.counter-text {
  padding: 1.5em;
  border-radius: 0 4px 4px 0;
  color: #2A2A2A;
  flex: 1;
  min-width: 0;
}

.counter-text.pink-box {
  background-color: #FAEDDEFA;
}

.counter-text.green-box {
  background-color: #2A523E;
  color: #fff !important;
}

.counter-text.brown-box {
  background-color: #955541;
  color: #fff !important;
}

/* Grid layout: 3 equal columns, 2 rows.
   Acres box spans both rows on the right. */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /* gap: 1em; */
}
.counter-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}

.grid-heading {
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  border: transparent;
  padding: 1em;
  margin: .5em .5em .5em 0;
}

.grid-green {
  grid-column: 2;
  grid-row: 1;
}

.grid-clubhouse {
  grid-column: 1;
  grid-row: 2;
}
.top-row {
  width: 45%;
  margin-left: auto;
}

.grid-amenities {
  grid-column: 2;
  grid-row: 2;
}


.grid-acres {
  grid-column: 3;
  grid-row: 1 / span 2;
  flex-direction: column;
  width: 95%;
  margin-left: auto;
}
/* boxes that hold an image+text pair side by side */
.grid-green, .grid-clubhouse, .grid-amenities {
  min-height: 220px;
}

.grid-green > div:first-child,
.grid-clubhouse > div:first-child,
.grid-amenities > div:first-child {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

/* acres box: image on top, text below (stacked) */
.grid-acres > div:first-child {
  width: 100%;
  height: 55%;
  overflow: hidden;
}

.grid-clubhouse img {
  width: 25em;
}

.grid-acres img {
  border-radius: 4px 4px 0 0;
}

.grid-acres .counter-text {
  border-radius: 0 0 4px 4px;
}

.counter-text h4 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 0.5em;
}

.counter-text h4 span {
  font-size: 12px;
}

.counter-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.experience-section .mobile-visible .counter-box {
  border-radius: 0;
  border: none;
  margin: 0;
  width: 100%;
}

.experience-section .mobile-visible .counter-box div {
  width: 50%;
  height: 200px;
  border-radius: 0;
}

.experience-section .mobile-visible .counter-box img {
  border-radius: 0;
}

@media (max-width: 1024px) {
  .counter-text h4 {
    font-size: 20px;
    margin-bottom: .5em;
  }

  .counter-text h4 span {
    font-size: 12px;
  }

  .counter-text p {
    font-size: 14px;
  }

  .counter-box div.counter-text {
    padding: 1em;
    text-align: left;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }

  .grid-heading { grid-column: 1 / span 2; grid-row: 1; }
  .grid-green { grid-column: 1; grid-row: 2; }
  .grid-acres { grid-column: 2; grid-row: 2 / span 2; }
  .grid-clubhouse { grid-column: 1; grid-row: 3; }
  .grid-amenities { grid-column: 1 / span 2; grid-row: 4; }
}

@media (max-width: 768px) {
  .experience-section {
    text-align: center;
  }
}


/* Master plan section */
.master-plan-section {
  padding: 2em 0 5em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.plan-types {
  text-align: center;
}

.plan-types img {
  width: 500px;
  margin: 1em auto;
}

.direction {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5em;
  display: none;
}

.master-plan-section.animate {
  opacity: 1;
  transform: translateY(0);
}


/* CONTAINER */
.plan-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  
    flex-direction: row-reverse;
}

/* IMAGE WRAPPER */
.plan-image-wrapper {
  position: relative;
  text-align: center;
}

.plan-img-wrap {
  width: 60%;
  align-items: flex-start;
}

.plan-image {
  width: 100%;
  height: auto;
  padding-bottom: 4em;
  /* margin-top: -4em;
  margin-left: -4em; */
  border-radius: 8px;
  opacity: 0;
  transition: all 0.6s ease;
}

.master-plan-section.animate .plan-image {
  opacity: 1;
}

/* MAP BUTTONS */
.map-button {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #6E6E6E;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  opacity: 1 !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 15;
}

.map-button:hover {
  background-color: #000000;
  opacity: 1 !important;
  cursor: pointer;
}

/* LEGEND GRID */
.legend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  width: 40%;
  flex: 1;
  gap: 5px;
     position: sticky;
    top: 100px; /* header height */
    align-self: flex-start; /* IMPORTANT for flex items */
    height: fit-content;
}

/* LEGEND ITEM BASE */
.legend-item {
  display: flex;
  align-items: center;
  margin: 5px 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  text-align: left;
}

/* LEGEND ITEM STAGGER (triggered when parent is in view) */
.master-plan-section.animate .legend-item {
  animation: legendFade 0.6s ease forwards;
}

.master-plan-section.animate .legend-item:nth-child(1) {
  animation-delay: 0.1s;
}

.master-plan-section.animate .legend-item:nth-child(2) {
  animation-delay: 0.2s;
}

.master-plan-section.animate .legend-item:nth-child(3) {
  animation-delay: 0.3s;
}

.master-plan-section.animate .legend-item:nth-child(4) {
  animation-delay: 0.4s;
}

.master-plan-section.animate .legend-item:nth-child(5) {
  animation-delay: 0.5s;
}

.master-plan-section.animate .legend-item:nth-child(6) {
  animation-delay: 0.6s;
}

.master-plan-section.animate .legend-item:nth-child(7) {
  animation-delay: 0.7s;
}

.master-plan-section.animate .legend-item:nth-child(8) {
  animation-delay: 0.8s;
}

.master-plan-section.animate .legend-item:nth-child(9) {
  animation-delay: 0.9s;
}

.master-plan-section.animate .legend-item:nth-child(10) {
  animation-delay: 1s;
}

.master-plan-section.animate .legend-item:nth-child(11) {
  animation-delay: 1.1s;
}

.master-plan-section.animate .legend-item:nth-child(12) {
  animation-delay: 1.2s;
}

.master-plan-section.animate .legend-item:nth-child(13) {
  animation-delay: 1.3s;
}

.master-plan-section.animate .legend-item:nth-child(14) {
  animation-delay: 1.4s;
}

.master-plan-section.animate .legend-item:nth-child(15) {
  animation-delay: 1.5s;
}

.master-plan-section.animate .legend-item:nth-child(16) {
  animation-delay: 1.6s;
}

.master-plan-section.animate .legend-item:nth-child(17) {
  animation-delay: 1.7s;
}

.master-plan-section.animate .legend-item:nth-child(18) {
  animation-delay: 1.8s;
}

.master-plan-section.animate .legend-item:nth-child(19) {
  animation-delay: 1.9s;
}

.master-plan-section.animate .legend-item:nth-child(20) {
  animation-delay: 2s;
}

.master-plan-section.animate .legend-item:nth-child(21) {
  animation-delay: 2.1s;
}

.master-plan-section.animate .legend-item:nth-child(22) {
  animation-delay: 2.2s;
}

.master-plan-section.animate .legend-item:nth-child(23) {
  animation-delay: 2.3s;
}

/* LEGEND ITEM SPAN */
.legend-item span {
  background: #78584F;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  margin-right: 10px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LEGEND HOVER & ACTIVE */
.legend-item:hover,
.legend-item.active {
  background-color: #78584F;
  color: #e2e2e2;
}

.legend-item.active span {
  background-color: transparent;
  color: #e2e2e2;
}

/* LEGEND FADE KEYFRAMES */
@keyframes legendFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-label {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  /* Initially hidden */
  transition: opacity 0.3s ease;
}

.map-label.visible {
  opacity: 1;
  z-index: 20;
}

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

  .plan-types img {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }

  .master-plan-section h3 {
    text-align: center;
  }

  .plan-image-wrapper {
    margin-top: 0;
    width: 100%;
  }

  /* master plan */
  .map-label {
    /* display: none; */
    margin-top: -12px;
    font-size: 8px;
    padding: 5px 5px;
  }

  .legend-grid {
    position: relative;
    top: 30px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .map-button {
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: #6E6E6E;
    color: #fff;
    font-size: 8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 15;
  }

  .legend-item {
    font-size: 12px;
    padding: 4px 15px;
    text-align: left;
  }

  .plan-img-wrap {
    width: 100%;
  }

  .plan-image {
    margin-top: 0;
    padding-bottom: 30px;
  }

  .plan-container {
    margin-top: 30px;
    flex-direction: column;
  }

  .legend-item span {
    width: 24px;
    height: 24px;
    font-size: 8px;
    line-height: 24px;
  }
}








/* Gallery Section */
.gallery-slider {
  margin-top: 3em;
}

.gallery-section {
  padding-block: 4em;
  padding-bottom: 6em;
  background-color: #fffaf6;
  text-align: center;
}

.gallery-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.gallery-section a:hover img {
  transform: scale(1.05);
}

.gallery-section .slick-prev,
.gallery-section .slick-next {
    width: 2.5em;
    height: 2.5em;
    z-index: 10;
}

.gallery-section .slick-prev::before,
.gallery-section .slick-next::before {
    content: "";
    display: block;
    width: 2.5em;
    height: 2.5em;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

.gallery-section .slick-prev::before {
    background-image: url(images/prev-arrow.webp);
}

.gallery-section .slick-next::before {
    background-image: url(images/next-arrow.webp);
}

.gallery-section .slick-arrow {
    position: absolute;
    bottom: -20px;
    top: auto;
}

.gallery-section .slick-prev {
    left: 50%;
    transform: translateX(-55px);
}

.gallery-section .slick-next {
    right: 50%;
    transform: translateX(5px);
}

.fancybox__thumbs {
  display: none;
}

.gallery-slide {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 300px);
  gap: 8px;
}
    
.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.div2 {
    grid-column-start: 3;
}

.div3 {
    grid-column-start: 4;
}

.div4 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.div5 {
    grid-column-start: 4;
    grid-row-start: 2;
}

.div6 {
    grid-row-start: 3;
}

.div7 {
    grid-row-start: 3;
}

.div8 {
    grid-column: span 2 / span 2;
    grid-row-start: 3;
}
        
    .gallery-slide a,
    .gallery-mobile-slider a {
      display: block;
      overflow: hidden;
      border-radius: 4px;
      width: 100%;
      height: 100%;
    }
 
    .gallery-slide a img,
    .gallery-mobile-slider a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
.gallery-mobile-slider a img {
  height: 250px;
}



/* Clubhouse section */
.clubhouse-section {
  padding-block: 4em;
  background: #FAEDDE;
}

.clubhouse-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clubhouse-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1em;
}

.clubhouse-section .container > * {
  width: 50%;
}

.clubhouse-section .clubhouse-content {
  padding-right: 100px;
}

.clubhouse-section .clubhouse-content p {
  margin-bottom: 1em;
}

.clubhouse-image-slider {
  margin-bottom: 12px;
}

.clubhouse-image-slider .slick-slide {
  position: relative;
}

.clubhouse-image-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.clubhouse-image-slider .caption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  z-index: 2;
}

.clubhouse-thumb-slider .slick-slide {
  padding: 0 5px;
  cursor: pointer;
}

.clubhouse-thumb-slider img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all .3s ease;
}

.clubhouse-image-slider .slick-slide {
  position: relative;
}

.clubhouse-image-slider .slick-slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.48%, rgba(0, 0, 0, 0.36) 95.44%);
}

.clubhouse-thumb-slider .slick-current img {
  border-color: #202020;
}

.clubhouse-thumb-slider p {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .clubhouse-section .container {
    flex-direction: column-reverse;
    gap: 2em;
  }

  .clubhouse-section .container > * {
    width: 100%;
    padding: 0;
  }

  .clubhouse-image-slider img {
    height: 300px;
  }
}


/* Amenities section */
.amenities-section {
  background: #fffaf6;
  padding-block: 4em;
}

.amenities-section * {
  box-sizing: border-box;
}

.amenities-section .section-header {
  width: 50%;
}

.tabs-nav {
  display: flex;
  gap: 24px;
  margin: 2em 0 2em;
  overflow-x: auto;
}

.tab-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 30px;
  flex-shrink: 0;
  transition: .3s;
}

.tab-btn.active {
    font-weight: 500;
  border-color: #4b281d;
  background: #4b281d;
  color: #fff;
}

.tab-content {
  display: none;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 3em;
  opacity: 0;
  transform: translateY(20px);
}

.tab-content.active {
  display: flex;
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenities-grid {
  width: 40%;
  flex: 0 0 40%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 1.5em;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

.amenity-item span {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 1px solid #45241B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
    color: #2A2A2A;
}

.tab-img-wrap {
  width: 60%;
  flex: 1 1 60%;
  min-width: 0;
  padding-left: 0;
}

.amenities-section figure {
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  min-width: 0;
}

.amenities-section img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  transition: all .5s ease;
  border-radius: 8px;
}

.amenities-section img:hover {
  transform: scale(1.1);
}

.tab-img-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  height: 500px;
}

.tab-img-wrap > div:first-of-type {
  width: 75%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.tab-img-wrap > div:first-of-type > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.tab-img-wrap > div:first-of-type > div:last-of-type > * {
  width: 48.9%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.tab-img-wrap > div:first-of-type > div:first-of-type {
  height: 35%;
  min-width: 0;
}

.tab-img-wrap > div:first-of-type > div:last-of-type {
  height: 63%;
  min-width: 0;
}

.tab-img-wrap > div:first-of-type > div:first-of-type > figure {
  width: 37%;
  min-width: 0;
  flex-shrink: 0;
}

.tab-img-wrap > div:first-of-type > div:first-of-type > figure:last-of-type {
  width: 21.9%;
  min-width: 0;
  flex-shrink: 0;
}

.tab-img-wrap > div:last-of-type {
  width: 25%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-img-wrap > div:last-of-type > figure {
  height: 50%;
}

.tab-img-wrap > div:first-of-type > div:last-of-type > figure {
  width: 48.9%;
  min-width: 0;
  flex-shrink: 0;
}

.tab-img-wrap > div:first-of-type > div:last-of-type > div:first-of-type > figure:first-of-type {
  height: 30%;
}
.tab-img-wrap > div:first-of-type > div:last-of-type > div:first-of-type > figure:last-of-type {
  height: 70%;
}
.tab-img-wrap > div:first-of-type > div:last-of-type > div:last-of-type > figure:first-of-type {
  height: 40%;
}
.tab-img-wrap > div:first-of-type > div:last-of-type > div:last-of-type > figure:last-of-type {
  height: 60%;
}


#sports-tab .tab-img-wrap > div:first-of-type > div:first-of-type > figure:last-of-type {
  width: 60.9%;
}

/* #sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type {
  flex-direction: column;
} */

#sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type > * {
  width: 100%;
}

#sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type > div:first-of-type {
  height: 40%;
}

#sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type > div:last-of-type {
  height: 60%;
  display: flex;
    flex-direction: row;
}

#sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type > div:last-of-type > * {
  width: 50%;
  height: 100%;
}

#sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type > div:first-of-type > figure:last-of-type {
  height: 100%;
}

#sports-tab .tab-img-wrap > div:first-of-type > div:last-of-type {
  height: 61%;
}

.tab-img-grid {
  display: none;
  flex-wrap: wrap;
}


.amenities-section .tab-img-grid > * {
  height: 5em;
    width: 30%;
    margin: 1.6%;
}


@media (max-width: 1024px) {
  .amenities-section .section-header {
    width: 100%;
  }

  .amenities-grid {
        gap: 1.5em 20px;
  }
  .amenity-item {
    font-size: 12px;
  }

  .amenity-item span {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 10px;
  }

  .tab-content {
          flex-wrap: wrap;
  }

  .tab-content > * {
    width: 100%;
    flex: 1 1 100%;
    padding: 0;
  }

  .amenities-grid {
    margin-bottom: 2em;
  }

}

@media (max-width: 600px) {
  .tab-img-wrap {
    display: none;
  }

  .tab-img-grid {
    display: flex;
  }
}


/* Landscape section */
.landscape-section .section-header-wrap {
  background-color: #fffaf6;
  padding-block: 3em;
}

.landscape-section .section-header {
  width: 50%;
}

.landscape-grid {
  padding-block: 3em;
}

.landscape-grid h5 {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}

.landscape-grid img {
  width: 100%;
  object-fit: contain;
  height: 80%;
}

.landscape-grid .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.landscape-grid .container > div {
  width: 30%;
  /* height: 20%; */
}

@media (max-width:768px) {
  .landscape-section .section-header {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .landscape-grid .container > div {
    width: 100%;
    margin-bottom: 2em;
  }
}



/* Specifications Section */
.specifications-section {
  background-color: #fffaf6;
  padding-block: 4em;
}

.specifications-section .container {
  display: flex;
  flex-direction: column;
}

.specifications-section h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1em;
}

.specifications-section p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: .5em;
}

.specifications-section .tab-nav {
  margin-block: 3em;
}

.specifications-section .tab-content.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.specifications-section .tab-content > div {
  margin-bottom: 1em;
}

#specs-image {
  width: 100%;
  border-radius: 8px;
  transition: opacity 0.5s ease;
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .specifications-section .tab-content > div {
    width: 48%;
  }

  .specs-content {
    width: 55%;
  }

  .specs-img {
    width: 40%;
  }

  .specifications-section .container {
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
}













/* Video thumbnail */
.walkthrough-section {
  padding-block: 4em;
}

.walkthrough-video {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.walkthrough-video img {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 8px; */
}

@media (max-width: 768px) {
  iframe {
    height: 300px;
  }
}



/* Contact section */
.contact-section {
  background-color: #FBF7EF;
  padding-block: 4em;
}
.contact-section .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;

}

.contact-text {
  flex: 1 1 300px;
}

/* Updated contact form style */
.contact-form {
  flex: 1 1 300px;
  padding: 0 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'GeneralSans', sans-serif;
}

.contact-form input {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #2C2C2C;
  background: transparent;
  font-size: 16px;
  color: #000000;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #2C2C2C;
  font-family: 'GeneralSans', sans-serif;
}

.contact-form button {
  background-color: #360E0F;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #121212;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 0;
  }
}



/* Footer */
.footer {
  padding-block: 4em;
  background: #181716;
  color: #ffffff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  display: flex;
  flex-direction: row;
  gap: 80px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-item > a > img{
  width: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 12px;
  color: #ffffff;
}
.contact-item:hover{
  opacity: 0.7;
}
.contact-item a{
  text-decoration: none;
  display: flex;
    align-items: center;
    gap: 10px;
}
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: start;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  width: auto;
}

.footer-logo {
  width: 350px;
  height: auto;
}

.brochure-button {
  width: 280px;
  margin-top: 25px;
  background: #94786B;
  align-self: center;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: all.5s ease;
}

.brochure-button:hover{
  background-color: #333;
}

.footer-divider {
  height: 1px;
  margin: 0px 0 30px 0px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 12px;
  color: #a0a0a0;
  position: relative;
}

.footer-bottom p {
  font-size: 12px;
    font-weight: 400;
    color: #FAFAFA;
    line-height: 150%;
}

.footer-bottom .address h6 {
  font-size: 16px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 1em;
}
.address {
  width: 20%;
}
.footer-bottom .disclaimer {
  font-size: 12px;
  font-style: italic;
  font-weight: 200;
  line-height: 135%;
  color: #868686;
  width: 280px;
  text-align: left;
}

.disclaimer, .footer-disclaimer-section p {
    font-size: 12px;
      color: #FAFAFA;
      font-weight: 400;
}
.footer-disclaimer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FAFAFA;
  margin:15px 0px 30px 0px;
}
@media (max-width: 1024px) {
  /* footer */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center text for better readability */
  }

  .footer-logo-block {
    align-items: center; /* Center the logo and button */
  }

  .brochure-button {
    width: 100%;
    padding: 12px 29px;
  }

  .footer-bottom {
    flex-direction: column; /* Stack the addresses vertically */
    align-items: center; /* Center the addresses */
    text-align: center; /* Center text for better readability */
  }

  .footer-divider {
    margin: 20px 0; /* Adjust margin */
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px; /* Less padding for mobile */
    padding: 50px 0 !important;
    margin-top: 100px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center all text */
  }

  .footer-logo {
    width: 200px; /* Smaller logo for mobile */
  }

  .footer-section h4 {
    font-size: 14px; /* Smaller headings */
  }

  .contact-item {
    font-size: 12px; /* Smaller font for contact info */
    justify-content: center;
  }

  .social-icons {
    flex-direction: column; /* Stack social icons vertically */
    align-items: center; /* Center social icons */
  }

  .footer-bottom {
    flex-direction: column; /* Stack addresses vertically */
    align-items: center; /* Center addresses */
    text-align: center; /* Center text for better readability */
  }

  .footer-bottom .address {
    margin-bottom: 20px; /* Space between address sections */
    width: 100%; /* Make sections full width */
  }

  .footer-bottom .disclaimer {
    margin-top: 10px; /* Space above disclaimer */
    text-align: center;
  }
  .footer-top {
    gap: 70px;
  }
  .social-icons {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
.main-site-footer {
  background-color: #111111;
  color: #f4f4f4;
  padding: 80px 40px 30px;
}

.main-site-footer a {
  color: #a5a5a5;
  text-decoration: none;
}

.main-site-footer a:hover {
  color: #ffffff;
}

/* ====== FLEX WRAPPING STRUCTURE ====== */
.footer-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 200px;
  margin-bottom: 50px;
}

/* ====== BRANDING SECTION ====== */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: auto;
}

.footer-project-logo {
  width: 350px;
  height: auto;
}

.footer-tagline {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.footer-cta-btn {
  width: 350px;
  background: #2d281d;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}
.footer-cta-btn:hover {
  background-color: #ffffff;
  color: #111;
}

/* ====== NAVIGATION SECTION ====== */

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 20px 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid li {
  font-size: 16px;
  color: #222 !important;
}
.footer-links-grid li a {
  color: #fff;
  text-decoration: none;
}
.footer-links-grid li a:hover{
  opacity: 0.7;
}
.footer-links-grid:hover {
  color: #ffffff;
}

/* ====== CONTACT INFO ====== */
.footer-contact-info {
  flex: 1 1 220px;
}

.footer-contact-col {
  margin-bottom: 20px;
}
.footer-contact-col {
  text-align: right;
}
.footer-contact-col h4 {
  font-size: 16px;
}

.footer-contact-col p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 15px;
}

.footer-contact-col img {
  width: 16px;
  height: 16px;
}

.footer-line {
  border: none;
  height: 1px;
  background: #4B4B4B;
  margin: 20px 0;
}

.custom-line {
  margin-top: 60px;
  border-top: 0.01px solid #333;
  font-size: 13px;
  color: #777;
  text-align: center;
}
.custom-responsive-line {
  border-top: 0.01px solid #333;
  font-size: 13px;
  color: #777;
  text-align: center;
  display: none;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons img {
height: 30px;
    width: 30px;
    margin-right: 10px;
    transition: all .5s ease;
    opacity: .8;
}

.social-icons img:hover {
  opacity: 1;
}

/* ====== BOTTOM DETAILS ====== */
.footer-bottom-details {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center !important;
  gap: 30px;
  font-size: 14px;
  color: #bbb;
  margin-bottom: 30px;
}

.footer-detail {
  flex: 1 1 220px;
}

/* ====== DISCLAIMER ====== */
.footer-disclaimer-section {
  border-top: 1px solid #333;
  padding-top: 20px;
  padding: 20px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}

.footer-disclaimer-section p {
  margin-top: 1em;
}

.footer-detail strong {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}


/* Scroll to top button */
.progress-wrap {
  position: fixed;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border: 1px solid #F5EBE0;
  border-radius: 50px;
  background: #A0897B;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  right: 2em;
  bottom: 2em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
}

.progress-wrap::after {
  content: '';
  background: url(https://assetzproperty.com/soraandsaki//wp-content/uploads/2024/03/arrow.svg) no-repeat center/15px;
  position: absolute;
  transform: rotate(-180deg);
  text-align: center;
  color: #371B13;
  left: 0;
  top: 0;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #371B13;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* -------------------------- */