

/* ---------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
  --teal-dark: #00534c;
  --teal-mid: #006b61;
  --teal-light: #027d72;
  --gold: #c9a84c;
  --gold-light: #e8c76b;
  --gold-dark: #a07c28;
  --cream: #f8f4ed;
  --cream-deep: #f0ebe1;
  --dark: #1a1a1a;
  --white-06: rgba(255, 255, 255, 0.06);
  --white-12: rgba(255, 255, 255, 0.12);
  --shadow-teal: rgba(0, 83, 76, 0.18);
  --shadow-gold: rgba(201, 168, 76, 0.35);

  /* Amenity category palette */
  --cat-infra: #1e6b5e;
  --cat-green: #2d7a3a;
  --cat-safety: #7a4b1e;
  --cat-comfort: #1e3f7a;
  --cat-entry: #6b1e5e;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* ---------------------------------------------------------------
   3. KEYFRAME ANIMATIONS
--------------------------------------------------------------- */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }
}

@keyframes pulseBadge {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
  }

  50% {
    box-shadow: 0 6px 35px rgba(201, 168, 76, 0.8);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ---------------------------------------------------------------
   4. NAVBAR
--------------------------------------------------------------- */
#mainNav {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.navbar-brand-accent {
  color: var(--gold-light);
}

.navbar-brand-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

/* Logo image in navbar */
.navbar-brand {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
}

.navbar-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: -15px;
  margin-bottom: -15px;
}

@media (max-width: 575px) {
  .navbar-logo {
    height: 64px;
    margin-top: -12px;
    margin-bottom: -12px;
  }
}


.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff !important;
  padding: 1.1rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light) !important;
}

.btn-call {
  background: #D6B27A;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem !important;
  border-radius: 4px;
  animation: pulse 1.8s infinite;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--gold-dark);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ---------------------------------------------------------------
   5. BANNER SECTION
      Desktop : Full-width image, form floats absolute on right
      Mobile  : Full-width image, form sits below (static flow)
--------------------------------------------------------------- */
#banner {
  position: relative;
  line-height: 0;
  margin-top: 90px; /* Offset for fixed navbar on desktop */
}

@media (max-width: 575px) {
  #banner {
    margin-top: 80px; /* Smaller offset for mobile */
  }
}

/* --- Image wrapper (relative so float form is anchored to it) --- */
.banner-img-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
  /* let form overflow at bottom if needed */
}

/* Full-width banner image */
.banner-main-img {
  width: 100%;
  height: 600px;
  /* desktop height */
  object-fit: cover;
  display: block;
}

/* Subtle dark fade ONLY on the right edge — behind the form */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(0, 20, 18, 0.72) 0%,
      rgba(0, 30, 26, 0.30) 30%,
      rgba(0, 0, 0, 0.00) 52%);
  pointer-events: none;
}

/* Phase badge — top-left of the banner */
.banner-phase-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #D6B27A;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.55);
  animation: pulseBadge 2s infinite;
  z-index: 3;
  line-height: 1.4;
}

/* ---- Floating form (desktop: absolute over the banner image) ---- */
.banner-form-float {
  position: absolute;
  top: 50%;
  right: 3.5%;
  transform: translateY(-50%);
  width: 380px;
  z-index: 5;
}

.banner-form-wrap {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);
  /* darker card so image shows through overlay less */
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

/* Gold top accent line */
.banner-form-wrap::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), #D6B27A, var(--gold-light));
  border-radius: 3px 3px 0 0;
  margin: -1.6rem -1.5rem 1.2rem;
}

/* Form heading */
.banner-form-heading {
  margin-bottom: 1rem;
}

/* Logo at top of form */
.form-logo-wrap {
  text-align: center;
  margin-bottom: 0.8rem;
}

.form-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.enquiry-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0.2rem 0 0;
  text-align: center;
}

.enquiry-heading span {
  color: var(--gold-light);
}

.enquiry-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.25rem 0 0;
}

/* ---- Form field styles ---- */
.bform-group {
  margin-bottom: 0.9rem;
}

.bform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

.bform-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.28rem;
  line-height: 1;
}

.bform-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.bform-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 7px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  padding: 0.55rem 0.8rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.4;
}

.bform-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.bform-control:focus {
  border-color: #D6B27A;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

select.bform-control option {
  color: #333;
  background: #fff;
}

/* Submit button */
.btn-enquiry-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark), #D6B27A, var(--gold-light));
  background-size: 200% auto;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem;
  border: none;
  border-radius: 7px;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  transition: all 0.35s;
  cursor: pointer;
  animation: shimmer 3s linear infinite;
  margin-top: 0.15rem;
}

.btn-enquiry-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.55);
}

/* Disclaimer text */
.bform-disclaimer {
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  margin: 0.5rem 0 0.7rem;
  line-height: 1.4;
}

/* Quick call / WhatsApp buttons below form */
.banner-quick-contact {
  display: flex;
  gap: 0.55rem;
}

.bqc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.4rem;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid transparent;
}

.bqc-call {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.bqc-call:hover {
  background: #51182b;
  border-color: #51182b;
  color: #fff;
}

.bqc-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.bqc-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* ---------------------------------------------------------------
   BANNER RESPONSIVE
--------------------------------------------------------------- */

/* Tablet: shrink image height, adjust form */
@media (max-width: 1199px) {
  .banner-main-img {
    height: 520px;
  }

  .banner-form-float {
    right: 2%;
    width: 320px;
  }
}

/* Small tablet: form goes below image (static) */
@media (max-width: 899px) {
  #banner {
    line-height: normal;
  }

  .banner-img-wrap {
    overflow: visible;
  }

  .banner-main-img {
    height: 340px;
    object-position: center center;
  }

  /* Remove overlay on mobile — not needed when form is outside */
  .banner-overlay {
    display: none;
  }

  /* Form: leave absolute positioning, go static below */
  .banner-form-float {
    position: static;
    transform: none;
    width: 100%;
  }

  .banner-form-wrap {
    /* background: linear-gradient(135deg, #51182b, #002e2a); */
    border-radius: 0;
    border: none;
    border-top: 3px solid #D6B27A;
    padding: 1.8rem 1.2rem;
    box-shadow: none;
  }

  /* Remove the pseudo-element top bar (already have border-top) */
  .banner-form-wrap::before {
    display: none;
  }

  .enquiry-heading {
    font-size: 1.6rem;
  }

  .bform-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .banner-main-img {
    height: 240px;
  }

  .bform-row {
    grid-template-columns: 1fr;
  }

  .banner-form-phase-tag {
    font-size: 0.65rem;
  }
}

/* ---------------------------------------------------------------
   7. STATS BAR
--------------------------------------------------------------- */
#stats {
  background: #D6B27A;
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-item i {
  font-size: 1.8rem;
  color: #51182b;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #51182b;
}

.stat-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------------------------------------------------------------
   8. SHARED HEADING UTILITIES
--------------------------------------------------------------- */
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D6B27A;
  margin-bottom: 0.5rem;
}

.section-tag--light {
  color: var(--gold-light);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #51182b;
  line-height: 1.2;
}

.section-heading--white {
  color: #fff;
}

.gold-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #D6B27A, var(--gold-light));
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.gold-line--left {
  margin-left: 0;
}

/* ---------------------------------------------------------------
   9. PHASE STATUS
--------------------------------------------------------------- */
.phase-section {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);;
  padding: 3.5rem 0;
  text-align: center;
}

.phase-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.phase-badge-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.phase-badge {
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-badge--sold {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: line-through;
}

.phase-badge--live {
  background: #D6B27A;
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
  animation: pulseBadge 2s infinite;
}

/* ---------------------------------------------------------------
   10. OVERVIEW
--------------------------------------------------------------- */
#overview {
  background: var(--cream);
  padding: 5rem 0;
}

.overview-highlight {
  color: #D6B27A;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.overview-desc {
  max-width: 640px;
  margin: 1.2rem auto 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
}

.overview-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 6px 30px var(--shadow-teal);
  border-left: 4px solid #D6B27A;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 83, 76, 0.15);
}

.overview-card i {
  font-size: 2rem;
  color: #51182b;
  margin-bottom: 0.8rem;
}

.overview-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #51182b;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.overview-card p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ---------------------------------------------------------------
   10b. SECTION DIVIDER — Overview ↔ Amenities
--------------------------------------------------------------- */
.section-divider {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);
  height: 2px;
  width: 100%;
  justify-self: center;
}

/* ---------------------------------------------------------------
   GALLERY — 3D Carousel
--------------------------------------------------------------- */
#gallery {
  background: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}

.gallery-3d-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1200px;
}

.gallery-3d-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
}

.gallery-3d-slide {
  position: absolute;
  width: 65%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.7) translateX(200%) rotateY(-25deg);
  pointer-events: none;
}

.gallery-3d-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
cursor: auto;
}

/* Active center slide */
.gallery-3d-slide.g3d-active {
  opacity: 1;
  transform: scale(1) translateX(0) rotateY(0deg);
  z-index: 5;
  pointer-events: auto;
  box-shadow: 0 25px 60px rgba(81, 24, 43, 0.35);
}

/* Previous slide (left) */
.gallery-3d-slide.g3d-prev {
  opacity: 0.65;
  transform: scale(0.78) translateX(-85%) rotateY(15deg);
  z-index: 3;
  pointer-events: auto;
}

/* Next slide (right) */
.gallery-3d-slide.g3d-next {
  opacity: 0.65;
  transform: scale(0.78) translateX(85%) rotateY(-15deg);
  z-index: 3;
  pointer-events: auto;
}

/* Far left */
.gallery-3d-slide.g3d-far-prev {
  opacity: 0.3;
  transform: scale(0.6) translateX(-160%) rotateY(30deg);
  z-index: 1;
}

/* Far right */
.gallery-3d-slide.g3d-far-next {
  opacity: 0.3;
  transform: scale(0.6) translateX(160%) rotateY(-30deg);
  z-index: 1;
}

/* Navigation Arrows */
.gallery-3d-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(81, 24, 43, 0.3);
  background: rgba(255, 255, 255, 0.95);
  color: #51182b;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-3d-nav:hover {
  background: #51182b;
  color: #fff;
  border-color: #51182b;
  transform: translateY(-50%) scale(1.1);
}

.gallery-3d-prev { left: -10px; }
.gallery-3d-next { right: -10px; }

/* Dot Indicators */
.gallery-3d-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.gallery-3d-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(81, 24, 43, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.gallery-3d-dot.active {
  background: #D6B27A;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(214, 178, 122, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {

  #overview{
    padding: 3rem 0 3rem !important;
  }

  #amenities{
    padding: 3rem 0 3rem !important;
  }

  #gallery{
    padding: 3rem 0 3rem !important;
  }

  #location{
    padding: 3rem 0 3rem !important;
  }

  #map{
    padding: 3rem 0 3rem !important;
  }

  .gallery-3d-carousel {
    height: 300px;
  }
  
  .gallery-3d-slide {
    width: 80%;
  }
  
  .gallery-3d-slide img {
    height: 260px;
  }
  
  .gallery-3d-slide.g3d-prev {
    transform: scale(0.75) translateX(-70%) rotateY(10deg);
  }
  
  .gallery-3d-slide.g3d-next {
    transform: scale(0.75) translateX(70%) rotateY(-10deg);
  }
  
  .gallery-3d-slide.g3d-far-prev,
  .gallery-3d-slide.g3d-far-next {
    opacity: 0;
  }
  
  .gallery-3d-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .gallery-3d-prev { left: 5px; }
  .gallery-3d-next { right: 5px; }
}

@media (max-width: 480px) {
  .gallery-3d-carousel {
    height: 240px;
  }
  
  .gallery-3d-slide {
    width: 85%;
  }
  
  .gallery-3d-slide img {
    height: 210px;
  }
}

/* ---------------------------------------------------------------
   11. AMENITIES — Redesigned (Attractive Grid)
--------------------------------------------------------------- */
#amenities {
  background: var(--cream);
  padding: 5.5rem 0;
  overflow: hidden;
}

/* Category-labelled amenity cards in a masonry-style grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1199px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual amenity card */
.am-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 1rem 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow 0.35s ease;
}

/* Subtle gradient shine bar at top */
.am-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), #D6B27A, var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 4px 4px 0 0;
}

/* Subtle bg blob */
.am-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  background: var(--am-color, #51182b);
  opacity: 0.05;
  border-radius: 50%;
  transition: opacity 0.35s;
}

.am-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.am-card:hover::before {
  transform: scaleX(1);
}

.am-card:hover::after {
  opacity: 0.1;
}

/* Icon wrapper */
.am-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  background: var(--am-bg, linear-gradient(135deg, #51182b, #51182b));
  box-shadow: 0 8px 22px var(--am-shadow, rgba(0, 83, 76, 0.28));
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.35s;
}

.am-card:hover .am-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 14px 30px var(--am-shadow, rgba(0, 83, 76, 0.35));
}

.am-icon-wrap i {
  font-size: 1.65rem;
  color: #fff;
}

/* Label */
.am-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: capitalize;
}

/* Number badge */
.am-num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.2);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0;
}

/* --- Per-card colour theming via CSS vars ------------------- */
/* Infrastructure (roads, curb, storm drain) */
.am-card--infra {
  --am-bg: linear-gradient(135deg, #1e6b5e, #00534c);
  --am-shadow: rgba(0, 83, 76, 0.3);
  --am-color: #1e6b5e;
}

/* Solar / Lighting */
.am-card--solar {
  --am-bg: linear-gradient(135deg, #c9a84c, #e8c76b);
  --am-shadow: rgba(201, 168, 76, 0.4);
  --am-color: #c9a84c;
}

/* Green / Nature */
.am-card--green {
  --am-bg: linear-gradient(135deg, #2d7a3a, #3ea44f);
  --am-shadow: rgba(45, 122, 58, 0.3);
  --am-color: #2d7a3a;
}

/* Kids / Comfort */
.am-card--play {
  --am-bg: linear-gradient(135deg, #e05c2d, #f07a4a);
  --am-shadow: rgba(224, 92, 45, 0.3);
  --am-color: #e05c2d;
}

/* Safety / Boundary */
.am-card--safety {
  --am-bg: linear-gradient(135deg, #1e3f7a, #2a5bba);
  --am-shadow: rgba(30, 63, 122, 0.3);
  --am-color: #1e3f7a;
}

/* Grand / Entry */
.am-card--grand {
  --am-bg: linear-gradient(135deg, #6b1e5e, #a02d8e);
  --am-shadow: rgba(107, 30, 94, 0.3);
  --am-color: #6b1e5e;
}

/* Amenity section CTA strip */
.amenity-cta-strip {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 6px 24px var(--shadow-teal);
  border-left: 5px solid #D6B27A;
}

.amenity-cta-strip p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #51182b;
}

.amenity-cta-strip span {
  display: block;
  font-size: 0.75rem;
  color: #777;
  font-weight: 400;
}

/* ---------------------------------------------------------------
   12. ROAD WIDTHS
--------------------------------------------------------------- */
.roads-section {
  background: linear-gradient(135deg, var(--cream), var(--cream-deep));
  padding: 4rem 0;
}

.roads-desc {
  color: #555;
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.road-badge {
  background: #fff;
  border: 2px solid #51182b;
  color: #51182b;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 83, 76, 0.1);
  transition: all 0.3s;
}

.road-badge:hover {
  background: #51182b;
  color: #fff;
  border-color: #51182b;
}

.road-ft {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.road-m {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* ---------------------------------------------------------------
   13. LOCATION HIGHLIGHTS
--------------------------------------------------------------- */
#location {
  background: #51182b;
  padding: 5rem 0;
}

.location-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-top: 1.2rem;
  line-height: 1.8;
}

.btn-direction {
  display: inline-block;
  background: #D6B27A;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.btn-direction:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}

.loc-card {
  background: var(--white-06);
  border: 1px solid var(--white-12);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  margin-bottom: 1rem;
}

.loc-card:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: #D6B27A;
  transform: translateX(6px);
}

.loc-time {
  background: #D6B27A;
  color: #fff;
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  min-width: 56px;
  line-height: 1.2;
  flex-shrink: 0;
}

.loc-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/* ---------------------------------------------------------------
   14. MAP SECTION
--------------------------------------------------------------- */
#map {
  padding: 5rem 0;
  background: var(--cream);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 83, 76, 0.2);
  border: 3px solid #D6B27A;
}

/* ---------------------------------------------------------------
   15. CONTACT SECTION
--------------------------------------------------------------- */
#contact {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);
  padding: 5rem 0;
}

.contact-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--white-12);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.contact-card-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.2rem;
  color: #D6B27A;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.ci-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.ci-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.ci-value a:hover {
  color: var(--gold-light);
}

.ci-value a.whatsapp-link {
  color: #25D366;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  padding: 0.65rem 0.9rem;
  margin-bottom: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #D6B27A;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-form .form-select option {
  color: #333;
  background: #fff;
}

.contact-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.contact-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.contact-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}

.contact-social a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), #D6B27A);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  transition: all 0.3s;
  width: 100%;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

/* ---------------------------------------------------------------
   16. FOOTER
--------------------------------------------------------------- */
footer {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);
  color: #fff;
  padding: 4rem 0 2rem;
}

.disclaimer {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  margin: 0 auto;
}

.footer-qr {
  width: 120px;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
}

.rera-info {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.95rem;
  color: #fff;
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 2rem 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.copyright-info, .marketed-info {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ---------------------------------------------------------------
   17. FLOATING ACTION BUTTONS
--------------------------------------------------------------- */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.float-btn--whatsapp {
  background: #25D366;
}

.float-btn--phone {
  background: #D6B27A;
}

.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}

/* ---------------------------------------------------------------
   18. SCROLL-TO-TOP
--------------------------------------------------------------- */
#scrollTop {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: #d6b27a;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 83, 76, 0.4);
  transition: all 0.3s;
}

#scrollTop:hover {
  background: #D6B27A;
}

/* ---------------------------------------------------------------
   19. RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 768px) {
  .enquiry-inner {
    padding: 2rem 0;
  }

  .amenity-cta-strip {
    text-align: center;
    justify-content: center;
  }

  .stat-divider {
    border: none !important;
  }

  .stat-item {
    border: none;
    position: relative;
  }

  /* 2x2 Grid Borders for Mobile */
  .stat-item:nth-child(even) {
    border-left: 1px solid rgba(81, 24, 43, 0.15); /* Subtle maroon border */
  }

  .stat-item:nth-child(n+3) {
    border-top: 1px solid rgba(81, 24, 43, 0.15);
  }

  .phase-badge-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 1.6rem;
  }

  .am-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .am-icon-wrap i {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------------------------
   16. MAP + CONTACT CARD STYLING
--------------------------------------------------------------- */
#map {
  background: var(--cream);
  padding: 5rem 0;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-contact-card {
  background: linear-gradient(135deg, #5D2030 0%, #4C1528 50%, #430922 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.mcc-logo {
  /* height: 80px; */
  width: 70%;
  border-radius: 8px;
  /* background: #fff; */
  padding: 5px;
}

.mcc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0;
}

.mcc-centered-item {
  margin-bottom: 1.5rem;
}

.mcc-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(214, 178, 122, 0.15);
  border: 1px solid rgba(214, 178, 122, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D6B27A;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.mcc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.mcc-value {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.mcc-call-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, #D6B27A 50%, var(--gold-light) 100%);
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(214, 178, 122, 0.3);
  transition: all 0.3s;
}

.mcc-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(214, 178, 122, 0.5);
  color: #fff;
}

@media (max-width: 991px) {
  .map-contact-card {
    padding: 2rem;
    margin-top: 1rem;
  }
}

/* 17. MOBILE FIXED FOOTER CTA */
.mobile-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  padding: 10px;
}

.mff-wrapper {
  display: flex;
  gap: 10px;
}

.mff-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  color: #fff !important;
  transition: all 0.3s;
}

.mff-btn--call {
  background: #5D2030; /* Maroon */
  animation: pulseMaroon 2s infinite;
}

.mff-btn--enquiry {
  background: #D6B27A; /* Gold */
  animation: pulseGold 2s infinite;
}

@keyframes pulseMaroon {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93, 32, 48, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(93, 32, 48, 0); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 178, 122, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(214, 178, 122, 0); }
}

/* Add padding to body so content doesn't get cut off by the fixed bar */
@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }
}



.footer-bottom-flex a{
color: #fff;
text-decoration: none;
}