/* Additional styles for the Who We Serve page */

.intro-banner {
  display: flex;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46,125,50,0.1);
  position: relative;
}

.intro-content {
  flex: 1;
  padding: 2.5rem;
}

.intro-content h3 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.intro-content h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.intro-image {
  flex: 1;
  min-height: 250px;
  position: relative;
}

.intro-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card-modern {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.client-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(46,125,50,0.2);
}

.client-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  padding: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
}

.client-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 5px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.client-icon-circle i {
  font-size: 2.5rem;
  color: var(--primary);
}

.client-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.client-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.client-description-modern {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.client-benefits { display: none;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(46,125,50,0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(46,125,50,0.1);
  transform: translateX(5px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.benefit-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.testimonial-highlight {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  border-radius: 15px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  position: relative;
}

.quote-icon {
  color: var(--primary);
  font-size: 2rem;
  opacity: 0.3;
}

.highlight-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.client-name {
  color: var(--primary);
}

/* Partnership CTA Section */
.partnership-cta-container {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(46,125,50,0.2);
  position: relative;
  overflow: hidden;
}

.partnership-cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60,30 L74.7,60.9 L110,65.1 L85,89.1 L90.5,124.2 L60,107.9 L29.5,124.2 L35,89.1 L10,65.1 L45.3,60.9 Z' fill='%23fbc02d' fill-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.15;
  pointer-events: none; /* This ensures the pseudo-element doesn't capture clicks */
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.cta-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 0;
}

.partnership-cta-container .btn-light {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.partnership-cta-container .btn-light:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary);
}

.contact-info h3 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(46,125,50,0.2);
}

.contact-item div {
  flex: 1;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.3rem 0;
}

.contact-item p {
  margin: 0;
  color: #555;
}

.quick-contact-form {
  background: #fff;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-left: 4px solid var(--secondary);
}

.quick-contact-form h3 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.quick-contact-form h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.form-control, .form-select {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(46,125,50,0.15);
}

@media (max-width: 991.98px) {
  .intro-banner {
    flex-direction: column;
  }
  
  .intro-image {
    min-height: 200px;
    order: -1;
  }
  
  .client-card-modern {
    margin-bottom: 2rem;
  }
  
  .contact-info, .quick-contact-form {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .intro-content {
    padding: 1.5rem;
  }
  
  .client-icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .client-icon-circle i {
    font-size: 1.8rem;
  }
  
  .client-card-header {
    padding: 1.5rem;
  }
  
  .client-card-body {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
}