/* ============================================================
   Services page specific styles
   ============================================================ */

.services-detail { padding: 90px 0; }
.section-lead { max-width: 620px; margin: 0 auto; color: var(--text-muted); }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-detail-card .service-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-detail-card .service-icon svg { width: 26px; height: 26px; }
.service-detail-card h3 { font-size: 1.15rem; color: var(--maroon-dark); margin-bottom: 10px; }
.service-detail-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.enquire-link { color: var(--maroon); font-weight: 600; font-size: 0.9rem; }
.enquire-link:hover { color: var(--gold); }

/* ---------- Full gallery ---------- */
.full-gallery { padding: 0 0 90px; }
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.full-gallery-grid img { width: 100%; height: 190px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.full-gallery-grid img:hover { transform: scale(1.03); }

/* ---------- CTA banner ---------- */
.services-cta {
  background: var(--maroon-dark);
  color: #fff;
  padding: 70px 0;
}
.services-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.services-cta p { color: #f0e2c8; margin-bottom: 26px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 992px) {
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services-detail-grid { grid-template-columns: 1fr; }
}
