﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");

@font-face {
  font-family: Futura;
  src: url("../assets/fonts/Futura.ttc");
}

@font-face {
  font-family: futura-heavy;
  src: url("../assets/fonts/Futura_Heavy_font.ttf");
}

@font-face {
  font-family: futura-medium;
  src: url("../assets/fonts/Futura_Book.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #451616;
  --golden-gradient: linear-gradient(270deg,
      #e7cc9e 22.26%,
      #b69265 62.47%,
      #986f42 86.09%);
  --color-3: transparent;
  --radius-full: 100px;
  --light: #fff6e7;
  --montserrat: "Montserrat", sans-serif;
  --Futura: Futura;
  --futura-medium: futura-medium;
  --futura-heavy: futura-heavy;
}

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  background: var(--primary);
  font-family: var(--futura-medium);
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* form loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--light);
  border: 2px solid var(--white);
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid var(--white);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.mirror {
  transform: scaleX(-1);
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed !important;
}

header {
  position: fixed;
  z-index: 10;
  /* top: 1%; */
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
  border: 1px solid rgba(79, 28, 27, 0.1);
  background: rgba(79, 28, 27, 0.5);
}

header.dropped {
  top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
}

nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0rem 5rem;
}

nav.dropped {
  background-color: var(--primary);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
  align-items: center;
}

.navbar-container .navlogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
}

.navbar-container .custom-visible {
  display: none;
}

.navbar-container .menu {
  width: 30px;
}

.navbar-container .menu a {
  display: block;
  width: 100%;
  height: 100%;
}

.navbar-container .menu a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-container .navlogo .logo {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 12vw;
  -o-object-fit: cover;
  object-fit: cover;
}

/* nav.dropped .navbar-container .navlogo .logo {
  width: 100px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -o-object-fit: cover;
  object-fit: cover;
} */

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.logo-img.logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 80px;
  max-width: 100%;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-img.logo-img-1::after {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  right: -41px;
  height: 100%;
  background-color: var(--white);
}

.logo-img.logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 55px;
  max-width: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.mob-logo {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar-container .navbar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.phone-number {
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--futura-medium);
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--light);
  font-size: 1vw;
  line-height: normal;
  font-style: normal;
  font-weight: 400;
  text-wrap: nowrap;
  font-family: var(--futura-medium);
}

.btn-phone {
  width: 40px;
  height: 40px;
  background-color: var(--light);
  display: flex;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
}

.offcanvas.offcanvas-start {
  background: var(--primary);
}

.offcanvas-body {
  padding: 2rem 1.5rem;
  background-color: var(--primary);
  height: 100%;
  overflow-y: auto;
}

.offcanvas-navs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.offcanvas-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--light);
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.offcanvas-link:hover {
  color: var(--light);
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  left: 0;
  bottom: 0;
}

.offcanvas-nav:last-child .offcanvas-link::after {
  display: none;
}

.offcanvas-header .btn-close {
  filter: invert(1);
}

.btn-primary {
  text-transform: uppercase;
  border: 1px solid var(--golden);
  position: relative;
  border-radius: var(--radius-full);
  outline: none;
  display: flex;
  justify-content: center;
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-items: center;
  padding: 0.4rem 2.25rem;
  text-wrap: nowrap;
  font-size: 1vw;
  z-index: 1;
  cursor: pointer;
  font-weight: 500;
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ffffff;
    box-shadow: 0 0 0 0 #ffffff;
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ffffff;
    box-shadow: 0 0 0 0 #ffffff;
  }

  70% {
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.modal-logo {
  width: 200px;
  max-width: 100%;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-control.custom-input {
  border: none;
  border-bottom: 1px solid var(--light);
  background: transparent;
  border-radius: 0px;
  color: var(--light);
}

.mobile-input-div {
  position: relative;
}

.mobile-input-div .country-code {
  position: absolute;
  top: 7px;
  left: 2px;
  font-weight: 500;
  color: var(--light);
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.725rem;
}

.form-control.custom-input.mobile-input {
  padding-left: 3.25rem;
}

.form-control.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-form .form-check-label {
  color: var(--light);
  font-weight: 400;
  cursor: pointer;
  font-size: 0.8rem;
}

.btn-submit {
  background: var(--golden-gradient);
  color: var(--black);
  border: none;
  border: 1px solid var(--golden);
  padding: 0.5rem 2rem;
  margin: 1rem 0 0 0;
  text-transform: uppercase;
  font-weight: 500;
}

::-webkit-input-placeholder {
  color: var(--light) !important;
}

::-moz-placeholder {
  color: var(--light) !important;
}

:-ms-input-placeholder {
  color: var(--light) !important;
}

::-ms-input-placeholder {
  color: var(--light) !important;
}

::placeholder {
  color: var(--light) !important;
}

/* Target placeholders inside the modal form only */
.modal-form ::placeholder {
  color: var(--light) !important;
  opacity: 1;
}

.modal-form input::-webkit-input-placeholder {
  color: var(--light) !important;
}

.modal-form input:-moz-placeholder {
  color: var(--light) !important;
}

.modal-form input::-moz-placeholder {
  color: var(--light) !important;
}

.modal-form input:-ms-input-placeholder {
  color: var(--light) !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-bottom: 1px solid #dc3545;
}

.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.15rem;
}

/* ---------button of call now,  download brochure , enqurie now---------*/
.enquire-div {
  position: fixed;
  bottom: -50px;
  right: -50px;
  z-index: 999;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.enquire-div.show {
  bottom: 3%;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  right: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
}

.btn-enquire {
  background: var(--primary);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--light);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.45s ease;
  cursor: pointer;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.btn-enquire .txt {
  color: var(--light);
  text-transform: uppercase;
}

.btn-enquire .icon {
  width: 25px;
  height: 25px;
}

.btn-enquire .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-contact {
  background-color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 8px;
}

.download-div {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 999;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.download-div.show {
  bottom: 3%;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  left: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
}

.download-btn {
  background: var(--primary);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  border: 1px solid var(--light);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.45s ease;
  cursor: pointer;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.download-btn .txt {
  color: var(--light);
  text-transform: uppercase;
}

.download-btn .icon {
  width: 25px;
  height: 25px;
}

.download-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-heading {
  position: relative;
  z-index: 4;
}

.section-heading .section-title {
  font-size: 2.5vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: capitalize;
  font-family: var(--Futura);
}

.section-heading.light .section-title {
  color: var(--light);
}

.section-heading .section-subtitle {
  font-size: 1vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-family: var(--Futura);
}

.section-heading.light .section-subtitle {
  color: var(--light);
}

.section-heading .section-desc {
  font-size: 1vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading.light .section-desc {
  color: var(--light);
}

/* --------Modal Place holder starts */
.custom-placeholder::placeholder {
  color: white !important;
  opacity: 1;
}

.custom-placeholder:-ms-input-placeholder {
  /* Edge 12-18 */
  color: white !important;
}

.custom-placeholder::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important;
}

/* thank you page css */

section.secton-thankyou {
  height: calc(70dvh - 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0rem 1.5rem;
  margin: 8rem auto auto auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-weight: 600;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
}

.go_txt {
  font-size: 15px;
  color: #000;
  background-color: var(--white) !important;
  border-radius: 3.125rem;
  border: 1px solid #000;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.mobile-fixed-button {
  display: none;
}

/* thank you page css */

/* ***********Modal Form********* */
.modal-content {
  background: var(--primary);
  border-radius: unset;
  outline: 2px solid var(--light);
  outline-offset: 0px;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-header {
  border-bottom: 1px solid var(--light) !important;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
  z-index: unset !important;
}

/* ************contact us section starts****** */
/* footer start */
.text-light {
  color: var(--light) !important;
}

.section__footer {
  width: 100%;
  /* padding: 3rem 0 0 0; */
  background: url(../assets/images/elements/bg.webp) center no-repeat !important;
  background-size: cover;
}

.footer_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer_logo img {
  width: 70%;
  height: auto;
  object-fit: cover;
}

.footer_disc p {
  font-family: var(--futura-medium);
  font-size: 1vw;
  color: var(--primary);
}

.reg_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  margin: 1rem auto;
}

.reg_div h2 {
  font-family: var(--Futura);
  font-weight: 500;
  font-size: 1.1vw;
  color: var(--primary);
  text-transform: uppercase;
}

.reg_div p {
  font-family: var(--futura-medium);
  font-size: 1vw;
  color: var(--primary);
}

.reg_div p a {
  color: var(--primary);
}

.reg_div img {
  width: 30%;
  height: auto;
  object-fit: cover;
}

.copy_div {
  background: var(--primary);
  padding: 1.5rem 0;
}

.copy_para p {
  font-family: var(--Futura);
  font-weight: 500;
  font-size: 1vw;
  color: var(--light);
  margin-bottom: 0;
}

/* footer end */
@media only screen and (max-width: 1400px) {
  nav {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0.65rem 3rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.85rem;
  }
}


@media only screen and (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 2rem;
  }

  .btn-primary {
    font-size: 1.15vw;
  }

  .btn-primary {
    padding: 0.4rem 1.25rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 1.15vw;
  }
}


@media only screen and (max-width: 1200px) {
  .navbar-container .custom-visible {
    display: block;
    /* filter: invert(1); */
  }

  .navbar-links {
    display: none !important;
  }
}

@media only screen and (max-width: 1060px) {
  .navbar-container .navlogo .logo {
    width: 20vw;
  }

  .section-heading .section-desc {
    font-size: 1.25vw;
  }

  .section-heading .section-title {
    font-size: 3vw;
  }

  .section-heading .section-subtitle {
    font-size: 1.5vw;
  }

  .footer_disc p {
    font-size: 1.25vw;
  }

  .reg_div h2 {
    font-size: 1.5vw;
  }

  .reg_div p {
    font-size: 1.25vw;
  }

  .copy_para p {
    font-size: 1.25vw;
  }
}

@media only screen and (max-width: 991px) {
  nav {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0.65rem 1rem;
  }

  .section-heading .section-title {
    font-size: 3.5vw;
  }

  .section-heading .section-desc {
    font-size: 1.75vw;
  }

  .section-heading .section-subtitle {
    font-size: 1.75vw;
  }

  .desc-center {
    text-align: center;
  }

  .footer_disc p {
    font-size: 1.75vw;
  }

  .reg_div h2 {
    font-size: 2vw;
  }

  .reg_div p {
    font-size: 1.75vw;
  }

  .copy_para p {
    font-size: 1.75vw;
  }
}

@media only screen and (max-width: 767px) {
  header {
    top: 0;
    width: 100%;
  }

  .navbar-container .navlogo .logo {
    width: 150px;
  }

  .carousel-inner img {
    position: relative;
    height: 100%;
  }

  .nav-tabs .nav-link {
    font-size: 1rem;
  }

  .section-footer {
    padding: unset;
  }

  .navbar-container {
    justify-content: space-between;
  }

  .section-heading .section-title {
    font-size: 4vw;
  }

  .section-heading .section-desc {
    font-size: 2.25vw;
  }

  .section-heading .section-subtitle {
    font-size: 2vw;
  }

  .footer_disc p {
    font-size: 2.25vw;
  }

  .reg_div h2 {
    font-size: 2.5vw;
  }

  .reg_div p {
    font-size: 2.25vw;
  }

  .footer_logo img {
    width: 100%;
  }

  .copy_para p {
    font-size: 2.25vw;
  }

  .section__footer {
    /* padding: 3rem 0; */
  }
}

.modal-form .form-check-label {
  font-size: 0.7rem;
  word-break: break-all;
}


@media only screen and (max-width: 576px) {
  .navbar-container .navlogo {
    width: 100%;
  }

  .logo-middle {
    width: 100%;
    display: block;
  }

  .btn-primary {
    font-size: 3vw;
  }

  .section-heading .section-title {
    font-size: 5vw;
  }

  .section-heading .section-desc {
    font-size: 3vw;
  }

  .section-heading .section-subtitle {
    font-size: 2.75vw;
  }

  .footer_disc p {
    font-size: 3vw;
  }

  .reg_div h2 {
    font-size: 3.25vw;
  }

  .reg_div p {
    font-size: 3vw;
  }

  .copy_para p {
    font-size: 3vw;
  }

  .swiper-free-mode>.swiper-wrapper {
    justify-content: start !important;
  }
}

@media only screen and (max-width: 450px) {
  .navbar-container .navlogo .logo {
    width: 150px;
  }
}

@media only screen and (max-width: 300px) {}

.video-container .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.error-banner,
.error-modal,
.error-side {
  display: none;
  color: red;
  font-size: 13px;
  position: absolute;
  right: 20px;
  bottom: 15px;
}

.get_form .col-12,
.contact-form .col-xl-12 {
  position: relative;
}

.swiper-free-mode>.swiper-wrapper {
  justify-content: center;
}

.secton-privacy-policy p,
.secton-privacy-policy h4 {
  color: #fff !important;
}

.btn-contact-nav {
  cursor: pointer;
}

header.scrolled {
  background: #2e0e0e;
  border-bottom: 1px solid rgba(231, 204, 158, .15);
}

.offcanvas-link {
  display: block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e7cc9e;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(231, 204, 158, .1);
  transition: color .2s, padding .2s;
}

.form-check-input:checked {
  width: 20px;
  height: 20px;
  background-color: #b69265 !important;
  border-color: #b69265 !important;
  accent-color: #b69265 !important;
}

/* ============================================================
   Inline styles moved from index.html
============================================================ */
/* ============================================================
       REDESIGN OVERRIDES — Lead-Gen Landing Page
    ============================================================ */

html {
  font-size: 18px;
}

:root {
  --gold-1: #e7cc9e;
  --gold-2: #b69265;
  --gold-3: #986f42;
  --maroon: #451616;
  --maroon-dark: #2e0e0e;
  --maroon-glass: rgba(69, 22, 22, .85);
  --cream: #fff6e7;
  --off-white: #faf8f4;
  --grad-gold: linear-gradient(135deg, #e7cc9e 0%, #b69265 55%, #986f42 100%);
  --grad-maroon: linear-gradient(135deg, #451616 0%, #2e0e0e 100%);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --section-pad: 100px 0;
}

/* ---- Shared helpers ---- */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--futura-medium);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .5rem;
  display: block;
}

.divider-gold {
  width: 56px;
  height: 2px;
  background: var(--grad-gold);
  border: none;
  margin: 1.25rem 0;
}

.btn-gold {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--maroon);
  font-family: var(--futura-heavy);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity .25s;
}

.btn-gold:hover {
  opacity: .88;
  color: var(--maroon);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold-1);
  font-family: var(--futura-heavy);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: 2px;
  border: 1px solid var(--gold-2);
  cursor: pointer;
  transition: all .25s;
}

.btn-outline-gold:hover {
  background: var(--grad-gold);
  color: var(--maroon);
}

/* ============================================================
       NAVBAR
    ============================================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all .4s var(--ease-out);
  background: #4f1e1c66;
  border: none;
}

header.scrolled {
  background: var(--maroon-dark);
  border-bottom: 1px solid rgba(231, 204, 158, .15);
}

nav {
  padding: 0 4rem;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 1rem;
}

.navlogo .logo {
  width: 90px !important;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--futura-medium);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-1) !important;
  transition: color .2s;
  padding: 0 !important;
}

.nav-link:hover {
  color: #fff !important;
}

.nav-link.btn-contact-nav {
  background: var(--grad-gold);
  color: var(--maroon) !important;
  padding: .5rem 1.2rem !important;
  border-radius: 2px;
  font-family: var(--futura-heavy);
}

.navbar-link.btn-contact {
  margin-left: .5rem;
}

.custom-visible {
  display: none;
}

@media(max-width:991px) {
  nav {
    padding: 0 1.25rem;
  }

  .navbar-links {
    display: none;
  }

  .custom-visible {
    display: flex;
  }

  .navlogo .logo {
    width: 110px;
  }
}

/* Offcanvas */
.offcanvas {
  background: var(--maroon-dark);
  border-right: 1px solid rgba(231, 204, 158, .15);
}

.offcanvas-header .btn-close {
  filter: invert(1);
}

.offcanvas-navs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.offcanvas-link {
  display: block;
  font-family: var(--futura-medium);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-1);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(231, 204, 158, .1);
  transition: color .2s, padding .2s;
}

.offcanvas-link:hover {
  color: #fff;
  padding-left: .5rem;
}

.mob-logo {
  width: 120px;
}

.phone-icon {
  width: 20px;
}

.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
}

/* ============================================================
       HERO — Clean full-bleed banner image
    ============================================================ */
.section-hero {
  position: relative;
  background: var(--maroon-dark);
  overflow: hidden;
}

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

.hero-banner-img.desktop {
  display: block;
}

.hero-banner-img.mobile {
  display: none;
}

.hero-cta-bar {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  opacity: .65;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-family: var(--futura-medium);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-1);
}

.hero-scroll-hint svg {
  width: 18px;
  fill: var(--gold-1);
}

@keyframes heroScrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

@media(max-width:767px) {
  .hero-banner-img.desktop {
    display: none;
  }

  .hero-banner-img.mobile {
    display: block;
  }

  .hero-cta-bar {
    bottom: 5%;
    gap: .6rem;
    width: 90%;
  }

  .hero-cta-bar .btn-gold,
  .hero-cta-bar .btn-outline-gold {
    font-size: .72rem;
    padding: .75rem 1.5rem;
  }
}

/* ============================================================
       STATS BAR
    ============================================================ */
.stats-bar {
  background: var(--grad-gold);
  padding: 1.2rem 0;
  overflow: hidden;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .6rem 2.5rem;
  border-right: 1px solid rgba(69, 22, 22, .2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-val {
  background-image: linear-gradient(-225deg, #fff6e7 0%, #000 29%, rgba(69, 22, 22, .75) 67%, #fff6e7 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  font-family: var(--futura-heavy);
  font-size: 1.6rem;
  color: var(--maroon);
  line-height: 1;
}

.stat-item .stat-lbl {
    font-family: var(--futura-medium);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(69, 22, 22, .75);
    margin-top: .25rem;
    font-weight: 600;
}

@media(max-width:767px) {
  .stats-bar-inner {
    gap: 0;
    width: 98%;
    margin: auto;

  }

  .stat-item {
    padding: .6rem .3rem;
    width: 50%;
    text-align: center;
  }

  .stat-item:first-child,
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(69, 22, 22, .2);
  }

  .stat-item:nth-child(2) {
    border-right: 0px !important;

  }

  .stat-item .stat-val {
    font-size: 1.2rem;
  }
}

/* ============================================================
       OVERVIEW
    ============================================================ */
.section-overview-new {
  padding: var(--section-pad);
  background-image: url(../assets/images/bg-layer.webp);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.overview-text .section-label {
  margin-bottom: 1rem;
  color: var(--maroon);
}

.overview-title {
  font-family: var(--futura-heavy);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--maroon);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.overview-desc {
  font-family: var(--futura-medium);
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ov-chip {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.ov-chip-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(69, 22, 22, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.ov-chip-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--maroon);
}

.ov-chip-text strong {
  display: block;
  font-family: var(--futura-heavy);
  font-size: .88rem;
  color: var(--maroon);
}

.ov-chip-text span {
  font-family: var(--futura-medium);
  font-size: .75rem;
  color: #888;
}

.overview-img-col {
  position: relative;
}

.overview-img-col img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 2px;
}

.overview-img-badge {
  position: absolute;
  text-align: center;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--grad-gold);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
}

.overview-img-badge strong {
  display: block;
  font-family: var(--futura-heavy);
  font-size: 1.5rem;
  color: var(--maroon);
}

.overview-img-badge span {
  font-family: var(--futura-medium);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--maroon-dark);
}

@media(max-width:991px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .overview-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .overview-img-col img {
    height: 320px;
  }

  .overview-img-badge {
    left: .5rem;
    bottom: .5rem;
  }
}

/* ============================================================
       HIGHLIGHTS (Panorama of Prestige)
    ============================================================ */
.section-highlights {
  padding: var(--section-pad);
  background: var(--cream);
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-center .section-label {
  color: var(--maroon);
}

.section-header-center .divider-gold {
  margin: 1rem auto;
}

.section-header-center h2 {
  font-family: var(--futura-heavy);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--maroon);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: #fff;
  border: 1px solid rgba(69, 22, 22, .08);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(69, 22, 22, .12);
}

.highlight-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.highlight-card h3 {
  font-family: var(--futura-heavy);
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: .6rem;
}

.highlight-card p {
  font-family: var(--futura-medium);
  font-size: .82rem;
  color: #666;
  line-height: 1.7;
}

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

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

/* ============================================================
       UNIT PLANS
    ============================================================ */
.section-unit-plans {
  padding: var(--section-pad);
  background: var(--maroon);
}

.section-unit-plans .section-label {
  color: var(--gold-2);
}

.section-unit-plans h2 {
  font-family: var(--futura-heavy);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
}

.section-unit-plans .sub-desc {
  font-family: var(--futura-medium);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.unit-card {
  border: 1px solid rgba(231, 204, 158, .2);
  border-radius: 2px;
  overflow: hidden;
}

.unit-card-head {
  background: rgba(231, 204, 158, .07);
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(231, 204, 158, .15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unit-type {
  font-family: var(--futura-heavy);
  font-size: 1.4rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unit-price {
  font-family: var(--futura-medium);
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  text-align: right;
}

.unit-price strong {
  display: block;
  font-family: var(--futura-heavy);
  font-size: 1.1rem;
  color: var(--gold-1);
}

.unit-card-body {
  padding: 1.5rem 1.75rem;
}

.unit-area-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(231, 204, 158, .1);
}

.unit-area-row:last-child {
  border-bottom: none;
}

.unit-area-label {
  font-family: var(--futura-medium);
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

.unit-area-val {
  font-family: var(--futura-heavy);
  font-size: .88rem;
  color: var(--gold-1);
}

.unit-cta {
  width: 100%;
  background: transparent;
  border: 1px solid var(--gold-2);
  color: var(--gold-1);
  font-family: var(--futura-heavy);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem;
  cursor: pointer;
  margin-top: 1.25rem;
  border-radius: 2px;
  transition: all .25s;
}

.unit-cta:hover {
  background: var(--grad-gold);
  color: var(--maroon);
  border-color: transparent;
}

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

/* ============================================================
       AMENITIES — Icon-only deck grid
    ============================================================ */
.section-amenities-new {
  padding: var(--section-pad);
  background: var(--cream);
  overflow: hidden;
}

.section-amenities-new .section-label {
  color: var(--maroon);
}

.section-amenities-new h2 {
  font-family: var(--futura-heavy);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--maroon);
}

/* Deck tabs */
.amenity-tabs {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border-bottom: 2px solid rgba(69, 22, 22, .12);
}

.amenity-tab-btn {
  font-family: var(--futura-heavy);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(69, 22, 22, .35);
  background: none;
  border: none;
  padding: .85rem 2rem;
  cursor: pointer;
  position: relative;
  transition: color .3s;
}

.amenity-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-maroon);
  transform: scaleX(0);
  transition: transform .35s var(--ease-out);
}

.amenity-tab-btn.active {
  color: var(--maroon);
}

.amenity-tab-btn.active::after {
  transform: scaleX(1);
}

/* Deck sub-heading */
.amenity-deck-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(69, 22, 22, .1);
  margin-bottom: 0;
}

.amenity-deck-badge {
  background: var(--grad-gold);
  color: var(--maroon);
  font-family: var(--futura-heavy);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.amenity-deck-h {
  font-family: var(--futura-heavy);
  font-size: 1.05rem;
  color: var(--maroon);
}

.amenity-deck-count {
  font-family: var(--futura-medium);
  font-size: .75rem;
  color: rgba(69, 22, 22, .4);
  margin-left: auto;
}

/* Tab panels */
.amenity-panel {
  display: none;
}

.amenity-panel.active {
  display: block;
}

/* Icon grid — staggered reveal */
.amenity-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(69, 22, 22, .08);
  border: 1px solid rgba(69, 22, 22, .08);
  border-top: none;
}

@media(max-width:1100px) {
  .amenity-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:700px) {
  .amenity-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:460px) {
  .amenity-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    background: #fff6e7;
  }

  .dev-stat:first-child {
    border-left: 2px solid var(--gold-2) !important;
  }
}

/* Each icon cell */
.amenity-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  background: var(--cream);
  cursor: default;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), background .3s;
}

.amenity-panel.active .amenity-icon-item {
  opacity: 1;
  transform: translateY(0);
}

/* Icon SVG — SVGs are already maroon, just display naturally */
.amenity-icon-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform .35s var(--ease-out), opacity .3s;
}

.amenity-icon-item:hover img {
  transform: translateY(-4px) scale(1.1);
  opacity: .8;
}

/* Label */
.amenity-icon-name {
  font-family: var(--futura-medium);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(69, 22, 22, .55);
  text-align: center;
  line-height: 1.4;
  transition: color .3s;
}

.amenity-icon-item:hover .amenity-icon-name {
  color: var(--maroon);
}

/* Stagger delays via nth-child */
.amenity-icon-item:nth-child(1) {
  transition-delay: .04s, .04s, 0s
}

.amenity-icon-item:nth-child(2) {
  transition-delay: .08s, .08s, 0s
}

.amenity-icon-item:nth-child(3) {
  transition-delay: .12s, .12s, 0s
}

.amenity-icon-item:nth-child(4) {
  transition-delay: .16s, .16s, 0s
}

.amenity-icon-item:nth-child(5) {
  transition-delay: .20s, .20s, 0s
}

.amenity-icon-item:nth-child(6) {
  transition-delay: .24s, .24s, 0s
}

.amenity-icon-item:nth-child(7) {
  transition-delay: .28s, .28s, 0s
}

.amenity-icon-item:nth-child(8) {
  transition-delay: .32s, .32s, 0s
}

.amenity-icon-item:nth-child(9) {
  transition-delay: .36s, .36s, 0s
}

.amenity-icon-item:nth-child(10) {
  transition-delay: .40s, .40s, 0s
}

.amenity-icon-item:nth-child(11) {
  transition-delay: .44s, .44s, 0s
}

.amenity-icon-item:nth-child(12) {
  transition-delay: .48s, .48s, 0s
}

.amenity-icon-item:nth-child(13) {
  transition-delay: .52s, .52s, 0s
}

.amenity-icon-item:nth-child(14) {
  transition-delay: .56s, .56s, 0s
}

.amenity-icon-item:nth-child(15) {
  transition-delay: .60s, .60s, 0s
}

.amenity-icon-item:nth-child(16) {
  transition-delay: .64s, .64s, 0s
}

.amenity-icon-item:nth-child(17) {
  transition-delay: .68s, .68s, 0s
}

/* ============================================================
       LOCATION
    ============================================================ */
.section-location-new {
  padding: var(--section-pad);
  background: var(--maroon);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.location-map-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.location-map-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}

.location-map-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.conn-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  border: 1px solid rgba(231, 204, 158, .12);
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}

.conn-item:hover {
  border-color: rgba(231, 204, 158, .35);
  background: rgba(231, 204, 158, .05);
}

.conn-place {
  font-family: var(--futura-medium);
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
}

.conn-time {
  font-family: var(--futura-heavy);
  font-size: .8rem;
  color: var(--gold-2);
  background: rgba(231, 204, 158, .08);
  padding: .25rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
}

@media(max-width:991px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-map-wrap iframe {
    height: 300px;
  }
}

/* ============================================================
       DEVELOPER
    ============================================================ */
.section-developer {
  padding: var(--section-pad);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-developer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(69, 22, 22, .06) 0%, transparent 70%);
  border-radius: 50%;
}

.developer-grid {
  display: grid;
  text-align: center;
  align-items: center;
}

.developer-logo img {
  width: 160px;
  object-fit: contain;
}

.developer-text .section-label {
  color: var(--maroon);
  margin-bottom: 20px;
}

.developer-title {
  font-family: var(--futura-heavy);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--maroon);
  margin-bottom: 1.25rem !important;
  margin-top: 1.25rem !important;
}

.developer-desc {
  font-family: var(--futura-medium);
  font-size: .88rem;
  color: #555;
  line-height: 1.9;
}

.developer-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  justify-content: center;
}

.dev-stat {
  border-left: 2px solid var(--gold-2);
  padding-left: 1rem;
}

.dev-stat:first-child {
  border-left: none;
}

.dev-stat-val {
  font-family: var(--futura-heavy);
  font-size: 1.8rem;
  color: var(--maroon);
}

.dev-stat-lbl {
  font-family: var(--futura-medium);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-top: .15rem;
}

@media(max-width:767px) {
  .developer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .developer-stats {
    gap: 1.5rem;
  }
}

/* ============================================================
       CONTACT SECTION
    ============================================================ */
.section-contact-new {
  padding: var(--section-pad);
  background: var(--maroon-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: center;
}

.contact-info .section-label {
  color: var(--gold-2);
}

.contact-title {
  font-family: var(--futura-heavy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-addr {
  font-family: var(--futura-medium);
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-top: 1rem;
}

.contact-addr strong {
  color: var(--gold-1);
  display: block;
  margin-bottom: .3rem;
  font-family: var(--futura-heavy);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
}

.contact-phone a {
  font-family: var(--futura-heavy);
  font-size: 1.2rem;
  color: var(--gold-1);
  letter-spacing: .05em;
}

.contact-form-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(231, 204, 158, .18);
  border-radius: 4px;
  padding: 1.5rem 1.2rem;
}

.contact-form-card h3 {
  font-family: var(--futura-heavy);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.75rem;
}

.contact-form-card input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(231, 204, 158, .2);
  border-radius: 2px;
  padding: .9rem 1.1rem;
  color: #fff;
  font-family: var(--futura-medium);
  font-size: .84rem;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 1rem;
  display: block;
}

.contact-form-card input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.contact-form-card input:focus {
  border-color: var(--gold-2);
}

.contact-form-card .phone-row {
  display: flex;
  margin-bottom: 1rem;
}

.contact-form-card .phone-row input {
  margin-bottom: 0;
}

.contact-form-card .cc-code {
  width: 68px;
  flex-shrink: 0;
  border-radius: 2px 0 0 2px !important;
  border-right: none !important;
  text-align: center;
}

.contact-form-card .phone-num {
  flex: 1;
  border-radius: 0 2px 2px 0 !important;
}

.contact-form-card .btn-submit-contact {
  width: 100%;
  background: var(--grad-gold);
  color: var(--maroon);
  font-family: var(--futura-heavy);
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .25s;
  margin-top: .5rem;
}

.contact-form-card .btn-submit-contact:hover {
  opacity: .88;
}

.contact-form-card .disclaimer-small {
  font-family: var(--futura-medium);
  font-size: .62rem;
  color: rgba(255, 255, 255, .35);
  margin-top: -3px;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media(max-width:991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
       GALLERY TEASER
    ============================================================ */
/* ============================================================
       GALLERY — Slider redesign
    ============================================================ */
.section-gallery-new {
  padding: var(--section-pad);
  background-image: url(../assets/images/bg-layer.webp);
  background-size: cover;
  overflow: hidden;
}

.section-gallery-new .section-header-center h2 {
  color: var(--maroon);
}

.section-gallery-new .section-header-center .section-label {
  color: var(--maroon);
}

.section-gallery-new .divider-gold {
  margin-left: auto;
  margin-right: auto;
}

/* Tab pills */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  font-family: var(--futura-heavy);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  border: 1px solid rgba(69, 22, 22, .2);
  border-radius: 100px;
  background: transparent;
  color: rgba(69, 22, 22, .45);
  cursor: pointer;
  transition: all .25s;
}

.gallery-tab-btn:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}

.gallery-tab-btn.active {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--maroon);
}

/* Main slider */
.gallery-main-swiper {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(69, 22, 22, .14);
}

.gallery-main-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s var(--ease-out);
  display: block;
}

.gallery-main-swiper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}

.gallery-main-swiper .swiper-slide.swiper-slide-active img {
  transition: transform 1.4s var(--ease-out);
}

/* Slide caption */
.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(20, 5, 5, .88) 0%, transparent 100%);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all .5s var(--ease-out) .15s;
  pointer-events: none;
}

.swiper-slide-active .gallery-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-slide-caption .cap-cat {
  font-family: var(--futura-medium);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: block;
  margin-bottom: .3rem;
}

.gallery-slide-caption .cap-title {
  font-family: var(--futura-heavy);
  font-size: 1.1rem;
  color: #fff;
}

/* Custom nav arrows */
.gallery-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.gallery-nav-arrows {
  display: flex;
  gap: .75rem;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(69, 22, 22, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  background: transparent;
  flex-shrink: 0;
}

.gallery-arrow:hover {
  background: var(--grad-gold);
  border-color: transparent;
}

.gallery-arrow:hover svg {
  fill: var(--maroon);
}

.gallery-arrow svg {
  width: 18px;
  fill: var(--maroon);
  transition: fill .25s;
}

.gallery-arrow.prev svg {
  transform: rotate(180deg);
}

/* Slide counter */
.gallery-counter {
  font-family: var(--futura-medium);
  font-size: .8rem;
  color: rgba(69, 22, 22, .4);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.gallery-counter .cur {
  font-family: var(--futura-heavy);
  font-size: 1.6rem;
  color: var(--maroon);
  line-height: 1;
}

.gallery-counter .sep {
  font-size: .6rem;
  color: rgba(69, 22, 22, .2);
}

.gallery-counter .tot {
  font-size: .75rem;
}

/* Thumbnail strip */
.gallery-thumb-swiper {
  margin-top: 1rem;
}

.gallery-thumb-swiper .swiper-slide {
  width: 100px;
  height: 68px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  opacity: .45;
  transition: opacity .3s;
  border: 2px solid transparent;
}

.gallery-thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--maroon);
}

.gallery-thumb-swiper .swiper-slide:hover {
  opacity: .8;
}

/* Progress bar */
.gallery-progress {
  height: 2px;
  background: rgba(69, 22, 22, .1);
  margin-top: 1.25rem;
  border-radius: 2px;
  overflow: hidden;
}

.gallery-progress-bar {
  height: 100%;
  background: var(--grad-maroon);
  width: 0%;
  transition: width .3s linear;
  border-radius: 2px;
}

/* CTA row */
.gallery-cta-row {
  text-align: center;
  margin-top: 2.5rem;
}

@media(max-width:767px) {
  .gallery-main-swiper {
    height: 280px;
  }

  .gallery-thumb-swiper .swiper-slide {
    width: 72px;
    height: 50px;
  }

  .gallery-slide-caption {
    padding: 1rem 1.25rem;
  }

  .gallery-slide-caption .cap-title {
    font-size: .88rem;
  }
}

@media(max-width:480px) {
  .gallery-main-swiper {
    height: 240px;
  }
}

/* ============================================================
       FOOTER
    ============================================================ */
/* ============================================================
       FOOTER — Redesigned
    ============================================================ */
.section__footer {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

.section__footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

/* Main footer body */
.footer-body {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 160px;
  gap: 3.5rem;
  align-items: start;
}

/* Col 1 — Logo + tagline */
.footer-col-logo .footer_logo img {
  width: 140px;
  display: block;
}

.footer-tagline {
  font-family: var(--futura-medium);
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-top: 1.1rem;
  letter-spacing: .04em;
}

/* Col 2 — Project info */
.footer-col-label {
  font-family: var(--futura-heavy);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .85rem;
  display: block;
}

.footer-addr {
  font-family: var(--futura-medium);
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.85;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
}

.footer-phone a {
  font-family: var(--futura-heavy);
  font-size: .88rem;
  color: var(--gold-1);
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s;
}

.footer-phone a:hover {
  color: #fff;
}

.footer-phone-icon {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(25%) saturate(600%) hue-rotate(5deg);
}

/* Col 3 — Disclaimer */
.footer-disc {
  font-family: var(--futura-medium);
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.85;
}

.footer-disc-title {
  font-family: var(--futura-heavy);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .85rem;
  display: block;
}

/* Col 4 — RERA */
.reg_div {
  text-align: center;
}

.reg_div .footer-col-label {
  text-align: left;
}

.reg_div .rera-num {
  font-family: var(--futura-heavy);
  font-size: .78rem;
  color: var(--gold-1);
  letter-spacing: .06em;
  margin-bottom: .85rem;
  display: block;
}

.reg_div img {
  width: 100px;
  margin: 0 auto .75rem;
  display: block;
  border: 1px solid rgba(231, 204, 158, .2);
  padding: 4px;
  background: #fff;
  border-radius: 2px;
}

.reg_div a {
  font-family: var(--futura-medium);
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
  display: block;
  text-align: center;
  line-height: 1.5;
}

.reg_div a:hover {
  color: var(--gold-2);
}

/* Gold divider */
.footer-divider {
  height: 1px;
  background: rgba(231, 204, 158, .12);
  margin: 0;
}

/* Copyright bar */
.copy_div {
  background: var(--maroon-dark);
  padding: 1.1rem 0;
}

.copy_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.copy_para p {
  font-family: var(--futura-medium);
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .06em;
  margin: 0;
}

.copy-links {
  display: flex;
  gap: 1.5rem;
}

.copy-links a {
  font-family: var(--futura-medium);
  font-size: .65rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
}

.copy-links a:hover {
  color: var(--gold-2);
}

@media(max-width:991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col-logo {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-tagline {
    margin-top: 0;
  }
}

@media(max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .copy_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
       FIXED SIDE BUTTONS
    ============================================================ */
.fixed-side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.fixed-side-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-gold);
  color: var(--maroon);
  font-family: var(--futura-heavy);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1rem .65rem;
  cursor: pointer;
  border: none;
  border-radius: 2px 0 0 2px;
  transition: opacity .25s;
}

.fixed-side-btn:hover {
  opacity: .85;
}

.fixed-side-btn.outline {
  background: var(--maroon);
  color: var(--gold-1);
  border: 1px solid var(--gold-2);
  border-right: none;
}

@media(max-width:767px) {
  .fixed-side-btns {
    display: none;
  }
}

/* Mobile bottom bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--maroon-dark);
  border-top: 1px solid rgba(231, 204, 158, .2);
}

.mobile-bottom-bar .row {
  margin: 0;
}

.mobile-bottom-bar .btn-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border: none;
  cursor: pointer;
  font-family: var(--futura-heavy);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mobile-bottom-bar .btn-mobile-bar.primary {
  background: var(--grad-gold);
  color: var(--maroon);
}

.mobile-bottom-bar .btn-mobile-bar.secondary {
  background: transparent;
  color: var(--gold-1);
  border-right: 1px solid rgba(231, 204, 158, .2);
}

@media(max-width:767px) {
  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }
}

/* ============================================================
       ANIMATIONS
    ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="left"].revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="right"].revealed {
  transform: translateX(0);
}

[data-reveal-delay="1"] {
  transition-delay: .1s;
}

[data-reveal-delay="2"] {
  transition-delay: .2s;
}

[data-reveal-delay="3"] {
  transition-delay: .3s;
}

[data-reveal-delay="4"] {
  transition-delay: .4s;
}

/* hero entrance */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero-content>* {
  animation: heroFadeUp .9s var(--ease-out) both;
}

.hero-content>*:nth-child(1) {
  animation-delay: .2s;
}

.hero-content>*:nth-child(2) {
  animation-delay: .35s;
}

.hero-content>*:nth-child(3) {
  animation-delay: .5s;
}

.hero-content>*:nth-child(4) {
  animation-delay: .65s;
}

.hero-content>*:nth-child(5) {
  animation-delay: .8s;
}

.hero-form-card {
  animation: heroFadeUp .9s var(--ease-out) .6s both;
}

/* counter */
.count-up {
  display: inline;
}

/* form error shared */
.error-msg {
  color: #ff8a80;
  font-size: .65rem;
  margin-top: .25rem;
  display: none;
  font-family: var(--futura-medium);
}

/* Modal (keep existing) */
.modal-content {
  background: var(--maroon-dark);
  border: 1px solid rgba(231, 204, 158, .2);
  border-radius: 4px;
}

.modal-header {
  border-bottom: 1px solid rgba(231, 204, 158, .1);
  padding: 1.25rem 1.5rem;
}

.modal-logo img {
  width: 120px;
}

.btn-modal-close {
  filter: invert(1);
}

.modal-body {
  padding: 1.75rem 1.5rem;
}

.custom-input {
  background: rgba(255, 255, 255, .06) !important;
  padding: .7rem .75rem;
  border: 1px solid rgba(231, 204, 158, .2) !important;
  border-radius: 2px !important;
  color: #fff !important;
  font-family: var(--futura-medium) !important;
  font-size: .84rem !important;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, .4) !important;
}

.custom-input:focus {
  border-color: var(--gold-2) !important;
  box-shadow: none !important;
}

.checkbox-label {
  font-family: var(--futura-medium);
  font-size: .68rem;
  color: rgba(255, 255, 255, .45);
}

.form-check-input {
  background-color: transparent;
  border-color: var(--gold-2);
}

.btn-submit {
  width: 100%;
  background: var(--grad-gold);
  color: var(--maroon);
  font-family: var(--futura-heavy);
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .25s;
  margin-top: .25rem;
}

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

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}