/* ========================================================================
   SERVICE PAGE STYLES
   ======================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #333;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--pale-blue);
}

.service-icon-wrap {
  background: var(--pale-blue);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-card h2 {
  margin-bottom: 1.5rem;
}

.service-card p {
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .services-grid { gap: 2rem; }
  .service-card { padding: 2rem; }
}

@media screen and (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 479px) {
  .service-card { padding: 1.5rem; }
}
