/* ==============================
   Services Page Styles
============================== */

.services-section {
  padding: 4rem 1rem;
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
}

.tab-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background-color: transparent;
  border: 2px solid #4b0082; /* Primary purple */
  color: #4b0082;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: 'AntartidaMedium', sans-serif;
}

.tab-btn:hover {
  background-color: #4b0082;
  color: #fff;
}

.tab-btn.active {
  background-color: #4b0082;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive grid for services */
.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #f9f9fb;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2rem;
  color: #f79e1b;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #4b0082;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.service-card p {
  font-size: 1rem;
  color: #444;
}
