/* Services Section */
.services {
  padding: 40px 0;
  position: relative;
}

.services .shadow-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  animation-delay: 0.2s;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  background: var(--bg-warm);
  border-radius: 24px;
  padding: 35px 30px;
  text-align: center;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  box-shadow: var(--shadow);
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
  background: var(--bg-white);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--primary-gradient);
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.service-icon svg {
  width: 48px;
  height: 48px;
  fill: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Book Button */
.book-section {
  text-align: center;
  padding: 60px 0;
}

.book-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 18px 48px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.book-btn:hover {
  background: var(--primary-gradient);
  filter: brightness(0.95) saturate(1.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

