/* Services Page Hero */

.services-hero {
  background-image: url('../images/lush-massage-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.services-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  color: white;
}

.services-hero-content p {
  font-family: 'Figtree', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Services Page Section */

.services-page-section {
  position: relative;
  background: white;
  padding: 80px 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  margin-top: -100px;
  z-index: 10;
}

.services-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-page-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.services-page-header p {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 0;
}

/* Services Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-item {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-item-image img {
  transform: scale(1.05);
}

.service-item-content {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-item-content h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
}

.service-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid #e5e5e5;
}

.service-link:hover {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.service-link.active {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.service-link svg {
  width: 18px;
  height: 18px;
}

/* Responsive */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .services-hero-content h1 {
    font-size: 3rem;
  }
}

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

  .services-hero {
    height: 450px;
  }

  .services-hero-content h1 {
    font-size: 2.5rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .services-page-header h2 {
    font-size: 2rem;
  }

  .service-item-image {
    height: 220px;
  }
}

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

  .services-hero {
    height: 450px;
  }

  .services-hero-content h1 {
    font-size: 2rem;
  }

  .services-hero-content p {
    font-size: 0.9rem;
  }

  .services-page-header h2 {
    font-size: 1.5rem;
  }

  .service-item-image {
    height: 200px;
  }

  .services-page-section {
    padding: 40px 0;
  }
}
