/* =====================================================================
   SERVICES PAGE STYLES
   ===================================================================== */

/* Department Color Accents */
.dept-cardiology { --dept-color: #EF4444; --dept-bg: rgba(239, 68, 68, 0.06); }
.dept-orthopaedics { --dept-color: #3B82F6; --dept-bg: rgba(59, 130, 246, 0.06); }
.dept-diagnostics { --dept-color: var(--color-accent); --dept-bg: var(--color-accent-light); }

/* Service Card with left accent */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-divider);
  border-left: 4px solid var(--dept-color, var(--color-accent));
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  border-left-color: var(--dept-color, var(--color-accent));
}

.service-card .service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--dept-bg, var(--color-accent-light));
  color: var(--dept-color, var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* Department Header */
.dept-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.dept-header .dept-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--dept-bg, var(--color-accent-light));
  color: var(--dept-color, var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dept-header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: 2px;
}

.dept-header p {
  font-size: var(--font-size-sm);
}

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

  .service-card {
    flex-direction: column;
  }
}
