.srv-section {
  padding: 60px 0;
}

.srv-section-title {
  text-align: center;
  padding-bottom: 60px;
}

.srv-description-title {
  color: var(--accent-color);
}

/* Intro */
.srv-section-intro .srv-intro-title {
  font-size: 28px;
  font-weight: 700;
}

.srv-intro-text {
  font-size: 17px;
  color: #777;
}

.srv-btn-view-all {
  font-weight: 600;
  text-decoration: none;
}

/* Service Item */
.srv-item {
    padding: 30px;
    border-radius: 12px;
    background: #e3f1fb3b;
    transition: .3s;
    border: 1px solid #0000001a;
}

.srv-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.srv-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.srv-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #e3f1fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.srv-badge-popular {
  background: var(--accent-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.srv-item-title {
  margin: 20px 0 10px;
}

.srv-feature-list {
  padding-left: 0;
  list-style: none;
}

.srv-item-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
}

/* CTA Banner */
.srv-cta-banner {
  margin-top: 50px;
  padding: 40px;
  background: var(--accent-color);
  border-radius: 12px;
  color: #fff;
}

.srv-btn-primary,
.srv-btn-secondary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.srv-btn-primary {
  background: #fff;
  color: var(--accent-color);
}

.srv-btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
