/* Service Hero Section */
.service-hero-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
html {
  scroll-behavior: smooth;
}

.service-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite alternate;
}

.service-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  font-style: italic;
}

.service-hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.4;
}

.service-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: white;
  color: #1976D2;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Why Translation Section */
.why-translation-section {
  padding: 100px 20px;
  background: white;
}

.why-translation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-translation-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-translation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #1976D2;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(25, 118, 210, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.benefit-icon i {
  font-size: 28px;
  color: white;
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.benefit-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 80px;
}

.comparison-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.comparison-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-header-row {
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
}

.comparison-cell {
  padding: 25px 30px;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-row:nth-child(even) {
  background: #f8f9fa;
}

.standard-cell {
  border-right: 1px solid #e9ecef;
  color: #6c757d;
}

.encyclohub-cell {
  color: #2d3748;
  position: relative;
}

.encyclohub-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
}

/* Process Section */
.process-section {
  padding: 100px 20px;
  background: white;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;

}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.process-step {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  border-color: #1976D2;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(25, 118, 210, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  margin-top: 10px;
}

.step-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Languages Section */
.languages-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
}

.languages-container {
  max-width: 1200px;
  margin: 0 auto;
}

.languages-header {
  text-align: center;
  margin-bottom: 80px;
}

.languages-title {
  font-size: 2.5rem;
  font-weight: 700;

}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.language-category {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.category-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #64B5F6;
}

.language-list {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.custom-quote {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
  padding: 50px 20px;
  background: white;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

.benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;

}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-radius: 15px;
  border: 2px solid #e9ecef;
  width: 100%;
  max-width: 1000px;
  
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #1976D2;
  box-shadow: 0 10px 25px rgba(25, 118, 210, 0.1);
}

.benefit-check {
  color: #28a745;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text {
  color: #2d3748;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

/* Testimonials Section */
.testimonials-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2d3748;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 600;
  color: #1976D2;
  font-size: 1rem;
}

.testimonial-position {
  color: #6c757d;
  font-size: 0.9rem;
  margin-top: 5px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #1976D2;
  opacity: 0.3;
}

/* FAQ Section */
.faq-section {
  padding: 50px 20px;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
}

.faq-item.active {
  border-color: #1976D2;
  box-shadow: 0 10px 30px rgba(25, 118, 210, 0.15);
}

.faq-question {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(25, 118, 210, 0.05);
}

.faq-question i {
  color: #1976D2;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 30px 30px;
  color: #6c757d;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #2d3748 0%, #1976D2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite alternate;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-primary {
  background: white;
  color: #1976D2;
}

.cta-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
  color: #1976D2;
}

.contact-infos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-items {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.contact-items:hover {
  opacity: 1;
}

.brand-tagline {
  margin-top: 40px;
  font-style: italic;
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-hero-title {
    font-size: 2.5rem;
  }
  
  .benefits-grid,
  .process-steps,
  .languages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-cell {
    padding: 20px;
  }
  
  .standard-cell {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .service-hero-section,
  .why-translation-section,
  .comparison-section,
  .process-section,
  .languages-section,
  .benefits-section,
  .testimonials-section,
  .faq-section,
  .cta-section {
    padding: 60px 15px;
  }
  
  .service-hero-title {
    font-size: 2rem;
  }
  
  .benefit-item {
    padding: 20px;
  }
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  100% { opacity: 0.6; transform: scale(1.1) rotate(180deg); }
}