/* CSS for section section:Hero */
.hero-section {
  width: 100%;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-sticky {
  position: fixed;
  height: 72px;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 57%);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-sticky .header-bg {
  background-color: #ffffff;
  box-shadow: 0 2px 16px rgb(0 0 0 / 10%);
}

.header-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 100px;
  padding-left: 44px;
  padding-right: 44px;
  box-sizing: border-box;
  transition: height 0.25s ease;
}

.site-header.is-sticky .header-content {
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo {
  width: auto;
  height: 48px;
}

.logo--sticky {
  display: none;
  height: 40px;
}

.site-header.is-sticky .logo--main {
  display: none;
}

.site-header.is-sticky .logo--sticky {
  display: block;
}

.header-nav {
  margin-left: auto;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #104f8b;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header-nav__link:hover {
  opacity: 0.75;
}

.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.header-menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #104f8b;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-menu-open .header-menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .header-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .header-menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #ffffff;
  border-top: 1px solid rgb(16 79 139 / 12%);
  box-shadow: 0 12px 24px rgb(0 0 0 / 10%);
}

.site-header.is-sticky .header-mobile-menu {
  top: 72px;
}

.header-mobile-menu__list {
  margin: 0;
  padding: 12px 0;
  list-style: none;
}

.header-mobile-menu__link {
  display: block;
  padding: 14px 44px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #104f8b;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.header-mobile-menu__link:hover {
  background-color: rgb(16 79 139 / 6%);
}

.site-header.is-sticky .header-nav {
  display: none;
}

.site-header.is-sticky .header-menu-toggle {
  display: flex;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 868;
  overflow: hidden;
  background-color: #1a1a1a;
}

.hero-banner-zoom {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  will-change: transform;
  animation: hero-banner-zoom 18s ease-in-out infinite;
}

.hero-banner-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner-layer--night {
  z-index: 1;
}

.hero-banner-layer--day {
  z-index: 2;
  animation: hero-day-fade 14s ease-in-out infinite;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero-banner-center {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0 24px;
  box-sizing: border-box;
  transform: translateY(-12%);
}

.hero-magic {
  position: relative;
  width: min(300px, 34vw);
  line-height: 0;
}

.hero-magic__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgb(0 0 0 / 35%));
}

.hero-magic__img--night {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: hero-magic-night-fade 14s ease-in-out infinite;
}

.hero-magic__img--day {
  position: relative;
  animation: hero-magic-day-fade 14s ease-in-out infinite;
}

@keyframes hero-banner-zoom {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes hero-day-fade {
  0%,
  38% {
    opacity: 1;
  }

  50%,
  88% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-magic-day-fade {
  0%,
  38% {
    opacity: 1;
  }

  50%,
  88% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-magic-night-fade {
  0%,
  38% {
    opacity: 0;
  }

  50%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-zoom,
  .hero-banner-layer--day,
  .hero-magic__img--day,
  .hero-magic__img--night {
    animation: none;
  }

  .hero-banner-layer--day,
  .hero-magic__img--day {
    opacity: 1;
  }

  .hero-magic__img--night {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-overlay-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  pointer-events: auto;
}

.hero-card-left {
  flex: 1 1 380px;
  max-width: 380px;
  width: 100%;
  display: flex;
}

.banner-card {
  --banner-accent: #c59d5f;
  --banner-divider: #444444;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(18, 18, 18, 0.9);
  border-radius: 20px;
  padding: 30px 28px 32px;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

.banner-card__tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--banner-accent);
  margin: 0 0 12px;
}

.banner-card__location {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px;
}

.banner-card__pin {
  flex-shrink: 0;
  color: #ffffff;
}

.banner-card__title {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #ffffff;
}

.banner-card__subtitle {
  font-family: var(--font-subheading);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.45;
}

.banner-card__divider {
  height: 1px;
  background-color: var(--banner-divider);
  margin: 22px 0 20px;
}

.banner-card__features {
  font-family: var(--font-body);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.banner-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #f5f5f5;
}

.banner-card__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--banner-accent);
}

.banner-card__btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact-card {
  position: relative;
  flex: 1 1 380px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background-color: rgba(45, 45, 45, 0.92);
  border-radius: 20px;
  padding: 28px 24px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.hero-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 8px;
  text-transform: capitalize;
}

.hero-form-input {
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  background-color: #3a3a3a;
  border: 1px solid #5a5a5a;
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.hero-form-input::placeholder {
  color: #b0b0b0;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero-form-input:focus {
  border-color: #8a8a8a;
}

.hero-form-input:-webkit-autofill,
.hero-form-input:-webkit-autofill:hover,
.hero-form-input:-webkit-autofill:focus,
.hero-form-input:-webkit-autofill:active,
.hero-phone-input-wrap .iti__tel-input:-webkit-autofill,
.hero-phone-input-wrap .iti__tel-input:-webkit-autofill:hover,
.hero-phone-input-wrap .iti__tel-input:-webkit-autofill:focus,
.hero-phone-input-wrap .iti__tel-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #3a3a3a inset !important;
  box-shadow: 0 0 0 1000px #3a3a3a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff;
  border: 1px solid #5a5a5a;
  transition: background-color 99999s ease-out 0s;
}

.hero-form-textarea {
  min-height: 110px;
  resize: vertical;
}

.hero-phone-row {
  display: flex;
  width: 100%;
}

.hero-otp-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.hero-form-input--phone,
.hero-form-input--otp {
  flex: 1;
  min-width: 0;
}

.hero-phone-input-wrap {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.hero-phone-input-wrap .iti {
  width: 100%;
  display: block;
}

.hero-phone-input-wrap .iti__tel-input {
  width: 100%;
  padding-right: 16px;
}

.hero-phone-input-wrap .iti__country-container {
  border-right: 1px solid #5a5a5a;
}

.hero-phone-input-wrap .iti__selected-country {
  background-color: #3a3a3a;
  border-radius: 20px;
}

.hero-phone-input-wrap .iti__selected-country-primary:hover,
.hero-phone-input-wrap .iti__selected-country-primary:focus {
  background-color: #454545;
}

.hero-phone-input-wrap .iti__selected-dial-code {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
}

.hero-phone-input-wrap .iti__arrow {
  border-top-color: #ffffff;
}

.hero-phone-input-wrap .iti__dropdown-content {
  background-color: #2d2d2d;
  border: 1px solid #5a5a5a;
  border-radius: 20px;
  color: #ffffff;
}

.hero-phone-input-wrap .iti__search-input {
  background-color: #3a3a3a;
  border: 1px solid #5a5a5a;
  border-radius: 20px;
  color: #ffffff;
  font-family: var(--font-body);
}

.hero-phone-input-wrap .iti__country {
  color: #ffffff;
  font-family: var(--font-body);
}

.hero-phone-input-wrap .iti__country.iti__highlight {
  background-color: #104f8b;
}

.hero-phone-input-wrap .iti--disabled .iti__selected-country {
  opacity: 0.65;
  cursor: not-allowed;
}

.hero-verify-btn {
  font-family: var(--font-body);
  flex: 0 0 auto;
  min-width: 88px;
  padding: 0 16px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero-verify-btn:hover:not(:disabled) {
  opacity: 0.92;
}

.hero-verify-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hero-form-feedback {
  margin: -4px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #f0c674;
}

.hero-form-feedback.is-error {
  color: #ff8a8a;
}

.hero-form-feedback.is-success {
  color: #8fd48f;
}

.hero-submit-btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
}

.hero-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hero-submit-btn:not(:disabled):hover {
  opacity: 0.9;
}

.hero-whatsapp-btn {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.hero-whatsapp-btn:hover {
  transform: scale(1.05);
}

.is-hidden {
  display: none !important;
}

.hero-footer-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  width: 100%;
  background-color: #ffffff87;
  pointer-events: none;
}

.hero-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 44px;
}

.rera-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.artistic-text {
  position: absolute;
  right: 100px;
  bottom: 0;
  font-size: 11px;
}

@media (max-width: 1440px) {
  .header-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .artistic-text {
    right: 20px;
  }
}

@media (max-width: 1200px) {
  .hero-overlay-inner {
    gap: 20px;
  }

  .hero-card-left,
  .hero-contact-card {
    flex: 1 1 340px;
    max-width: 340px;
  }
}

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

  .header-menu-toggle {
    display: flex;
  }

  .header-nav__list {
    gap: 16px;
  }

  .hero-image-container {
    height: auto;
    min-height: 0;
    aspect-ratio: 1440 / 868;
  }

  .hero-picture,
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-magic {
    width: min(240px, 40vw);
  }

  .hero-overlay {
    top: 100px;
    bottom: 48px;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
  }

  .hero-overlay-inner {
    flex-direction: column;
    align-items: center;
  }

  .hero-card-left,
  .banner-card {
    max-width: 100%;
  }

  .hero-contact-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    display: block;
    overflow: visible;
  }

  .hero-image-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 480 / 450;
  }

  .hero-magic {
    width: min(200px, 58vw);
  }

  .hero-banner-center {
    transform: translateY(-8%);
  }

  .hero-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-overlay {
    position: relative;
    top: auto;
    bottom: auto;
    margin-top: -40px;
    padding: 0;
    align-items: stretch;
    overflow: visible;
    pointer-events: auto;
  }

  .hero-overlay-inner {
    gap: 0;
  }

  .banner-card {
    max-width: 100%;
    padding: 24px 20px 26px;
    border-radius: 20px 20px 0 0;
  }

  .hero-contact-card {
    padding: 22px 18px 28px;
    border-radius: 0 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-footer-container {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 6;
    width: 100%;
    margin-top: 0;
    padding: 0;
    background-color: #000000;
    border-top: none;
  }

  .hero-footer {
    justify-content: center;
    padding: 10px 16px;
  }

  .rera-text {
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    word-break: break-word;
  }

  .artistic-text {
    position: static;
  }
}

/* CSS for Solterra Overview / EOI / Plans */
.solterra-band {
  position: relative;
  isolation: isolate;
  background-color: #f5f2ec;
  overflow: hidden;
}

.solterra-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  background-image: url('../nimages/bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  opacity: 0.55;
  /* filter: invert(1) contrast(1.15) brightness(1.05); */
  mix-blend-mode: multiply;
  pointer-events: none;
}

.solterra-section {
  position: relative;
  z-index: 1;
}

.solterra-section--overview,
.solterra-section--plans {
  background-color: transparent;
}

.solterra-section--eoi {
  background-color: rgb(197 206 212 / 55%);
}

.overview-container {
  max-width: 920px;
  padding: 100px 24px 80px;
  text-align: center;
}

.overview-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #0b2943;
  margin: 0 0 28px;
}

.overview-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.overview-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: #5a5a5a;
}

.eoi-container {
  max-width: 820px;
  padding: 100px 24px 80px;
  text-align: center;
}

.eoi-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: #0b2943;
  margin: 0 0 6px;
}

.eoi-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: #0b2943;
  margin: 0 0 20px;
}

.eoi-desc {
  margin: 0 auto 28px;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #4d4d4d;
}

.eoi-btn,
.plans-download-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  padding: 14px 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.eoi-btn:hover,
.plans-download-btn:hover {
  opacity: 0.9;
}

.plans-container {
  padding: 130px 24px 72px;
}

.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.plans-tab {
  appearance: none;
  min-width: 250px;
  padding: 12px 28px;
  border: 1px solid #b8b8b8;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.plans-tab:hover {
  border-color: #0b2943;
}

.plans-tab.is-active {
  border-color: #0b2943;
  background-color: transparent;
  color: #000000;
}

.plans-panel[hidden] {
  display: none;
}

.plans-media {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.plans-media--master .plans-media__img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(8px);
  transform: scale(1.02);
}

.plans-media__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 18%);
}

.plans-media__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.unit-plans-card {
  --unit-slide-gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 24px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.unit-plans-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.unit-plans-track {
  display: flex;
  align-items: stretch;
  gap: var(--unit-slide-gap);
  will-change: transform;
  transition: transform 0.45s ease;
}

.unit-plans-slide {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.unit-plans-img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

.unit-plans-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.unit-plans-download-btn {
  pointer-events: auto;
  appearance: none;
  border: none;
  cursor: pointer;
  min-width: min(280px, 70%);
  padding: 16px 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  box-shadow: 0 10px 28px rgb(129 96 32 / 35%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.unit-plans-download-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.unit-plans-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.unit-plans-arrow {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgb(120 120 120 / 55%);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.unit-plans-arrow:hover {
  background: rgb(90 90 90 / 70%);
}

.unit-plans-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 768px) {
  .unit-plans-card {
    --unit-slide-gap: 12px;
    padding: 18px 12px 18px;
    border-radius: 0;
  }

  .unit-plans-download-btn {
    padding: 14px 22px;
    min-width: min(240px, 82%);
  }

  .unit-plans-arrow {
    width: 40px;
    height: 40px;
  }

  .overview-container {
    padding: 48px 20px 40px;
  }

  .eoi-container {
    padding: 40px 20px;
  }

  .plans-container {
    padding: 36px 16px 56px;
  }

  .plans-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .plans-tab {
    width: 100%;
  }
}

/* Legacy about section */
#section-about {
  background-color: #f5f2ec;
  background-image: url('../nimages/bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #000;
}

.about-container {
  display: flex;
  padding: 28px 80px;
  gap: 48px;
  align-items: center;
}

.about-content {
  flex: 1.15;
  max-width: 640px;
  min-width: 0;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0b2943;
}

.about-desc {
  font-size: 16px;
  line-height: 1.55;
  margin: 10px 0;
  text-align: justify;
  color: #000;
}

.about-desc:last-of-type {
  margin-bottom: 22px;
}

.floors-info {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.floor-box {
  background-color: #104f8b;
  color: #ffffff;
  border-radius: 20px;
  width: 215px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.request-btn {
  width: 100%;
  max-width: 460px;
  height: 72px;
  font-size: 20px;
}

.about-image {
  flex: 0.85;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    padding: 24px 20px;
    gap: 32px;
    text-align: center;
  }

  .about-content {
    flex: 1;
    max-width: 100%;
  }

  .floors-info {
    justify-content: center;
  }

  .about-image {
    justify-content: center;
  }

  .about-image img {
    height: auto;
  }
}

@media (max-width: 600px) {
  .floors-info {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .floor-box {
    width: auto;
    max-width: 300px;
    min-width: 0;
    padding: 12px 80px;
    height: auto;
    min-height: 64px;
  }

  .design-bg .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .design-subtitle {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .design-img {
    max-width: 100%;
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
  }
}

/* CSS for section section:Pricing */
.pricing-container {
  padding: 20px 0;
  text-align: center;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-family: var(--font-subheading);
  color: #104f8b;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 25px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.p-card {
  position: relative;
  width: 331px;
  height: 284px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
}

.p-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
}

.p-card-text {
  font-family: var(--font-body);
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.p-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 172px;
  height: 45px;
  padding: 0 16px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease;
}

.p-card-btn__icon {
  flex-shrink: 0;
  color: #ffffff;
}

.p-card-btn:hover {
  opacity: 0.9;
}

.pricing-footer-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 1132px;
  margin: 0 auto 14px;
}

.pricing-footer {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  max-width: 1132px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-cards {
    gap: 40px;
  }
}

/* CSS for section section:Features */
.features-container {
  display: flex;
  padding: 50px 117px;
  gap: 70px;
  align-items: center;
}

.features-text {
  flex: 1;
  max-width: 520px;
}

.features-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b2943;
  margin: 0 0 24px;
}

.features-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 28px;
}

.features-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #2f2f2f;
}

.features-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #2f7dc7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.features-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: #104f8b;
  margin: 0;
}

.features-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.features-image img {
  width: 100%;
  max-width: 612px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 12px;
  box-sizing: border-box;
  box-shadow:
    0 8px 28px rgba(0, 99, 166, 0.1),
    0 4px 16px rgba(239, 62, 86, 0.07);
}

@media (max-width: 1024px) {
  .features-container {
    flex-direction: column;
    padding: 20px 20px;
    text-align: left;
  }

  .features-text {
    max-width: 100%;
  }

  .features-title {
    font-size: 32px;
  }

  .features-image {
    justify-content: center;
    width: 100%;
  }

  .features-image img {
    max-width: 100%;
  }
}

/* CSS for section section:LocationHighlights */
.highlights-container {
  display: flex;
  padding: 28px 80px;
  gap: 48px;
  align-items: flex-start;
}

.highlights-content {
  flex: 1.1;
  max-width: 680px;
  min-width: 0;
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #0b2943;
}

.highlights-subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 28px 0 16px;
  color: #0b2943;
}

.highlights-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
  text-align: justify;
  color: #2f2f2f;
}

.highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlights-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #2f2f2f;
  padding-left: 18px;
  position: relative;
}

.highlights-list li strong {
  font-weight: 600;
  color: #1a1a1a;
}

.highlights-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #104f8b;
}

.highlights-image {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.highlights-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .highlights-container {
    flex-direction: column;
    padding: 24px 20px;
    gap: 32px;
    text-align: center;
  }

  .highlights-content {
    max-width: 100%;
  }

  .highlights-desc {
    text-align: left;
  }

  .highlights-title {
    font-size: 30px;
  }

  .highlights-subtitle {
    font-size: 24px;
    text-align: left;
  }

  .highlights-list {
    text-align: left;
  }

  .highlights-image {
    justify-content: center;
  }

  .highlights-image img {
    max-width: 100%;
    border-radius: 20px;
  }
}

/* CSS for section section:Gallery */
#section-gallery {
  width: 100%;
  overflow: hidden;
}

.gallery-container {
  padding: 30px 0 80px;
  text-align: center;
}

.gallery-slider {
  width: 100%;
  max-width: none;
  margin: 0 0;
}

.gallery-carousel {
  position: relative;
  display: block;
  width: 100%;
}

.gallery-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-slide {
  flex-shrink: 0;
  min-width: 0;
  width: 100%;
}

.gallery-slide img {
  width: 100%;
  height: clamp(320px, 56vw, 720px);
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: rgb(16 79 139 / 85%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.gallery-arrow--prev {
  left: 20px;
}

.gallery-arrow--next {
  right: 20px;
}

.gallery-arrow:hover:not(:disabled) {
  background-color: #00528a;
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-dots-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 20px;
}

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #104f8b;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-dot.is-active {
  opacity: 1;
  transform: scale(1.15);
}

.gallery-dot:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .gallery-arrow--prev {
    left: 12px;
  }

  .gallery-arrow--next {
    right: 12px;
  }

  .gallery-slide img {
    height: clamp(240px, 62vw, 420px);
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
}

.download-btn {
  width: 100%;
  max-width: 320px;
  height: 56px;
  font-size: 20px;
}

/* CSS for section section:Design */
.design-bg {
  background-color: rgba(0, 99, 166, 0.15);
  padding: 40px 0;
}

.design-container {
  text-align: center;
}

.design-subtitle {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 1118px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.design-img {
  width: 100%;
  max-width: 1255px;
  margin: 0 auto 30px;
}

/* CSS for section section:Promo */
.promo-section {
  width: 100%;
  line-height: 0;
}

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

/* CSS for section section:Walkthrough */
.walkthrough-container {
  padding: 40px 0 20px;
  text-align: center;
}

.walkthrough-subtitle {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
}

.video-wrapper {
  max-width: 1207px;
  margin: 0 auto;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #000000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-embed {
    border-radius: 20px;
  }
}

/* CSS for section section:FloorPlans */
.floorplans-container {
  padding: 20px 0 40px;
  text-align: center;
}

.fp-slider {
  --fp-slide-gap: 24px;
  width: 100%;
}

.fp-carousel {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto 32px;
}

.fp-image-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid #2f7dc7;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

.fp-track {
  display: flex;
  gap: var(--fp-slide-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.fp-slide {
  flex-shrink: 0;
  min-width: 0;
}

.fp-slide-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  line-height: 0;
}

.fp-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.fp-slide--locked .fp-slide-inner {
  min-height: 200px;
}

.fp-slide--locked .fp-img--locked {
  filter: blur(14px);
  -webkit-filter: blur(14px);
  transform: scale(1.1);
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
}

.fp-unlock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
}

.fp-unlock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fp-unlock-btn__icon {
  flex-shrink: 0;
}

.fp-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #104f8b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 99, 166, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.fp-arrow:hover:not(:disabled) {
  background-color: #00528a;
  transform: scale(1.05);
}

.fp-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.fp-dots-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.fp-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0.8;
}

.fp-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #104f8b;
  cursor: pointer;
  transition: width 0.2s ease, height 0.2s ease, transform 0.2s ease;
}

.fp-dot.is-active {
  width: 16px;
  height: 16px;
}

.fp-dot:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .fp-slider {
    --fp-slide-gap: 16px;
  }

  .fp-carousel {
    gap: 14px;
  }

  .fp-arrow {
    width: 36px;
    height: 36px;
  }

  .fp-image-wrapper {
    border-radius: 20px;
  }

  .fp-unlock-btn {
    padding: 12px 16px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    max-width: 200px;
  }
}

/* CSS for section section:Amenities */
.amenities-bg {
  background-color: rgba(0, 99, 166, 0.15);
  padding: 40px 0;
}

.amenities-container {
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 80px;
  justify-content: center;
  max-width: 1194px;
  margin: 25px auto;
}

.amenity-item {
  position: relative;
  width: 100%;
  max-width: 338px;
  aspect-ratio: 331 / 284;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-text {
  font-family: var(--font-body);
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Location */
.location-container {
  padding: 40px 0 20px;
  text-align: center;
}

.location-tabs {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 1195px;
  margin: 0 auto 20px;
  padding: 6px;
  background-color: #eef3fb;
  border-radius: 20px;
  box-sizing: border-box;
}

.location-tab {
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
  padding: 14px 12px;
  border: none;
  border-radius: 20px;
  background-color: #f1f3f4;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.location-tab:hover:not(.is-active) {
  background-color: #e8ebee;
}

.location-tab.is-active {
  background-color: #a8c2f8;
  color: #1f1f1f;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.location-advantages {
  width: 100%;
  max-width: 1195px;
  margin: 0 auto 28px;
  padding: 24px 20px;
  text-align: left;
  box-sizing: border-box;
}

.location-advantages__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #0b2943;
  text-align: center;
}

.location-advantages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.location-advantages__list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #2f2f2f;
  padding-left: 18px;
  position: relative;
}

.location-advantages__list li strong {
  font-weight: 600;
  color: #1a1a1a;
}

.location-advantages__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #104f8b;
}

.location-map-panel {
  width: 100%;
}

.map-img {
  width: 100%;
  max-width: 1195px;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
  transition: opacity 0.25s ease;
}

.map-img.is-fading {
  opacity: 0;
}

@media (max-width: 768px) {
  .location-tabs {
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
  }

  .location-tab {
    flex: 1 1 calc(50% - 3px);
    padding: 12px 10px;
    font-size: 13px;
  }

  .location-advantages__title {
    font-size: 24px;
  }

  .location-advantages__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* CSS for section section:Testimonials */
.testimonials-container {
  padding: 20px 0 50px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1195px;
  margin: 25px auto;
  width: 100%;
}

.testi-video {
  width: 100%;
  min-width: 0;
}

.testi-video-embed {
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testi-video-embed {
    border-radius: 20px;
  }
}

/* CSS for section section:Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #104f8b;
  background-image: url("../nimages/Group%2037425.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  color: #ffffff;
  padding: 48px 0 36px;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 0 93px;
  min-height: 200px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  min-width: 0;
}

.footer-logo {
  width: min(280px, 42vw);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.copyright {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.45;
  margin: 0;
  color: #ffffff;
  max-width: 520px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
  flex-shrink: 0;
  max-width: 320px;
}

.address {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
  color: #ffffff;
  text-align: right;
}

.footer-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background-color: #5ba3d9;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.footer-counter__sep {
  display: inline-block;
  width: 10px;
  height: 12px;
  background:
    linear-gradient(#ffffff 0 0) 0 0 / 2px 100%,
    linear-gradient(#ffffff 0 0) 4px 2px / 2px calc(100% - 2px),
    linear-gradient(#ffffff 0 0) 8px 0 / 2px 100%;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background-color: #ffffff;
  color: #104f8b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 32px;
    background-size: 180% auto;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 32px;
    min-height: 0;
  }

  .footer-left,
  .footer-right {
    align-items: center;
    text-align: center;
    max-width: none;
    width: 100%;
    gap: 20px;
  }

  .footer-logo {
    width: min(220px, 70vw);
  }

  .copyright {
    text-align: center;
    max-width: none;
  }

  .address {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* CSS for section section:FloatingWidgets */
.lead-drawer {
  position: fixed;
  right: 0;
  bottom: 96px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  max-width: 52px;
  padding: 18px 10px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  cursor: pointer;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-drawer:hover {
  transform: translateX(-4px);
  box-shadow: -6px 6px 24px rgba(0, 0, 0, 0.28);
}

.lead-drawer__text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .lead-drawer {
    bottom: 82px;
    min-width: 46px;
    max-width: 46px;
    padding: 14px 8px;
  }

  .lead-drawer__text {
    font-size: 11px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
}

/* Solterra Lifestyle / Amenities / Video / Location */
.solterra-heading {
  font-family: var(--font-heading);
  font-size: clamp(28.56px, 3.57vw, 40.8px);
  font-weight: 400;
  color: #0b2943;
  text-align: center;
  margin: 0 0 28px;
}

.solterra-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.solterra-btn:hover {
  opacity: 0.92;
}

.solterra-btn--grey {
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
}

.solterra-btn--navy {
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  min-width: 260px;
  padding: 16px 36px;
  font-size: 17px;
}

.solterra-lifestyle,
.solterra-amenities,
.solterra-video,
.solterra-faq,
.solterra-location {
  position: relative;
  border-bottom: 0.5px solid #104f8b;
}

.solterra-lifestyle {
  padding: 0;
  background: transparent;
}

.lifestyle-container {
  text-align: center;
  max-width: 980px;
  padding: 100px 24px 80px;
}

.lifestyle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 280px;
  background: #1a1a1a;
  color: #ffffff;
}

.lifestyle-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.06);
  pointer-events: none;
  user-select: none;
}

.lifestyle-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  box-sizing: border-box;
  background: rgb(0 0 0 / 28%);
  text-align: center;
}

.lifestyle-card__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.lifestyle-card__size {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 8px;
}

.lifestyle-card__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  min-width: 160px;
  padding: 12px 22px;
  border-radius: 6px;
  background: linear-gradient(90deg, #816020 0%, #bf8e2d 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgb(0 0 0 / 25%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lifestyle-card__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.lifestyle-desc {
  margin: 0 auto 0;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
}

.solterra-amenities {
  padding: 0;
  background: transparent;
}

.amenities-lux-container {
  text-align: center;
  max-width: 1100px;
  padding: 100px 24px 80px;
}

.amenities-lux-kicker {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}

.amenities-lux-desc {
  margin: 0 auto 36px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: #666666;
}

.amenities-lux-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.amenities-lux-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 28px 18px;
  border-right: 1px solid #d8d8d8;
  box-sizing: border-box;
  min-height: 160px;
}

.amenities-lux-item:nth-child(4n) {
  border-right: none;
}

.amenities-lux-item:nth-child(n + 5) {
  border-top: 1px solid #d8d8d8;
}

.amenities-lux-icon {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.amenities-lux-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
  max-width: 160px;
}

.solterra-video {
  padding: 0;
  background-color: #f5f2ec;
  background-image: linear-gradient(rgb(255 255 255 / 78%), rgb(255 255 255 / 78%)),
    url('../nimages/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.solterra-video-container {
  max-width: 1100px;
  padding: 100px 24px 80px;
}

.solterra-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 12px 40px rgb(0 0 0 / 12%);
}

.solterra-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.solterra-faq {
  padding: 0;
  background-color: transparent;
}

.faq-container {
  max-width: 920px;
  padding: 100px 24px 80px;
  text-align: center;
}

.faq-accordion {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: #0b2943;
  box-shadow: 0 8px 24px rgb(11 41 67 / 8%);
}

.faq-item__trigger {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: #0b2943;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  line-height: 1.4;
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #816020;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__panel {
  padding: 0 20px 18px;
}

.faq-item__panel p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 72px 20px 60px;
  }

  .faq-item__trigger {
    padding: 16px;
  }

  .faq-item__panel {
    padding: 0 16px 16px;
  }
}

.solterra-location {
  padding: 0;
  background-color: #f5f2ec;
  background-image: linear-gradient(rgb(255 255 255 / 78%), rgb(255 255 255 / 78%)),
    url('../nimages/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.location-lux-container {
  text-align: center;
  max-width: 1100px;
  padding: 100px 24px 80px;
}

.location-lux-panel {
  background: #eceff2;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 36px;
}

.location-lux-map {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: #d7dce1;
  margin-bottom: 28px;
}

.location-lux-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-lux-advantages__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #0b2943;
  margin: 0 0 24px;
}

.location-lux-tabs {
  list-style: none;
  margin: 0;
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.location-lux-tab {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #878787;
  transition: color 0.2s ease;
}

.location-lux-tab:hover,
.location-lux-tab.is-active {
  color: #0b2943;
}

.location-lux-tab .location-lux-advantages__icon {
  color: #8D9ECA;
  transition: color 0.2s ease;
}

.location-lux-tab.is-active .location-lux-advantages__icon,
.location-lux-tab:hover .location-lux-advantages__icon {
  color: #0b2943;
}

.location-lux-map.is-switching {
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.location-lux-advantages__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .lifestyle-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .amenities-lux-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-lux-item {
    border-right: 1px solid #d8d8d8;
  }

  .amenities-lux-item:nth-child(2n) {
    border-right: none;
  }

  .amenities-lux-item:nth-child(n + 3) {
    border-top: 1px solid #d8d8d8;
  }

  .amenities-lux-item:nth-child(4n) {
    border-right: 1px solid #d8d8d8;
  }

  .amenities-lux-item:nth-child(2n) {
    border-right: none;
  }

  .location-lux-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-lux-map {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .lifestyle-container,
  .amenities-lux-container,
  .solterra-video-container,
  .location-lux-container {
    padding: 64px 20px 52px;
  }

  .amenities-lux-grid {
    grid-template-columns: 1fr;
  }

  .amenities-lux-item {
    border-right: none !important;
    border-top: none;
    border-bottom: 1px solid #d8d8d8;
    min-height: 0;
    padding: 22px 12px;
  }

  .amenities-lux-item:last-child {
    border-bottom: none;
  }

  .location-lux-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-lux-panel {
    padding: 14px;
  }

  .location-lux-map {
    height: 260px;
  }
}
