* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: #ffffff;
  color: #222222;
}


/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 50px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Logo */

.logo {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 8px 14px;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}


/* Header Right */

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.enquire-btn {
  padding: 16px 34px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.menu-icon {
  width: 70px;
  height: 52px;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.menu-icon span {
  width: 30px;
  height: 1px;
  background: #ffffff;
}


/* Side Menu */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  transition: 0.3s ease;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  padding: 90px 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: 0.4s ease;
}

.side-menu a {
  color: #333333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 18px;
}

.close-menu {
  position: absolute;
  top: 24px;
  right: 34px;
  background: none;
  border: none;
  font-size: 42px;
  cursor: pointer;
  color: #333333;
}

.menu-active .menu-overlay {
  opacity: 1;
  visibility: visible;
}

.menu-active .side-menu {
  right: 0;
}


/* Hero Section */

.hero-section {
  width: 100%;
  height: 82vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.hero-title {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.hero-title h1 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-title p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* RERA Card */

.rera-card {
  position: absolute;
  top: 26%;
  right: 8%;
  width: 210px;
  background: rgba(184, 138, 43, 0.88);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.rera-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.qr-box {
  width: 105px;
  height: 105px;
  background: #ffffff;
  color: #111111;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.rera-card p {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 600;
}

.small-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  margin: 13px auto;
}

.rera-card a {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* Info Strip */

.info-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding: 28px 50px;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  color: #b5b5b5;
  font-size: 17px;
  line-height: 1.3;
}

.info-item span {
  font-size: 12px;
  color: #777777;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.info-item p {
  margin-top: 5px;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 1px;
}


/* Overview Section */

.overview-section {
  position: relative;
  padding: 90px 0 130px;
  background: #ffffff;
  overflow: hidden;
}

.overview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  width: calc(100% - 100px);
  margin: 0 auto;
}

.overview-image {
  height: 720px;
  overflow: hidden;
  background: #eeeeee;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-content {
  max-width: 620px;
}

.overview-content h2 {
  font-size: 34px;
  font-weight: 300;
  color: #666666;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.overview-content p {
  font-size: 15px;
  line-height: 1.95;
  color: #3f3f3f;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 22px;
}

.overview-watermark {
  position: absolute;
  right: 7%;
  bottom: 20px;
  font-size: 92px;
  font-weight: 300;
  letter-spacing: 18px;
  color: #f0f0f0;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}


/* Chat Button */

.chat-btn {
  position: fixed;
  right: 28px;
  bottom: 20px;
  z-index: 999;
  background: #bc851b;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}


/* Responsive */

@media (max-width: 1100px) {
  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-image {
    height: 520px;
  }

  .rera-card {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 18px 20px;
  }

  .logo {
    padding: 6px 10px;
  }

  .logo img {
    height: 44px;
  }

  .enquire-btn {
    display: none;
  }

  .menu-icon {
    width: 54px;
    height: 42px;
  }

  .side-menu {
    width: 85%;
    right: -85%;
    padding: 80px 32px;
  }

  .side-menu a {
    font-size: 15px;
  }

  .hero-section {
    height: 88vh;
    min-height: 600px;
  }

  .rera-card {
    display: none;
  }

  .hero-title {
    width: 90%;
    bottom: 45px;
  }

  .hero-title h1 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .hero-title p {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .info-strip {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .overview-section {
    padding: 70px 0 90px;
  }

  .overview-container {
    width: calc(100% - 40px);
    gap: 34px;
  }

  .overview-image {
    height: 390px;
  }

  .overview-content h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .overview-content p {
    font-size: 14px;
  }

  .overview-watermark {
    display: none;
  }

  .chat-btn {
    right: 15px;
    bottom: 15px;
  }
}
/* Project Phases Section */

.phases-section {
  padding: 110px 50px;
  background: #18281d;
  border-top: 1px solid #eeeeee;
}

.phases-heading {
  max-width: 820px;
  margin: 0 auto 65px;
  text-align: center;
}

.phases-heading span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.phases-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #555555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.phases-heading p {
  font-size: 15px;
  line-height: 1.9;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 500;
}

.phases-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #dedede;
  border-left: 1px solid #dedede;
  background: #ffffff;
}

.phase-box {
  min-height: 520px;
  padding: 48px;
  background: #ffffff;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.phase-box:hover {
  background: #fbfaf7;
}

.phase-top span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 26px;
}

.phase-top h3 {
  font-size: 38px;
  font-weight: 300;
  color: #333333;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.phase-details {
  margin: 45px 0;
  border-top: 1px solid #eeeeee;
}

.phase-details div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid #eeeeee;
}

.phase-details small {
  font-size: 11px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.phase-details p {
  font-size: 13px;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: right;
}

.phase-link {
  display: inline-block;
  width: fit-content;
  color: #b88a2b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #b88a2b;
  padding-bottom: 7px;
}


/* Responsive Project Phases */

@media (max-width: 900px) {
  .phases-section {
    padding: 80px 20px;
  }

  .phases-heading h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .phases-heading p {
    font-size: 14px;
  }

  .phases-grid {
    grid-template-columns: 1fr;
  }

  .phase-box {
    min-height: auto;
    padding: 34px 26px;
  }

  .phase-top h3 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .phase-details {
    margin: 34px 0;
  }

  .phase-details div {
    flex-direction: column;
    gap: 6px;
  }

  .phase-details p {
    text-align: left;
  }
}
/* Amenities Section */

.amenities-section {
  padding: 110px 0;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  overflow: hidden;
}

.amenities-heading {
  max-width: 820px;
  margin: 0 auto 65px;
  text-align: center;
  padding: 0 20px;
}

.amenities-heading span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.amenities-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #555555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.amenities-heading p {
  font-size: 15px;
  line-height: 1.9;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 500;
}

.amenities-scroll {
  width: 100%;
  overflow: hidden;
  background: #faf9f6;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.amenities-track {
  display: flex;
  width: max-content;
  animation: amenitiesScroll 42s linear infinite;
}

.amenities-scroll:hover .amenities-track {
  animation-play-state: paused;
}

.amenity-card {
  width: 340px;
  background: #ffffff;
  border-right: 1px solid #e5e5e5;
}

.amenity-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #eeeeee;
}

.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-content {
  min-height: 145px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.amenity-content span {
  font-size: 12px;
  color: #b88a2b;
  letter-spacing: 3px;
  font-weight: 800;
}

.amenity-content h3 {
  font-size: 20px;
  font-weight: 400;
  color: #444444;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.45;
}

@keyframes amenitiesScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* Responsive Amenities */

@media (max-width: 768px) {
  .amenities-section {
    padding: 80px 0;
  }

  .amenities-heading h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .amenities-heading p {
    font-size: 14px;
  }

  .amenity-card {
    width: 280px;
  }

  .amenity-img {
    height: 190px;
  }

  .amenity-content {
    min-height: 125px;
    padding: 24px;
  }

  .amenity-content h3 {
    font-size: 16px;
  }

  .amenities-track {
    animation-duration: 34s;
  }
}
/* Project Details / Phases Section */

.phases-section {
  padding: 110px 50px;
  background: #faf9f6;
  border-top: 1px solid #eeeeee;
}

.phases-heading {
  max-width: 860px;
  margin: 0 auto 65px;
  text-align: center;
}

.phases-heading span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.phases-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #555555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.phases-heading p {
  font-size: 15px;
  line-height: 1.9;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 500;
}

.phases-grid {
  max-width: 1250px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.phase-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 42px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.phase-box:hover {
  background: #fbfaf7;
}

.phase-top span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 24px;
}

.phase-top h3 {
  font-size: 34px;
  font-weight: 300;
  color: #333333;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.phase-details {
  margin: 42px 0;
  border-top: 1px solid #eeeeee;
}

.phase-details div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 0;
  border-bottom: 1px solid #eeeeee;
}

.phase-details small {
  font-size: 11px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.phase-details p {
  font-size: 13px;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: right;
}

.phase-link {
  display: inline-block;
  width: fit-content;
  color: #b88a2b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #b88a2b;
  padding-bottom: 7px;
}


/* Configuration Cards */

.config-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.config-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 42px;
  text-align: center;
}

.config-card span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.config-card h3 {
  font-size: 36px;
  font-weight: 300;
  color: #333333;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.config-card p {
  font-size: 15px;
  color: #666666;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.config-card strong {
  display: block;
  font-size: 34px;
  color: #b88a2b;
  font-weight: 800;
  letter-spacing: 2px;
}


/* Floor Plans Section */

.plans-section {
  padding: 110px 50px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}

.plans-heading {
  max-width: 860px;
  margin: 0 auto 65px;
  text-align: center;
}

.plans-heading span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.plans-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #555555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.plans-heading p {
  font-size: 15px;
  line-height: 1.9;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 500;
}

.plans-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.plan-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.plan-image {
  height: 430px;
  background: #eeeeee;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  background: #ffffff;
}

.plan-content {
  padding: 36px;
}

.plan-content span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 20px;
}

.plan-content h3 {
  font-size: 26px;
  font-weight: 300;
  color: #444444;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.4;
}

.plan-details {
  border-top: 1px solid #eeeeee;
  margin-bottom: 34px;
}

.plan-details div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}

.plan-details small {
  font-size: 11px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.plan-details p {
  font-size: 13px;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: right;
}

.plan-btn {
  display: inline-block;
  color: #b88a2b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #b88a2b;
  padding-bottom: 7px;
}


/* Responsive */

@media (max-width: 900px) {
  .phases-section,
  .plans-section {
    padding: 80px 20px;
  }

  .phases-heading h2,
  .plans-heading h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .phases-heading p,
  .plans-heading p {
    font-size: 14px;
  }

  .phases-grid,
  .config-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .phase-box,
  .config-card {
    padding: 30px 26px;
    min-height: auto;
  }

  .phase-top h3 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .phase-details div,
  .plan-details div {
    flex-direction: column;
    gap: 6px;
  }

  .phase-details p,
  .plan-details p {
    text-align: left;
  }

  .config-card h3 {
    font-size: 28px;
  }

  .config-card strong {
    font-size: 26px;
  }

  .plan-image {
    height: 360px;
  }

  .plan-content {
    padding: 28px;
  }

  .plan-content h3 {
    font-size: 22px;
    letter-spacing: 2px;
  }
}
/* Location Section */

.location-section {
  padding: 110px 50px;
  background: #faf9f6;
  border-top: 1px solid #eeeeee;
}

.location-heading {
  max-width: 860px;
  margin: 0 auto 65px;
  text-align: center;
}

.location-heading span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.location-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #555555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.location-heading p {
  font-size: 15px;
  line-height: 1.9;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 500;
}

.location-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.location-map {
  height: 560px;
  background: #eeeeee;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.location-row:last-child {
  border-bottom: none;
}

.location-row span {
  font-size: 14px;
  color: #555555;
  letter-spacing: 1px;
  font-weight: 700;
}

.location-row p {
  font-size: 13px;
  color: #b88a2b;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
}


/* Responsive Location */

@media (max-width: 900px) {
  .location-section {
    padding: 80px 20px;
  }

  .location-heading h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 380px;
  }

  .location-content {
    padding: 28px;
  }

  .location-row {
    flex-direction: column;
    gap: 6px;
  }
}
/* Enquiry Section */

.enquiry-section {
  padding: 110px 50px;
  background: #18281d;
  color: #ffffff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.enquiry-content span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.enquiry-content h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.enquiry-content p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 1px;
  font-weight: 500;
}

.enquiry-info {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.enquiry-info div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.enquiry-info small {
  display: block;
  font-size: 11px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 6px;
}

.enquiry-info p {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}

.enquiry-form {
  background: #ffffff;
  color: #222222;
  padding: 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dddddd;
  padding: 16px 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  outline: none;
  letter-spacing: 1px;
  background: transparent;
  color: #222222;
}

.enquiry-form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-bottom-color: #b88a2b;
}

.enquiry-form button {
  width: 100%;
  height: 54px;
  margin-top: 30px;
  border: none;
  background: #b88a2b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}


/* Responsive Enquiry */

@media (max-width: 900px) {
  .enquiry-section {
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquiry-content h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .enquiry-form {
    padding: 30px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* Small Left-Aligned Footer */

.site-footer {
  background: #18281d;
  color: #ffffff;
  padding: 36px 50px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 50px;
  align-items: flex-start;
  padding-bottom: 22px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-brand p {
  max-width: 360px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.8px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 10px;
  color: #b88a2b;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-contact p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-contact h4:not(:first-child) {
  margin-top: 16px;
}

.footer-disclaimer {
  width: 100%;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  font-size: 9.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.5px;
  max-width: 1100px;
}

.footer-bottom {
  width: 100%;
  margin: 0;
  padding-top: 14px;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


/* Mobile Footer */

@media (max-width: 900px) {
  .site-footer {
    padding: 36px 20px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand h3 {
    font-size: 20px;
  }
}
.footer-logo-box {
  width: fit-content;
  background: transparent;
  padding: 0;
  margin-bottom: 14px;
}

.footer-logo-box img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-box {
  width: fit-content;
  margin-bottom: 14px;
}

.footer-logo-box img {
  height: 58px;
  width: auto;
  display: block;
}
.footer-logo-box {
  width: fit-content;
  margin-bottom: 14px;
}

.footer-logo-box img {
  height: 58px;
  width: auto;
  display: block;
}
.footer-logo-box img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-box img {
  height: 70px;
}
/* White Premium Footer */

.site-footer {
  background: #ffffff;
  color: #222222;
  padding: 42px 50px 18px;
  border-top: 1px solid #e5e5e5;
}

.footer-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 45px;
  align-items: flex-start;
  padding-bottom: 28px;
}

.footer-logo-box {
  width: fit-content;
  margin-bottom: 14px;
}

.footer-logo-box img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  letter-spacing: 0.8px;
}

.footer-links h4,
.footer-contact h4,
.partner-logo-item span {
  font-size: 10px;
  color: #b88a2b;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  color: #444444;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #b88a2b;
}

.footer-contact p {
  font-size: 12px;
  line-height: 1.6;
  color: #555555;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-contact h4:not(:first-child) {
  margin-top: 16px;
}

/* Partner logos on right */

.footer-partners {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-logo-item span {
  display: block;
  margin-bottom: 10px;
}

.partner-logo-item img {
  height: 54px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Disclaimer */

.footer-disclaimer {
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #eeeeee;
}

.footer-disclaimer p {
  font-size: 10px;
  line-height: 1.6;
  color: #777777;
  letter-spacing: 0.5px;
  max-width: 1100px;
}

.footer-bottom {
  width: 100%;
  margin: 0;
  padding-top: 14px;
}

.footer-bottom p {
  font-size: 10px;
  color: #777777;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Mobile Footer */

@media (max-width: 900px) {
  .site-footer {
    padding: 36px 20px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-logo-box img {
    height: 58px;
  }

  .partner-logo-item img {
  height: 100px !important;
  max-width: 300px !important;
  width: auto;
  object-fit: contain;
  display: block;
}
}
/* Footer Partner Logos - Bigger Size */

.footer-partners {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-logo-item span {
  display: block;
  font-size: 10px;
  color: #b88a2b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

.partner-logo-item img {
  height: 90px !important;
  max-width: 280px !important;
  width: auto;
  object-fit: contain;
  display: block;
}

/* If first logo still looks small, increase only Strategic Partner logo */
.partner-logo-item:first-child img {
  height: 105px !important;
  max-width: 310px !important;
}

/* Project Developed By logo */
.partner-logo-item:nth-child(2) img {
  height: 85px !important;
  max-width: 260px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .partner-logo-item img {
    height: 70px !important;
    max-width: 220px !important;
  }

  .partner-logo-item:first-child img {
    height: 80px !important;
  }

  .partner-logo-item:nth-child(2) img {
    height: 70px !important;
  }
}
/* Enquiry Section */

.enquiry-section {
  padding: 110px 50px;
  background: #18281d;
  color: #ffffff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.enquiry-content span {
  display: block;
  font-size: 12px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 18px;
}

.enquiry-content h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.enquiry-content p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 1px;
  font-weight: 500;
}

.enquiry-info {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.enquiry-info div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.enquiry-info small {
  display: block;
  font-size: 11px;
  color: #b88a2b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 6px;
}

.enquiry-info p {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}

.enquiry-form {
  background: #ffffff;
  color: #222222;
  padding: 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dddddd;
  padding: 16px 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  outline: none;
  letter-spacing: 1px;
  background: transparent;
  color: #222222;
}

.enquiry-form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-bottom-color: #b88a2b;
}

.enquiry-form button {
  width: 100%;
  height: 54px;
  margin-top: 30px;
  border: none;
  background: #b88a2b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.enquiry-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* Responsive Enquiry */

@media (max-width: 900px) {
  .enquiry-section {
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquiry-content h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .enquiry-form {
    padding: 30px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.qr-box {
  width: 90px;
  height: 90px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Only colour update for Project Phases */

section#phases.phases-section {
  background: #18281d !important;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}

/* Top heading area */
#phases .phases-heading span {
  color: #d6a64f !important;
}

#phases .phases-heading h2 {
  color: #ffffff !important;
}

#phases .phases-heading p {
  color: #d8e0d4 !important;
}

/* Main grid background */
#phases .phases-grid {
  background: #18281d !important;
  border-top-color: rgba(255, 255, 255, 0.16) !important;
  border-left-color: rgba(255, 255, 255, 0.16) !important;
}

/* Phase boxes */
#phases .phase-box {
  background: #18281d !important;
  border-right-color: rgba(255, 255, 255, 0.16) !important;
  border-bottom-color: rgba(255, 255, 255, 0.16) !important;
}

#phases .phase-box:hover {
  background: #203425 !important;
}

/* Phase text */
#phases .phase-top span {
  color: #d6a64f !important;
}

#phases .phase-top h3 {
  color: #ffffff !important;
}

/* Details lines */
#phases .phase-details {
  border-top-color: rgba(255, 255, 255, 0.14) !important;
}

#phases .phase-details div {
  border-bottom-color: rgba(255, 255, 255, 0.14) !important;
}

#phases .phase-details small {
  color: #aab7ad !important;
}

#phases .phase-details p {
  color: #f4f7f2 !important;
}

/* Link */
#phases .phase-link {
  color: #d6a64f !important;
  border-bottom-color: #d6a64f !important;
}
/* Hero Image Slider */

.hero-section {
  width: 100%;
  height: 82vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.rera-card {
  z-index: 2;
}

.hero-title {
  z-index: 2;
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Mobile Responsive CSS */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Header */

  .site-header {
    padding: 16px 18px;
  }

  .nav-container {
    align-items: center;
  }

  .logo img {
    height: 42px;
  }

  .enquire-btn {
    display: none;
  }

  .menu-icon {
    width: 52px;
    height: 42px;
  }

  .menu-icon span {
    width: 26px;
  }

  .side-menu {
    width: 85%;
    right: -85%;
    padding: 80px 30px;
  }

  .side-menu a {
    font-size: 15px;
    letter-spacing: 1.5px;
  }


  /* Hero */

  .hero-section {
    height: 86vh;
    min-height: 560px;
  }

  .hero-title {
    width: 90%;
    bottom: 42px;
  }

  .hero-title h1 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .hero-title p {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .rera-card {
    display: none;
  }


  /* Info Strip */

  .info-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .info-item span {
    font-size: 11px;
  }

  .info-item p {
    font-size: 12px;
  }


  /* Overview */

  .overview-section {
    padding: 70px 0 90px;
  }

  .overview-container {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 34px;
  }

  .overview-image {
    height: 360px;
  }

  .overview-content h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .overview-content p {
    font-size: 14px;
  }

  .overview-watermark {
    display: none;
  }


  /* Project Details / Phases */

  .phases-section,
  .plans-section,
  .location-section {
    padding: 75px 20px;
  }

  .phases-heading h2,
  .plans-heading h2,
  .location-heading h2,
  .amenities-heading h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .phases-heading p,
  .plans-heading p,
  .location-heading p,
  .amenities-heading p {
    font-size: 14px;
  }

  .phases-grid,
  .config-grid,
  .plans-grid,
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .phase-box,
  .config-card,
  .plan-content {
    padding: 28px 24px;
  }

  .phase-top h3,
  .plan-content h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .phase-details div,
  .plan-details div {
    flex-direction: column;
    gap: 6px;
  }

  .phase-details p,
  .plan-details p {
    text-align: left;
  }


  /* Amenities */

  .amenities-section {
    padding: 75px 0;
  }

  .amenity-card {
    flex: 0 0 270px;
    width: 270px;
  }

  .amenity-img {
    height: 180px;
  }

  .amenity-content {
    min-height: 120px;
    padding: 22px;
  }

  .amenity-content h3 {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .amenities-track {
    animation-duration: 34s;
  }


  /* Floor Plan */

  .plan-image {
    height: 330px;
  }

  .plan-image img {
    padding: 18px;
  }

  .config-card h3 {
    font-size: 26px;
  }

  .config-card strong {
    font-size: 24px;
  }


  /* Location */

  .location-map {
    height: 340px;
  }

  .location-content {
    padding: 26px;
  }

  .location-row {
    flex-direction: column;
    gap: 6px;
  }


  /* Enquiry */

  .enquiry-section {
    padding: 75px 20px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .enquiry-content h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .enquiry-form {
    padding: 28px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }


  /* Footer */

  .site-footer {
    padding: 36px 20px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-logo-box img {
    height: 55px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .partner-logo-item img {
    height: 70px !important;
    max-width: 220px !important;
  }

  .footer-disclaimer p {
    font-size: 9px;
  }


  /* Chat Button */

  .chat-btn {
    right: 14px;
    bottom: 14px;
    padding: 11px 15px;
    font-size: 12px;
  }
}
.plan-image img {
  width: 100%;
  display: block;
  filter: blur(6px);   /* blur amount */
  transition: 0.3s ease;
}
.plan-image img {
  width: 100%;
  display: block;
  filter: blur(6px);
  transition: 0.3s ease;
}

.plan-image img:hover {
  filter: blur(0);
}
.plan-image img {
  width: 100%;
  display: block;
  filter: blur(6px);
  transition: 0.3s ease;
}

.plan-image img:hover {
  filter: blur(0);
}
.plan-image img {
  filter: blur(6px);
}
.request-plan-box {
  position: relative;
}

.request-plan-box img {
  filter: blur(6px);
}

.request-plan-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: #000000;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10;
}