/* ═══════════════════════════════════════════════════════════
   COLOR TOKENS — derived from the Haware Intelligentia brochure
   ════════════════════════════════════════════════════════ */
:root {
  --red: #C8402A;
  --red-dark: #A5311E;
  --red-light: #D97A5F;
  --navy: #16233F;
  --navy-light: #223868;
  --cream: #FBF7F0;
  --warm-white: #FFFDF9;
  --mid-gray: #E8E1D4;
  --text-dark: #201C16;
  --text-mid: #55504A;
  --text-light: #8B8478;
  --gold: #C9A227;
  --navbar-h: 92px;
}

/* ─── Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  cursor: pointer;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.page-wrap {
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  scroll-margin-top: var(--navbar-h);
}

.section-header {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
}

.section-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 1.1rem auto 1.75rem;
  border-radius: 2px;
}

.status-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(251, 247, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(22, 35, 63, 0.08);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.7rem 3rem;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2.5rem;
  padding: 0 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text-mid);
  padding-bottom: 4px;
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(200, 64, 42, 0.08);
  border: 1.5px solid rgba(200, 64, 42, 0.18);
  border-radius: 10px;
  color: var(--red);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--warm-white);
  border-top: 1px solid var(--mid-gray);
  transition: max-height 0.4s ease;
}

.mobile-menu.is-open {
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.mobile-menu.is-open::-webkit-scrollbar {
  display: none;
}

.mobile-menu-inner {
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 0.95rem 0.1rem;
  border-bottom: 1px solid rgba(22, 35, 63, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--red);
  padding-left: 0.5rem;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  body {
    padding-bottom: 68px;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    padding: 0.65rem 1rem;
    background: #fff;
    box-shadow: 0 -6px 20px rgba(22, 35, 63, 0.14);
  }

  .mobile-sticky-cta-btn {
    width: 100%;
    padding: 0.65rem 1.35rem;
    font-size: 0.72rem;
  }
}

.floating-call-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200, 64, 42, 0.4);
  transition: background 0.25s, transform 0.25s;
}

.floating-call-btn:hover {
  background: var(--red-dark);
  transform: scale(1.06);
  color: #fff;
}

@media (max-width: 980px) {
  .floating-call-btn {
    right: 1rem;
    bottom: 75px;
    width: 45px;
    height: 45px;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO CAROUSEL
   ════════════════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  width: 100%;
  margin-top: var(--navbar-h);
}

.hero-carousel-desktop {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 800;
}

.hero-carousel-mobile {
  display: none;
}

.hero-carousel-track {
  display: grid;
  width: 100%;
  height: 100%;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(22, 35, 63, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
}

.hero-carousel-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.hero-carousel-prev {
  left: 1.25rem;
}

.hero-carousel-next {
  right: 1.25rem;
}

.hero-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(22, 35, 63, 0.35);
  transition: background 0.25s, transform 0.25s;
}

.hero-carousel-dot.is-active {
  background: var(--red);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-carousel-desktop {
    display: none;
  }

  .hero-carousel-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 400 / 600;
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════
   OVERVIEW
   ════════════════════════════════════════════════════════ */
.section-overview {
  background: var(--cream);
}

.section-label {
  font-size: 24px;
}

.overview-text {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════
   PROJECT HIGHLIGHTS
   ════════════════════════════════════════════════════════ */
.section-highlights {
  background: #F5EAE2;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

.highlights-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.highlights-image {
  position: relative;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #F5EAE2;
  box-shadow: 0 20px 50px rgba(22, 35, 63, 0.18);
}

.highlights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlights-image:hover img {
  transform: scale(1.06);
}

.highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
}

.highlights-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(22, 35, 63, 0.1);
  transition: transform 0.3s ease;
}

.highlights-item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.highlights-item:hover {
  transform: translateX(8px);
}

.highlights-item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 64, 42, 0.08);
  color: var(--red);
  transition: background 0.3s ease, color 0.3s ease;
}

.highlights-item:hover .highlights-item-icon {
  background: var(--red);
  color: #fff;
}

.highlights-item-text {
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlights-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .highlights-list {
    grid-template-columns: 1fr;
  }

  .highlights-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(22, 35, 63, 0.1);
    padding-bottom: 0.85rem;
  }

  .highlights-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONFIGURATION
   ════════════════════════════════════════════════════════ */
.section-configuration {
  background: var(--cream);
}

.config-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(22, 35, 63, 0.09);
}

.config-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
}

.config-table thead th {
  background: #F5EAE2;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.15rem 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--red);
}

.config-table thead th:not(:first-child) {
  text-align: center;
}

.config-table tbody td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.98rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.config-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.config-table tbody td:not(:first-child) {
  text-align: center;
}

.config-table tbody tr:nth-child(even) {
  background: transparent;
}

.config-table tbody tr:hover {
  background: rgba(200, 64, 42, 0.04);
}

.config-table tbody tr:last-child td {
  border-bottom: none;
}

.config-enquire-btn {
  background: transparent;
  color: var(--red);
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  cursor: pointer;
}

.config-enquire-btn:hover {
  background: transparent;
  color: var(--navy);
}

@media (max-width: 768px) {
  .config-table-wrap {
    overflow-x: hidden;
    border-radius: 12px;
    margin-top: 1.5rem;
  }

  .config-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  /* Explicit column widths — table-layout:fixed sizes columns from the
     first row, so this is what actually guarantees the table fits within
     the screen instead of overflowing/scrolling. */
  .config-table thead th:nth-child(1) {
    width: 37%;
  }

  .config-table thead th:nth-child(2) {
    width: 37%;
  }

  .config-table thead th:nth-child(3) {
    width: 26%;
  }

  .config-table thead th {
    padding: 0.65rem 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
  }

  .config-table tbody td {
    padding: 0.75rem 0.3rem;
    font-size: 0.8rem;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .config-enquire-btn {
    padding: 0.35rem 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0;
    white-space: normal;
  }
}

/* ═══════════════════════════════════════════════════════════
   AMENITIES
   ════════════════════════════════════════════════════════ */
.section-amenities {
  background: #F5EAE2;
}

.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 2.75rem;
}

.amenity-tab {
  background: #fff;
  color: var(--text-mid);
  border: 1.5px solid var(--mid-gray);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.amenity-tab:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.amenity-tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 64, 42, 0.28);
}

.amenity-panel {
  display: none;
}

.amenity-panel.is-active {
  display: block;
  animation: amenity-fade-in 0.4s ease;
}

@keyframes amenity-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.amenity-item {
  flex: 1 1 320px;
  max-width: 400px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(22, 35, 63, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(22, 35, 63, 0.16);
}

.amenity-item-image {
  position: relative;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #EFE6DB;
}

.amenity-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.5s ease;
}

.amenity-item:hover .amenity-item-image img {
  transform: scale(1.08);
}

.amenity-repimg-tag {
  position: absolute;
  left: 0.4rem;
  bottom: 0.6rem;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.amenity-disclaimer-btn {
  display: inline-block;
  margin-top: 1rem;
  background: transparent;
  color: var(--red-dark);
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.amenity-disclaimer-btn:hover {
  color: var(--red);
}

.amenity-item-label {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: auto;
}

@media (max-width: 400px) {
  .amenity-item {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY — Framed to pool/amenity deck without top facade
   ════════════════════════════════════════════════════════ */
.section-gallery {
  background: var(--cream);
}

.gallery-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-carousel-track {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel-item {
  position: relative;
  flex: 0 0 calc((100% - 1.5rem) / 2);
  aspect-ratio: 16 / 9.5;
  border-radius: 14px;
  overflow: hidden;
  background: #EFE6DB;
  scroll-snap-align: start;
  box-shadow: 0 10px 26px rgba(22, 35, 63, 0.14);
}

.gallery-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.gallery-carousel-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem 0.75rem;
  background: linear-gradient(180deg, rgba(22, 35, 63, 0) 0%, rgba(22, 35, 63, 0.78) 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(22, 35, 63, 0.16);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gallery-carousel-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .gallery-carousel-item {
    flex-basis: 90%;
  }
}

@media (max-width: 600px) {
  .gallery-carousel-item {
    flex-basis: 85%;
  }

  .gallery-carousel-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FLOOR PLANS — Prominent center button & generous card size
   ════════════════════════════════════════════════════════ */
.section-floorplans {
  background: var(--cream);
}

.floorplan-carousel {
  position: relative;
  max-width: 1140px;
  margin: 3rem auto 0;
  padding: 0 3.5rem;
}

.floorplan-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
}

.floorplan-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.floorplan-carousel-track .floorplan-card {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) {
  .floorplan-carousel-track .floorplan-card {
    flex: 0 0 50%;
  }
}

.floorplan-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(22, 35, 63, 0.15);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: background 0.25s, color 0.25s, transform 0.25s;
  z-index: 10;
  cursor: pointer;
}

.floorplan-carousel-arrow:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.floorplan-carousel-prev {
  left: 0;
}

.floorplan-carousel-next {
  right: 0;
}

@media (max-width: 768px) {
  .floorplan-carousel {
    padding: 0 0.75rem;
  }

  .floorplan-carousel-arrow {
    width: 38px;
    height: 38px;
    z-index: 20;
  }

  .floorplan-carousel-prev {
    left: -4px;
  }

  .floorplan-carousel-next {
    right: -4px;
  }

  .floorplan-image-wrap {
    max-width: 100%;
    aspect-ratio: 16 / 11;
  }
}

.floorplan-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mid-gray);
  box-shadow: none;
  cursor: pointer;
}

.floorplan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.06);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.floorplan-image-wrap:hover .floorplan-image {
  filter: blur(4px);
  transform: scale(1.08);
}

.floorplan-view-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 20 !important;
  white-space: nowrap;
  padding: 0.9rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(200, 64, 42, 0.45);
  pointer-events: auto;
}

.floorplan-view-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(200, 64, 42, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   CONNECTIVITY — Compact Height Layout
   ════════════════════════════════════════════════════════ */
.section-connectivity {
  background: #F5EAE2;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-top: 3rem;
}

.connectivity-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 2rem 2.25rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(22, 35, 63, 0.1);
}

.connectivity-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.15rem;
}

.connectivity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.connectivity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(22, 35, 63, 0.08);
  font-size: 0.98rem;
}

.connectivity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.connectivity-item-name {
  min-width: 0;
  flex: 1 1 auto;
  font-weight: 500;
  color: var(--text-dark);
}

.connectivity-item-time {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--red-dark);
  background: rgba(200, 64, 42, 0.08);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.connectivity-map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 35, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  cursor: pointer;
}

.connectivity-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.connectivity-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 63, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.connectivity-map:hover .connectivity-map-overlay {
  opacity: 1;
}

.connectivity-map:hover img {
  transform: scale(1.04);
}

.connectivity-map-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   MAP MODAL LIGHTBOX & ZOOM
   ════════════════════════════════════════════════════════ */
#map-modal,
#map-modal *,
.map-modal-overlay,
.map-modal-box,
.map-modal-body {
  overflow: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#map-modal::-webkit-scrollbar,
#map-modal *::-webkit-scrollbar,
.map-modal-box::-webkit-scrollbar,
.map-modal-body::-webkit-scrollbar,
.map-modal-overlay::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.map-modal-overlay {
  z-index: 1100;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.map-modal-box {
  position: relative;
  background: #fff;
  width: 94vw;
  max-width: 1200px;
  height: 90vh;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.map-modal-close-btn {
  position: absolute !important;
  top: 1.25rem !important;
  right: 1.25rem !important;
  left: auto !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 100;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.map-modal-close-btn:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

.map-modal-body {
  flex: 1;
  overflow: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1rem;
  scrollbar-width: none !important;
}

.map-modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
  cursor: zoom-in;
}

@media (max-width: 860px) {
  .connectivity-grid {
    grid-template-columns: 1fr;
  }

  .connectivity-map {
    min-height: 300px;
  }

  .connectivity-content {
    padding: 1.5rem 1.35rem;
  }
}

@media (max-width: 420px) {
  .connectivity-item-name {
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  .map-modal-box {
    width: 96vw;
    height: 92vh;
  }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s, background 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-red::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-red:hover::after {
  transform: translateX(100%);
}

.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 22px rgba(200, 64, 42, 0.32);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.form-logo img {
  height: 44px;
  width: auto;
}

.popup-title {
  font-size: clamp(1.15rem, 4.4vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  padding: 0.9rem 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 64, 42, 0.1);
}

.form-input.is-invalid {
  border-color: #d33;
  box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.1);
}

.form-input.is-valid {
  border-color: #2f9e5b;
  box-shadow: 0 0 0 3px rgba(47, 158, 91, 0.1);
}

.form-error-msg {
  display: none;
  font-size: 0.72rem;
  color: #d33;
  margin-top: 0.3rem;
  font-weight: 500;
}

.form-error-msg.visible {
  display: block;
  animation: fade-in-error 0.18s ease;
}

@keyframes fade-in-error {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════
   ENQUIRY POPUP
   ════════════════════════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 20, 32, 0.68);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-overlay.active {
  display: flex;
  animation: fade-in-overlay 0.25s ease;
}

@keyframes fade-in-overlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.popup-box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  padding: 2.75rem 2.5rem;
  animation: pop-in 0.3s ease;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-light);
  transition: background 0.25s, color 0.25s;
}

.popup-close-btn:hover {
  background: rgba(200, 64, 42, 0.1);
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .btn-red {
    padding: 0.7rem 1.35rem;
    font-size: 0.72rem;
  }

  .popup-box {
    padding: 1.85rem 1.4rem;
  }

  .popup-title {
    white-space: normal;
  }
}

/* Compresses the popup vertically on short viewports (short laptops,
   phones in landscape) so it fits without needing to scroll. */
@media (max-height: 700px) {
  .popup-box {
    padding: 1.5rem 2rem;
    max-height: 95vh;
  }

  .form-logo {
    margin-bottom: 0.25rem;
  }

  .form-logo img {
    height: 32px;
  }

  .popup-title {
    margin-bottom: 0.25rem;
  }

  .contact-form {
    gap: 0.75rem;
  }

  .form-label {
    margin-bottom: 0.25rem;
  }

  .form-input {
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT THE DEVELOPER
   ════════════════════════════════════════════════════════ */
.section-developer {
  background: var(--cream);
}

.developer-content {
  max-width: 1090px;
  margin: 3rem auto 0;
  text-align: center;
}

.developer-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.25rem;
}

.developer-pointer-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin: 0 auto 2.75rem;
}

.developer-pointer-item {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  background: rgba(200, 64, 42, 0.06);
  border: 1px solid rgba(200, 64, 42, 0.16);
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text-mid);
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.developer-pointer-item:hover {
  background: rgba(200, 64, 42, 0.11);
  border-color: rgba(200, 64, 42, 0.3);
}

.developer-pointer-item strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
}

.developer-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.developer-logo-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.developer-logo-box {
  display: inline-block;
  padding: 1.1rem 2.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(22, 35, 63, 0.12);
}

.developer-logo-img {
  max-height: 72px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .developer-pointer-list {
    gap: 0.6rem;
  }

  .developer-pointer-item {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT US
   ════════════════════════════════════════════════════════ */
.section-contact {
  background: #F5EAE2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

.contact-form-card {
  background: #fff;
  padding: 2.25rem 2.5rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(22, 35, 63, 0.1);
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background: #fff;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 35, 63, 0.1);
  display: flex;
  flex-direction: column;
}

.contact-map-iframe-wrap {
  flex: 1;
  min-height: 320px;
}

.contact-map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: auto;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 64, 42, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-item strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-detail-item a {
  color: var(--red-dark);
  text-decoration: underline;
  font-weight: 600;
}

.contact-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-form-subtitle {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-iframe-wrap {
    min-height: 280px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Polished 4-Column Layout with Identical Black Dividers
   ════════════════════════════════════════════════════════ */
.site-footer {
  background: #FAF4EB;
  border-top: 1px solid var(--mid-gray);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  color: var(--text-dark);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1fr 1.15fr;
  align-items: center;
  margin-bottom: 3.5rem;
}

.footer-col {
  padding: 0 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
}

.footer-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 180px;
  width: 1.5px;
  background: #333333;
  opacity: 0.85;
}

.footer-logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

.footer-logo-img--secondary {
  max-height: 55px;
  margin-top: 1rem;
}

.footer-qr-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.footer-rera-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 320px;
}

.footer-rera-text a {
  color: var(--red);
  text-decoration: underline;
}

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-list a {
  font-size: 1rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: var(--red);
}

.footer-contact-details {
  font-size: 0.98rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 300px;
}

.footer-contact-details a {
  color: var(--text-dark);
  text-decoration: none;
}

.footer-disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  text-align: justify;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-mid);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-bar a,
.footer-disclaimer-link {
  color: var(--red);
  text-decoration: underline;
}

.footer-disclaimer-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

#disclaimer-popup {
  align-items: flex-start;
}

.disclaimer-popup-box {
  max-width: 640px;
  margin-top: 6vh;
  animation: disclaimer-drop-in 0.35s ease;
}

@keyframes disclaimer-drop-in {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.altois-tag {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}

.altois-tag:hover {
  color: var(--red-dark);
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   STATUS PAGES — Thank You / Form Failed / Privacy Policy
   ════════════════════════════════════════════════════════ */
.status-page-wrap {
  background: var(--cream);
  min-height: 100vh;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-page-container {
  max-width: 680px;
  width: 100%;
}

.status-page-container--wide {
  max-width: 960px;
}

.status-page-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.status-page-logo img {
  height: 65px;
  width: auto;
  display: inline-block;
}

.status-page-card {
  background: #fff;
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 12px 36px rgba(22, 35, 63, 0.09);
}

.status-page-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── Privacy policy variant ── */
.privacy-content-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 10px 30px rgba(22, 35, 63, 0.08);
  text-align: left;
}

.privacy-block {
  margin-bottom: 2rem;
}

.privacy-block:last-child {
  margin-bottom: 0;
}

.privacy-block h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.privacy-block p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.privacy-block ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 0.75rem;
}

@media (max-width: 600px) {
  .status-page-wrap {
    /* Centering (align-items:center) clips the top of the card when its
       content is taller than the screen, since you can't scroll above the
       initial position — flow from the top instead on small screens. */
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }

  .status-page-card {
    padding: 2.25rem 1.75rem;
  }

  .status-page-logo img {
    height: 52px;
  }

  .status-title {
    font-size: 1.6rem;
  }

  .privacy-content-card {
    padding: 1.75rem 1.5rem;
  }

  .privacy-block h3 {
    font-size: 1.1rem;
  }
}