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

:root {
  --dark: #0d2016;
  --gold: #c49a3c;
  --gold-light: #e0b84e;
  --white: #fff;
  --off-white: #f7f5f0;
  --light-bg: #f2f0eb;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-muted: #777;
  --border: #e0ddd6;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--light-bg)
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(13, 32, 22, 0.15);
  backdrop-filter: blur(4px);
  transition: all .4s ease
}

nav.scrolled {
  background: rgba(13, 32, 22, 0.97);
  padding: 10px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35)
}

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

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: .85;
  transition: all .2s
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s
}

.nav-cta:hover {
  background: var(--gold-light)
}

.project-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 130px;
}

.hero-bg-janakpuri {
  position: absolute;
  inset: 0;
  background: url('../images/janakpuri.png') center/cover no-repeat;
  transition: transform 8s ease
}

.hero-bg-universal {
  position: absolute;
  inset: 0;
  background: url('../images/index-bg-new.png') center/cover no-repeat;
  transition: transform 8s ease
}

.project-hero:hover .hero-bg {
  transform: scale(1.04)
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 32, 22, .25) 0%, rgba(13, 32, 22, .96) 100%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px 60px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb span {
  color: var(--gold)
}

.hero-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px
}

.badge-rera {
  background: rgba(196, 154, 60, .2);
  border: 1px solid var(--gold);
  color: var(--gold)
}

.badge-jda {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px
}

.hero-title span {
  color: var(--gold)
}

.hero-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 30px;
  max-width: 560px;
  line-height: 1.6
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap
}

.hstat-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  line-height: 1
}

.hstat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px)
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-outline-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08)
}

.sticky-tabs {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto
}

.stab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  display: block
}

.stab:hover,
.stab.active {
  color: var(--dark);
  border-bottom-color: var(--gold)
}

.sec {
  padding: 80px 60px
}

.sec-alt {
  background: #fff
}

.sec-dark {
  background: var(--dark);
  color: #fff
}

.tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px
}

.sec-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px
}

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

.overview-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative
}

.overview-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block
}

.overview-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 32, 22, .9);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600
}

.overview-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px
}

.highlight-item {
  background: var(--off-white);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--gold)
}

.hi-icon {
  font-size: 20px;
  flex-shrink: 0
}

.hi-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  transition: all .3s;
  border-bottom: 3px solid transparent
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  border-bottom-color: var(--gold)
}

.fc-icon {
  font-size: 36px;
  margin-bottom: 14px
}

.fc-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark)
}

.fc-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px
}

.am-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: all .25s;
  cursor: default
}

.am-card:hover {
  background: rgba(196, 154, 60, .15);
  border-color: var(--gold)
}

.am-icon {
  font-size: 26px;
  margin-bottom: 8px
}

.am-name {
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  line-height: 1.4
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

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

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.conn-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 18px
}

.conn-icon {
  font-size: 22px;
  flex-shrink: 0
}

.conn-place {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark)
}

.conn-dist {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s
}

.gallery-item:hover img {
  transform: scale(1.06)
}

.gallery-item.tall {
  grid-row: span 2
}

.gallery-item.tall img {
  height: 100%
}

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1c4028 100%);
  padding: 80px 60px
}

.cta-inner {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: center
}

.cta-form {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 36px
}

.cta-form-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px
}

.cta-form-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.fgroup {
  margin-bottom: 14px
}

.fgroup label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.fgroup input,
.fgroup select {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s
}

.fgroup input::placeholder {
  color: rgba(255, 255, 255, .35)
}

.fgroup input:focus,
.fgroup select:focus {
  border-color: var(--gold)
}

.fgroup select option {
  background: var(--dark)
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background .2s
}

.btn-submit:hover {
  background: var(--gold-light)
}

.cta-info {
  color: #fff
}

.cta-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 18px
}

.cta-info h2 span {
  color: var(--gold)
}

.cta-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 28px
}

.cta-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.cci {
  display: flex;
  align-items: center;
  gap: 14px
}

.cci-icon {
  width: 42px;
  height: 42px;
  background: rgba(196, 154, 60, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.cci-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .5)
}

.cci-val {
  font-size: 14px;
  font-weight: 600
}

/* USP strip */
.usp-strip {
  background: var(--gold);
  padding: 18px 60px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 700;
  font-size: 14px
}

footer {
  background: #0a1a0e;
  color: #fff;
  padding: 40px 60px 24px
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px
}

.social-links {
  display: flex;
  gap: 10px
}

.sl {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s
}

.sl:hover {
  background: var(--gold)
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, .35)
}

.fbl {
  display: flex;
  gap: 18px
}

.fbl a {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s
}

.fbl a:hover {
  color: rgba(255, 255, 255, .7)
}

.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  text-decoration: none;
  animation: pwa 2.5s infinite
}

@keyframes pwa {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .65), 0 0 0 8px rgba(37, 211, 102, .1)
  }
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px
}

/* =========================================================
   START : RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .sec {
    padding: 64px 40px;
  }

  .overview-grid,
  .location-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .project-hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding: 0 24px 40px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .sec {
    padding: 56px 24px;
  }

  .nav-links {
    gap: 16px;
  }

  .features-grid,
  .highlight-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.tall {
    grid-row: auto;
  }

  .hero-stats-row {
    gap: 16px;
    flex-direction: column;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-gold,
  .btn-outline-w {
    width: 100%;
    text-align: center;
  }

  .usp-strip {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 40px 24px 24px;
  }

  nav {
    padding: 14px 24px;
  }

  nav.scrolled {
    padding: 10px 24px;
  }
}