/* Services Tabs */
.services-tabs {
  padding: 80px 0;
  background: #fdf5f8;
  text-align: center;
}

.services-tabs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.services-tabs h2 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-tabs > .container > p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f1f1f1;
  color: #666;
  min-width: 120px;
}

.tab-btn.active {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.tab-btn:hover:not(.active) {
  background: #e8e8e8;
  color: #333;
}

.tab-content {
  display: none;
  text-align: left;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tab-text {
  flex: 1;
  padding-right: 20px;
}

.tab-text h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.tab-text .btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.tab-text .btn:hover {
  background: #c91c75;
  transform: translateY(-1px);
}

.tab-image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-image img {
  border-radius: 20px;
  max-height: 320px;
  max-width: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .services-tabs .container {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .tab-inner {
    flex-direction: column;
    gap: 40px;
  }

  .tab-text {
    padding-right: 0;
    text-align: center;
  }

  .tabs-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 100px;
  }

  .tab-image img {
    max-height: 250px;
    max-width: 300px;
  }
}
