/* ============================================================
   UPSWING REALTY — DESIGN TOKENS (identical to listing page)
============================================================ */
:root {
  --ink:        #16212B;
  --ink-soft:   #2B3944;
  --bg:         #F7F4EE;
  --stone:      #ECE7DC;
  --gold:       #B08D57;
  --gold-light: #D9C29C;
  --gold-dark:  #8A6D40;
  --text-muted: #5C6670;
  --white:      #FFFFFF;
  --radius:     2px;
  --maxw:       1200px;
  --shadow:     0 20px 40px -20px rgba(22,33,43,0.25);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
h1,h2,h3,h4 { font-family: 'Fraunces', serif; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }

/* ── UTILITIES ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--radius); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; cursor: pointer; border: 1px solid transparent;
  transition: all .25s ease; font-family: 'Manrope', sans-serif;
}
.btn-gold    { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-dark    { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); }
.btn-outline-gold { background: transparent; color: var(--gold-dark); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.45); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.skyline { display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.skyline span { width: 3px; background: var(--gold); display: block; }


/* =============================================
   HEADER (exact from homepage)
============================================= */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(22,33,43,0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 0;
}
header.scrolled {
  background: rgba(22,33,43,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 1px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo .skyline span:nth-child(1) { height: 8px; }
.logo .skyline span:nth-child(2) { height: 14px; }
.logo .skyline span:nth-child(3) { height: 10px; }
.logo .skyline span:nth-child(4) { height: 16px; }
.logo .skyline span:nth-child(5) { height: 11px; }
.logo-text { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.logo-text span { color: var(--gold-light); }
nav ul { display: flex; gap: 34px; }
nav a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; transition: color .2s; }
nav a:hover, nav a.active { color: var(--gold-light); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { color: var(--white); font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100%;
  background: var(--ink); z-index: 1100;
  padding: 80px 32px 40px; display: flex; flex-direction: column; gap: 8px;
  transition: right .3s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.3);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1050; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO BANNER
============================================================ */
.pd-banner {
  position: relative; min-height: 520px;
  background: var(--ink); overflow: hidden;
  display: flex; align-items: flex-end;
}

.pd-banner-content {
  position: relative; z-index: 2; width: 100%;
  padding: 80px 0 80px;display: flex;justify-content: center;
    align-items: center;
    text-align: center;
}
.pd-breadcrumb {
  align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.pd-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.pd-breadcrumb a:hover { color: var(--gold-light); }
.pd-breadcrumb span { color: rgba(255,255,255,.3); }
.pd-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white);
  margin-bottom: 14px; max-width: 780px;
}
.pd-banner-location {
 align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 24px;
}
.pd-banner-location svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }
.pd-banner-badges {  gap: 10px; flex-wrap: wrap; }
.pd-badge {
  padding: 5px 14px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 2px;
}
.pd-badge-gold    { background: var(--gold); color: var(--white); }
.pd-badge-outline { border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.8); }

/* ============================================================
   STICKY SECTION NAV
============================================================ */
.pd-nav {
  background: var(--white);
  position:sticky;

top:82px;     /* equal to header height */

z-index:999;
  border-bottom: 1px solid var(--stone);
  position: sticky;  z-index: 600;
  box-shadow: 0 2px 16px rgba(22,33,43,.07);
}
.pd-nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; overflow-x: auto;
  scrollbar-width: none; gap: 0;
}

@media(max-width:991px){

.pd-nav{

top:72px;

}

}
.pd-nav-inner::-webkit-scrollbar { display: none; }
.pd-nav-link {
  flex-shrink: 0; padding: 0 20px; height: 52px;
  display: flex; align-items: center;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
  letter-spacing: .02em;
}
.pd-nav-link:hover  { color: var(--gold-dark); }
.pd-nav-link.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

/* ============================================================
   SHARED SECTION WRAPPER
============================================================ */
.pd-section { padding: 80px 0; }
.pd-section-alt { padding: 80px 0; background: var(--stone); }
.pd-section-dark { padding: 80px 0; background: var(--ink); }

.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--ink); }
.section-head h2 em { color: var(--gold-dark); font-style: normal; }
.section-head p { color: var(--text-muted); margin-top: 12px; font-size: 15px; max-width: 560px; }
.section-head-center { text-align: center; }
.section-head-center .eyebrow { justify-content: center; }
.section-head-center p { margin: 12px auto 0; }

/* Divider line */
.gold-rule { width: 40px; height: 2px; background: var(--gold); margin: 18px 0 0; }
.gold-rule-center { margin: 18px auto 0; }

/* ============================================================
   1. PROPERTY DETAILS + LEAD FORM  (2-col equal row)
============================================================ */
.pd-top-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

/* Details box */
.detail-box {
  border: 1px solid var(--stone); border-radius: var(--radius);
  overflow: hidden;
}
.detail-box-head {
  background: var(--ink); color: var(--white);
  padding: 18px 24px; font-size: 14px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; }
.detail-item {
  padding: 18px 11px;
  border-bottom: 1px solid var(--stone);
  border-right: 1px solid var(--stone);
}
.detail-item:nth-child(even) { border-right: none; }
.detail-item:nth-last-child(-n+2) { border-bottom: none; }
.detail-item .di-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.detail-item .di-val { font-size: 14px; font-weight: 700; color: var(--ink); }
.detail-item.highlight .di-val { color: var(--gold-dark); }

/* Lead form card */
.lead-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(22,33,43,.10); padding: 40px;
}
.lead-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.lead-card .lead-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.lead-field {
  width: 100%; margin-bottom: 12px;
  padding: 18px 14px;
  border: 1px solid #DFD9CB; border-radius: var(--radius);
  font-family: 'Manrope', sans-serif; font-size: 14px;
  background: var(--bg); color: var(--ink);
  transition: border-color .2s;
}
.lead-field:focus { outline: none; border-color: var(--gold); }
.lead-select { appearance: none; cursor: pointer; }
.lead-submit { width: 100%; margin-top: 4px; }
.lead-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.lead-msg  { font-size: 13px; font-weight: 600; color: var(--gold-dark); text-align: center; margin-top: 8px; }

/* ============================================================
   2. OVERVIEW  (centered text)
============================================================ */
.overview-text {
  max-width: 1060px; margin: 0 auto; text-align: center;
}
.overview-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 22px; }
.overview-text p {
  font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px;
}

/* ============================================================
   3. HIGHLIGHTS  (image left + list right)
============================================================ */
.highlights-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.highlight-img {
  border-radius: var(--radius); overflow: hidden; height: 100%;
  background: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.highlight-img-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: rgba(255,255,255,.2); font-size: 13px;
  background: linear-gradient(135deg, #16212b 0%, #2b3944 100%);
}
.highlight-img-placeholder::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'><rect x='0' y='40' width='40' height='60' fill='rgba(176,141,87,.12)'/><rect x='48' y='20' width='35' height='80' fill='rgba(176,141,87,.14)'/><rect x='90' y='50' width='30' height='50' fill='rgba(176,141,87,.10)'/><rect x='128' y='10' width='50' height='90' fill='rgba(176,141,87,.15)'/><rect x='186' y='35' width='40' height='65' fill='rgba(176,141,87,.11)'/><rect x='234' y='55' width='32' height='45' fill='rgba(176,141,87,.10)'/><rect x='274' y='5' width='55' height='95' fill='rgba(176,141,87,.15)'/><rect x='337' y='30' width='42' height='70' fill='rgba(176,141,87,.12)'/><rect x='387' y='20' width='48' height='80' fill='rgba(176,141,87,.13)'/><rect x='443' y='42' width='36' height='58' fill='rgba(176,141,87,.11)'/><rect x='487' y='15' width='52' height='85' fill='rgba(176,141,87,.14)'/><rect x='547' y='38' width='40' height='62' fill='rgba(176,141,87,.11)'/></svg>")
  no-repeat bottom/cover;
}
.highlight-img-placeholder svg { width: 60px; height: 60px; opacity: .15; position: relative; z-index: 1; }
.highlight-img-placeholder span { position: relative; z-index: 1; }

.highlight-list { display: flex; flex-direction: column; gap: 16px; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 8px 12px;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius);
  transition: border-color .25s, box-shadow .25s;
}
.highlight-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(176,141,87,.12);
}
.hi-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--stone); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.hi-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-dark); stroke-width: 2; }
.hi-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.hi-text p  { font-size: 11px;
    font-weight: 700;
    margin-bottom: 1.5px;
    color: var(--ink);
}

@media screen and (max-width:456px){
  .hi-text p {
    font-size: 9px;
    font-weight: 500;
}

.overview-text p{
  text-align: justify;
}
}

/* ============================================================
   4. AMENITIES
============================================================ */
.amenities-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.amenity-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 15px 10px; text-align: center;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.amenity-item:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(176,141,87,.12);
}
.amenity-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--stone);
  display: flex; align-items: center; justify-content: center;
}
.amenity-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-dark); stroke-width: 1.8; }
.amenity-item span { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ============================================================
   5. PRICE LIST
============================================================ */
.luxury-price-box{

position:relative;
display:grid;
grid-template-columns:1.4fr 1fr .8fr;
align-items:center;
gap:50px;
margin-bottom: 20px;
padding:50px;

background:
linear-gradient(135deg,#111 0%,#181818 45%,#111 100%);

border:1px solid rgba(176,141,87,.35);

border-radius:24px;

overflow:hidden;

box-shadow:
0 20px 70px rgba(0,0,0,.25);

}

.luxury-price-box::before{

content:"";

position:absolute;

width:380px;
height:380px;

right:-120px;
top:-120px;

background:radial-gradient(circle,
rgba(176,141,87,.22),
transparent 70%);

}

.luxury-price-box::after{

content:"";

position:absolute;

left:-80px;
bottom:-80px;

width:240px;
height:240px;

border-radius:50%;

background:radial-gradient(circle,
rgba(255,255,255,.05),
transparent 75%);

}

.luxury-left{

position:relative;
z-index:2;

}

.price-label{

display:inline-block;

padding:8px 18px;

border:1px solid rgba(176,141,87,.4);

border-radius:30px;

color:#d7b97c;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:18px;

}

.luxury-left h2{

font-size:32px;

line-height:1;

margin:0;

color:#fff;

font-weight:800;

}

.luxury-left h2 span{

font-size:20px;

}

.luxury-left p{

margin-top:20px;

max-width:420px;

line-height:1.8;

color:#cfcfcf;

}

.luxury-center{

position:relative;
z-index:2;

display:flex;

flex-direction:column;

gap:25px;

}

.info{

padding-left:22px;

border-left:2px solid #b08d57;

}

.info span{

display:block;

font-size:12px;

text-transform:uppercase;

letter-spacing:2px;

color:#999;

margin-bottom:6px;

}

.info strong{

font-size:20px;

color:#fff;

font-weight:700;

}

.luxury-right{

position:relative;
z-index:2;

text-align:center;

}

.luxury-btn{

padding:16px 34px;

background:linear-gradient(135deg,#cba45c,#a77a2c);

border:none;

border-radius:50px;

color:#fff;

font-size:15px;

font-weight:700;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 35px rgba(176,141,87,.35);

}

.luxury-btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 45px rgba(176,141,87,.45);

}

.luxury-right small{

display:block;

margin-top:18px;

color:#aaa;

font-size:13px;

}

@media(max-width:992px){

.luxury-price-box{

grid-template-columns:1fr;

text-align:center;

gap:35px;

padding:35px;

}

.luxury-left p{

margin:auto;
margin-top:20px;

}

.info{

border:none;

padding:0;

}

}

/* ============================================================
   6. FLOOR PLANS
============================================================ */
.floor-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.floor-card {
  border: 1px solid var(--stone); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
  transition: border-color .25s, box-shadow .25s;
}
.floor-card:hover { border-color: var(--gold); box-shadow: 0 12px 32px rgba(22,33,43,.10); }
.floor-thumb {
  height: 250px; position: relative; overflow: hidden;
  background: var(--stone);
  display: flex; align-items: center; justify-content: center;
}
.floor-blur {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ECE7DC, #DFD8C8);
  filter: blur(3px);
}
.floor-blur svg { width: 80%; opacity: .3; }
.floor-hover {
  position: absolute; inset: 0;
  background: rgba(22,33,43,.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.floor-card:hover .floor-hover { opacity: 1; }
.floor-hover a {
  background: var(--gold); color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 12px 26px; border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.floor-card:hover .floor-hover a { transform: scale(1.04); }
.floor-hover a:hover { background: var(--gold-dark); }
.floor-label {
  padding: 14px 18px; font-weight: 700; font-size: 14px;
  border-top: 1px solid var(--stone); color: var(--ink);
}



/* ============================================================
   7. CTA STRIP
============================================================ */
.cta-strip {
  background: var(--ink); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(176,141,87,.16) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 60%, rgba(176,141,87,.10) 0%, transparent 45%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1; text-align: center;
}
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 14px; }
.cta-inner p  { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   8. LOCATION ADVANTAGE
============================================================ */
.location-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.location-map {
  height:450px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stone); position: relative;
  background: #e8e3d8;
  display: flex; align-items: center; justify-content: center;
}
.location-map img{
  object-fit: cover;
  object-position: center;
}
.location-map .map-grid {
  position: absolute; inset: 0; opacity: .25;
  background:
    repeating-linear-gradient(0deg, rgba(22,33,43,.4) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(22,33,43,.4) 0 1px, transparent 1px 48px);
}
.map-pin {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(176,141,87,.25), 0 0 0 18px rgba(176,141,87,.10);
}
.location-list { display: flex; flex-direction: column; }
.loc-item {
  display: flex; align-items: center; gap: 22px;
  padding: 13px 0; border-bottom: 1px solid var(--stone);
}
.loc-item:last-child { border-bottom: none; }
.loc-dist {
  min-width: 58px; text-align: center;
  font-size: 1.1rem; font-weight: 700; color: var(--gold-dark); font-family: 'Fraunces', serif; line-height: 1;
}
.loc-dist small { display: block; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }
.loc-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.loc-cat  { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   9. SPECIFICATIONS
============================================================ */


.specs-luxury{

background:#faf9f7;

}

.lux-spec-list{

max-width:1100px;

margin:auto;

}

.lux-spec-item{

display:grid;

grid-template-columns:110px 1fr 140px;

align-items:center;

padding:38px 0;

border-bottom:1px solid rgba(0,0,0,.08);

cursor:pointer;

transition:.45s;

position:relative;

}

.lux-spec-item:last-child{

border-bottom:none;

}

.lux-spec-item::before{

content:"";

position:absolute;

left:0;
bottom:0;

width:0;

height:2px;

background:#b08d57;

transition:.5s;

}

.lux-spec-item:hover::before{

width:100%;

}

.lux-no{

font-size:60px;

font-weight:700;

color:rgba(176,141,87,.18);

transition:.4s;

font-family:serif;

}

.lux-title h3{

font-size:32px;

font-weight:600;

margin-bottom:8px;

color:#111;

transition:.3s;

}

.lux-title p{

font-size:16px;

color:#666;

margin:0;

transition:.3s;

}

.lux-arrow{

text-align:right;

}

.lux-arrow span{

font-size:13px;

letter-spacing:3px;

text-transform:uppercase;

color:#999;

position:relative;

padding-right:22px;

}

.lux-arrow span::after{

content:"→";

position:absolute;

right:0;

transition:.3s;

}

.lux-spec-item:hover .lux-arrow span{

color:#b08d57;

}

.lux-spec-item:hover .lux-arrow span::after{

transform:translateX(8px);

}

.lux-spec-item:hover .lux-no{

color:#b08d57;

transform:translateX(10px);

}

.lux-spec-item:hover .lux-title{

transform:translateX(15px);

}

.lux-spec-item:hover .lux-title h3{

color:#b08d57;

}

@media(max-width:768px){

.lux-spec-item{

grid-template-columns:60px 1fr;

gap:15px;

}

.lux-arrow{

display:none;

}

.lux-no{

font-size:34px;

}

.lux-title h3{

font-size:24px;

}

.lux-title p{

font-size:14px;

}

}

/* ============================================================
   10. REVIEWS
============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius); padding: 26px;
  transition: border-color .25s, box-shadow .25s;
}
.review-card:hover { border-color: var(--gold); box-shadow: 0 10px 28px rgba(176,141,87,.10); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 18px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-date { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   11. FAQ
============================================================ */
/* =====================================================
   FAQ 2026
===================================================== */

.faq2026-grid{
    column-count:2;
    column-gap:30px;
}

.faq2026-item{

    display:inline-block;
    width:100%;

    margin:0 0 30px;

    background:#fff;
    border:1px solid #ece7df;
    border-left:4px solid transparent;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    break-inside:avoid;
    -webkit-column-break-inside:avoid;

}

.faq2026-item:hover{

    transform:translateY(-5px);

    border-left-color:#b08d57;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.faq2026-item.active{

    border-left-color:#b08d57;
padding: 10px 0px;
}

.faq2026-question{

    width:100%;

    border:none;
    background:none;

    cursor:pointer;

    padding:17px 20px;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    text-align:left;

}

.faq-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.faq-no{

    font-family:Fraunces;

    font-size:48px;

    color:#d8c19b;

    line-height:1;

    min-width:55px;

}

.faq-title{

    font-size:18px;

    font-weight:700;

    color:#111;

    line-height:1.5;

}

.faq2026-icon{

    width:46px;

    height:46px;

    min-width:46px;

    border-radius:50%;

    background:#f7f5f1;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    transition:.35s;

    color:#111;

}

.faq2026-item.active .faq2026-icon{

    background:#b08d57;

    color:#fff;

    transform:rotate(45deg);

}

.faq2026-answer{

    overflow:hidden;

    max-height:0;

    padding:0 28px 0 100px;

    color:#666;

    line-height:1.9;

    transition:max-height .45s ease,padding .35s ease;

}

.faq2026-answer p{

    margin:0;

}

.faq2026-item.active .faq2026-answer{

    padding:0 20px 22px 30px;

font-size: 14px;
}

@media(max-width:991px){

    .faq2026-grid{

        column-count:1;

    }

    .faq2026-question{

        padding:22px;

    }

    .faq-no{

        font-size:34px;

        min-width:38px;

    }

    .faq-title{

        font-size:16px;

    }

    .faq2026-answer{

        padding:0 22px 0 60px;

    }

    .faq2026-item.active .faq2026-answer{

        padding:0 22px 22px 60px;


    }

}


/* ============================================================
   12. CONTACT + DEVELOPER
============================================================ */
.contact-dev-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.dev-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius); padding: 32px;
}
.dev-badge {
  width: 72px; height: 72px; background: var(--ink); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 18px;
}
.dev-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.dev-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.dev-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dev-stat {
  padding: 16px; background: var(--stone); border-radius: var(--radius); text-align: center;
}
.dev-stat-num { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold-dark); }
.dev-stat-lbl { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

.contact-form-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(22,33,43,.10); padding: 32px;
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-card p  { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }

/* ============================================================
   FLOATING CALL / WHATSAPP BUTTONS
============================================================ */
.float-btns {
  position: fixed; z-index: 800;
  display: flex; flex-direction: column; gap: 12px;
  right: 22px; bottom: 130px;  /* desktop: right side */
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(22,33,43,.22);
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(22,33,43,.28); }
.float-btn-wa   { background: #25D366; color: var(--white); }
.float-btn-call { background: var(--gold); color: var(--white); }
.float-btn svg  { width: 22px; height: 22px; fill: currentColor; }

/* ============================================================
   CONTACT POPUP — identical to listing page
============================================================ */
.contact-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(22,33,43,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease; padding: 20px;
}
.contact-modal-overlay.active { opacity: 1; visibility: visible; }
.contact-modal {
  background: var(--bg); max-width: 440px; width: 100%;
  padding: 40px 36px; border-radius: var(--radius); position: relative;
  transform: translateY(24px) scale(0.97); transition: transform .3s ease;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.contact-modal-overlay.active .contact-modal { transform: translateY(0) scale(1); }
.contact-modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border: none; background: none; font-size: 22px; line-height: 1;
  color: var(--ink); cursor: pointer;
}
.contact-modal h3 { font-family: 'Fraunces', serif; font-size: 26px; color: var(--ink); margin: 6px 0 8px; }
.contact-modal-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.contact-modal-form { display: flex; flex-direction: column; gap: 12px; }
.contact-modal-form input,
.contact-modal-form textarea {
  padding: 13px 14px; border: 1px solid #DFD9CB; border-radius: 2px;
  font-family: 'Manrope', sans-serif; font-size: 14px; background: #fff; resize: none;
}
.contact-modal-form input:focus,
.contact-modal-form textarea:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   FOOTER — identical to listing page
============================================================ */
footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 90px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { display: flex; align-items: center; gap: 12px; color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 { color: var(--white); font-family: 'Fraunces', serif; font-size: 15px; font-weight: 500; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; display: flex; gap: 10px; align-items: center; }
.footer-col a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; padding: 26px 0;
  font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .floor-grid { grid-template-columns: 1fr 1fr; }
  .floor-card.master { grid-column: 1/-1; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .pd-top-row { grid-template-columns: 1fr; }
  .highlights-row { grid-template-columns: 1fr; }
  .highlight-img { height: 260px; }
  .location-row { grid-template-columns: 1fr; }
  .location-map { height: 260px; }
  .contact-dev-row { grid-template-columns: 1fr; }
  .price-table-head,
  .price-row { grid-template-columns: 1.4fr 1.4fr 1.4fr 1fr; padding: 14px 16px; font-size: 13px; }
  .pd-section, .pd-section-alt, .pd-section-dark { padding: 56px 0; }
}
@media (max-width: 720px) {

  .nav-toggle { display: flex; }
  .wrap { padding: 0 20px; }
  .pd-banner-content { padding: 120px 0 44px; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .floor-grid { grid-template-columns: 1fr; }
  .floor-card.master { grid-column: 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-table-head { display: none; }
  .price-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .price-row > *:last-child { grid-column: 1/-1; }
  /* Mobile: float buttons centred in a row */
  .float-btns {
        
        right: auto;
        left: 90%;
        transform: translateX(-50%);
        bottom: 120px;
        flex-direction: column-reverse;
        gap: 14px;
  
  }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .detail-item { border-right: none; }
  .detail-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--stone); }
  .detail-item:last-child { border-bottom: none; }
  .dev-stats { grid-template-columns: 1fr 1fr; }
}

#btnid{
  padding: 15px 40px;
  width: 240px;
  font-size: 14px;
  text-transform: uppercase;
}

.price-btn   {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 18px; background: var(--ink); color: var(--white);
  font-size: 12px; font-weight: 700; border-radius: var(--radius);
  border: none; cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: background .2s;
}
.price-btn:hover { background: var(--gold-dark); }



/* ── Filter chips ── */

.gallery-chip {
  padding: 8px 18px; border-radius: 20px;
  border: 1.5px solid var(--stone); background: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-muted); cursor: pointer; transition: all .2s;
}
.gallery-chip:hover  { border-color: var(--gold); color: var(--gold-dark); }
.gallery-chip.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── Masonry grid ── */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--stone);
  display: block;           /* needed for filter hide */
}
.masonry-item.hidden { display: none; }

/* placeholder coloured blocks (replace with real <img> tags) */
.gallery-thumb {
  width: 100%;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.masonry-item:hover .gallery-thumb { transform: scale(1.06); }

/* hover overlay */
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(22,33,43,.48);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.masonry-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transform: scale(.8); transition: transform .25s ease;
}
.masonry-item:hover .gallery-zoom-icon { transform: scale(1); }
.gallery-zoom-icon svg {
  width: 20px; height: 20px; fill: none;
  stroke: var(--white); stroke-width: 2;
}

/* tag label */
.gallery-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(22,33,43,.72); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 2px; backdrop-filter: blur(4px);
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(12,18,24,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 20px;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }

.lightbox-inner {
  position: relative;
  max-width: 1080px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.lightbox-img-wrap {
  width: 100%; max-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lightbox-img-wrap .lb-thumb {
  max-width: 100%; max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
}
/* placeholder div used when there's no real image */
.lightbox-img-wrap .lb-placeholder {
  width: 100%; max-height: 78vh; min-height: 340px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}

.lightbox-caption {
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; text-align: center;
}
.lightbox-counter {
  color: rgba(255,255,255,.38); font-size: 12px; text-align: center;
}

/* close button */
.lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
  z-index: 3010;
}
.lb-close:hover { background: rgba(255,255,255,.2); }

/* prev / next arrows */
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  z-index: 3010;
}
.lb-arrow:hover { background: rgba(176,141,87,.5); transform: translateY(-50%) scale(1.08); }
.lb-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* thumbnail strip */
.lb-strip {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none; max-width: 100%; padding-bottom: 2px;
}
.lb-strip::-webkit-scrollbar { display: none; }
.lb-strip-item {
  flex-shrink: 0; width: 64px; height: 48px;
  border-radius: 2px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; opacity: .55; transition: opacity .2s, border-color .2s;
}
.lb-strip-item.active { opacity: 1; border-color: var(--gold); }
.lb-strip-item:hover  { opacity: .85; }
.lb-strip-thumb {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* placeholder strip item */
.lb-strip-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}

/* ── RESPONSIVE MASONRY ── */
@media (max-width: 860px)  { .masonry-grid { columns: 2; } }
@media (max-width: 480px)  { .masonry-grid { columns: 1; } .lb-arrow { display: none; } }

.masonry-item img{
  height: 350px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.pd-banner{
    position:relative;
    overflow:hidden;
    min-height:700px;
    display:flex;
    align-items:center;
}

.pd-banner-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.pd-banner-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Dark Overlay */
.pd-banner-bg::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(12,16,22,.92) 0%,
            rgba(12,16,22,.82) 35%,
            rgba(12,16,22,.55) 65%,
            rgba(12,16,22,.25) 100%
        );

    z-index:2;
}

/* Gold Glow (optional) */
.pd-banner-bg::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at 20% 30%, rgba(176,141,87,.20), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(176,141,87,.12), transparent 35%);

    z-index:3;
}
/*
.pd-banner-content{
    position:relative;
    z-index:10;
    color:#fff;
}

.pd-banner-content h1,
.pd-banner-content p,
.pd-banner-content a{
    color:#fff;
}*/
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#scrollTopBtn:hover {
    background: #c8a96a; /* Gold Hover */
    transform: translateY(-3px);
}

