/* ── Services Page Banner ── */
.services-banner {
  position: relative;
  height: 220px;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80')
    center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.services-banner-overlay h1 {
  color: #00ccff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.services-banner-overlay p {
  color: #ddd;
  font-size: 16px;
}

/* ── Service Detail Sections ── */
.service-detail {
  padding: 80px 20px;
  background: #fff;
}

.service-detail.alt {
  background: #f4f4f4;
}

.service-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-detail-inner.reverse {
  flex-direction: row-reverse;
}

.service-detail-img {
  flex: 0 0 420px;
  height: 300px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.driveway-detail {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&q=80');
}

.patio-detail {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80');
}

.sidewalk-detail {
  background-image: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=800&q=80');
}

.service-detail-text {
  flex: 1;
}

.service-tag {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.service-detail-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-detail-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.service-benefits {
  list-style: none;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-benefits li {
  font-size: 14px;
  color: #333;
  padding-left: 22px;
  position: relative;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: 900;
}

.service-detail-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}

.service-detail-btn:hover {
  background: #0088cc;
  transform: translateY(-1px);
}

/* ── Active nav link ── */
.nav-links a.active {
  color: #00aaff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .service-detail-inner,
  .service-detail-inner.reverse {
    flex-direction: column;
  }

  .service-detail-img {
    flex: none;
    width: 100%;
  }
}
