/* Professional Service Page Enhancements */

/* Service badges */
.service-badge {
  position: relative;
}

.service-badge .badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Service cards styling */
.service-info {
  padding: 2rem 1.5rem;
}

.service-info h3 {
  color: #1e293b;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
}

.service-info p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Service features list */
.service-features ul li {
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

.service-features ul li i {
  font-size: 1rem;
  margin-right: 0.75rem;
  color: #059669;
}

/* Image enhancements */
.service-img img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-img:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Button enhancements */
.btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: #2563eb;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  border-color: #1d4ed8;
}

.btn-secondary {
  background: linear-gradient(135deg, #64748b, #475569);
  border-color: #64748b;
}

.btn-success {
  background: linear-gradient(135deg, #059669, #047857);
  border-color: #059669;
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: #dc2626;
}

.btn-warning {
  background: linear-gradient(135deg, #d97706, #b45309);
  border-color: #d97706;
  color: white;
}

.btn-info {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-color: #0ea5e9;
}

.btn-outline-primary {
  background: transparent;
  border-color: #2563eb;
  color: #2563eb;
}

.btn-outline-primary:hover {
  background: #2563eb;
  color: white;
}

/* Quality assurance section */
.quality-badges .badge-item {
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 25px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Testimonial cards */
.testimonial-card {
  border-left: 4px solid #2563eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.stars i {
  font-size: 0.9rem;
  margin-right: 2px;
}

.avatar-initial {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Section enhancements */
.section {
  padding: 5rem 0;
}

.section-title {
  color: #1e293b;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 400;
}

/* Card enhancements */
.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

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

.card-body {
  padding: 2rem;
}

.card-title {
  color: #1e293b;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-text {
  color: #64748b;
  line-height: 1.6;
}

/* Process timeline enhancements */
.case-timeline-dot {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.case-content h4 {
  color: #1e293b;
  font-weight: 700;
  font-size: 1.25rem;
}

.case-content p {
  color: #64748b;
  line-height: 1.6;
}

/* CTA Section */
.cta-2 {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  position: relative;
  overflow: hidden;
}

.cta-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  opacity: 0.5;
}

.cta-block {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .service-info {
    padding: 1.5rem 1rem;
  }
  
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .d-flex.gap-3 {
    flex-direction: column;
  }
  
  .d-flex.gap-3 .btn {
    margin-bottom: 0.75rem;
  }
}

/* Animation enhancements */
.service-img, .service-info, .card, .testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-img:nth-child(1) { animation-delay: 0.1s; }
.service-info:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus states for accessibility */
.btn:focus {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 2px;
}

.card:focus-within {
  outline: 2px solid rgba(37, 99, 235, 0.3);
  outline-offset: 2px;
}