/* =========================
        CERA GR
      ========================= */

/* Regular */
@font-face {
  font-family: "Cera GR Regular";
  src: url("./fonts/Cera-GR.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* =========================
   SATOSHI
========================= */


/* Regular */
@font-face {
  font-family: "Satoshi Regular";
  src: url("./fonts/Satoshi-Regular_0.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}


:root {
  --navy: #19232f;
  --navy-2: #1b2533;
  --navy-soft: #22303f;
  --gold: #b48e47;
  --gold-deep: #a87a26;
  --gold-light: #b48e47;
  --beige: #f3ece1;
  --beige-card: #f1ead9;
  --ink: #1c2b3a;
  --gray: #6c7178;
  --gray-soft: #8d9197;
  --line-gold: linear-gradient(90deg, #caa44a, #8d6a23);
}

* {
  box-sizing: border-box;
}
body {
  font-family: "Satoshi Regular";
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}
.font-display {
  font-family: "Cera GR Regular";
}
h1,
h2,
h3,
h4 {
  font-family: "Cera GR Regular";
  margin: 0;
}

a {
  text-decoration: none;
}

.container-xl {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 70px;
}
@media (max-width: 991px) {
  .container-xl {
    padding: 0 32px;
  }
}
@media (max-width: 575px) {
  .container-xl {
    padding: 0 20px;
  }
}

/* ---------- BUTTONS ---------- */
.btn-gold {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(140deg, #a06c18, #f3ee88, #a06c18);
  color: #26211a;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 8px 18px rgba(160, 120, 40, 0.28);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(160, 120, 40, 0.38);
}

.form-control-gold {
  width: 100%;
  border: 1.5px solid #cdb676;
  border-radius: 30px;
  padding: 13px 22px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 14px;
  outline: none;
}
.form-control-gold::placeholder {
  color: #444;
  opacity: 0.85;
}

/* ---------- HEADER ---------- */
.site-header {
  background: #fff;
  padding: 22px 0;
}
.logo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.logo-wrap img {
  max-width: 200px;
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: url("./g1.webp") center top / cover no-repeat;
  padding: 64px 0 70px;
  color: #fff;
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #1b2736;
  opacity: 0.85;
}

.hero .container-xl {
  position: relative;
}
.hero .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #eef0f2;
}
.hero h1 {
  font-size: 3.6rem;
  /* font-weight: 600; */
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero h1 span {
  font-size: 1.5rem;
  font-weight: 400;
}
.hero p {
  color: #dfe2e5;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
}
.hero-pills {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.pill {
  border: 1.5px solid var(--gold);
  border-radius: 40px;
  padding: 14px 30px;
  text-align: center;
  background: rgb(255 255 255 / 22%);
  min-width: 210px;
}
.pill strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.pill span {
  display: block;
  font-size: 0.82rem;
  color: #d7dadd;
  margin-top: 2px;
}

.callback-card {
  background: var(--navy-2);
  border: 1.5px solid var(--gold);
  border-radius: 26px;
  padding: 34px 32px 30px;
}
.callback-card h3 {
  font-size: 1.45rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.callback-card .sub {
  color: #c9ccd0;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.callback-card .note {
  color: #b9bdc2;
  font-size: 0.78rem;
  text-align: center;
  margin-top: 14px;
}

.enquire-tab {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  background: linear-gradient(120deg, #cba75a, #9c7a32);
  color: #241d12;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 16px 8px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  letter-spacing: 0.03em;
  z-index: 50;
  cursor: pointer;
  box-shadow: -4px 0 14px rgba(0, 0, 0, 0.25);
  display: none;
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 78px 0;
}
.section-title {
  font-size: 3.6rem;
  /* font-weight: 600; */
  color: var(--gold);
  margin-bottom: 30px;
}
.bg-beige {
  background: #f2ece2;
}

/* ---------- PROJECT OVERVIEW ---------- */
.overview-text p {
  color: #3a3f45;
  font-size: 1.02rem;
  /* line-height: 1.75; */
  margin-bottom: 18px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* border-radius: 0 26px 26px 26px; */
  /* overflow: hidden; */
  /* border: 1px solid #ece3d2; */
  margin-top: 28px;
  gap: 10px;
}
.stat-cell {
  background: #f7f1e6;
  padding: 26px 18px;
  text-align: center;
  /* border-right: 1px solid #e4dac4;
        border-bottom: 1px solid #e4dac4; */
}
.stat-cell:nth-child(1) {
  border-radius: 50px 0px 0px 0px;
}

.stat-cell .num {
  font-size: 30px;
  color: #081525;
  line-height: 1;
}
.stat-cell .lbl {
  font-size: 0.92rem;
  color: #081525;
  margin-top: 2px;
}

.overview-photo {
  width: 100%;
  height: 100%;
  min-height: 415px;
  object-fit: cover;
  border-radius: 0px 0px 50px 0px;
  display: block;
}

/* ---------- PRICING ---------- */
.price-card {
  border: 2px solid var(--gold);
  border-radius: 40px;
  padding: 34px 30px 28px;
  height: 100%;
  text-align: center;
  box-shadow:
    rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}
.price-card h4 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 12px;
}
.price-card .feat {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.price-card .area {
  color: #3a3f45;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.price-card .area b {
  color: var(--ink);
  font-weight: 700;
}
.price-card hr {
  border-top: 1px solid var(--gold);
  margin: 18px 0;
  opacity: 1;
}

/* ---------- AMENITIES ---------- */
.grid--amenities .col-6.col-md-3 {
  padding: 0;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.grid--amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.amenity-card {
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  padding: 30px 18px 24px;
  text-align: center;
  height: 100%;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.amenity-card .icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 15px;
}

.amenity-card h5 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 4px;
}
.amenity-card p {
  color: #aab0b8;
  font-size: 22px;
  margin: 0;
  line-height: 1.4;
}

/* ---------- GALLERY ---------- */
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item.r1 {
  border-radius: 50px 0px 0px 0px;
}
.gallery-item.r2 {
  border-radius: 0px;
}
.gallery-item.r3 {
  border-radius: 0px;
}
.gallery-item.r4 {
  border-radius: 0px;
}
.gallery-item.r5 {
  border-radius: 0px;
}
.gallery-item.r6 {
  border-radius: 0px 0px 50px 0px;
}

/* ---------- LOCATION ---------- */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}
.map-wrap img {
  width: 100%;
  display: block;
}
.legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: var(--ink);
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.loc-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #2c333b;
  margin-bottom: 30px;
}
.loc-list .item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee6d6;
}
.loc-list .item:last-child {
  border-bottom: none;
}
.loc-list .bar {
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  flex: 0 0 4px;
}
.loc-list .txt {
  font-size: 1rem;
  line-height: 1.7;
  color: #2c333b;
}
.loc-list .txt b {
  color: var(--ink);
}

/* ---------- ABOUT ---------- */
.about--heading {
    width: 220px;
}
.about-text p {
  color: #3a3f45;
  font-size: 1rem;
  line-height: 1.8;
}
.max-w-about {
    width: 100%;
    max-width: 80%;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: #cfd2d6;
  padding: 54px 0 44px;
}
.site-footer .rera {
  font-weight: 600;
  color: #f1f2f4;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  line-height: 1.7;
}
.site-footer .pay {
  font-size: 0.92rem;
  color: #aeb2b7;
  margin-top: 18px;
  line-height: 1.7;
}
.site-footer .pay b {
  color: #e7e9eb;
}

.qr-box img {
  width: 170px;
  height: 170px;
  display: block;
}

/* Thank You page */
.thank--you--section h1 {
    font-weight: bold;
    color: var(--black);
    margin-bottom: 20px;
}

.thank--you--section p {
    margin-bottom: 0px;
}

.thank--you--section .btn-gold {
    max-width: 200px;
    border: 2px solid #a06c18;
    font-weight: 900;
    color: var(--black);
}

.thank--you--section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    background: #f2ece2;
    width: 100%;
}
/* Thank You page end */

@media(max-width:1280px){
    .amenity-card .icon img {
        width: 60px;
        height: 60px;
    }

    .amenity-card h5 {
        font-size: 19px;
    }

    .amenity-card p {
        font-size: 16px;
    }

    .amenity-card {
        padding: 10px;
    }
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .callback-card {
    margin-top: 20px;
    padding: 30px 15px;
  }

  .legend {
    justify-content: flex-start;
  }
  .enquire-tab {
    padding: 10px 6px;
    font-size: 0.72rem;
    top: 25%;
    transform: none;
  }
  .hero-pills {
    margin-right: 0px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }
  .grid--amenities {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    margin-top: 0;
  }
  .section {
    padding: 40px 0;
  }
  .section-title {
    margin-bottom: 15px;
  }
  .location--section {
        padding-bottom: 0;
    }
    .mobile--about {
    border-bottom: 1px solid #b48e47;
    width: 93%;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #b48e47;
    margin-top: 20px;
}
.about-text p {
    text-align: justify;
    line-height: 1.5;
}
.max-w-about {
    width: 100%;
    max-width: 100%;
}

}
@media (max-width: 768px) {
  .logo-wrap img {
    max-width: 150px;
  }
  .hero {
    background-size: 1200px;
    padding-bottom: 0;
  }
  .hero:after {
    content: "";
    width: 100%;
    height: 35%;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .hero .container-xl {
    z-index: 1;
  }
  .gallery--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 !important;
  }

  .gallery--grid .col-md-4 {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .gallery-img {
    height: 150px;
  }
  .pill {
    padding: 9px;
    min-width: auto;
    width: 100%;
    border-radius: 50px;
  }

  .pill strong {
    font-size: 15px;
  }
  .qr-box img {
    width: 100%;
    height: auto;
  }

  .site-footer .rera {
    font-size: 10px;
  }

  .site-footer .pay {
    font-size: 12px;
    margin-top: 8px;
  }
  .site-footer {
        padding: 30px 8px;
    }

    .form-control-gold {
        padding: 10px 15px;
        font-size: 14px;
        color: #000;
    }

    .btn-gold {
        padding: 10px 15px;
    }
}
@media (max-width: 580px) {
  .amenity-card .icon img {
    width: 50px;
    height: 50px;
  }

  .amenity-card h5 {
    font-size: 15px;
    margin-bottom: 0;
  }

  .amenity-card {
    padding: 5px;
  }

  .amenity-card p {
    font-size: 13px;
  }
  .about--heading {
        width: 100%;
    }
  
}
