/* --------------------------------------------------------------------------
   Premium CTA Section
   -------------------------------------------------------------------------- */

.vg-cta-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-light) 100%);
  overflow: hidden;
}

.vg-cta-section__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.3) 2px, transparent 0),
    radial-gradient(circle at 20px 20px, rgba(212, 175, 55, 0.2) 4px, transparent 0);
  background-size: 40px 40px, 80px 80px;
  pointer-events: none;
}

.vg-cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vg-cta-section__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.vg-cta-section__description {
  margin: 0 auto 2.5rem;
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.vg-cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.vg-cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: inherit;
}

.vg-cta-section__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.vg-cta-section__btn--whatsapp {
  color: var(--white);
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.vg-cta-section__btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.vg-cta-section__btn--contact {
  color: var(--maroon);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.vg-cta-section__btn--contact:hover {
  background: var(--gold-muted);
  color: var(--maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.vg-cta-section__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.vg-cta-section__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 600;
}

.vg-cta-section__contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vg-cta-section {
    padding: 3.5rem 1.25rem;
  }

  .vg-cta-section__buttons {
    flex-direction: column;
    width: 100%;
  }

  .vg-cta-section__btn {
    width: 100%;
    max-width: 320px;
  }

  .vg-cta-section__contact {
    flex-direction: column;
    gap: 1rem;
  }
}
