/* Font Family ***********************************************************************/

@font-face {
  font-family: "Trajan Pro";
  src: url("../fonts/Trajan/TrajanPro-Bold.eot");
  src: url("../fonts/Trajan/TrajanPro-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Trajan/TrajanPro-Bold.woff2") format("woff2"),
    url("../fonts/Trajan/TrajanPro-Bold.woff") format("woff"),
    url("../fonts/Trajan/TrajanPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Pro";
  src: url("../fonts/Trajan/TrajanPro-Regular.eot");
  src: url("../fonts/Trajan/TrajanPro-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Trajan/TrajanPro-Regular.woff2") format("woff2"),
    url("../fonts/Trajan/TrajanPro-Regular.woff") format("woff"),
    url("../fonts/Trajan/TrajanPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "cerapro-light";
  src: url("../fonts/cerapro/Cera-Pro-Light.otf");
}

@font-face {
  font-family: "cerapro-regular";
  src: url("../fonts/cerapro/cerapro-regular.otf");
}
@font-face {
  font-family: "cerapro-medium";
  src: url("../fonts/cerapro/Cera-Pro-Medium.otf");
}
@font-face {
  font-family: "cerapro-bold";
  src: url("../fonts/cerapro/cerapro-bold.otf");
}

@font-face {
  font-family: "Futura-Bk-BT-Book";
  src: url("../fonts/Futura/Futura-Bk-BT-Book.ttf");
}

/* common css ******************************************************************************/

:root {
  --white: #ffffff;
  --black: #000000;
  --golden: #f3c495;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

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

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Trajan Pro", sans-serif;
  background-color: var(--black);
}

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

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
a:hover {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  padding: 0;
  margin-bottom: 15px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.cmn-btn {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--golden);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-family: "cerapro-light";
}

.cmn-btn:hover {
  color: var(--black);
  background: var(--golden);
}

/* Header */
header {
  width: 100%;
  padding: 45px 30px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .right-logo {
  position: absolute;
  right: 40px;
}

header .right-logo img {
  max-width: 150px;
  width: 100%;
}
header .center-logo img {
  max-width: 240px;
  width: 100%;
}

header .center-logo {
  position: relative;
}

header .center-logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40%;
  height: 1px;
  background-color: var(--golden);
  transform: translateX(-50%);
  animation: line infinite ease-in-out;
  animation-duration: 4s;
}

@keyframes line {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

header h2 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  background: url("../images/banner-bg.png") no-repeat;
  background-size: 100% 100% !important;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: -126px;
  padding: 25% 0 7%;
  /* height: 100vh; */
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 22%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.4rem;
  color: var(--golden);
  font-weight: bold;
  line-height: 1.1;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  font-family: "Futura-Bk-BT-Book";
}

.hero .btn-box {
  margin-top: 153px;
}

/* Counter Section */
.counter-section {
  padding: 60px 20px;
  background: var(--black);
  text-align: center;
  display: flex;
  justify-content: center;
  row-gap: 40px;
  flex-wrap: wrap;
}

.counter-box {
  flex: 1 1 200px;
  max-width: 300px;
  padding: 30px;
  position: relative;
}
.counter-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 50%;
  width: 2px;
  background-color: #ffffff29;
  transform: translateY(-50%);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--golden);
}

.counter-number::after {
  content: "+";
  margin-left: 4px;
  font-size: 2rem;
  color: var(--golden);
}

.counter-label {
  font-size: 1.4rem;
  margin-top: 10px;
  color: var(--white);
  font-weight: bold;
}

.form-wrapper {
  background: linear-gradient(135deg, #0e0e0e, #1a1a1a);
  border: 1px solid var(--golden);
  padding: 50px 30px;
  /* max-width: 80%; */
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: -120px;
  position: relative;
}

.form-wrapper h2 {
  color: var(--golden);
  font-size: 1.5rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.form-wrapper form {
  max-width: 80%;
  margin: 0 auto;
}
.form-wrapper .row {
  row-gap: 50px;
}
.form-wrapper input {
  width: 100%;
  padding: 14px 15px;
  border: none;
  outline: none;
  background: var(--white);
  font-size: 1rem;
  border-radius: 2px;
  font-family: "cerapro-light";
}

.form-wrapper .select-option {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/down-arrow.png") no-repeat;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 30px;
  padding-right: 2.5rem;
  width: 100%;
  padding: 14px 15px;
  border: none;
  outline: none;
  background-color: var(--white);
  font-size: 1rem;
  border-radius: 2px;
  font-family: "cerapro-light";
}

.form-wrapper input::placeholder {
  color: var(--black);
}
.form-wrapper button.cmn-btn {
  margin-top: 40px;
  padding: 12px 50px;
}

.form-wrapper.desktop {
  display: block;
}
.form-wrapper.mobile {
  display: none;
}

.project-section {
  text-align: center;
  padding: 200px 20px 50px;
  background-color: var(--golden);
}

.project-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.main-slider .item img {
  width: 100%;
  height: auto;
  max-height: 550px;
}

.thumb-slider {
  margin-top: 20px;
}

.thumb-slider .item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

/* Hide thumb arrows */
.thumb-slider .owl-nav {
  display: none;
}

/* main slider arrows */
.main-slider .owl-nav button {
  position: absolute;
  top: 40%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px !important;
  line-height: 22px;
  transition: 0.3s;
}

.main-slider .owl-nav button img {
  max-width: 15px;
}
.main-slider .owl-nav .owl-prev {
  left: -45px;
}
.main-slider .owl-nav .owl-next {
  right: -45px;
}

.neighborhood-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--golden);
}
.neighborhood-section .row {
  max-width: 80%;
  margin: 0 auto;
}

.neighborhood-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.neighborhood-section p.sub-heading {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #333;
  font-family: "Futura-Bk-BT-Book";
}

.feature-box {
  text-align: center;
  margin-bottom: 30px;
}

.feature-box img {
  margin-bottom: 15px;
  max-width: 50px;
  max-height: 50px;
  object-fit: cover;
  transition: 0.5s;
}
.feature-box img:hover {
  transform: scale(1.1);
}

.feature-box p {
  font-size: 1.2rem;
  margin: 0;
  color: var(--black);
  font-family: "Futura-Bk-BT-Book";
  line-height: 1.3;
}

.features-section {
  padding: 0px 20px 300px;
  background-color: var(--golden);
}

.feature-card {
  background: #fdd7b1;
  border-radius: 8px;
  padding: 60px 20px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  transform: scale(1.07) !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  max-width: 55px;
  margin-bottom: 25px;
}

.feature-card p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
  color: var(--black);
  font-family: "Futura-Bk-BT-Book";
}

.features-section .desktop {
  display: flex;
}
.features-section .mobile {
  display: none;
}

.plots-section {
  color: #fff;
  padding: 60px 20px;
}

.plots-section h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--golden);
  font-family: "cerapro-medium";
}

.plots-section h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--golden);
  font-family: "cerapro-medium";
}

.plots-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  font-family: "cerapro-light";
}

.plots-section img {
  max-width: 100%;
  cursor: pointer;
}
.plots-section .row {
  position: relative;
  padding: 50px 0px 50px 50px;
  margin-top: -20%;
  z-index: 9;
}
.plots-section .row::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #1a1a1a;
  z-index: -1;
  border: 1px solid var(--golden);
}

.plots-section .modal-header {
  border-bottom: none;
}

.plots-section .modal-dialog {
  max-width: 70%;
}
/* .plots-section .modal-dialog,
.contact-section .modal-dialog {
  max-width: 80%;
} */

.plots-section .modal-dialog img,
.contact-section .modal-dialog img {
  display: flex;
  margin: 0 auto;
}

.contact-section {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
}

.contact-section h5 {
  color: var(--golden);
  margin-bottom: 25px;
  font-family: "cerapro-medium";
  margin-left: 30px;
}

.contact-section p {
  margin-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1.3;
  display: flex;
  align-items: self-start;
  font-family: "cerapro-medium";
  color: #e4e4e4;
}

.contact-section .box-1 img {
  margin-right: 10px;
  max-width: 22px;
}
.map-img {
  max-width: 100%;
  border: 1px solid var(--golden);
  border-radius: 5px;
}

.contact-section .cmn-btn {
  background-color: var(--golden);
  color: var(--black);
  font-family: "cerapro-bold";
  margin-left: 30px;
  margin-top: 20px;
  padding: 12px 60px;
}

.contact-section .modal-header {
  border: none;
}

/*04-09-2025*/

span.wpcf7-not-valid-tip {
  text-transform: capitalize;
  font-family: "Futura-Bk-BT-Book";
  text-align: left;
}

.form-wrapper .cmn-btn {
  width: auto !important;
  display: inline-block;
  padding: 12px 24px;
  background: transparent !important;
  border: 1px solid var(--golden) !important;
  color: var(--white);
  text-decoration: none !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  border-radius: 4px !important;
  font-family: "cerapro-light" !important;
}

.form-wrapper .cmn-btn {
  margin-top: 40px;
  padding: 12px 50px;
}

.form-wrapper .cmn-btn:hover {
  color: var(--black) !important;
  background: var(--golden) !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  color: #ffb900;
  font-family: "cerapro-light" !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  color: #dc3232;
  font-family: "cerapro-light" !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: green;
  color: green;
}




/* Thank You Page Styling */
.thank-you {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    padding: 20px;
}

.thank-you .thank-you-box {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 70px 40px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    animation: fadeInUp 0.8s ease;
}


.thank-you h4 {
    font-family: 'Trajan Pro', serif;
    font-weight: bold;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.thank-you p {
    font-family: 'Trajan Pro', serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}


.thank-you .button-bx {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.thank-you .cmn-btn {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--golden, #d4af37);
    color: #5e4444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thank-you .cmn-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #dfa162;
    box-shadow: 0 6px 18px rgb(0 0 0 / 37%);
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

