*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: #1c1c1c;
  background: #ffffff;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* ─────────────────────────────────────────────
       STICKY NAV
    ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid #e0dbd0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 45px;
  width: auto;
  display: block;
}
/* Removed old .nav-logo-diamond, .nav-brand and related styles as they are no longer used */
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: #444444;
}
.nav-links a:hover {
  color: #1a4a2e;
}
.nav-cta {
  background: #2d6a3f;
  color: white;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: #1a4a2e;
}

/* ─────────────────────────────────────────────
       HERO
    ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      160deg,
      rgba(26, 74, 46, 0.72) 0%,
      rgba(26, 74, 46, 0.45) 50%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    url("https://propace.in/wp-content/uploads/2026/02/banner-web-scaled.jpg")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}
.hero-left {
  flex: 1;
  color: white;
}
.hero-tag {
  display: inline-block;
  background: #c9a84c;
  color: #1a4a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-left h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-left h1 span {
  color: #c9a84c;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 28px;
}
.hero-location svg {
  width: 16px;
  height: 16px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 10px 18px;
  backdrop-filter: blur(6px);
}
.badge-label {
  font-size: 10px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.badge-value {
  font-size: 17px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.hero-price-main {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 32px;
}
.hero-price-main strong {
  font-size: 28px;
  font-family: "Playfair Display", serif;
  color: #c9a84c;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: #2d6a3f;
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: #1a4a2e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ─── Lead Form Card ─── */
.hero-form-card {
  width: 360px;
  flex-shrink: 0;
  background: white;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-form-card h3 {
  font-size: 18px;
  color: #1a4a2e;
  margin-bottom: 4px;
}
.hero-form-card p {
  font-size: 12px;
  color: #777777;
  margin-bottom: 22px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444444;
  margin-bottom: 5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0dbd0;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #1c1c1c;
  outline: none;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #2e6b44;
}
.form-radio-group {
  display: flex;
  gap: 12px;
}
.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: #1c1c1c;
}
.form-radio-group input[type="radio"] {
  width: auto;
  accent-color: #2d6a3f;
}
.btn-submit {
  width: 100%;
  background: #2d6a3f;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: #1a4a2e;
}
.form-disclaimer {
  font-size: 10px;
  color: #777777;
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.rera-note {
  font-size: 11px;
  color: #777777;
  margin-top: 14px;
  text-align: center;
  border-top: 1px solid #e0dbd0;
  padding-top: 10px;
}

/* ─────────────────────────────────────────────
       HIGHLIGHTS BAR
    ───────────────────────────────────────────── */
.highlights {
  background: #1a4a2e;
  color: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.highlight-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.highlight-item:last-child {
  border-right: none;
}
.highlight-item .num {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #c9a84c;
}
.highlight-item .lbl {
  font-size: 12px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
       SECTION TITLES
    ───────────────────────────────────────────── */
.section {
  padding: 80px 40px;
}
.section-inner {
  max-width: 1160px;
  margin: auto;
}
.sec-title {
  text-align: center;
  margin-bottom: 50px;
}
.sec-title h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: #1a4a2e;
  letter-spacing: 0.5px;
}
.sec-title .divider {
  width: 56px;
  height: 3px;
  background: #c9a84c;
  margin: 12px auto 0;
  border-radius: 2px;
}
.sec-title p {
  font-size: 15px;
  color: #777777;
  max-width: 600px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
       OVERVIEW
    ───────────────────────────────────────────── */
.overview {
  background: #f8f5ef;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.overview-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.overview-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.overview-text p {
  font-size: 15px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 28px;
}
.overview-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spec-box {
  background: white;
  border-radius: 6px;
  padding: 16px 18px;
  border-left: 3px solid #2e6b44;
}
.spec-box .spec-label {
  font-size: 11px;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.spec-box .spec-val {
  font-size: 16px;
  font-weight: 600;
  color: #1a4a2e;
}

/* ─────────────────────────────────────────────
       CONFIGURATIONS
    ───────────────────────────────────────────── */
.config-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.config-card {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  border: 1.5px solid #e0dbd0;
  border-radius: 10px;
  padding: 36px 32px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.config-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e6b44, #4a9660);
}
.config-card:hover {
  box-shadow: 0 12px 40px rgba(46, 107, 68, 0.15);
  transform: translateY(-4px);
}
.config-type {
  font-size: 26px;
  font-family: "Playfair Display", serif;
  color: #1a4a2e;
  margin-bottom: 6px;
}
.config-area {
  font-size: 14px;
  color: #777777;
  margin-bottom: 18px;
}
.config-price {
  font-size: 22px;
  font-weight: 700;
  color: #1a4a2e;
  margin-bottom: 22px;
}
.config-price span {
  font-size: 13px;
  font-weight: 400;
  color: #777777;
}
.btn-config {
  background: #2d6a3f;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-config:hover {
  background: #1a4a2e;
}

/* ─────────────────────────────────────────────
       AMENITIES
    ───────────────────────────────────────────── */
.amenities {
  background: #f8f5ef;
}
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.amenities-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.amenities-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
.amenity-card {
  flex: 0 0 calc(33.333% - 16px);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.25s;
  scroll-snap-align: start;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.amenity-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.amenity-body {
  padding: 18px 20px;
}
.amenity-body h4 {
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #1a4a2e;
  margin-bottom: 6px;
}
.amenity-body p {
  font-size: 13px;
  color: #777777;
  line-height: 1.6;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid #e0dbd0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a4a2e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.slider-btn:hover {
  background: #1a4a2e;
  color: white;
  border-color: #1a4a2e;
}
.slider-btn.prev {
  left: 0;
}
.slider-btn.next {
  right: 0;
}

@media (max-width: 900px) {
  .amenity-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .amenity-card {
    flex: 0 0 100%;
  }
  .slider-container {
    padding: 0 10px;
  }
  .slider-btn {
    display: none;
  }
}

/* ─────────────────────────────────────────────
       CONNECTIVITY
    ───────────────────────────────────────────── */
.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.conn-map {
  background: #e0dbd0;
  border-radius: 8px;
  height: 400px;
  border: 1.5px solid #1a4a2e;
  position: relative;
  overflow: hidden;
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.conn-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: blur(4px) brightness(0.7);
  pointer-events: none;
  display: block;
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4); /* Dark tinted overlay for the "black blur" effect */
}
.btn-directions {
  background: #2d6a3f;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 5;
  letter-spacing: 0.5px;
}
.btn-directions:hover {
  background: #1a4a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}
.conn-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.conn-group h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2e6b44;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0dbd0;
  font-family: "DM Sans", sans-serif;
}
.conn-group ul {
  list-style: none;
}
.conn-group ul li {
  font-size: 13px;
  color: #444444;
  padding: 5px 0;
  border-bottom: 1px dashed #e0dbd0;
  display: flex;
  justify-content: space-between;
}
.conn-group ul li span {
  color: #2e6b44;
  font-weight: 600;
  font-size: 12px;
}

/* ─────────────────────────────────────────────
       DEVELOPER
    ───────────────────────────────────────────── */
.developer {
  background: #1a4a2e;
  color: white;
  text-align: center;
}
.developer h2 {
  color: white;
}
.developer .divider {
  background: #c9a84c;
}
.developer p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 780px;
  margin: 20px auto 0;
}

/* ─────────────────────────────────────────────
       GALLERY SLIDER
    ───────────────────────────────────────────── */
.gallery-sec {
  background: #f8f5ef;
  padding-bottom: 80px;
  overflow: hidden;
}
.gallery-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 40px auto 0;
}
.gallery-track {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 40px 0;
}
.gallery-item {
  flex: 0 0 450px;
  height: 350px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  cursor: pointer;
  opacity: 0.95; /* Clear color for other images */
  transform: scale(0.9);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Middle / Active Card */
.gallery-item.active {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 5;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 106, 63, 0.5); /* Semi-transparent green */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item.active:hover .gallery-overlay {
  opacity: 1;
}
.plus-icon {
  color: white;
  font-size: 60px;
  font-weight: 300;
}
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.gallery-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #1a4a2e;
  background: transparent;
  color: #1a4a2e;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery-btn:hover {
  background: #1a4a2e;
  color: white;
}

@media (max-width: 900px) {
  .gallery-item {
    flex: 0 0 350px;
    height: 280px;
  }
}
@media (max-width: 600px) {
  .gallery-item {
    flex: 0 0 85%;
    height: 240px;
  }
  .gallery-item.active {
    transform: scale(1.05);
  }
}


/* ─────────────────────────────────────────────
       FINAL DISCLAIMER
    ───────────────────────────────────────────── */
.final-disclaimer {
  background: #fff;
  padding: 80px 40px 40px;
  text-align: center;
  border-top: 1px solid #e0dbd0;
}
.disclaimer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.disclaimer-logo {
  width: 120px;
  margin: 0 auto;
  display: block;
}
.qr-container {
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
}
.rera-qr {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.rera-info {
  margin-bottom: 40px;
}
.rera-info p {
  font-size: 16px;
  color: #1a4a2e;
  margin: 8px 0;
  font-weight: 500;
}
.rera-info a {
  color: #007bff;
  text-decoration: underline;
}
.disclaimer-text {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-bottom: 40px;
}
.disclaimer-text p {
  font-size: 11px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
}
.footer-bottom-links {
  border-top: 1px solid #eee;
  padding-top: 20px;
  font-size: 11px;
  color: #888;
}
.footer-bottom-links a {
  color: #007bff;
  text-decoration: none;
  margin: 0 5px;
}
.footer-bottom-links p {
  margin-top: 15px;
  color: #444;
  font-weight: 500;
}

@media (max-width: 600px) {
  .final-disclaimer {
    padding: 60px 20px 30px;
  }
  .rera-qr {
    width: 120px;
    height: 120px;
  }
  .rera-info p {
    font-size: 14px;
  }
}

/* ─────────────────────────────────────────────
       FLOATING CALL BTN (mobile)
    ───────────────────────────────────────────── */
.floating-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  background: #2d6a3f;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  font-size: 22px;
}


/* ─────────────────────────────────────────────
       ENQUIRY POPUP
    ───────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  backdrop-filter: blur(5px);
}
.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
.popup-container {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.active .popup-container {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f1f1;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  color: #1a4a2e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.2s;
}
.popup-close:hover {
  background: #1a4a2e;
  color: #fff;
}
.popup-container .hero-form-card {
  margin: 0;
  padding: 40px 30px;
  box-shadow: none;
  border: none;
  width: 100%;
  max-width: 100%;
  animation: none; /* Show immediately when popup opens */
}
.popup-container h3 {
  font-size: 24px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .popup-overlay {
    padding: 10px;
  }
  .popup-container .hero-form-card {
    padding: 30px 20px;
  }
}

/* ─────────────────────────────────────────────
       ANIMATIONS
    ───────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-left .hero-tag {
  animation-delay: 0.1s;
}
.hero-left h1 {
  animation-delay: 0.2s;
}
.hero-left .hero-location {
  animation-delay: 0.3s;
}
.hero-left .hero-badges {
  animation-delay: 0.4s;
}
.hero-left .hero-price-main {
  animation-delay: 0.5s;
}
.hero-left .hero-btns {
  animation-delay: 0.6s;
}
.hero-form-card {
  animation: fadeUp 0.8s ease both;
}

/* ─────────────────────────────────────────────
       DOWNLOADS
    ───────────────────────────────────────────── */
.downloads {
  background: #f8f5ef;
}
.download-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.download-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 1.5px solid #1a4a2e;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #c9a84c;
}
.download-card .card-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background-image: url("https://propace.in/wp-content/uploads/2026/02/imgi_36_about-right-element.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-15deg);
}
.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  object-fit: contain;
  display: block;
}
.download-card h4 {
  font-size: 20px;
  color: #1a4a2e;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: inherit;
}
.btn-download {
  background: #2d6a3f;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
  border-radius: 4px;
}
.btn-download:hover {
  background: #1a4a2e;
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero-inner {
    flex-direction: column;
  }
  .hero-form-card {
    width: 100%;
    max-width: 460px;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .connectivity-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 60px 20px;
  }
  .nav {
    padding: 12px 20px;
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .conn-columns {
    grid-template-columns: 1fr;
  }
  .config-cards {
    flex-direction: column;
  }
  .highlights {
    flex-direction: column;
  }
  .hero {
    padding: 100px 20px 50px;
  }
}

/* ─────────────────────────────────────────────
       STICKY SIDEBAR
    ───────────────────────────────────────────── */
.sticky-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.visit-btn {
  background: #1a4a2e; /* Project Green */
  color: white;
  flex-direction: column-reverse; /* Icon at bottom */
  padding: 20px 10px;
  border-radius: 12px 0 0 12px;
  width: 50px;
  height: auto;
  min-height: 180px;
  border: 1px solid #8c8c8c;
}

.visit-btn .btn-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.visit-btn .btn-icon {
  font-size: 18px;
}

.sticky-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ─────────────────────────────────────────────
       FLOATING BUTTONS (WA & Call)
    ───────────────────────────────────────────── */
.floating-buttons {
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Colors */
.call-btn {
    background: #1f66ea;
}

.whatsapp-btn {
    background: #25D366;
}

.floating-call {
  display: none !important;
}

@media (max-width: 900px) {
  .sticky-sidebar {
    top: 50%; /* Keep sidebar in middle even on small screens if desired, or let it stay */
    transform: translateY(-50%);
  }
  .visit-btn {
    min-height: 140px;
    width: 45px;
    padding: 15px 8px;
  }
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
