/* ========================================
   MODERN SERVICE CARDS - Custom Styles
   ======================================== */

.service-card-modern {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 89, 1, 0.15);
  border-color: rgba(255, 89, 1, 0.3);
}

/* Image Section */
.service-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-card-img-wrapper img {
  transform: scale(1.1);
}

.service-card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

/* Overlay Icon */
.service-card-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff5901 0%, #e65100 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 89, 1, 0.4);
  transition: all 0.4s ease;
}

.service-card-icon i {
  font-size: 24px;
  color: #ffffff;
}

.service-card-modern:hover .service-card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Content Section */
.service-card-content {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
}

.service-card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Points List */
.service-point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-point-list li {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-point-list li i {
  color: #ff5901;
  font-size: 14px;
}

/* CTA Link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #ff5901;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  gap: 12px;
  color: #e65100;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card-img-wrapper {
    height: 170px;
  }
}

@media (max-width: 767px) {
  .service-card-img-wrapper {
    height: 190px;
  }
  .service-card-content {
    padding: 20px;
  }
}

/* Shimmer Loading */
.service-card-img-wrapper.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
