/* Services Page Styling */
.services.section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.service-filter {
  text-align: center;
  margin-bottom: 40px;
}

.service-filter .btn {
  background: linear-gradient(45deg, #f26c21, #f39c12);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.service-filter .btn:hover {
  background: linear-gradient(45deg, #e65c1b, #e68c0e);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-section {
  margin-bottom: 50px;
}

.service-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.service-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-section ul {
  list-style: none;
  padding: 0;
}

.service-section ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.service-section ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #f39c12;
  font-size: 18px;
}

.service-img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  transition: transform 0.3s ease;
}

.service-img:hover {
  transform: scale(1.05);
}

/* Background Image Section */
.bg-image-section {
  position: relative;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-image-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
}

.bg-image-section h2 {
  color: #fff;
}

.bg-image-section p {
  color: #ddd;
}

.bg-image-section ul li i {
  color: #f26c21;
}

/* Card Layout */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f26c21, #f39c12);
  transition: height 0.3s ease;
}

.service-card:hover::before {
  height: 10px;
}

.service-card .card-icon {
  font-size: 40px;
  color: #f26c21;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(242, 108, 33, 0.3);
}

/* Pricing Section */
.pricing-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.pricing-item.featured {
  border: 2px solid #f26c21;
  position: relative;
}

.pricing-item .advanced {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f26c21;
  color: #fff;
  padding: 5px 15px;
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.pricing-item h4 {
  font-size: 36px;
  font-weight: 700;
  color: #f26c21;
  margin-bottom: 20px;
}

.pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
}

.pricing-item h4 span {
  font-size: 16px;
  color: #555;
}

.pricing-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-item ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.pricing-item ul li.na {
  color: #aaa;
  text-decoration: line-through;
}

.pricing-item .btn-buy {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-item .btn-buy:hover {
  background: linear-gradient(45deg, #e65c1b, #e68c0e);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-section h2 {
    font-size: 24px;
  }

  .service-section p,
  .service-section ul li {
    font-size: 14px;
  }

  .bg-image-section {
    padding: 40px 0;
  }

  .bg-image-section .overlay {
    padding: 20px;
  }

  .pricing-item h3 {
    font-size: 20px;
  }

  .pricing-item h4 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .service-filter .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .service-img {
    margin-bottom: 20px;
  }

  .pricing-item {
    margin-bottom: 20px;
  }
}