/* 
 * Services Pages Styles
 * Contains styles for all service-related pages (content syndication, display advertising, etc.)
 */

/* Service hero section */
.service-hero {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.service-hero-image {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service benefits section */
.service-benefits {
  padding: 5rem 0;
}

.service-benefits h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.benefit-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card .benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Service process section */
.service-process {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.service-process h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step .step-number {
  flex: 0 0 80px;
  height: 80px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
}

.process-step .step-content h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Service features section */
.service-features {
  padding: 5rem 0;
}

.service-features h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature-item .feature-icon {
  flex: 0 0 50px;
  font-size: 1.5rem;
  color: #0056b3;
  margin-right: 1.5rem;
}

.feature-item .feature-content h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Service pricing section */
.service-pricing {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.service-pricing h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  /*transform: translateY(-10px);*/
}

.pricing-card.featured {
  border: 2px solid #0056b3;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .pricing-header {
  margin-bottom: 2rem;
}

.pricing-card .pricing-header h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-card .pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0056b3;
}

.pricing-card .pricing-period {
  color: #6c757d;
  margin-bottom: 2rem;
}

.pricing-card .pricing-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.pricing-card .pricing-features li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}

.pricing-card .pricing-features li:last-child {
  border-bottom: none;
}

/* Service testimonials section */
.service-testimonials {
  padding: 5rem 0;
}

.service-testimonials h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card .client {
  display: flex;
  align-items: center;
}

.testimonial-card .client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-card .client-info h5 {
  margin-bottom: 0.25rem;
}

.testimonial-card .client-info p {
  color: #6c757d;
  margin-bottom: 0;
}

/* Service CTA section */
.service-cta {
  background-color: #0056b3;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service FAQ section */
.service-faq {
  padding: 5rem 0;
}

.service-faq h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header .accordion-button {
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: #e7f1ff;
  color: #0056b3;
}

.accordion-body {
  padding: 1.25rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-hero p {
    font-size: 1.1rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .process-step .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .service-hero h1 {
    font-size: 2rem;
  }
  
  .service-cta h2 {
    font-size: 2rem;
  }
  
  .service-cta p {
    font-size: 1.1rem;
  }
}