/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
}

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

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

.services-title {
  font-size: 2.25rem;
  font-family: serif;
  margin-bottom: 1rem;
  color: rgb(36, 94, 96);
  font-weight: 500;
  line-height: 1.2;
}

.services-subtitle {
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.5;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeIn 0.5s ease-out both;
}

.service-item:nth-child(1) {
  animation-delay: 0.1s;
}
.service-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-item:nth-child(3) {
  animation-delay: 0.3s;
}
.service-item:nth-child(4) {
  animation-delay: 0.4s;
}

.service-menu {
  width: 100%;
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
}

.service-menu-header {
  padding: 1rem;
  background-color: rgb(36, 94, 96);
}

.service-menu-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.service-menu-list {
  display: flex;
  flex-direction: column;
}

.service-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.service-menu-item:last-child {
  border-bottom: none;
}

.service-menu-item:hover {
  background-color: #f9fafb;
}

.service-name {
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.service-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(217, 182, 143);
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .service-menu-item {
    padding: 0.7rem 1rem;
  }

  .service-name {
    font-size: 0.95rem;
  }

  .service-price {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-item {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .services-list {
    gap: 2.5rem;
  }
}

@media (min-width: 640px) {
  .services-section {
    padding: 5rem 1.5rem;
  }

  .services-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .services-section {
    padding: 5rem 2rem;
  }

  .services-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .services-section {
    padding: 5rem 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
