/* ============================================================
   THE ROYAL ADVISOR — PROPERTY DETAIL PAGE CSS
   ============================================================ */

/* ===== BREADCRUMB BAR ===== */
.prop-breadcrumb-bar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(184,150,46,0.1);
  padding: 14px 8%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: opacity .3s; }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb i { font-size: .5rem; color: var(--grey); }
.prop-bc-actions { display: flex; gap: 10px; }
.bc-action-btn {
  padding: 8px 18px; border: 1px solid rgba(184,150,46,0.3);
  background: none; color: var(--gold); font-size: .72rem;
  font-family: 'Raleway',sans-serif; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; gap: 7px;
}
.bc-action-btn:hover { background: var(--gold-faint); border-color: var(--gold); }
.bc-action-btn.saved { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ===== HERO VISUAL ===== */
.prop-hero {
  position: relative; height: 70vh; min-height: 500px; overflow: hidden;
}
.prop-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 10s ease;
}
.prop-hero:hover .prop-hero-bg { transform: scale(1.03); }
.ph-bg1 { background: url(../images/projects/2/banner1.jpeg) }
/* /* Diagonal pattern 
.prop-hero-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 50%);
  background-size: 24px 24px;
} */
.prop-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.15) 100%);
}
/* Big decorative letter */
.prop-hero-letter {
  position: absolute; right: 5%; bottom: -4%; z-index: 0;
  font-family: 'Cormorant Garamond',serif; font-size: 28vw; font-weight: 900;
  color: rgba(184,150,46,.04); line-height: 1; pointer-events: none;
}
.prop-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 8% 50px;
  animation: slideUp .9s ease .3s both;
}
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.prop-status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .62rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 14px; margin-bottom: 16px;
}
.pill-available { background: rgba(37,211,102,.15); color: #25d366; border: 1px solid rgba(37,211,102,.3); }
.pill-limited   { background: rgba(255,165,0,.15);  color: #ffa500; border: 1px solid rgba(255,165,0,.3); }
.pill-sold      { background: rgba(255,80,80,.12);  color: #ff6b6b; border: 1px solid rgba(255,80,80,.25); }
.pill-upcoming  { background: rgba(184,150,46,.15); color: var(--gold); border: 1px solid rgba(184,150,46,.35); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: dotBlink 1.5s ease-in-out infinite; }
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:.3} }

.prop-hero-title {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(2.2rem,5vw,4.2rem); font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 14px;
}
.prop-hero-title em { color: var(--gold); font-style: italic; }
.prop-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-bottom: 30px;
}
.prop-hero-meta span {
  font-size: .8rem; color: var(--text); display: flex; align-items: center; gap: 7px;
}
.prop-hero-meta i { color: var(--gold); font-size: .75rem; }
.prop-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.prop-hero-tag {
  font-size: .62rem; border: 1px solid rgba(184,150,46,.35);
  color: rgba(184,150,46,.8); padding: 4px 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Scroll indicator */
.prop-hero-scroll {
  position: absolute; bottom: 30px; right: 8%; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeDown 1s ease 1.2s both;
}
@keyframes fadeDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3} 50%{opacity:1} }
.prop-hero-scroll span { font-size: .58rem; color: var(--grey); letter-spacing: 2.5px; text-transform: uppercase; }

/* ===== STICKY NAV ===== */
.prop-sticky-nav {
  position: sticky; top: 73px; z-index: 900;
  background: rgba(8,8,8,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,150,46,.12);
  padding: 0 8%; display: flex; justify-content: space-between; align-items: center;
}
.prop-nav-tabs { display: flex; overflow-x: auto; }
.prop-nav-tab {
  padding: 17px 20px; font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: all .3s;
}
.prop-nav-tab:hover { color: var(--white); }
.prop-nav-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.prop-nav-cta { flex-shrink: 0; }

/* ===== QUICK STATS STRIP ===== */
.prop-stats-strip {
  background: linear-gradient(90deg,var(--dark2) 0%,#0e0900 50%,var(--dark2) 100%);
  border-bottom: 1px solid rgba(184,150,46,.1);
  display: grid; grid-template-columns: repeat(5,1fr);
}
.prop-stat-cell {
  padding: 30px 20px; text-align: center;
  border-right: 1px solid rgba(184,150,46,.08);
  transition: background .3s;
}
.prop-stat-cell:last-child { border-right: none; }
.prop-stat-cell:hover { background: rgba(184,150,46,.04); }
.prop-stat-icon { font-size: 1.1rem; color: rgba(184,150,46,.45); margin-bottom: 8px; }
.prop-stat-val {
  font-family: 'Cormorant Garamond',serif; font-size: 1.6rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.prop-stat-lbl { font-size: .62rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ===== SECTION COMMONS ===== */
.detail-sec { padding: 90px 8%; }
.detail-sec.bg-dark  { background: var(--dark); }
.detail-sec.bg-dark2 { background: var(--dark2); }
.detail-sec.bg-dark3 { background: var(--dark3); }

.sec-divider {
  height: 70px; display: flex; align-items: center; justify-content: center; position: relative;
}
.sec-divider::before {
  content: ''; position: absolute; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(184,150,46,.2),transparent);
}
.sec-divider-icon {
  background: var(--dark); padding: 0 18px; position: relative; z-index: 1;
  color: rgba(184,150,46,.35); font-size: 1rem;
}

/* ===== OVERVIEW / DESCRIPTION ===== */
.overview-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.overview-body p {
  color: var(--text); line-height: 2; font-size: .95rem; font-weight: 300;
  margin-bottom: 20px;
}
/* Highlights list */
.highlights { margin-top: 36px; }
.highlights-title {
  font-size: .68rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.highlights-title::before { content: ''; flex: 0 0 28px; height: 1px; background: var(--gold); }
.highlight-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: padding-left .3s;
}
.highlight-item:hover { padding-left: 6px; }
.highlight-item:last-child { border-bottom: none; }
.hl-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .8rem; transition: all .3s;
}
.highlight-item:hover .hl-icon { background: var(--gold); color: var(--dark); }
.hl-text h5 { font-size: .82rem; color: var(--white); font-weight: 700; margin-bottom: 3px; }
.hl-text p  { font-size: .78rem; color: var(--grey); line-height: 1.6; }

/* Info card (right column) */
.info-card {
  background: var(--dark2); border: 1px solid rgba(184,150,46,.1);
  padding: 38px 32px; position: relative; overflow: hidden; top: 0;
  transition: box-shadow .4s;
}
.info-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.info-card-title {
  font-family: 'Cormorant Garamond',serif; font-size: 1.5rem;
  color: var(--white); font-weight: 700; margin-bottom: 6px;
}
.info-card-title em { color: var(--gold); font-style: italic; }
.info-card-sub { font-size: .78rem; color: var(--grey); margin-bottom: 28px; line-height: 1.6; }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.info-row:last-of-type { border-bottom: none; }
.info-row-label { font-size: .7rem; color: var(--grey); letter-spacing: 1.5px; text-transform: uppercase; }
.info-row-value { font-size: .88rem; color: var(--white); font-weight: 600; text-align: right; }
.info-row-value.gold { color: var(--gold); }
.info-card-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.info-card-btn-outline {
  padding: 14px; border: 1px solid rgba(184,150,46,.4);
  background: none; color: var(--gold); font-family: 'Raleway',sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.info-card-btn-outline:hover { background: var(--gold-faint); border-color: var(--gold); }
/* Payment note */
.payment-note {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(184,150,46,.06); border-left: 3px solid var(--gold);
  font-size: .78rem; color: var(--text); line-height: 1.7;
}
.payment-note strong { color: var(--gold); }

/* ===== FEATURES & AMENITIES ===== */
.amenities-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-top: 50px;
}
.amenity-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.04);
  padding: 28px 22px; text-align: center; transition: all .4s; position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .4s;
}
.amenity-card:hover { border-color: rgba(184,150,46,.35); transform: translateY(-5px); }
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-icon {
  width: 54px; height: 54px; margin: 0 auto 16px;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); transition: all .4s;
}
.amenity-card:hover .amenity-icon { background: var(--gold); color: var(--dark); }
.amenity-card h4 { font-size: .8rem; color: var(--white); font-weight: 700; letter-spacing: .5px; }
.amenity-card p { font-size: .74rem; color: var(--grey); margin-top: 6px; line-height: 1.6; }

/* Feature categories */
.feature-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.feat-cat {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.04);
  padding: 30px 26px; transition: border-color .4s;
}
.feat-cat:hover { border-color: rgba(184,150,46,.25); }
.feat-cat-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(184,150,46,.15);
}
.feat-cat-icon {
  width: 40px; height: 40px; background: var(--gold-faint);
  border: 1px solid rgba(184,150,46,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.feat-cat-head h4 { font-size: .82rem; font-weight: 700; color: var(--white); letter-spacing: .5px; text-transform: uppercase; }
.feat-list { list-style: none; }
.feat-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--text); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li i { color: var(--gold); font-size: .65rem; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 260px 260px;
  gap: 8px; margin-top: 50px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-bg {
  width: 100%; height: 100%; transition: transform .6s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-bg { transform: scale(1.07); }
.gb1 { background: linear-gradient(145deg,#1a1200,#0d0900); }
.gb2 { background: linear-gradient(145deg,#001020,#00070d); }
.gb3 { background: linear-gradient(145deg,#0e0500,#180900); }
.gb4 { background: linear-gradient(145deg,#0a0012,#120018); }
.gb5 { background: linear-gradient(145deg,#001a00,#002200); }
.gallery-pattern {
  position: absolute; inset: 0; opacity: .06;
  background-image: repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 50%);
  background-size: 20px 20px;
}
.gallery-icon { font-size: 4rem; color: rgba(184,150,46,.18); position: relative; z-index: 1; }
.gallery-item:first-child .gallery-icon { font-size: 7rem; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  width: 48px; height: 48px; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  transform: scale(.7); transition: transform .35s;
}
.gallery-item:hover .gallery-zoom { transform: scale(1); }
.gallery-overlay span { font-size: .62rem; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }

/* Number badge */
.gallery-num {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,.7); border: 1px solid rgba(184,150,46,.3);
  padding: 4px 10px; font-size: .62rem; color: var(--gold); letter-spacing: 1.5px;
}

/* ===========================
   LIGHTBOX POPUP
   =========================== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.lb-img-wrap {
  position: relative; width: 100%; max-height: 78vh;
  overflow: hidden; border: 1px solid rgba(184,150,46,.2);
}
.lb-img-content {
  width: min(900px,90vw); height: min(560px,70vh);
  display: flex; align-items: center; justify-content: center;
  transform: scale(.9) translateY(20px); transition: transform .45s ease;
}
.lightbox.open .lb-img-content { transform: scale(1) translateY(0); }
.lb-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.lb-placeholder-icon { font-size: 8rem; color: rgba(184,150,46,.18); }
.lb-placeholder-text { font-size: .7rem; color: var(--grey); letter-spacing: 3px; text-transform: uppercase; }

/* Lightbox controls */
.lb-close {
  position: absolute; top: -50px; right: 0;
  width: 40px; height: 40px; border: 1px solid rgba(184,150,46,.4);
  background: none; color: var(--gold); font-size: 1.1rem;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: var(--gold); color: var(--dark); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border: 1px solid rgba(184,150,46,.35);
  background: rgba(0,0,0,.6); color: var(--gold); font-size: 1rem;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lb-caption {
  margin-top: 18px; text-align: center;
  font-size: .8rem; color: var(--text); letter-spacing: .5px;
}
.lb-counter { font-size: .65rem; color: var(--grey); margin-top: 6px; letter-spacing: 2px; }
/* Dots */
.lb-dots { display: flex; gap: 8px; margin-top: 16px; }
.lb-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2);
  cursor: pointer; transition: all .3s;
}
.lb-dot.active { background: var(--gold); transform: scale(1.4); }

/* ===== LOCATION / MAP ===== */
.map-wrap {
  width: 100%; height: 440px; border: 1px solid rgba(184,150,46,.15);
  position: relative; overflow: hidden; margin-top: 50px;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%,rgba(184,150,46,.05) 0%,transparent 65%),
              linear-gradient(135deg,#0a0a0a 0%,#0f0d00 50%,#0a0a0a 100%);
}
.map-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--gold) 1px,transparent 1px),
                    linear-gradient(90deg,var(--gold) 1px,transparent 1px);
  background-size: 50px 50px;
}
.map-pin-wrap { position: relative; z-index: 1; text-align: center; }
.map-pin-icon {
  font-size: 3.5rem; color: var(--gold);
  animation: pinBounce 2.2s ease-in-out infinite;
  display: block;
}
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.map-pulse {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(184,150,46,.08); border: 1px solid rgba(184,150,46,.2);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: pulseRing 2.2s ease-in-out infinite;
}
@keyframes pulseRing { 0%{transform:translate(-50%,-50%) scale(1);opacity:1} 100%{transform:translate(-50%,-50%) scale(2.4);opacity:0} }
.map-address-plate {
  margin-top: 20px; position: relative; z-index: 1;
  font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; color: var(--white);
  text-align: center;
}
.map-address-plate small {
  display: block; font-family: 'Raleway',sans-serif;
  font-size: .68rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px;
}
.map-info-chips {
  position: absolute; bottom: 20px; left: 8%; display: flex; gap: 10px; flex-wrap: wrap;
}
.map-chip {
  background: rgba(8,8,8,.85); border: 1px solid rgba(184,150,46,.2);
  padding: 8px 14px; font-size: .7rem; color: var(--text);
  display: flex; align-items: center; gap: 7px;
}
.map-chip i { color: var(--gold); }
.map-open-btn {
  position: absolute; bottom: 20px; right: 8%;
  background: var(--gold); color: var(--dark);
  border: none; padding: 10px 22px;
  font-family: 'Raleway',sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; gap: 8px;
}
.map-open-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.nearby-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 30px; }
.nearby-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.04);
  padding: 20px 18px; transition: all .3s;
}
.nearby-card:hover { border-color: rgba(184,150,46,.25); transform: translateY(-3px); }
.nearby-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 10px; }
.nearby-card h5 { font-size: .78rem; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.nearby-card p  { font-size: .72rem; color: var(--grey); }

/* ===== ENQUIRY CTA ===== */
.enquiry-sec {
  padding: 90px 8%;
  background: linear-gradient(135deg,#100c00 0%,#080808 60%,#0e0900 100%);
  position: relative; overflow: hidden;
}
.enquiry-sec::before {
  content: '♛'; font-size: 25rem; font-family: 'Cormorant Garamond',serif;
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  color: rgba(184,150,46,.03); line-height: 1; pointer-events: none;
}
.enquiry-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.enquiry-left h2 {
  font-family: 'Cormorant Garamond',serif; font-size: 2.5rem;
  color: var(--white); font-weight: 700; margin-bottom: 16px; line-height: 1.2;
}
.enquiry-left h2 em { color: var(--gold); font-style: italic; }
.enquiry-left p { color: var(--text); font-size: .92rem; line-height: 1.9; font-weight: 300; margin-bottom: 32px; }
.enquiry-perks { display: flex; flex-direction: column; gap: 14px; }
.enquiry-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: .84rem; color: var(--text);
}
.enquiry-perk i { color: var(--gold); font-size: .8rem; flex-shrink: 0; }
/* Form */
.enquiry-form { background: var(--dark2); border: 1px solid rgba(184,150,46,.12); padding: 42px 36px; }
.enquiry-form::before {
  content: ''; display: block; height: 2px; margin: -42px -36px 36px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.ef { display: flex; flex-direction: column; gap: 14px; }
.ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ef input, .ef textarea, .ef select {
  width: 100%; background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  color: var(--white); padding: 14px 18px;
  font-family: 'Raleway',sans-serif; font-size: .87rem;
  outline: none; transition: all .3s; -webkit-appearance: none; resize: none;
}
.ef select option { background: var(--dark3); }
.ef input::placeholder, .ef textarea::placeholder { color: rgba(255,255,255,.2); }
.ef input:focus, .ef textarea:focus, .ef select:focus {
  border-color: rgba(184,150,46,.55); background: var(--dark2);
  box-shadow: 0 0 0 3px rgba(184,150,46,.06);
}
.ef textarea { height: 110px; }

/* ===== RELATED PROPERTIES ===== */
.related-sec { padding: 90px 8%; background: var(--dark2); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.related-card {
  position: relative; height: 300px; overflow: hidden;
  text-decoration: none; display: block; transition: transform .4s;
}
.related-card:hover { transform: scale(1.02); }
.related-card-bg { position: absolute; inset: 0; transition: transform .6s; }
.related-card:hover .related-card-bg { transform: scale(1.08); }
.related-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.3) 60%,rgba(0,0,0,.05) 100%);
  padding: 24px 20px; display: flex; flex-direction: column; justify-content: flex-end;
}
.related-type { font-size: .6rem; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px; }
.related-name { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; color: var(--white); font-weight: 700; margin-bottom: 6px; }
.related-loc { font-size: .74rem; color: var(--text); display: flex; align-items: center; gap: 6px; }
.related-loc i { color: var(--gold); font-size: .65rem; }

/* ===========================
   FLOOR PLAN SECTION
   =========================== */

/* Tabs wrapper */
.fp-tabs-wrap {
  margin-top: 50px; overflow-x: auto;
  border-bottom: 1px solid rgba(184,150,46,0.12);
}
.fp-tabs {
  display: flex; gap: 0; min-width: max-content;
}
.fp-tab {
  padding: 18px 28px; background: none; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer; transition: all .35s; text-align: left;
  font-family: 'Raleway', sans-serif; position: relative;
}
.fp-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .35s;
}
.fp-tab.active::after, .fp-tab:hover::after { transform: scaleX(1); }
.fp-tab-label {
  display: block; font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  color: var(--grey); text-transform: uppercase; transition: color .3s;
}
.fp-tab-sub {
  display: block; font-size: .68rem; color: var(--grey); margin-top: 3px; opacity: .6;
}
.fp-tab.active .fp-tab-label,
.fp-tab:hover .fp-tab-label { color: var(--gold); }
.fp-tab.active .fp-tab-sub,
.fp-tab:hover .fp-tab-sub { opacity: 1; color: var(--text); }

/* Panels */
.fp-panels { margin-top: 0; }
.fp-panel { display: none; }
.fp-panel.active { display: block; }

.fp-panel-inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: start; padding-top: 40px;
}

/* Image */
.fp-img-wrap {
  position: relative; cursor: pointer; overflow: hidden;
  border: 1px solid rgba(184,150,46,0.12); transition: border-color .4s;
}
.fp-img-wrap:hover { border-color: rgba(184,150,46,0.4); }
.fp-img-wrap img { width: 100%; display: block; }

/* Placeholder (until real image) */
.fp-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fp-placeholder-0 { background: linear-gradient(145deg,#0e0900,#1a1200); }
.fp-placeholder-1 { background: linear-gradient(145deg,#000d1a,#001428); }
.fp-placeholder-2 { background: linear-gradient(145deg,#0a001a,#110026); }
.fp-placeholder-3 { background: linear-gradient(145deg,#001200,#001e00); }
.fp-placeholder-4 { background: linear-gradient(145deg,#1a0800,#260d00); }
.fp-placeholder-5 { background: linear-gradient(145deg,#001010,#001e1e); }
.fp-placeholder-6 { background: linear-gradient(145deg,#100010,#180018); }

.fp-placeholder-pattern {
  position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 40px),
                    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 40px);
}
.fp-grid-overlay {
  position: absolute; inset: 0; opacity: .03;
  background-image: repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 20px);
  background-size: 20px 20px;
}
.fp-placeholder-content {
  position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 30px;
}
.fp-placeholder-icon { font-size: 5rem; color: rgba(184,150,46,0.18); }
.fp-placeholder-title { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; color: var(--white); font-weight: 700; }
.fp-placeholder-hint { font-size: .65rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; }

/* Hover zoom btn */
.fp-zoom-btn {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 40px; height: 40px; background: rgba(0,0,0,.7);
  border: 1px solid rgba(184,150,46,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem;
  opacity: 0; transform: scale(.8); transition: all .35s;
}
.fp-img-wrap:hover .fp-zoom-btn { opacity: 1; transform: scale(1); }
.fp-zoom-btn:hover { background: var(--gold); color: var(--dark); }

/* Image label */
.fp-img-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  padding: 24px 18px 14px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: .72rem;
}
.fp-img-label span:first-child { color: var(--white); font-weight: 700; letter-spacing: 1px; }
.fp-img-click { color: var(--gold); font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* Panel info (right side) */
.fp-panel-info { position: sticky; top: 160px; }
.fp-info-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(184,150,46,.15);
}
.fp-floor-badge {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond',serif; font-size: 1rem; font-weight: 900; color: var(--dark);
}
.fp-info-title { font-family: 'Cormorant Garamond',serif; font-size: 1.5rem; color: var(--white); font-weight: 700; }
.fp-info-sub { font-size: .78rem; color: var(--grey); margin-top: 4px; }

.fp-info-rows { display: flex; flex-direction: column; gap: 0; }
.fp-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .82rem;
}
.fp-info-row:last-child { border-bottom: none; }
.fp-info-row span:first-child { color: var(--grey); }
.fp-info-row span:last-child { color: var(--white); font-weight: 600; }
.fp-available { color: #25d366 !important; }
.fp-limited { color: #ffa500 !important; }


/* ===========================
   INSTALMENT PLAN SECTION
   =========================== */

/* Steps row */
.inst-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; margin-top: 60px; position: relative;
}
/* Connecting line */
.inst-steps::before {
  content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  opacity: .35; z-index: 0;
}

.inst-step {
  display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1;
}
.inst-step-connector {
  position: absolute; top: 44px; right: -50%; width: 100%; height: 2px;
  background: transparent; z-index: -1;
}

/* Circle */
.inst-step-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--dark); border: 2px solid rgba(184,150,46,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; transition: all .4s; z-index: 1;
  animation: circlePulse 3s ease-in-out infinite;
}
.inst-step:nth-child(1) .inst-step-circle { animation-delay: 0s; }
.inst-step:nth-child(2) .inst-step-circle { animation-delay: .4s; }
.inst-step:nth-child(3) .inst-step-circle { animation-delay: .8s; }
.inst-step:nth-child(4) .inst-step-circle { animation-delay: 1.2s; }
.inst-step:nth-child(5) .inst-step-circle { animation-delay: 1.6s; }
@keyframes circlePulse {
  0%,100% { border-color: rgba(184,150,46,.3); }
  50%      { border-color: rgba(184,150,46,.8); }
}
.inst-step-num {
  font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.inst-circle-featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border-color: var(--gold) !important;
  width: 100px !important; height: 100px !important;
  margin-top: -6px;
  box-shadow: 0 0 0 8px rgba(184,150,46,.12), 0 0 30px rgba(184,150,46,.2);
  animation: featuredPulse 2s ease-in-out infinite !important;
}
@keyframes featuredPulse {
  0%,100% { box-shadow: 0 0 0 8px rgba(184,150,46,.12), 0 0 30px rgba(184,150,46,.2); }
  50%      { box-shadow: 0 0 0 16px rgba(184,150,46,.06), 0 0 50px rgba(184,150,46,.35); }
}
.inst-circle-featured .inst-step-num { color: var(--dark) !important; font-size: 1.6rem !important; }

/* Card */
.inst-step-card {
  background: var(--dark2); border: 1px solid rgba(184,150,46,.1);
  padding: 24px 20px; text-align: center; width: 100%; transition: all .4s;
}
.inst-step:hover .inst-step-card { border-color: rgba(184,150,46,.35); transform: translateY(-4px); }
.inst-card-featured {
  background: linear-gradient(135deg, #150e00, #0f0900) !important;
  border-color: rgba(184,150,46,.4) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.inst-step-percent {
  font-family: 'Cormorant Garamond',serif; font-size: 2.8rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.inst-percent-featured { font-size: 3.4rem !important; }
.inst-step-percent span { font-size: 1.5rem; vertical-align: super; }
.inst-step-title {
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin: 10px 0 10px;
}
.inst-step-desc { font-size: .78rem; color: var(--grey); line-height: 1.7; margin-bottom: 14px; }
.inst-step-amount {
  font-size: .78rem; color: var(--gold); font-weight: 700;
  background: rgba(184,150,46,.08); border: 1px solid rgba(184,150,46,.2);
  padding: 6px 10px; margin-bottom: 12px; display: inline-block;
}
.inst-step-tag {
  font-size: .6rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); border-top: 1px solid rgba(255,255,255,.05); padding-top: 12px; display: block;
}
.inst-tag-featured { color: var(--gold) !important; border-color: rgba(184,150,46,.2) !important; }

/* Summary bar */
.inst-summary {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: linear-gradient(90deg, var(--dark2) 0%, #0e0900 50%, var(--dark2) 100%);
  border: 1px solid rgba(184,150,46,.15); padding: 30px 40px;
  gap: 0; margin-top: 50px;
}
.inst-sum-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 32px; flex-shrink: 0;
}
.inst-sum-item > i { font-size: 1.2rem; color: var(--gold); }
.inst-sum-item span { display: block; font-size: .62rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.inst-sum-item strong { font-size: .92rem; color: var(--white); font-weight: 700; }
.inst-sum-divider { width: 1px; height: 40px; background: rgba(184,150,46,.2); flex-shrink: 0; }
.inst-sum-cta { border: none !important; }

/* Notes */
.inst-notes {
  background: var(--dark2); border: 1px solid rgba(184,150,46,.12);
  padding: 36px 40px; margin-top: 40px; position: relative;
}
.inst-notes::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,.5), transparent);
}
.inst-notes-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.inst-notes-head i { color: var(--gold); font-size: 1.1rem; }
.inst-notes-head h4 {
  font-size: .82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.inst-notes-list {
  padding-left: 20px; display: flex; flex-direction: column; gap: 12px;
}
.inst-notes-list li {
  font-size: .84rem; color: var(--text); line-height: 1.8;
  padding-left: 8px;
}
.inst-notes-list li::marker { color: var(--gold); }
.inst-notes-list strong { color: var(--white); }

/* ===========================
   RESPONSIVE — NEW SECTIONS
   =========================== */
@media (max-width:1100px){
  .inst-steps { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .inst-steps::before { display: none; }
  .fp-panel-inner { grid-template-columns: 1fr; }
  .fp-panel-info { position: static; }
}
@media (max-width:900px){
  .inst-steps { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .inst-summary { gap: 14px; flex-direction: column; text-align: center; }
  .inst-sum-divider { width: 40px; height: 1px; }
}
@media (max-width:768px){
  .fp-tabs { gap: 0; }
  .fp-tab { padding: 14px 16px; }
  .fp-tab-label { font-size: .7rem; }
  .inst-steps { grid-template-columns: 1fr; gap: 16px; }
  .inst-steps::before { display: none; }
  .inst-step-circle { width: 70px; height: 70px; }
  .inst-notes { padding: 24px 20px; }
  .inst-summary { padding: 20px; }
}

@media (max-width:1100px){
  .amenities-grid       { grid-template-columns: repeat(3,1fr); }
  .feature-cats         { grid-template-columns: repeat(2,1fr); }
  .nearby-grid          { grid-template-columns: repeat(2,1fr); }
  .prop-stats-strip     { grid-template-columns: repeat(3,1fr); }
  .prop-stats-strip .prop-stat-cell:nth-child(4),
  .prop-stats-strip .prop-stat-cell:nth-child(5) { grid-column: span 1; }
}
@media (max-width:900px){
  .overview-grid  { grid-template-columns: 1fr; }
  .enquiry-grid   { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 3; height: 280px; }
  .lb-prev { left: -48px; }
  .lb-next { right: -48px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px){
  .detail-sec     { padding: 60px 5%; }
  .prop-hero      { height: 55vh; min-height: 440px; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .feature-cats   { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
  .nearby-grid    { grid-template-columns: 1fr 1fr; }
  .related-grid   { grid-template-columns: 1fr; }
  .prop-stats-strip { grid-template-columns: repeat(2,1fr); }
  .ef-row         { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { display: none; }
  .map-info-chips { display: none; }
  .enquiry-form   { padding: 30px 22px; }
}




/* ============================================
   TEMPORARY DISABLE — HOVER & CLICK EFFECTS
   Comment OUT ya DELETE karo jab on karna ho
   ============================================ */

/* --- GALLERY disable --- */
.effects-off .gallery-item {
  cursor: default !important;
  pointer-events: none !important;
}
.effects-off .gallery-item .gallery-overlay { display: none !important; }
.effects-off .gallery-item .gallery-bg      { transform: none !important; transition: none !important; }
.effects-off .gallery-item:hover .gallery-bg { transform: none !important; }

/* --- FLOOR PLAN disable --- */
.effects-off .fp-img-wrap {
  cursor: default !important;
  pointer-events: none !important;
}
.effects-off .fp-img-wrap:hover            { border-color: rgba(184,150,46,0.12) !important; }
.effects-off .fp-img-wrap .fp-zoom-btn     { display: none !important; }
.effects-off .fp-img-wrap .fp-img-label .fp-img-click { display: none !important; }
.effects-off .fp-img-wrap .fp-img-placeholder,
.effects-off .fp-img-wrap img              { transform: none !important; transition: none !important; }