/* ============================================================
   KINGSPOINT RESIDENCE — Global Stylesheet
   Premium Housing Brand · Bekasi, Indonesia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --gold: #C5A55A;
  --gold-hover: #D4B76A;
  --gold-light: #E8D5A3;
  --gold-subtle: rgba(197,165,90,0.1);
  --dark: #0F0F1A;
  --dark-card: #161625;
  --dark-soft: #1E1E30;
  --dark-border: #2A2A3D;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --text: #E8E6E1;
  --text-muted: #9B9AAC;
  --text-dark: #3A3A4A;
  --text-dark-muted: #6B6B7B;
  --green: #4CAF50;
  --font-heading: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  --font-sans: 'Plus Jakarta Sans', 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---------- UTILITIES ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197,165,90,0.3);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
}
.btn-wa:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn svg { width: 18px; height: 18px; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(15,15,26,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.site-header.scrolled .nav-logo img {
  height: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 32px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1;
}
.nav-wa::after { display: none !important; }
.nav-wa:hover {
  background: #20BD5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.nav-wa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-toggle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px solid var(--dark-border);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,15,26,0.92) 0%,
    rgba(15,15,26,0.7) 50%,
    rgba(15,15,26,0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  max-width: 650px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- PRICE TEASER ---------- */
.price-teaser {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-soft) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--gold);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.price-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.price-teaser-header {
  text-align: center;
  margin-bottom: 32px;
}
.price-teaser-header .section-tag { margin-bottom: 8px; }
.price-teaser-header h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.price-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.price-card {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(197,165,90,0.08) 0%, var(--dark) 100%);
}
.price-card.featured::after {
  content: 'Best Seller';
  position: absolute;
  top: 8px;
  right: -28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 32px;
  transform: rotate(45deg);
}
.price-card-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.price-card-size {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.price-card-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.price-card-price small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.price-card-specs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}
.price-card-specs span {
  background: var(--dark-card);
  padding: 3px 8px;
  border-radius: 3px;
}
.price-teaser-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
}
.price-teaser-footer a { color: var(--gold); font-weight: 600; }
.price-teaser-footer a:hover { color: var(--gold-hover); }

@media (max-width: 1024px) {
  .price-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .price-strip { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured::after { font-size: 7px; right: -30px; }
}
@media (max-width: 480px) {
  .price-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .price-card { padding: 14px 10px; }
  .price-card-price { font-size: 15px; }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-item p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- PILLARS ---------- */
.pillars {
  padding: 80px 0;
  background: var(--dark);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  transition: all var(--transition);
}
.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- PROPERTY SHOWCASE ---------- */
.showcase { padding: 100px 0; }
.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.showcase-tabs {
  display: flex;
  gap: 8px;
}
.showcase-tab {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  transition: all var(--transition);
}
.showcase-tab:hover, .showcase-tab.active {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.property-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: var(--gold);
}
.property-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-img img {
  transform: scale(1.05);
}
.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.property-info {
  padding: 24px;
}
.property-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.property-specs {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.property-features {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.property-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.property-feat svg { width: 16px; height: 16px; color: var(--gold); }
.property-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
}
.property-price {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.property-price strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  margin-top: 2px;
}
.property-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-link:hover { color: var(--gold-hover); }
.property-link svg { width: 14px; height: 14px; }

/* ---------- ABOUT / DEVELOPER ---------- */
.about-section {
  padding: 100px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

/* ---------- FACILITIES ---------- */
.facilities { padding: 100px 0; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.facility-card {
  padding: 36px 28px;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  transition: all var(--transition);
}
.facility-card:hover {
  border-color: var(--gold);
  background: var(--dark-card);
}
.facility-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 8px;
  color: var(--gold);
  margin-bottom: 18px;
}
.facility-icon svg { width: 22px; height: 22px; }
.facility-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.facility-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- LOCATION ---------- */
.location { padding: 100px 0; background: var(--dark-card); border-top: 1px solid var(--dark-border); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.loc-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}
.loc-nearby {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.loc-item {
  padding: 20px;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  transition: all var(--transition);
}
.loc-item:hover { border-color: var(--gold); }
.loc-time {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.loc-unit {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.loc-name {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

/* ---------- MRT SECTION ---------- */
.mrt-section {
  padding: 80px 0;
  border-top: 1px solid var(--dark-border);
}
.mrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mrt-video {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.mrt-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.mrt-badge {
  display: inline-block;
  background: rgba(76,175,80,0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ---------- VIRTUAL TOUR ---------- */
.virtual-tour {
  padding: 100px 0;
  text-align: center;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}
.vt-player {
  max-width: 900px;
  margin: 48px auto 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--dark-border);
}
.vt-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- BLOG PREVIEW ---------- */
.blog-preview { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 24px;
}
.blog-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-card-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-date svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- BLOG ARTICLE PAGE ---------- */
.article-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.article-date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-date svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- CTA / CONTACT SECTION ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-soft) 0%, var(--dark) 100%);
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.cta-section .section-title { margin: 0 auto 12px; }
.cta-section .section-subtitle { margin: 0 auto 36px; }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}
.cta-info-item {
  font-size: 14px;
  color: var(--text-muted);
}
.cta-info-item strong {
  display: block;
  color: var(--white);
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand span { color: var(--gold); }
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-heading {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--gold-hover); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; color: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
}
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-hover); }

/* ---------- BLOG PAGE ---------- */
.blog-page { padding: 60px 0 100px; }
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.blog-article { padding: 60px 0 100px; }
.blog-article-header { text-align: center; margin-bottom: 48px; }
.blog-article-body {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article-body p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.blog-article-body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  margin: 40px 0 16px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .property-grid, .facilities-grid, .blog-grid, .blog-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .location-grid, .mrt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .property-grid, .pillars-grid, .facilities-grid, .blog-grid, .blog-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-nearby { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .showcase-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .cta-info { flex-direction: column; gap: 16px; }
  .hero h1 { font-size: 32px; }
  .section-pad { padding: 60px 0; }
}
