.contact-fast {
  background: #f5f6f7;
  padding: calc(var(--space-12) * 2) 0;
}

.contact-fast__card {
  display: grid;
  grid-template-columns: minmax(360px, 444px) minmax(0, 1fr);
  gap: 15px;
  padding: 10px;
  max-width: 1300px;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  align-items: stretch;
}

.contact-fast__panel {
  background: var(--color-primary, #FFCD02);
  border-radius: 24px;
  padding: 50px 56px 48px;
  position: relative;
  overflow: hidden;
}

.contact-fast__panel::after,
.contact-fast__panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  right: -80px;
  bottom: -60px;
  z-index: 0;
}

.contact-fast__panel::before {
  width: 200px;
  height: 200px;
  right: 10px;
  bottom: -110px;
  opacity: 0.18;
}

.contact-fast__panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.contact-fast__title {
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  font-weight: 700;
  margin: 0;
  color: #101010;
}

.contact-fast__description {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #101010;
  margin: 0;
  line-height: 1.6;
}

.contact-fast__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #1f8f5a;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  box-shadow: 0 10px 20px rgba(31, 143, 90, 0.24);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-fast__cta:hover {
  background: #1a7b4f;
  color: #ffffff;
  transform: translateY(-1px);
}

.contact-fast__cta:focus-visible {
  outline: 2px solid rgba(15, 23, 42, 0.4);
  outline-offset: 2px;
}

.contact-fast__cta-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-fast__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #101010;
  font-weight: 600;
}

.contact-fast__phone a {
  color: inherit;
  text-decoration: none;
}

.contact-fast__phone-icon svg {
  width: 16px;
  height: 16px;
  fill: #101010;
}

.contact-fast__hours {
  font-weight: 600;
  color: #101010;
  margin: 0;
}

.contact-fast__email p {
  margin: 0 0 6px;
  color: #101010;
  font-size: 0.92rem;
}

.contact-fast__email a {
  font-weight: 700;
  color: #101010;
  text-decoration: none;
}

.contact-fast__image {
  border-radius: 24px;
  overflow: hidden;
  background: #f1f2f4;
}

.contact-fast__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
