/*--------------------------------------------------------------
# Service Modal
--------------------------------------------------------------*/
.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  padding: 2.5rem 2rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal-overlay.active .service-modal {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-modal-close:hover {
  background: rgba(58, 175, 169, 0.1);
  color: var(--accent-color);
}

.service-modal-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1.25rem;
}

.service-modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.service-modal-body {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-modal-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(58, 175, 169, 0.3);
}

.service-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 175, 169, 0.45);
  color: white;
}