/* Why Choose Us Section */
.why-choose-section {
  background-color: var(--light);
}

.content-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.content-card .card-body {
  padding: 2.5rem;
}

.content-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--dark-light);
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Certification Section */
.certification-section {
  background: var(--glass-bg);
}

.certification-item {
  padding: 1rem;
}

.certification-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.certification-item:hover img {
  transform: scale(1.1);
}

.cert-name {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--light);
}

.service-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-image {
  overflow: hidden;
  height: 200px;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.service-card .card-body {
  padding: 1.5rem;
}

.service-card .card-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-card .rating {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.service-card .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card .card-footer {
  background: white;
  border-top: 1px solid #eee;
  padding: 1rem 1.5rem;
}

/* Process Steps Section */
.process-section {
  background: var(--gradient-light);
  color: white;
}

.process-section .section-title {
  color: white;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  height: 100%;
}

.step-number {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.step-content h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile Contact */
.mobile-contact {
  background: var(--primary-dark);
  position: sticky;
  bottom: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-card .card-body {
    padding: 2rem 1.5rem;
  }
  
  .certification-item img {
    width: 60px;
    height: 60px;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .content-card .card-body {
    padding: 1.5rem;
  }
  
  .service-card .card-body {
    padding: 1.25rem;
  }
  
  .service-card .card-footer {
    padding: 1rem;
  }
  
  .process-step {
    margin-bottom: 1.5rem;
  }
}