.glass-card {
  background: rgba(31, 39, 51, 0.38);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(245, 241, 234, 0.14);
  box-shadow: var(--shadow-elevated);
}

.glass-card:hover,
.glass-card:focus-within {
  background: rgba(31, 39, 51, 0.5);
  border-color: rgba(77, 166, 255, 0.4);
  box-shadow: var(--shadow-floating);
}

.glass-card:active {
  transform: translateY(-1px);
}

@supports not (backdrop-filter: blur(1px)) {
  .glass-card {
    background: rgba(31, 39, 51, 0.88);
  }
}

.section--parallax {
  position: relative;
  overflow: hidden;
}

.parallax-bg__overlay {
  display: none;
}

@media (min-width: 48rem) {
  .services-section.section--parallax {
    background-image: url("https://images.unsplash.com/photo-1618786666708-df8da01c3cf8?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .parallax-bg__overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, var(--color-ink-floating) 0%, rgba(20, 24, 31, 0.55) 50%, var(--color-ink-floating) 100%);
    mix-blend-mode: multiply;
  }
}

@media (min-width: 48rem) and (prefers-reduced-motion: reduce) {
  .services-section.section--parallax {
    background-attachment: scroll;
  }
}

.section--parallax .container {
  position: relative;
  z-index: 1;
}

.contact-panel {
  padding: var(--space-7);
  border-radius: var(--radius-lg);
}
