/* Merchant Services Section Styles */
.merchant-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.merchant-services .section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.merchant-services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
}

.merchant-services .lead {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
}

.merchant-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.merchant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #0d6efd;
}

.merchant-card.custom-integration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.merchant-card.custom-integration:hover {
  border-color: #667eea;
}

.merchant-card.custom-integration h4,
.merchant-card.custom-integration p {
  color: white;
}

.merchant-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.merchant-card.custom-integration .merchant-icon {
  background: rgba(255, 255, 255, 0.2);
}

.merchant-card:hover .merchant-icon {
  transform: scale(1.1) rotate(5deg);
}

.merchant-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
}

.merchant-card p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.merchant-features {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.merchant-features h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
}

.feature-badge {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.feature-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.feature-badge i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .merchant-services h2 {
    font-size: 2rem;
  }
  
  .merchant-services .lead {
    font-size: 1rem;
  }
  
  .merchant-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .merchant-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .merchant-features {
    padding: 30px 20px;
  }
  
  .feature-badge {
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
