/* Services Page Specific Styles */
.services-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.services-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.services-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  font-weight: 800;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #D80000;
}

.services-subtitle {
  font-size: 1.4rem;
  margin-top: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  border-radius: 8px;
}

.services-container {
  padding: 60px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #D80000;
}

.section-heading p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-container {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #D80000, #971a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  position: relative;
}

.service-icon-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L80,213.3C160,203,320,181,480,181.3C640,181,800,203,960,197.3C1120,192,1280,160,1360,144L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.service-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #D80000;
}

.service-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #555;
}

.service-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #D80000;
}

.service-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #D80000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.service-btn:hover {
  background-color: #b60000;
}

/* Process Section Styles */
.process-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps {
  position: relative;
  counter-reset: step;
  margin-top: 50px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 1;
}

.process-step-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.process-step {
  width: 200px;
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D80000, #971a1a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(216, 0, 0, 0.3);
}

.process-step-content {
  padding: 50px 20px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.process-step:hover .process-step-content {
  transform: translateY(-10px);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.process-step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Benefits Section Styles */
.benefits-section {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(216, 0, 0, 0.1) 50%);
  border-radius: 0 0 0 100%;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #D80000, #971a1a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 15px rgba(216, 0, 0, 0.2);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  padding-bottom: 12px;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #D80000;
}

.benefit-card p {
  color: #666;
  line-height: 1.7;
}

/* FAQ Section Styles */
.testimonials-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

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

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item.open {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s ease;
}

.faq-item.open .faq-question {
  background-color: #f8f8f8;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.faq-toggle {
  color: #D80000;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: white;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* CTA Section Styles */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #D80000, #971a1a);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: #D80000;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #D80000;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #D80000;
}

.form-submit {
  background-color: #D80000;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background-color: #b60000;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-title {
    font-size: 2.5rem;
  }
  
  .services-banner {
    height: 350px;
  }
  
  .section-heading h2 {
    font-size: 2.2rem;
  }
  
  .process-steps::before {
    width: 90%;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-banner {
    height: 300px;
  }
  
  .services-subtitle,
  .section-heading p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .process-step-row {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  
  .process-step {
    width: 100%;
    max-width: 350px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}