/* =========================================
   Service Pages CSS
   ========================================= */

/* Hero Overlays for service pages */
.service-hero {
  padding-top: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.service-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  padding-bottom: 50px;
}

.service-hero h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  max-width: 800px;
  line-height: 1.2;
}

.service-hero p {
  color: #eeeeee;
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Typography and Layout Utilities */
.service-desc-text {
  font-size: 1.1rem; 
  line-height: 1.8; 
  color: #444; 
  margin-bottom: 40px; 
  text-align: left; 
  max-width: 900px; 
  margin-inline: auto;
}

.service-desc-text p {
  margin-bottom: 20px;
}

.service-desc-text strong {
  color: var(--primary-color);
}

/* Features Grid (What's Included) */
.features-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px;
}

.feature-card {
  background: var(--bg-white); 
  padding: 30px; 
  border-radius: 10px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--primary-color); 
  margin-bottom: 15px;
}



/* Service Box Cards (Homepage) */
.service-box-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 30px;
}

.service-box {
  padding: 30px; 
  background: #fff; 
  border-radius: 15px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
  text-align: center; 
  border-bottom: 4px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 a {
  color: var(--primary-color);
}

.service-box h3 a:hover {
  color: var(--accent-color);
}



/* Why Choose Us & FAQ */
.centered-text-block {
  max-width: 700px; 
  margin: 20px auto; 
  color: #555; 
  font-size: 1.1rem;
}

.faq-wrapper {
  max-width: 800px; 
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px; 
  background: var(--bg-white); 
  padding: 25px; 
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-item h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.faq-item p {
  color: #666;
}

/* CTA Banner Area */
.cta-banner {
  background: var(--bg-white); 
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 3rem); 
  font-weight: 800;
  margin-bottom: 15px; 
  color: var(--primary-color);
}

.cta-banner p {
  font-size: 1.125rem; 
  font-weight: 500;
  margin-bottom: 40px; 
  max-width: 600px; 
  margin-inline: auto;
  color: var(--primary-color);
}
