
.svc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16); }
.svc-img-wrap { position: relative; overflow: hidden; height: 220px; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-img-wrap::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  animation: svcWipe 3.2s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes svcWipe { 0% { left: -60%; } 100% { left: 115%; } }
.svc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-title { text-align: center; font-weight: 700; margin-bottom: 10px; }
.svc-desc { text-align: left; color: #666; flex: 1; margin-bottom: 18px; }
.svc-btn-wrap { text-align: center; }
.svc-view-btn {
  background-color: #00003C; color: #fff; border: none;
  padding: 10px 26px; border-radius: 30px; font-weight: 600; cursor: pointer;
  transition: background-color 0.25s ease;
}
.svc-view-btn:hover { background-color: #FF7A41; }
.svc-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  display: none; align-items: center; justify-content: center; z-index: 99999; padding: 20px;
}
.svc-modal-overlay.active { display: flex; }
.svc-modal-box {
  background: #fff; width: 100%; max-width: 440px; border-radius: 16px; overflow: hidden;
  position: relative; max-height: 90vh; overflow-y: auto; animation: svcModalIn 0.3s ease;
}
@keyframes svcModalIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.svc-modal-close {
  position: absolute; top: 12px; right: 14px; background: rgba(255,255,255,0.9);
  border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; z-index: 2;
}
.svc-modal-img-wrap { position: relative; height: 220px; }
.svc-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-modal-gradient {
  position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 90%);
}
.svc-modal-content { padding: 20px 26px 30px; text-align: center; margin-top: -15px; position: relative; }
.svc-modal-content h3 { font-weight: 700; margin-bottom: 12px; }
.svc-modal-content p { color: #666; margin-bottom: 22px; }
.svc-modal-wa-btn {
  display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff;
  padding: 12px 28px; border-radius: 30px; font-weight: 600; text-decoration: none;
}
.svc-modal-wa-btn:hover { background: #1ebe5b; color: #fff; }
