/* Banner Section */
.services-banner {
  background: url('../../images/property-services/property-services-banner.JPG') center center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.services-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.services-banner h1 {
  font-size: 2.4rem; /* consistent with contact-hero */
  color: #fff;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.services-banner p {
  font-size: 1.1rem; /* adjusted for consistency */
  font-weight: 600; /* reduced from 900 for readability */
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.services-banner h1,
.services-banner p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}


/* Intro + Credentials */
.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;
}

.services-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
  color: #fff;
}

.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.credential-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  border-left-color: #ffcc00;
}

.credential-box p,
.credential-box ul {
  color: #000;
}

.credential-box h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #222;
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  text-align: center;
}

.badge-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-box p {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #000;
}

.badge-box img {
  height: 60px;
  width: auto;
  background: #000;
  padding: 6px;
  border-radius: 4px;
}

/* Services Grid */
.services-grid-section {
  background-color: #fff;
  padding: 80px 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-card {
  background: #f8f8f8;
  border-left: 4px solid #d4af37;
  padding: 30px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 320px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  border-left-color: #ffcc00;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background-color: #000;
  padding: 80px 20px;
  color: #fff;
  font-family: var(--font-main);
}

.process-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.process-section h2 span {
  border-bottom: 2px solid #d4af37;
  padding-bottom: 10px;
  display: inline-block;
}

.process-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.process-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  background: #fff;
  color: #000;
  border-left: 4px solid #d4af37;
  padding: 20px 20px 20px 60px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-list li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37;
}

.process-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  border-left-color: #ffcc00;
}

.process-list strong {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #000;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #f8f8f8;
  border-left: 4px solid #d4af37;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-left-color: #ffcc00;
}

.feature-box strong {
  font-size: 1.2rem;
  color: #222;
}

.feature-box p {
  margin-top: 10px;
  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;
}
