.services-section {
  padding: 100px 20px;
  background-color: #f9f4fa; /* background.DEFAULT */
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header .title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #3e1840; /* accent.foreground */
}

.section-header .subtitle {
  font-size: 18px;
  color: #503556; /* muted.foreground */
  max-width: 600px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #efd6f0cc; /* accent.soft + transparency */
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 30px 20px 40px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 8px 8px 0 0;
  background-color: #c97acb; /* accent.DEFAULT */
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ecddec; /* muted.DEFAULT */
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #3e1840; /* accent.foreground */
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: #503556; /* muted.foreground */
  min-height: 60px;
  padding: 0 10px;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  color: #803f84; /* secondary.DEFAULT */
  text-decoration: none;
  transition: all 0.2s ease;
}

.learn-more:hover {
  transform: translateX(4px);
}

/* CTA */
.cta {
  margin-top: 80px;
}

.cta-btn {
  background-color: #a24fa6; /* primary.DEFAULT */
  color: #ffffff; /* primary.foreground */
  padding: 15px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #b963ba; /* primary.hover */
}

/* Color Utility */
.bg-primary {
  background-color: #a24fa6;
}
.bg-secondary {
  background-color: #803f84;
}
.bg-accent {
  background-color: #c97acb;
}
.bg-muted {
  background-color: #ecddec;
}


/* Polylang language switcher dropdown styling */
.pll-switcher-select {
    border:none !important;
    background: transparent !important;
}
