/**
 * PCTechComVn — CTA Section CSS
 * Child Theme CSS Module
 * Version: 1.0.0 (Sprint 13)
 *
 * Final Call To Action section styles.
 */

/* ═══════════════════════════════════════════════
   1. CTA SECTION WRAPPER
   ═══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Decorative circle */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   2. CTA CONTENT
   ═══════════════════════════════════════════════ */
.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cta-hotline {
  margin-top: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-hotline:hover {
  transform: scale(1.05);
}
