
/* Services Banner (matching homepage hero style) */
.services-banner {
  background: url('../../images/water-services/water-banner.png') center center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.services-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
  z-index: 1;
}

.services-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.services-banner h1 {
  font-size: 2.4rem; /* match all other sections */
  color: #fff; /* enforce white directly */
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.services-banner p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Intro Section */
.services-intro {
  background-color: #111;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.services-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #fff;
}

.services-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #fff;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}

/* Credentials Layout */
.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  text-align: left;
}

.credential-box {
  flex: 1 1 300px;
  background: #fff;
  border-left: 4px solid #d4af37;
  padding: 30px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.credential-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  background: #fff;
  border-left-color: #ffcc00;
}

.credential-box p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 10px;
}

.credential-box ul {
  padding-left: 20px;
  margin: 0;
  color: #000;
  font-size: 0.95rem;
}

/* Revised badge list structure */
.badge-list {
  display: flex;
  gap: 40px;
  justify-content: space-around;
  margin-top: 20px;
  flex-wrap: wrap;
}

.badge-pair {
  list-style: none;
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-pair li {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000;
}

.badge-pair img {
  height: 80px;
  width: auto;
  background: #ccc;
  padding: 5px;
  border-radius: 4px;
}

/* Services Grid Section */
.services-grid-section {
  background-color: #fff;
  padding: 80px 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-card {
  flex: 1 1 260px;
  max-width: 360px;
  background: #f8f8f8;
  border-left: 4px solid #d4af37;
  padding: 30px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Numbered Process List */
.process-section {
  background-color: #000;
  padding: 4rem 2rem;
  color: #fff;
  font-family: var(--font-main);
  text-align: center; /* ✅ Center content inside the section */
}

.process-section h2 {
  font-size: 2.2rem;
  color: #fff;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 10px;
  display: inline-block;
  margin: 0 auto 40px auto; /* ✅ Centers inline-block within the section */
}

/* List container */
.process-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Individual step container styled as white card */
.process-list li {
  position: relative;
  background: #fff;
  padding: 2rem 2rem 2rem 4rem;
  border-left: 4px solid #d4af37;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
  transition: all 0.3s ease;
}

/* Hover effect */
.process-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  border-left-color: #ffcc00;
}

/* Numbered bullets */
.process-list li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37;
}

/* Strong titles inside each step */
.process-list strong {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  font-family: var(--font-main);
  color: #000;
}

.why-choose-section h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #000;
}

.why-choose-section h2 span {
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 6px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #fff;
  border-left: 4px solid #d4af37; /* gold accent */
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-box strong {
  display: block;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* CTA */
.cta-section {
  background-color: #000; /* Soft light background */
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #000;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-section .button {
  background-color: #fff;
  color: #000;
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section .button:hover {
  background-color: #d4af37; /* Gold accent */
  color: #fff;
}


/* Responsive Banner Text */
@media (max-width: 768px) {
  .services-banner {
    min-height: 400px;
    padding: 4rem 1.5rem;
  }

  .services-banner h1 {
    font-size: 2rem;
  }

  .services-banner p {
    font-size: 1rem;
  }
}
