* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #111;
  overflow-x: hidden;
  line-height: 1.7;
}

body.popup-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1{
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

h2{
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
}

h3{
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
}

h4{
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

p{
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section[id] {
  scroll-margin-top: 72px;
}

/* Navbar */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 70px;
  padding: 14px 5%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: box-shadow 0.3s ease;
}

.navbar.has-shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #006b35;
}

.menu-toggle {
  display: none;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  max-width: 1500px;
  min-height: 650px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, #202020, #555);
}

.hero > img {
  width: 100%;
  max-width: 1500px;
  height: 650px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: absolute;
  top: 90px;
  right: 4%;
  z-index: 10;
  width: 320px;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.location-badge {
  display: inline-block;
  padding: 8px 15px;
  margin-bottom: 15px;
  border-radius: 50px;
  background: #f3f3f3;
  font-size: 14px;
}

.hero-content h1 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.3;
  font-weight:700;
}

.subtitle {
  margin-bottom: 14px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-features span {
  padding: 8px 12px;
  border-radius: 50px;
  background: #f5f5f5;
  font-size: 13px;
}

/* Sirf section headings center */
.section > .container > h2:first-child{
  text-align:center;
  font-size:38px;
  font-weight:700;
  margin-bottom:25px;
}

/* Content headings left */
.section h2:not(:first-child){
  text-align:left;
  font-size:24px;
  font-weight:600;
  margin:25px 0 15px;
}




.section h3{
  text-align:left;
  font-size:22px;
  font-weight:600;
  margin:20px 0 10px;
}

.section h4{
  text-align:left;
  font-size:20px;
  font-weight:600;
  margin:18px 0 10px;
}

.section p{
  text-align:left;
  margin-bottom:15px;
  line-height:1.8;
}

#overview ul{
  padding-left:20px;
  margin-bottom:15px;
}

#overview ul li{
  list-style:disc;
  margin-bottom:8px;
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #006b35;
  color: #ffffff;
  font-size: 16px;
}

.hero-buttons {
  display: block;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background: #006b35;
  color: #ffffff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #004f28;
  transform: translateY(-2px);
}

/* Sections */

.section {
  padding: 90px 0;
}

.light-bg {
  background: #f8f9fa;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  background: #e5e5e5;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.compact-image-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.compact-image-grid img {
  height: 180px;
}

.floor-plan-grid img {
  object-fit: contain;
  padding: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.master-plan {
  width: min(100%, 650px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.master-plan img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: #f3f3f3;
  transition: transform 0.4s ease;
}

.master-plan img:hover {
  transform: scale(1.02);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card,
.amenity {
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-weight: 600;
}

/* Price */

.table-wrapper {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th {
  padding: 15px;
  background: #006b35;
  color: #ffffff;
}

.price-table td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: center;
}

/* Location */

.location-list {
  margin-bottom: 30px;
}

.location-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.location-map {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 15px;
  background: #ddd;
}

.location-map img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

/* Amenities */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.amenity {
  padding: 22px;
}

/* FAQ */

.faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 18px;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: #555;
}

.faq-answer.is-open {
  display: block;
}

.popup-content > form > input {
  min-height: 54px;
}

.phone-field {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 54px;
  margin-bottom: 15px;
}

.popup-content .phone-field select,
.popup-content .phone-field input {
  height: 54px;
  min-height: 54px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #ddd;
  outline: none;
}

.popup-content .phone-field .country-code {
  flex: 0 0 120px;
  width: 120px;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #f5f5f5;
  color: #111;
  cursor: pointer;
  font-size: 14px;
}

.popup-content .phone-field .phone-number {
  flex: 1 1 auto;
  width: 1%;
  border-radius: 0 8px 8px 0;
  background: #fff;
}

.phone-field:focus-within .country-code,
.phone-field:focus-within .phone-number {
  border-color: #006b35;
}

.popup-content button[type="submit"] {
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: 8px;
  background: #006b35;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}

/* Popup */

.popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.popup.is-open {
  display: flex;
}

.popup-content {
  position: relative;
  width: 420px;
  max-width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.popup-content h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.popup-content input {
  width: 100%;
  min-height: 54px;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.captcha-box {
  margin-bottom: 15px;
}

#captchaQuestion {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

/* Footer */

footer p,
.footer-grid li,
.footer-grid a{
  color:#fff;
}

footer {
  padding: 60px 0 20px;
  background: #000;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-grid h3 {
  margin-bottom: 15px;
}

.footer-grid a {
  color: #fff;
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}


.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 34px;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0%,
  84%,
  100% {
    transform: scale(1);
  }
  92% {
    transform: scale(1.08);
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 10px 5% 20px;
    background: #000;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 9px 0;
  }
}

@media (max-width: 991px) {
  .hero-content {
    top: 120px;
    right: auto;
    left: 50%;
    width: 90%;
    max-width: 450px;
    transform: translate(-50%, 20px);
  }

  .hero-content.is-visible {
    transform: translate(-50%, 0);
  }

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

  .compact-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero,
  .hero > img {
    min-height: 700px;
    height: 700px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .section {
    padding: 70px 0;
  }
  
h1{
  font-size:24px;
}

h2{
  font-size:26px;
}

h3{
  font-size:24px;
}

h4{
  font-size:20px;
}


  .price-box {
    font-size: 16px;
  }

  .map-overlay {
    font-size: 21px;
  }

  .gallery-grid,
  .compact-image-grid {
    grid-template-columns: 1fr;
  }

  .compact-image-grid {
    justify-items: center;
  }

  .compact-image-grid img {
    width: min(100%, 420px);
    height: 210px;
  }

  .master-plan {
    width: min(100%, 520px);
  }

  .master-plan img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .navbar {
    padding-inline: 4%;
  }

  .logo {
    font-size: 18px;
  }

  .hero-content {
    top: 100px;
    padding: 18px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .btn-primary {
    padding: 14px 16px;
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  h1{
    font-size:20px;
  }

  h2{
    font-size:26px;
  }

  h3{
    font-size:22px;
  }

  h4{
    font-size:18px;
  }

  .price-table {
    min-width: 520px;
  }

  .popup {
    padding: 12px;
  }

  .popup-content {
    max-height: calc(100vh - 24px);
    padding: 24px 18px;
  }

  .popup-content .phone-field .country-code {
    flex-basis: 105px;
    width: 105px;
    padding-inline: 8px;
  }

  .compact-image-grid img {
    height: 190px;
  }

  .master-plan img {
    height: 260px;
  }

  .whatsapp-btn {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .hero-content,
  .whatsapp-btn {
    transition: none;
    animation: none;
  }
}
