/* ============================================================
   NEW FRONT GROUP — Main Stylesheet
   ============================================================ */

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

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dark:    #8A6B2A;
  --charcoal:     #1A1A1A;
  --charcoal-2:   #2C2C2A;
  --charcoal-3:   #3A3A38;
  --stone:        #F5F2EC;
  --stone-2:      #EDE8DF;
  --stone-3:      #DDD7CC;
  --text-muted:   #6B6860;
  --text-body:    #3A3A38;
  --white:        #FFFFFF;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--charcoal);
  color: #AAA;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #AAA; }
.topbar a:hover { color: var(--gold); }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-3);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo img { height: 36px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.04em;
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--text-muted);
  font-weight: 400; transition: color 0.2s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 16px); left: 0;
  background: var(--white);
  border: 1px solid var(--stone-3);
  min-width: 200px; padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px; text-transform: none;
  letter-spacing: 0.01em; color: var(--text-body);
}
.dropdown-menu a:hover { background: var(--stone); color: var(--charcoal); }
.dropdown-menu a::after { display: none; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 32px; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-weight: 400; transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-enquire {
  background: var(--gold); color: var(--white);
  border: none; padding: 10px 24px;
  font-family: 'DM Sans', sans-serif; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.btn-enquire:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  height: calc(100vh - var(--nav-h) - 37px);
  min-height: 580px; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--charcoal);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right,rgba(15,15,15,.80) 0%,rgba(15,15,15,.30) 60%,transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px; max-width: 680px;
}
.hero-tag {
  display: inline-block; background: var(--gold);
  color: var(--white); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 24px; font-weight: 500;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px,5vw,72px); font-weight: 300;
  color: var(--white); line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 15px; color: rgba(255,255,255,.72);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-indicators {
  position: absolute; bottom: 32px; right: 48px;
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,.3);
  cursor: pointer; transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--gold); width: 40px; }

/* ─── PROJECT RIBBON ─── */
.project-ribbon { background: var(--charcoal); display: flex; overflow: hidden; }
.ribbon-item {
  flex: 1; padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: pointer; transition: background 0.2s;
  position: relative; overflow: hidden;
}
.ribbon-item:last-child { border-right: none; }
.ribbon-item::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.4s;
}
.ribbon-item:hover { background: rgba(255,255,255,.04); }
.ribbon-item:hover::before { width: 100%; }
.ribbon-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500; }
.ribbon-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.ribbon-sub { font-size: 12px; color: #888; letter-spacing: 0.02em; }

/* ─── SECTIONS ─── */
section { padding: 96px 80px; }

.section-tag {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px,3.5vw,52px); font-weight: 300;
  color: var(--charcoal); line-height: 1.15; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }
.section-subtitle {
  font-size: 15px; color: var(--text-muted);
  max-width: 520px; margin-top: 16px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--stone); padding: 64px 80px;
  display: grid; grid-template-columns: repeat(3,1fr);
}
.stat-item {
  text-align: center; padding: 32px 40px;
  border-right: 1px solid var(--stone-3);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300;
  color: var(--charcoal); line-height: 1; margin-bottom: 8px;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); }

/* ─── ABOUT INTRO ─── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-accent {
  position: absolute; bottom: -24px; left: -24px;
  width: 180px; height: 180px;
  background: var(--gold); z-index: -1;
}

/* ─── PROJECTS GRID ─── */
.projects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.project-card {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; cursor: pointer; background: var(--charcoal-2);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(10,10,10,.88) 0%,rgba(10,10,10,.10) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 32px; transition: background 0.3s;
}
.project-card:hover .project-card-overlay { background: linear-gradient(to top,rgba(10,10,10,.92) 0%,rgba(10,10,10,.20) 60%); }
.project-card-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.project-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.project-card-loc { font-size: 12px; color: rgba(255,255,255,.60); margin-bottom: 16px; }
.project-card-cta { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold); font-weight: 500; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.project-card:hover .project-card-cta { opacity: 1; transform: translateY(0); }

/* ─── WHY GRID ─── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.why-item {
  padding: 40px 36px; background: var(--white);
  border-top: 3px solid var(--gold); transition: transform 0.2s;
}
.section-stone .why-item { background: var(--stone); }
.why-item:hover { transform: translateY(-4px); }
.why-icon { font-size: 28px; margin-bottom: 20px; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.why-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--charcoal); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,.55); }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px; position: relative;
}
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--gold); line-height: 1; position: absolute; top: 24px; right: 32px; opacity: 0.4; }
.testi-text { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 24px; font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--white); }
.testi-role { font-size: 12px; color: #888; margin-top: 2px; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--stone-3); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 22px 0;
  font-size: 16px; font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--charcoal);
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold); transition: transform 0.3s;
}
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 3px; transform: translateY(-50%); }
.faq-icon::after { width: 1.5px; height: 14px; left: 50%; top: 3px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; max-height: 0;
  overflow: hidden; transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ─── PAGE BANNER ─── */
.page-banner {
  height: 360px; position: relative;
  display: flex; align-items: center;
  background: var(--charcoal); overflow: hidden;
}
.page-banner-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.35;
}
.page-banner-content { position: relative; z-index: 2; padding: 0 80px; }
.page-banner-breadcrumb { font-size: 12px; letter-spacing: 0.08em; color: rgba(255,255,255,.50); margin-bottom: 12px; }
.page-banner-breadcrumb span { color: var(--gold); }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,4vw,60px); font-weight: 300;
  color: var(--white); line-height: 1.1;
}
.page-banner h1 em { font-style: italic; color: var(--gold-light); }

/* ─── ABOUT PAGE ─── */
.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.leader-card {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 28px; align-items: start;
  padding: 36px; background: var(--stone);
  border-left: 3px solid var(--gold);
}
.leader-photo { width: 140px; height: 160px; object-fit: cover; object-position: top; background: var(--stone-3); }
.leader-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.leader-role { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500; }
.leader-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.leader-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 16px;
  font-style: italic; color: var(--charcoal); margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--stone-3); line-height: 1.6;
}

.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.pillar-item { padding: 48px 32px; background: var(--stone); text-align: center; transition: background 0.2s; }
.pillar-item:hover { background: var(--stone-2); }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--gold-light); margin-bottom: 12px; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.pillar-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── REDEVELOPMENT PAGE ─── */
.process-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 48px; }
.process-step { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--stone-3); align-items: start; }
.step-num {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 500; color: var(--gold); flex-shrink: 0;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.step-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.docs-list { background: var(--stone); padding: 40px; columns: 2; gap: 32px; }
.docs-list li { font-size: 14px; color: var(--text-body); padding: 8px 0 8px 20px; position: relative; list-style: none; border-bottom: 1px solid var(--stone-3); break-inside: avoid; }
.docs-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.locations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.loc-card { background: var(--stone); padding: 32px; border-bottom: 3px solid transparent; transition: border-color 0.2s, transform 0.2s; cursor: pointer; }
.loc-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.loc-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.loc-area { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }

/* ─── PROJECTS PAGE ─── */
.proj-filter { display: inline-flex; gap: 0; margin-bottom: 48px; border: 1px solid var(--stone-3); }
.proj-filter-btn {
  padding: 12px 28px; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; color: var(--text-muted);
  border-right: 1px solid var(--stone-3); transition: background 0.2s, color 0.2s;
}
.proj-filter-btn:last-child { border-right: none; }
.proj-filter-btn.active { background: var(--charcoal); color: var(--white); }
.proj-filter-btn:hover:not(.active) { background: var(--stone); }

.full-proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.full-proj-card { background: var(--white); border: 1px solid var(--stone-3); cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; overflow: hidden; }
.full-proj-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-4px); }
.proj-img { aspect-ratio: 16/10; overflow: hidden; background: var(--stone-2); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.full-proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-info { padding: 24px; }
.proj-status { display: inline-block; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 10px; font-weight: 500; }
.status-ongoing  { background: #EAF3DE; color: #3B6D11; }
.status-ready    { background: #E6F1FB; color: #185FA5; }
.status-completed{ background: #F1EFE8; color: #5F5E5A; }
.proj-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.proj-loc  { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.proj-type { font-size: 13px; color: var(--gold-dark); font-weight: 500; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-block { margin-bottom: 36px; }
.contact-info-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.contact-info-value { font-size: 16px; color: var(--charcoal); font-family: 'Cormorant Garamond', serif; line-height: 1.6; }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--gold-dark); }
.map-embed { margin-top: 48px; height: 280px; border: 1px solid var(--stone-3); overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-form-wrap { background: var(--stone); padding: 48px; }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.contact-form-wrap > p { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--stone-3);
  background: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--charcoal);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,.75); z-index: 500;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); width: 480px;
  max-width: 95vw; padding: 48px;
  position: relative; animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted); }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); padding: 80px 80px 40px; color: #888; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 32px; }
.footer-brand img { height: 32px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; font-size: 13px; color: #888; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; color: #666; margin-top: 16px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--gold); }
.social-row { display: flex; gap: 16px; margin-top: 20px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 12px; font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--charcoal); padding: 72px 80px; text-align: center; }
.cta-band .section-title { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.60); font-size: 15px; max-width: 520px; margin: 0 auto 32px; }

/* ─── SCROLL ANIMATIONS ─── */
/* Default: always visible. JS progressive enhancement only. */
.fade-in {
  opacity: 1;
  transform: none;
}
/* Only hide if JS has confirmed it's running */
body.js-ready .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
body.js-ready .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.section-stone { background: var(--stone); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2,1fr); }
  .full-proj-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  section { padding: 72px 40px; }
  nav { padding: 0 32px; }
  .topbar { padding: 8px 32px; }
  .stats-strip { padding: 48px 40px; }
  footer { padding: 60px 40px 32px; }
  .page-banner-content { padding: 0 40px; }
  .hero-content { padding: 0 40px 60px; }
  .cta-band { padding: 72px 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .leader-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .topbar-social { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .full-proj-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .project-ribbon { flex-direction: column; }
  .ribbon-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .leader-card { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--stone-3); }
  .docs-list { columns: 1; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px 48px; }
}
