/* ===== CONSTRUCTION SERVICES PAGE — extends style.css design tokens ===== */

/* ===== INTRO ===== */
.co-intro{ padding:90px 0 40px; background:var(--cream); }
.co-intro-inner{ max-width:760px; margin:0 auto; text-align:center; }
.co-intro .eyebrow-center{
  color:var(--maroon);
  font-weight:600;
  letter-spacing:.08em;
  margin-bottom:10px;
}
.co-intro .section-title{ color:var(--maroon-dark); margin-bottom:16px; }
.co-intro .section-subtitle{ color:var(--text-muted); }

/* ===== SERVICE ROWS ===== */
.co-services{ padding:80px 0 40px; background:var(--cream); }
.co-services .section-inner{ display:flex; flex-direction:column; gap:90px; }

.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.service-row.reverse .service-row-media{ order:2; }
.service-row.reverse .service-row-content{ order:1; }

.service-row-media{
  position:relative;
  opacity:0;
  transform:translateY(24px);
  transition:.5s;
}
.service-row-media.in-view{ opacity:1; transform:translateY(0); }
.service-row-media img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:var(--shadow);
}
.service-badge{
  position:absolute;
  top:-18px;
  left:-18px;
  width:56px; height:56px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--gold-light);
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  border:4px solid var(--cream);
  box-shadow:var(--shadow);
}

.service-row-content{
  opacity:0;
  transform:translateY(24px);
  transition:.5s;
}
.service-row-content.in-view{ opacity:1; transform:translateY(0); }
.service-row-icon{
  width:54px; height:54px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  margin-bottom:18px;
}
.service-row-content .eyebrow-left{
  color:var(--gold);
  font-weight:600;
  letter-spacing:.08em;
  font-size:.82rem;
  margin-bottom:6px;
}
.service-row-content h3{
  font-family:var(--font-head);
  font-size:1.6rem;
  color:var(--maroon-dark);
  margin-bottom:14px;
}
.service-row-content > p{ color:var(--text-muted); margin-bottom:20px; }

.service-list{ list-style:none; margin:0 0 26px; padding:0; }
.service-list li{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-muted);
  font-size:.94rem;
  margin-bottom:10px;
}
.service-list .dot{
  width:8px; height:8px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
}

.enquire-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--maroon);
  font-weight:600;
  font-size:.95rem;
  border-bottom:2px solid transparent;
  transition:.25s;
}
.enquire-link i{ font-size:.8rem; transition:.25s; }
.enquire-link:hover{ color:var(--maroon-dark); border-color:var(--gold); }
.enquire-link:hover i{ transform:translateX(4px); }

/* ===== WHY CHOOSE US ===== */
.why-us{ padding:96px 0; background:var(--white); text-align:center; }
.why-us .eyebrow-center{ color:var(--maroon); font-weight:600; letter-spacing:.08em; margin-bottom:10px; }
.why-us .section-title{ color:var(--maroon-dark); margin-bottom:50px; }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; text-align:left; }
.why-card{
  padding:34px 26px;
  border:1px solid var(--border);
  border-radius:14px;
  transition:.3s;
  opacity:0;
  transform:translateY(24px);
}
.why-card.in-view{ opacity:1; transform:translateY(0); }
.why-card:hover{ box-shadow:var(--shadow); border-color:transparent; transform:translateY(-4px); }
.why-card i{ font-size:1.6rem; color:var(--maroon); margin-bottom:16px; }
.why-card h4{ font-size:1.05rem; color:var(--maroon-dark); margin-bottom:10px; }
.why-card p{ color:var(--text-muted); font-size:.9rem; }

/* ===== PROCESS ===== */
.process{ padding:96px 0; background:var(--cream); text-align:center; }
.process .eyebrow-center{ color:var(--maroon); font-weight:600; letter-spacing:.08em; margin-bottom:10px; }
.process .section-title{ color:var(--maroon-dark); margin-bottom:14px; }
.process .section-subtitle{ color:var(--text-muted); max-width:600px; margin:0 auto 50px; }
.process-steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.process-step{
  background:var(--white);
  border-radius:14px;
  padding:38px 24px;
  box-shadow:var(--shadow);
  position:relative;
}
.step-num{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--gold-light);
  font-family:var(--font-head);
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}
.process-step h4{ font-size:1.05rem; color:var(--maroon-dark); margin-bottom:10px; }
.process-step p{ color:var(--text-muted); font-size:.9rem; }

/* ===== STATS ===== */
.stats{ background:var(--maroon); padding:64px 0; }
.stats-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}
.stat{ color:var(--white); }
.stat-num{
  font-family:var(--font-head);
  font-weight:700;
  font-size:2.6rem;
  color:var(--gold-light);
}
.stat-plus{
  font-family:var(--font-head);
  font-weight:700;
  font-size:2.6rem;
  color:var(--gold-light);
}
.stat p{ color:#e9dcc9; font-size:.92rem; margin-top:6px; }

/* ===== FAQ ===== */
.faq{ padding:96px 0; background:var(--white); }
.faq-inner{ display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; }
.faq-heading .eyebrow-left{ color:var(--gold); font-weight:600; letter-spacing:.08em; font-size:.82rem; margin-bottom:8px; }
.faq-heading h2{ font-family:var(--font-head); font-size:1.9rem; color:var(--maroon-dark); margin-bottom:14px; }
.faq-heading p{ color:var(--text-muted); }
.faq-heading a{ color:var(--maroon); font-weight:600; }

.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{ border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:20px 22px;
  background:none;
  border:none;
  text-align:left;
  font-family:var(--font-head);
  font-size:1rem;
  color:var(--maroon-dark);
  cursor:pointer;
}
.faq-question i{ color:var(--maroon); transition:.3s; flex-shrink:0; }
.faq-item.active .faq-question i{ transform:rotate(180deg); }
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-answer p{ padding:0 22px 20px; color:var(--text-muted); font-size:.92rem; }
.faq-item.active .faq-answer{ max-height:220px; }

/* ===== CTA BAND ===== */
.cta-band{ background:var(--maroon-dark); padding:64px 0; }
.cta-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.cta-inner h2{ font-family:var(--font-head); color:var(--white); font-size:1.7rem; margin-bottom:8px; }
.cta-inner p{ color:#e9dcc9; }
.cta-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.btn-white{
  background:var(--white);
  color:var(--maroon-dark);
  font-weight:600;
  padding:14px 28px;
  border-radius:30px;
  border:none;
  cursor:pointer;
  transition:.25s;
}
.btn-white:hover{ background:var(--gold-light); }
.cta-phone{
  color:var(--gold-light);
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .service-row{ grid-template-columns:1fr; gap:34px; }
  .service-row.reverse .service-row-media{ order:1; }
  .service-row.reverse .service-row-content{ order:2; }
  .why-grid{ grid-template-columns:1fr 1fr; }
  .process-steps{ grid-template-columns:1fr 1fr; }
  .faq-inner{ grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:1fr 1fr; gap:30px; }
}

@media (max-width: 600px){
  .why-grid{ grid-template-columns:1fr; }
  .process-steps{ grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:1fr; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .service-row-media img{ height:260px; }
}