/* ================================================================
   PANTHEION — Palmera Project Page (pantheion-palmera.css)
   Green accent: #033029 (deep forest) throughout
   ================================================================ */

/* Active state on nav dropdown item */
.nav-active { color: white !important; font-weight: 600 !important; }

/* ================================================================
   HERO
   ================================================================ */
.pp-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pp-hero-bg {
  position: absolute; inset: 0;
  background: url('../palmera/palmera-project-hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
  animation: ppHeroZoom 12s ease-out forwards;
}
@keyframes ppHeroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.00); }
}
.pp-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.pp-hero-content {
  position: relative; z-index: 2;
  padding: 0 6vw;
  max-width: 900px;
}
.pp-hero-logo {
  margin-bottom: 16px;
}
.pp-hero-logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.pp-hero-title-fallback {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300;
  color: white;
  line-height: 0.9;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.pp-hero-address {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.pp-hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.4;
}
.pp-hero-tagline em { color: white; font-style: italic; }

/* Stats bar */
.pp-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pp-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.pp-hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.pp-hero-stat-divider { display: none; } /* handled via border-right above */
.pp-stat-val {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  color: white;
  line-height: 1;
}
.pp-stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.pp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}

/* MahaRERA badge — bottom right of hero */
.pp-hero-rera {
  position: absolute;
  bottom: 32px; right: 6vw;
  z-index: 2;
}
.pp-hero-rera img { height: 64px; width: auto; display: block; }
.pp-rera-fallback {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid #033029;
}
.pp-rera-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.pp-rera-num {
  font-size: 13px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
}

/* ================================================================
   STICKY TAB BAR
   ================================================================ */
.pp-tabbar {
  background: #033029;
  position: sticky;
  top: 76px; /* sits below the fixed site nav */
  z-index: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
/* Right-edge fade hinting the tab bar scrolls horizontally (mobile) */
.pp-tabbar::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(3,48,41,0) 0%, #033029 90%);
  opacity: 0;
  transition: opacity 0.3s;
}
.pp-tabbar.sticky {
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.pp-tabbar-inner {
  display: flex;
  align-items: center;
  padding: 0 5vw;
  overflow-x: auto;
  scrollbar-width: none;
}
.pp-tabbar-inner::-webkit-scrollbar { display: none; }

.pp-tab {
  flex-shrink: 0;
  padding: 0 20px;
  height: 52px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pp-tab:hover { color: rgba(255,255,255,0.85); }
.pp-tab.active {
  color: white;
  border-bottom-color: white;
}
.pp-tab-enquire {
  flex-shrink: 0;
  margin-left: auto;
  padding: 9px 22px;
  height: auto;
  background: var(--terra);
  border: none;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.pp-tab-enquire:hover { background: var(--brown); }

/* ================================================================
   TAB PANELS — show/hide
   ================================================================ */
.pp-panels { min-height: 60vh; }
.pp-panel { display: none; }
.pp-panel.active { display: block; }

/* ================================================================
   OVERVIEW TAB
   ================================================================ */

/* Intro two-col */
.pp-overview-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--bg);
}
.pp-ov-img {
  position: relative;
  overflow: visible;
  padding: 40px 40px 40px 5vw;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pp-ov-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.pp-ov-img:hover img { transform: scale(1.04); }
.pp-ov-img-corner {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 120px; height: 120px;
  border: 2px solid #033029;
  z-index: -1;
}
.pp-ov-text {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pp-ov-text .section-label { color: #033029; }
.pp-ov-text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}
.pp-ov-rera {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 12px;
  padding: 14px 20px;
  background: var(--bg-warm);
  border-left: 3px solid #033029;
}
.pp-ov-rera-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}
.pp-ov-rera-num {
  font-size: 14px;
  font-weight: 500;
  color: #033029;
  letter-spacing: 0.5px;
}

/* Features grid */
.pp-features {
  background: var(--bg-warm);
  padding: 80px 5vw;
  border-top: 1px solid var(--border);
}
.pp-features-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.pp-features-header .section-label { color: #033029; text-align: center; }
.pp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.pp-feature {
  background: var(--bg-warm);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s;
}
.pp-feature:hover { background: white; }
.pp-feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2px;
}
.pp-feature-icon img {
  width: 44px; height: 44px;
  object-fit: contain;
}
.pp-feature-icon-fallback {
  width: 44px; height: 44px;
  background: #033029;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
}
.pp-feature h4 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  color: #033029;
  line-height: 1.25;
}
.pp-feature p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Overview CTA */
.pp-ov-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #033029;
}
.pp-ov-cta-img {
  overflow: hidden;
}
.pp-ov-cta-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(0.85);
  transition: transform 0.8s ease;
}
.pp-ov-cta-img:hover img { transform: scale(1.04); }
.pp-ov-cta-text {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pp-ov-cta-text .section-label { color: rgba(255,255,255,0.5); }
.pp-ov-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 0;
}
.pp-ov-cta-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Centered CTA variant — no image, content centered */
.pp-ov-cta--centered {
  display: block;
  min-height: auto;
  text-align: center;
}
.pp-ov-cta--centered .pp-ov-cta-text {
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 6vw;
  align-items: center;
}
.pp-ov-cta--centered .pp-ov-cta-text .section-title {
  max-width: 720px;
}
.pp-ov-cta--centered .pp-ov-cta-text p {
  max-width: 620px;
}
.pp-ov-cta--centered .pp-ov-cta-actions {
  justify-content: center;
  flex-wrap: nowrap;
}

/* ================================================================
   AMENITIES TAB
   ================================================================ */
.pp-amenities-section {
  background: var(--bg);
  padding: 80px 5vw;
}
.pp-amenities-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.pp-amenities-header .section-label { color: #033029; text-align: center; }
.pp-amenities-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  margin-top: 8px;
}

/* Image strip */
.pp-amenities-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 72px;
  overflow: hidden;
}
.pp-amenities-imgs img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.pp-amenities-imgs img:hover { transform: scale(1.03); }

/* Amenity group */
.pp-amenities-group {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.pp-amenities-group-title {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  color: #033029;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
}
.pp-amenities-group--additions {
  background: var(--bg-warm);
  padding: 56px;
  border: 1px solid var(--border);
  margin-bottom: 0;
}
.pp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.pp-amenities-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.pp-amenity-card {
  background: var(--bg-warm);
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s;
}
.pp-amenity-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-amenity-card--light { background: var(--bg-warm); }
.pp-amenity-card:hover { background: white; }
.pp-amenity-card--light:hover { background: white; }
.pp-amenity-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(3,48,41,0.12);
  line-height: 1;
  margin-bottom: 2px;
}
.pp-amenity-num--dark { color: rgba(3,48,41,0.15); }
.pp-amenity-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.pp-amenity-icon img {
  width: 48px; height: 48px;
  object-fit: contain;
}
.pp-amenity-icon-fallback {
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: #033029;
  border-radius: 50%;
  color: white;
  font-size: 14px;
}
.pp-amenity-card h4 {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 500;
  color: #033029;
}
.pp-amenity-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   FLOOR PLANS TAB
   ================================================================ */
.pp-fp-section {
  background: var(--bg-warm);
  padding: 80px 5vw;
}
.pp-fp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.pp-fp-header .section-label { color: #033029; text-align: center; }
.pp-fp-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  margin-top: 8px;
}

.pp-fp-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 48px;
}
.pp-fp-tab {
  padding: 10px 36px;
  background: transparent;
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}
.pp-fp-tab.active,
.pp-fp-tab:hover {
  background: #033029;
  border-color: #033029;
  color: white;
}

.pp-fp-content { display: none; }
.pp-fp-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Floor plan image — clickable */
.pp-fp-img {
  background: white;
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.pp-fp-img img {
  max-width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.pp-fp-img:hover img { transform: scale(1.02); }
.pp-fp-img-hint {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(3,48,41,0.85);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 16px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.pp-fp-img:hover .pp-fp-img-hint { opacity: 1; }
@media (hover: none) { .pp-fp-img-hint { opacity: 1; } }

.pp-fp-details { padding-top: 8px; }
.pp-fp-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #033029;
  display: block;
  margin-bottom: 8px;
}
.pp-fp-name {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 300;
  color: #033029;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.pp-fp-area {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 28px;
}
.pp-fp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.pp-fp-list li {
  font-size: 14px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.pp-fp-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #033029;
}

/* ================================================================
   GALLERY TAB
   ================================================================ */
.pp-gallery-section {
  background: var(--bg);
  padding: 80px 5vw;
}
.pp-gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.pp-gallery-header .section-label { color: #033029; text-align: center; }
.pp-gallery-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

.pp-masonry {
  columns: 3;
  column-gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.pp-masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.pp-masonry-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.pp-masonry-item:hover img { transform: scale(1.04); }
.pp-masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(3,48,41,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.pp-masonry-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.pp-masonry-item:hover .pp-masonry-overlay { background: rgba(3,48,41,0.35); }
.pp-masonry-item:hover .pp-masonry-overlay span { opacity: 1; }

/* Gallery lightbox */
.pp-gallery-lightbox {
  position: fixed; inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pp-gallery-lightbox.active { opacity: 1; pointer-events: auto; }
.pp-gallery-lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 22px;
  cursor: pointer; padding: 8px; z-index: 10; transition: color 0.2s;
}
.pp-gallery-lb-close:hover { color: white; }
.pp-gallery-lb-prev, .pp-gallery-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 32px; line-height: 1;
  width: 48px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background 0.2s;
  border: none;
}
.pp-gallery-lb-prev { left: 20px; }
.pp-gallery-lb-next { right: 20px; }
.pp-gallery-lb-prev:hover, .pp-gallery-lb-next:hover { background: rgba(255,255,255,0.2); }
.pp-gallery-lb-inner {
  max-width: 1100px;
  width: 100%;
  position: relative; z-index: 2;
}
.pp-gallery-lb-inner img {
  width: 100%; max-height: 80vh;
  object-fit: contain; display: block;
}
.pp-gallery-lb-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}

/* ================================================================
   LOCATION TAB
   ================================================================ */
.pp-location-section {
  background: var(--bg);
  padding: 80px 5vw;
}
.pp-location-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.pp-location-header .section-label { color: #033029; text-align: center; }
.pp-location-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: center;
  margin-top: 10px;
}

/* Connectivity chips */
.pp-connectivity {
  max-width: 1000px;
  margin: 0 auto 72px;
}
.pp-conn-heading {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: #033029;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pp-conn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pp-conn-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pp-conn-chip:hover {
  border-color: #033029;
  box-shadow: 0 2px 12px rgba(3,48,41,0.08);
}
.pp-conn-chip img {
  width: 28px; height: 28px;
  object-fit: contain; flex-shrink: 0;
}
.pp-conn-icon-fb { font-size: 22px; flex-shrink: 0; }
.pp-conn-chip div { display: flex; flex-direction: column; gap: 2px; }
.pp-conn-chip strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}
.pp-conn-chip span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #033029;
  text-transform: uppercase;
}

/* Neighbourhood grid */
.pp-neighbourhood {
  max-width: 1000px;
  margin: 0 auto 72px;
  padding: 56px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
}
.pp-neigh-heading {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  color: #033029;
  margin-bottom: 8px;
}
.pp-neigh-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.pp-neigh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.pp-neigh-cat h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #033029;
  margin-bottom: 12px;
}
.pp-neigh-cat ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pp-neigh-cat ul li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
}

/* Map */
.pp-map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.pp-map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}
.pp-map-address {
  padding: 20px 24px;
  background: #033029;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pp-map-address strong {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.pp-map-address span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .pp-overview-intro { grid-template-columns: 1fr; min-height: auto; }
  .pp-ov-img { height: auto; padding: 24px 6vw; }
  .pp-ov-img img { height: auto; object-fit: contain; }
  .pp-ov-text { padding: 8px 6vw 56px; }
  .pp-features-grid { grid-template-columns: 1fr 1fr; }
  .pp-ov-cta { grid-template-columns: 1fr; min-height: auto; }
  .pp-ov-cta-img { height: 340px; }
  .pp-ov-cta-text { padding: 56px 6vw; }
  .pp-amenities-imgs { grid-template-columns: 1fr; }
  .pp-amenities-imgs img { height: 280px; }
  .pp-amenities-grid { grid-template-columns: 1fr 1fr; }
  .pp-amenities-grid--4 { grid-template-columns: 1fr 1fr; }
  .pp-amenities-group--additions { padding: 36px 24px; }
  .pp-fp-content.active { grid-template-columns: 1fr; gap: 32px; }
  .pp-fp-img img { height: 280px; }
  .pp-masonry { columns: 2; }
  .pp-conn-grid { grid-template-columns: 1fr 1fr; }
  .pp-neigh-grid { grid-template-columns: 1fr 1fr; }
  .pp-neighbourhood { padding: 36px; }
}

@media (max-width: 640px) {
  .pp-hero { height: auto; min-height: 100svh; align-items: flex-end; padding-bottom: 32px; }
  .pp-hero-content { padding-top: 110px; }
  .pp-hero-title-fallback { font-size: clamp(34px, 12vw, 56px); letter-spacing: 2px; word-break: break-word; }
  .pp-hero-logo img { max-width: 80vw; height: auto; }
  .pp-hero-stats { gap: 16px; }
  .pp-hero-stat { padding-right: 16px; margin-right: 16px; }
  .pp-stat-val { font-size: 20px; }
  .pp-hero-actions { flex-direction: column; }
  .pp-hero-rera { display: none; }
  .pp-features-grid { grid-template-columns: 1fr; }
  .pp-amenities-grid { grid-template-columns: 1fr; }
  .pp-amenities-grid--4 { grid-template-columns: 1fr; }
  .pp-tabbar::after { opacity: 1; }
  .pp-tabbar-inner { padding-right: 18vw; }
  .pp-masonry { columns: 1; }
  .pp-conn-grid { grid-template-columns: 1fr; }
  .pp-neigh-grid { grid-template-columns: 1fr 1fr; }
  .pp-neighbourhood { padding: 28px 20px; }
  .pp-ov-cta-actions { flex-direction: column; }
  .pp-ov-cta--centered .pp-ov-cta-actions { flex-wrap: wrap; flex-direction: column; }
  .pp-ov-cta--centered .pp-ov-cta-text { max-width: 100%; }
}


/* ── Premium Amenities carousel ── */
.pp-amenities-carousel {
  overflow: hidden;
}
.pp-amenities-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.pp-amenities-track .pp-amenity-card {
  flex: 0 0 calc((100% - 48px) / 3);
  margin-right: 24px;
  box-sizing: border-box;
}
.pp-amenities-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.pp-amenities-arrow {
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  color: var(--stone);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.pp-amenities-arrow:hover { color: var(--primary); }
@media (max-width: 960px) {
  .pp-amenities-track .pp-amenity-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .pp-amenities-track .pp-amenity-card { flex: 0 0 100%; margin-right: 0; }
}

/* ==== Amenities image carousel (replaces static .pp-amenities-imgs) ==== */
.pp-amenities-imgs-carousel {
  max-width: 1200px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.pp-amenities-imgs-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.pp-amenities-img-slide {
  flex: 0 0 calc((100% - 12px) / 2);  /* 2 per view on desktop, 12px gap */
  margin-right: 12px;
  box-sizing: border-box;
}
.pp-amenities-img-slide img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
}
.pp-amenities-imgs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 72px;
}
@media (max-width: 640px) {
  .pp-amenities-img-slide { flex: 0 0 100%; margin-right: 0; }  /* 1 per view on mobile */
  .pp-amenities-img-slide img { height: 280px; }
}

/* ==== Dotted pagination (shared dot style) ==== */
.pn-dot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(3,48,41,0.25);   /* Palmera green, faded */
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pn-dot:hover { background: rgba(3,48,41,0.5); }
.pn-dot.is-active {
  background: #033029;
  transform: scale(1.25);
}
/* Item 1 — "Premium Amenities" + "Thoughtful Design, Elevated Living." */
.pp-amenities-group-title { text-align: center; }
 
/* Item 3 — "Connectivity" */
.pp-conn-heading { text-align: center; }
 
/* Item 2 — "Discover Bandra West" */
.pp-neigh-heading { text-align: center; }