/* ============================================================
   THE CELESTZ @ KEBUN TEH — Stylesheet
   White-primary design matching the original site style
   ============================================================ */

/* ----- Variables ----- */
:root {
  --gold:        #C9A84C;
  --gold-dark:   #A68A30;
  --gold-light:  #F8F2E0;
  --navy:        #0D1B2A;
  --navy-mid:    #1A2F47;
  --white:       #FFFFFF;
  --off-white:   #F9F9F9;
  --light-gray:  #F2F2F2;
  --border:      #E0E0E0;
  --text:        #222222;
  --text-mid:    #444444;
  --text-light:  #777777;
  --green:       #2E9E5B;

  --font-head:   'Josefin Sans', Arial, sans-serif;
  --font-body:   'Lato', Arial, sans-serif;

  --max-w:       1180px;
  --r:           6px;
  --sh:          0 2px 16px rgba(0,0,0,0.08);
  --sh-lg:       0 8px 40px rgba(0,0,0,0.13);
  --t:           0.28s ease;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ----- Typography ----- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ----- Layout ----- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }
.container.narrow { max-width: 740px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; display: inline-block; }

section { padding: 5.5rem 0; }
.bg-light { background: var(--light-gray); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-top: 0.4rem; }
.section-sub { color: var(--text-light); margin-top: 0.75rem; font-size: 0.92rem; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.gap-lg { gap: 5rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.btn.full { width: 100%; justify-content: center; }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,0.35); }

.btn-white-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.65); }
.btn-white-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb356; transform: translateY(-2px); }

/* ----- Image Placeholders ----- */
.img-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8d8e8 0%, #a8bece 100%);
  color: #6b8099;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--r);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.img-block.tall    { height: 460px; width: 100%; }
.img-block.plan-img { height: 210px; width: 100%; }
.img-block.gal-img  { width: 100%; height: 100%; min-height: 220px; }
.img-block.rts-img  { height: 400px; width: 100%; background: linear-gradient(135deg, #d4e8f0 0%, #b0cede 100%); }

/* ============================================================
   NAVBAR — White, clean
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow var(--t);
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: color var(--t);
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: var(--r);
  margin-left: 0.6rem;
  transition: all var(--t);
}
.nav-cta:hover { background: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/hero-banner.png') center 50% / cover no-repeat;
  will-change: background-position;
}
.hero-content {
  will-change: transform, opacity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.60) 60%,
    rgba(0,0,0,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-logo {
  width: clamp(500px, 45vw, 500px);
  height: auto;
  display: block;
  margin: 0;
  border-radius: 12px;
  padding: 16px 16px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ============================================================
   SPECS BAR — dark navy strip
   ============================================================ */
#specs-bar {
  background: var(--navy);
  padding: 0;
}

.specs-bar-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.spec-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 2.5rem;
  text-align: center;
}

.sbval {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.sblbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.spec-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1rem 0;
  align-self: stretch;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--white); }
#about .col-text p + p { margin-top: 1rem; }
#about h2 { margin-bottom: 1.25rem; }

.facade-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: left top;
  border-radius: var(--r);
  display: block;
}

.about-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.about-spec { display: flex; flex-direction: column; gap: 0.25rem; }
.as-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
.as-val { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ============================================================
   LAYOUT PLAN
   ============================================================ */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.unit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
}

.unit-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }

.unit-card.popular { border-color: var(--gold); }

.popular-tag {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.32rem 0;
}

.unit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 0.75rem;
}

.unit-badge {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 600;
}

.unit-sqft {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.unit-plan-img { padding: 0; }

.plan-img-real {
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  display: block;
}

.unit-info {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.unit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.ui-label { color: var(--text-light); }
.ui-val { font-weight: 600; color: var(--navy); }
.ui-val.green { color: var(--green); }
.ui-val.muted { color: var(--text-light); font-weight: 400; }

.unit-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.unit-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
}

.unit-card .btn { margin: 0 1.25rem 1.25rem; border-radius: var(--r); }
.unit-card .btn.full { width: calc(100% - 2.5rem); }

/* ============================================================
   FACILITIES
   ============================================================ */
#facilities { background: var(--white); }

.fac-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.ftab {
  padding: 0.65rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border-right: 1.5px solid var(--border);
  transition: all var(--t);
}
.ftab:last-child { border-right: none; }
.ftab:hover:not(.active) { background: var(--light-gray); }
.ftab.active { background: var(--navy); color: #fff; }

.ftab-pane { display: none; }
.ftab-pane.active { display: block; }

.fac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}

.fac-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.75rem 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: default;
}
.fac-item:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--gold); }

.fac-emoji { font-size: 1.9rem; line-height: 1; }
.fac-item span { font-size: 0.76rem; font-weight: 600; color: var(--navy); }

.fac-item--photo {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.fac-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.fac-item--photo span {
  display: block;
  padding: 0.65rem 0.75rem 0.75rem;
}

/* ============================================================
   LOCATION
   ============================================================ */
.loc-h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }

.proximity-list { display: flex; flex-direction: column; }

.prox-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.prox-row:first-child { border-top: 1px solid var(--border); }

.prox-time {
  min-width: 68px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-align: center;
  flex-shrink: 0;
}

.prox-place { font-size: 0.88rem; color: var(--text); }

.loc-btns { display: flex; gap: 1rem; margin-top: 1.75rem; flex-wrap: wrap; }

.map-embed-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh);
  line-height: 0;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* ============================================================
   RTS LINK
   ============================================================ */
.rts-section {
  background: var(--navy);
  padding: 5.5rem 0;
}

.rts-section h2 { color: #fff; margin: 0.5rem 0 1.25rem; }
.rts-section p { color: rgba(255,255,255,0.68); }
.rts-section p + p { margin-top: 0.9rem; }
.rts-section .eyebrow { color: var(--gold); }

.rts-img-real {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r);
  display: block;
}

.rts-stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.rts-s { display: flex; flex-direction: column; gap: 0.25rem; }

.rts-n {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}

.rts-l {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--white); }

.faq-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: background var(--t);
}
.faq-q:hover { background: var(--off-white); }
.faq-q[aria-expanded="true"] { background: var(--navy); color: #fff; }

.faq-ico {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
}
.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }

.faq-ans {
  display: none;
  padding: 1.1rem 1.5rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.faq-ans.open { display: block; }
.faq-ans p { font-size: 0.88rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery-item { border-radius: var(--r); overflow: hidden; }
.gallery-item.span2x2 { grid-column: span 2; grid-row: span 2; }
.gallery-item.span2x2 .img-block { min-height: 100%; height: 100%; }
.gallery-item.span2x1 { grid-column: span 2; }

.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: pointer;
  transition: transform 0.45s ease;
}
.gallery-item:hover .gal-img { transform: scale(1.05); }

.gallery-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.74rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================================
   ENQUIRY
   ============================================================ */
#enquiry { background: var(--off-white); }

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.eq-left h2 { margin: 0.4rem 0 1.1rem; }
.eq-left p  { margin-bottom: 1.5rem; }

.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.6rem; border-radius: var(--r); font-size: 0.82rem; font-weight: 700; }

.gallery-hours {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mid);
}
.gallery-hours strong { color: var(--navy); }

.eq-form {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.25rem;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}

.eq-form h3 { color: var(--navy); margin-bottom: 1.75rem; font-size: 1.5rem; }

.fg { margin-bottom: 0.9rem; }

.fg input,
.fg select,
.fg textarea,
.brochure-form input {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus,
.brochure-form input:focus { border-color: var(--gold); }

.fg select { cursor: pointer; }
.fg textarea { resize: vertical; }

.form-note {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.6;
}

.form-ok {
  margin-top: 1rem;
  padding: 0.9rem;
  background: #e6f7ee;
  border: 1px solid #a8d8bc;
  border-radius: var(--r);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e7c46;
}

/* ============================================================
   E-BROCHURE
   ============================================================ */
#brochure h2 { margin-top: 0.4rem; margin-bottom: 0.75rem; }

.brochure-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.brochure-form input { flex: 1 1 180px; min-width: 0; }

/* ============================================================
   UPCOMING STRIPE
   ============================================================ */
.upcoming-stripe {
  background: var(--navy);
  padding: 4rem 0;
}

.upcoming-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--r);
  background: rgba(201,168,76,0.06);
}

.upcoming-row h3 { color: #fff; margin: 0.35rem 0 0.65rem; }
.upcoming-row p { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.9rem; }
.upcoming-row .eyebrow { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #111b26;
  color: #fff;
  padding: 3.5rem 0 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  margin-top: 0.9rem;
  line-height: 1.75;
}

.footer-logo-link { display: inline-block; }

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-nav a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.fc-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.footer-contact a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-contact a:hover { color: var(--gold); }

.footer-bar {
  padding: 1.4rem 0;
  text-align: center;
}
.footer-bar p { font-size: 0.73rem; color: rgba(255,255,255,0.28); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.14s; }
.reveal.delay-2 { transition-delay: 0.28s; }

/* Hide mobile-only elements on desktop */
@media (min-width: 901px) {
  .mobile-enquire-btn { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
}

@media (max-width: 900px) {
  section { padding: 4rem 0; }

  /* Hamburger + mobile CTA */
  .hamburger { display: flex; }
  .mobile-enquire-btn { display: block; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.75rem 2rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 0.9rem 0; border-bottom: 1px solid var(--border); color: var(--navy); }
  .nav-cta { margin: 1rem 0 0; display: block; text-align: center; }

  /* Two-col layouts */
  .two-col,
  .enquiry-grid,
  .rts-section .two-col { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Reverse order for about img */
  #about .col-img { order: -1; }

  /* Units — already 2-col by default; stretch to full width on tablet */
  .unit-grid { max-width: 100%; }

  /* Specs bar */
  .specs-bar-grid { flex-wrap: wrap; }
  .spec-bar-divider { display: none; }
  .spec-bar-item { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,0.07); }

  /* Location */
  .map-box { height: 300px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span2x2 { grid-column: span 2; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }

  .rts-stats-row { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.1rem; }
  section { padding: 3rem 0; }
  h2 { font-size: 1.65rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .specs-bar-grid { flex-direction: column; }
  .spec-bar-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item.span2x2 { grid-column: span 1; grid-row: span 1; }
  .gallery-item.span2x2 .img-block { min-height: 240px; }
  .gallery-item .img-block { min-height: 200px; }

  .unit-grid { grid-template-columns: 1fr; }
  .about-specs { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .brochure-form { flex-direction: column; align-items: stretch; }
  .brochure-form input { flex: none; }

  .upcoming-row { flex-direction: column; text-align: center; }
  .loc-btns { flex-direction: column; }

  .fac-tabs { width: 100%; }
  .ftab { flex: 1; padding: 0.65rem 0.4rem; font-size: 0.68rem; }

  .eq-form { padding: 1.5rem 1rem; }
}

/* ============================================================
   UTILITY / NEW CLASSES
   ============================================================ */

/* Mobile header CTA — hidden on desktop (overridden inside @media 900px) */
.mobile-enquire-btn {
  padding: 0.45rem 1rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--r);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t);
}
.mobile-enquire-btn:hover { background: var(--gold-dark); color: var(--white) !important; }


/* Inline anchor links (used in FAQ body text) */
.inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.inline-link:hover { color: var(--gold-dark); }

/* ===== LAYOUT PLAN IMAGE ===== */
.layout-plan-wrap {
  margin-top: 1rem;
  text-align: center;
}
.layout-plan-img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

/* ===== FACILITIES IMAGE GRID ===== */
.fac-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.fac-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
@media (max-width: 640px) {
  .fac-img-grid { grid-template-columns: 1fr; }
}

/* ===== HERO COUNTDOWN ===== */
.hero-countdown-wrap {
  margin: 1.5rem 0 1rem;
  text-align: center;
}
.hero-countdown-label {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
  font-weight: 600;
}
.hero-countdown-date {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 6px;
  padding: .5rem .9rem;
  min-width: 62px;
}
.cd-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.cd-lbl {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}
.cd-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}


.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
