
.services-hero {
  background:
    linear-gradient(rgba(255, 242, 241, 0.85), rgba(255, 242, 241, 0.85)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat;
  /* 👆 you can replace the Unsplash URL with your spa image */
  text-align: center;
  padding: 160px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.services-hero h1 {
  font-size: 3rem;
  color: var(--text, #222);
  margin-bottom: 1rem;
}

.services-hero .subtitle {
  font-size: 1.25rem;
  color: var(--muted, #444);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-size: 2.2rem;
  color: var(--text, #222);
}

.section__header p {
  font-size: 1rem;
  color: var(--muted, #555);
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line, #f0e8e7);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-info {
  padding: 1.5rem;
}

.service-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary, #ff6b6b);
  margin-bottom: 0.5rem;
}

.service-info p {
  color: var(--muted, #555);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- FAQ SECTION ---------- */
.faqs {
  background: #fff7f6;
  padding: 100px 20px;
}

.faqs .section__header {
  margin-bottom: 2rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--line, #f0e8e7);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text, #222);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  content: "–";
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: var(--muted, #555);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 1rem 1.2rem 1.2rem;
}

/* ---------- CTA SECTION ---------- */
.about-cta {
  background: #fff2f1;
  padding: 80px 0;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text, #222);
  margin: 0;
}





/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 20px;
    min-height: 60vh;
  }

  .services-hero h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 60px 0;
  }

  .about-cta__inner {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  
}
