/* =========================================
   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;
}

/* Pricing Grid */
.pricing-grid {
  display: flex; 
  gap: 30px; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-bottom: 40px;
}

.pricing-card {
  flex: 1; 
  min-width: 300px; 
  max-width: 400px; 
  background: #fff; 
  padding: 40px; 
  border-radius: 10px; 
  border: 1px solid #eee; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.premium {
  border: 2px solid var(--accent-color); 
  box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15); 
  transform: translateY(-10px);
}

.pricing-card.premium:hover {
  transform: translateY(-15px);
}

.pricing-badge {
  position: absolute; 
  top: -15px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--accent-color); 
  color: var(--text-light); 
  font-size: 0.8rem; 
  font-weight: bold; 
  padding: 5px 20px; 
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  color: var(--text-dark);
}

.pricing-price {
  font-size: 2.5rem; 
  font-weight: bold; 
  margin: 15px 0; 
  color: var(--primary-color);
}

.pricing-price .mo {
  font-size: 1rem; 
  color: #888; 
  font-weight: normal;
}

.pricing-list {
  list-style: none; 
  padding: 0; 
  margin-bottom: 30px; 
  color: #555; 
  text-align: left; 
  line-height: 2;
}

.pricing-list li.not-included {
  opacity: 0.6;
}

/* 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(--primary-color); 
  color: var(--text-light); 
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.5rem); 
  margin-bottom: 20px; 
  color: var(--text-light);
}

.cta-banner p {
  font-size: 1.2rem; 
  margin-bottom: 40px; 
  max-width: 600px; 
  margin-inline: auto;
  opacity: 0.9;
}
