/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
  padding: 8rem 1.5rem;
  background-color: #0f0f0f;
}

.services-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #d2ab2b;
}

.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #e2c86c;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e2c86c;
}

.service-card-description {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #d2ab2b;
}

.services-footer {
  text-align: center;
  margin-top: 4rem;
}

.services-link {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d2ab2b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-link:hover {
  color: #e2c86c;
}

/* Service Card - Reusable component */
.servicepage-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.servicepage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(201, 162, 77, 0.08);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .services-grid {
    gap: 3rem;
  }
  .services-title {
    font-size: 3.75rem;
  }
}
