body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fefefe;
  color: #333;
}
/* HEADER STYLE */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f1f1f;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 60px;
  cursor: pointer;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  display: inline-block;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #d9a437;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.menu-close {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1001;
}

/* MOBILE STYLES */
@media (max-width: 767px) {
  .logo {
    width: 100%;
    text-align: center;
  }

  .main-nav {
    flex: 1;
    justify-content: flex-end;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: #1f1f1f;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 20px;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid #333;
  }

  .nav-links li a {
    width: 100%;
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-close {
    display: block;
  }

  .site-header {
    flex-direction: row;
  }
}
.menu-toggle {
  margin-right: 15px;
  margin-top: 10px;
}
/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  
}

.hero .hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease-in-out;
  
}

.slide1 { background-image: url('images/hero1.jpeg'); }
.slide2 { background-image: url('images/hero2.jpeg'); }
.slide3 { background-image: url('images/hero3.jpeg'); }

@media (max-width: 767px) {
  .slide1 { background-image: url('images/hero1-mobile.jpg'); }
  .slide2 { background-image: url('images/hero2-mobile.jpg'); }
  .slide3 { background-image: url('images/hero3-mobile.jpg'); }
  
}

.hero-overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.hero-content .highlight {
  background: linear-gradient(to right, #f3c623, #d9a437);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .subheading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #eee;
}

.hero-content .tagline {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* Button styling remains same */
.hero-content button {
  background: #d9a437;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-content button:hover {
  background: #b5872a;
  transform: scale(1.05);
}
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: white;
  z-index: 2;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (max-width: 767px) {
  .hero {
    height: 85vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-content button {
    font-size: 14px;
    padding: 12px 22px;
  }

}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: #d9a437;
}

.card i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #d9a437;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}


@media(min-width: 769px) {
  .nav-desktop {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .card {
    padding: 12px;
    font-size: 14px;
  }
  .card i {
    font-size: 22px;
  }
}
/* Downloads card styling */
#downloads .card button {
  background: transparent;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

#downloads .card button:hover {
  background-color: #d9a437;
  color: white;
  border-color: #d9a437;
}

/* Modal styles */
/* Modal styling */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 15px;
  box-sizing: border-box;
}

.modal-content {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-content h3 {
  font-size: 22px;
  color: #1f2f45;
  text-align: center;
  margin-bottom: 20px;
}

.modal-content label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.modal-content select,
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: 0.3s;
}

.modal-content select:focus,
.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #d9a437;
  outline: none;
  box-shadow: 0 0 4px rgba(217, 164, 55, 0.4);
}

.whatsapp-optin {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #444;
}

.whatsapp-optin input {
  margin-right: 8px;
  transform: scale(1.2);
}

.modal-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.submit-btn {
  flex: 1;
  background: #d9a437;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #c1942e;
}

.cancel-btn {
  flex: 1;
  background: #eee;
  color: #333;
  border: none;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.cancel-btn:hover {
  background: #ddd;
}

@media (max-width: 500px) {
  .modal-content {
    padding: 20px;
  }

  .submit-btn, .cancel-btn {
    font-size: 14px;
  }
}
/* Specification */
  #downloads .card button {
    font-size: 14px;
    padding: 8px 12px;
  }

#specifications {
  background: #f7f7f7;
  padding: 60px 20px;
}


.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.spec-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.spec-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-card i {
  color: #d9a437;
  font-size: 20px;
}

.spec-card ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.unit-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, z-index 0.3s ease;
  position: relative;
  cursor: zoom-in;
}

.unit-card img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.unit-card p {
  margin-top: 12px;
  font-weight: 500;
  font-size: 15px;
}

.unit-card.zoomed {
  transform: scale(1.8);
  z-index: 99;
  cursor: zoom-out;
}
.unit-card p {
  margin-top: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #d9a437; /* Highlighted golden tone */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.unit-card p {
  background-color: #fff8e1;
  padding: 6px 10px;
  border-radius: 5px;
  display: inline-block;
  color: #b8860b;
  font-weight: 600;
}
.about-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1 1 600px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text .highlight-quote {
  margin-top: 20px;
  font-style: italic;
  font-weight: 600;
  color: #d9a437;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Responsive */
@media(max-width: 767px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text {
    font-size: 14px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
/* CONTACT MAP REVIEWS */
.contact-review-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.contact-review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Contact Form */
.smart-contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-form-box,
.contact-map-box {
  flex: 1 1 500px;
}

.contact-form-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
}
/* Select & textarea styling */
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Submit button fix */
.contact-form-box button {
  width: 100%;
  background: #d9a437;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}
.contact-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

/* Reviews row */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.review-card .stars {
  color: #fbb034;
  font-size: 16px;
}

.review-card span {
  font-size: 14px;
  color: #555;
}

.review-more-box {
  text-align: center;
  margin-top: 10px;
}

.review-more-link {
  color: #4285f4;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.review-more-link:hover {
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .contact-row {
    flex-direction: column;
  }
}
/* Fix icon input layout */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
}

.input-with-icon input {
  width: 100%;
  padding: 12px 14px 12px 40px; /* padding-left for icon */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}
/* Footer Styles */

.custom-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-left {
  flex: 0 0 65%;
}

.footer-right {
  flex: 0 0 30%;
  text-align: right;
}

.gf-logo {
  width: 180px;
  margin-bottom: 15px;
}

.gf-about {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
}

.rera-block {
  margin-bottom: 15px;
}

.rera-logo {
  width: 60px;
  margin-right: 8px;
  vertical-align: middle;
}

.rera-qr {
  width: 60px;
  vertical-align: middle;
}

.footer-right p {
  font-size: 13px;
  color: #aaa;
  margin: 8px 0;
}

.footer-social a {
  margin: 0 6px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #d9a437;
}

.footer-links {
  margin-top: 12px;
  font-size: 13px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #d9a437;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 13px;
  border-top: 1px solid #333;
  margin-top: 30px;
  color: #aaa;
}

.footer-bottom small {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background: #d9a437;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 12px 15px;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.scroll-to-top:hover {
  background: #b5872a;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-right img {
    margin: 5px auto;
  }

  .scroll-to-top {
    right: 15px;
    bottom: 80px;
  }
}
/* Amenities Section Styling */
.amenities-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.amenities-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.amenities-grid {
  display: grid;
  gap: 20px;
  /* Desktop: auto-fit 3-4 columns */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Mobile:  */
@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}

.amenity-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.amenity-card i {
  font-size: 28px;
  color: #d9a437;
  margin-bottom: 12px;
}

.amenity-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
/* neighborhood section */

.neighborhood-section {
  padding: 60px 20px;
  background: #f9f9f9;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.neighborhood-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

/* Grid layout on desktop */
.neighborhood-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

/* Card styling */
.neighborhood-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.neighborhood-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Accordion header */
.accordion-header {
  font-size: 1.3em;
  color: #444;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-header i {
  color: #d9a437;
  margin-right: 10px;
  font-size: 1.2em;
}
/* Arrow icon */
.accordion-icon {
  border: solid #666;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

/* Accordion content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  list-style: none;
  padding: 0 20px;
  margin: 0;
}
.accordion-content li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 0.95em;
}

/* “Open” state */
.neighborhood-card.open .accordion-content {
  max-height: 1000px; /* big enough to fit content */
}
.neighborhood-card.open .accordion-icon {
  transform: rotate(-135deg);
}

/* Mobile-specific tweaks */
@media (max-width: 767px) {
  .neighborhood-cards {
    /* two-column grid on mobile */
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
  }
  .accordion-header {
    padding: 15px;
    font-size: 1.1em;
  }
  .accordion-content li {
    font-size: 0.9em;
  }
}
/* chat and whatsapp */
.floating-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
}

.float-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: #1f1f1f;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.float-btn img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.float-btn:hover {
  background: #d9a437;
}

.tooltip {
  position: absolute;
  left: -90px;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.float-btn:hover .tooltip {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .floating-buttons {
    top: middle;
    bottom: 80px;
    right: 10px;
    flex-direction: column;
    border-radius: 12px;
    padding: 8px;
  }
}
  .float-btn {
    border-radius: 8px;
  }

  .tooltip {
    display: none;
  }