.services-section {
  display: flex;
  gap: 40px;

  flex-direction: column;
  padding: 100px 60px;

  background: #f7f7f7;
}
h2{
  font-size: 32px;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}

/* LEFT SIDEBAR */
.services-sidebar {
  flex: 0.3;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tab {
  padding: 14px 18px;

  border: none;
  cursor: pointer;

  background: white;
  color: #555;

  font-size: 15px;
  font-weight: 500;

  border-radius: 10px;

  text-align: left;

  transition: 0.3s ease;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-tab:hover {
  background: #d4af37;
  color: white;
  transform: translateX(5px);
}

.service-tab.active {
  background: #d4af37;
  color: white;
}

/* RIGHT DISPLAY CARD */
.service-display {
  flex: 0.7;
}

/* SERVICE CARD */
.service-card {
  background: white;

  padding: 40px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  animation: fadeIn 0.4s ease;
}

.service-card h3 {
  font-size: 26px;

  margin-bottom: 25px;

  color: #222;
}

/* LIST */
.service-card ul {
  list-style: none;

  padding: 0;
  margin: 0;
}

.service-card ul li {
  display: flex;
  justify-content: space-between;

  padding: 12px 0;

  border-bottom: 1px solid #eee;

  font-size: 15px;

  color: #555;
}

/* NOTE */
.service-note {
  margin-top: 20px;

  font-size: 13px;

  color: #888;
}

/* BOOK BUTTON */
.book-treatment-btn {
  margin-top: 25px;

  width: 100%;

  padding: 14px;

  border: none;
  cursor: pointer;

  background: #d4af37;
  color: white;

  font-weight: 600;

  border-radius: 10px;

  transition: 0.3s ease;
}

.book-treatment-btn:hover {
  background: #b8962f;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 900px) {

  .services-section {
    flex-direction: column;

    padding: 60px 20px;
  }

  .services-sidebar {
    flex-direction: row;

    overflow-x: auto;

    gap: 10px;
  }

  .service-tab {
    white-space: nowrap;
  }

  .service-display {
    margin-top: 20px;
  }

}