/* Services Page Styles */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Services Hero Section */
#services-hero {
  background: linear-gradient(135deg, #56770e 0%, #7ba428 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./Images/pattern.png") repeat;
  opacity: 0.1;
  z-index: 1;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 0;
  opacity: 0.95;
}

/* Services Overview */
#services-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 2.5rem;
  color: #56770e;
  margin-bottom: 30px;
  font-weight: 600;
}

.services-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* Main Services Section */
#main-services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #56770e, #7ba428);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #56770e, #7ba428);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card > p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

.service-features li i {
  color: #56770e;
  margin-right: 12px;
  font-size: 0.8rem;
  width: 16px;
}

/* Manufacturing Facilities */
#manufacturing-facilities {
  padding: 80px 0;
  background: #fff;
}

#manufacturing-facilities h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #56770e;
  margin-bottom: 60px;
  font-weight: 600;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.facility-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #56770e, #7ba428);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
  transform: scale(1.05);
}

.facility-icon i {
  font-size: 2.5rem;
  color: white;
}

.facility-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.facility-card p {
  color: #666;
  line-height: 1.6;
}

/* Business Models */
#business-models {
  padding: 80px 0;
  background: white;
}

#business-models h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #56770e;
  margin-bottom: 60px;
  font-weight: 600;
}

.business-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.business-model-card {
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.business-model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #56770e;
}

.model-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #56770e, #7ba428);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.business-model-card:hover .model-icon {
  transform: scale(1.1);
}

.model-icon i {
  font-size: 1.8rem;
  color: white;
}

.business-model-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.business-model-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.model-link {
  display: inline-flex;
  align-items: center;
  color: #56770e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.model-link:hover {
  color: #7ba428;
  transform: translateX(5px);
}

.model-link i {
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.model-link:hover i {
  transform: translateX(3px);
}

/* Services CTA */
#services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #56770e 0%, #7ba428 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: white;
  color: #56770e;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2.5rem;
  }

  .services-hero-content p {
    font-size: 1.1rem;
  }

  .services-intro h2,
  #manufacturing-facilities h2,
  #business-models h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card,
  .facility-card,
  .business-model-card {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #services-hero {
    padding: 80px 0 60px;
  }

  .services-hero-content h1 {
    font-size: 2rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  #services-overview,
  #main-services,
  #manufacturing-facilities,
  #business-models,
  #services-cta {
    padding: 60px 0;
  }

  .services-intro h2,
  #manufacturing-facilities h2,
  #business-models h2 {
    font-size: 1.8rem;
  }

  .service-card h3,
  .facility-card h3,
  .business-model-card h3 {
    font-size: 1.2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}
