/* SECTION: Services quotation call to action */
.services-quote-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  width: min(1680px, calc(100% - clamp(2rem, 9vw, 11rem)));
  margin: clamp(2.5rem, 5vw, 5rem) auto 0;
  padding: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(71, 220, 215, 0.3);
  border-radius: var(--radius-card, 40px);
  background: linear-gradient(120deg, #071311 0%, #0d2421 54%, #071311 100%);
  color: #f7fbfa;
  box-shadow: 0 30px 80px rgba(9, 42, 40, 0.15);
}

.services-quote-cta__glow {
  position: absolute;
  z-index: -1;
  inset: -80% -20%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(42, 199, 197, 0.42), transparent 34%),
    radial-gradient(ellipse at 72% 42%, rgba(69, 134, 255, 0.28), transparent 30%);
  filter: blur(22px);
  animation: services-quote-drift 11s ease-in-out infinite alternate;
}

.services-quote-cta__copy { max-width: 58rem; }

.services-quote-cta__copy > span {
  display: block;
  margin-bottom: 1rem;
  color: #64ded9;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.services-quote-cta__copy h3 {
  margin: 0;
  max-width: 13ch;
  color: inherit;
  font-size: clamp(2.25rem, 4.5vw, 5.25rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.services-quote-cta__copy p {
  max-width: 47rem;
  margin: 1.35rem 0 0;
  color: rgba(235, 244, 242, 0.7);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.7;
}

.services-quote-cta__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  min-width: min(100%, 19rem);
}

.services-quote-cta__action a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4.5rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  background: #29c8c7;
  color: #061210;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease;
}

.services-quote-cta__action a:hover,
.services-quote-cta__action a:focus-visible {
  transform: translateY(-3px);
  background: #6ae0dc;
}

.services-quote-cta__action small {
  color: rgba(235, 244, 242, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

html[lang="ar"] .services-quote-cta { direction: rtl; }
html[lang="ar"] .services-quote-cta__copy > span { letter-spacing: 0; }

html[lang="ar"] .services-quote-cta__copy h3 {
  max-width: 14ch;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

@keyframes services-quote-drift {
  from { transform: translate3d(-4%, -2%, 0) scale(1); }
  to { transform: translate3d(6%, 4%, 0) scale(1.08); }
}

@media (max-width: 800px) {
  .services-quote-cta {
    grid-template-columns: 1fr;
    align-items: start;
    width: calc(100% - 2rem);
    border-radius: var(--radius-card-mobile, 28px);
  }

  .services-quote-cta__copy h3 {
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }

  .services-quote-cta__action { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .services-quote-cta__glow { animation: none; }
}
