/* assets/css/cta-section.css */
.cta-section {
  background-color: #000;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--footer-border-color);
}

.cta-section__light {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0) 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #4A90E2;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-section__button:hover {
  background-color: #357ABD;
  transform: translateY(-2px);
}

.cta-section__button svg {
  transition: transform 0.3s ease;
}

.cta-section__button:hover svg {
  transform: translateX(4px);
}

/* ========================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-section__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 20px;
  }

  .cta-section__button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .cta-section__light {
    width: 600px;
    height: 450px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 50px 16px;
  }

  .cta-section__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 18px;
  }

  .cta-section__button {
    padding: 12px 24px;
    font-size: 14px;
    gap: 6px;
  }

  .cta-section__light {
    width: 500px;
    height: 400px;
  }
}

@media (max-width: 375px) {
  .cta-section {
    padding: 44px 12px;
  }

  .cta-section__title {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    margin-bottom: 16px;
  }

  .cta-section__button {
    padding: 11px 22px;
    font-size: 13px;
  }

  .cta-section__light {
    width: 400px;
    height: 350px;
  }
}

@media (max-width: 320px) {
  .cta-section {
    padding: 40px 10px;
  }

  .cta-section__title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .cta-section__button {
    padding: 10px 20px;
    font-size: 12px;
  }

  .cta-section__light {
    width: 350px;
    height: 300px;
  }
}

/* Touch Optimization */
@media (hover: none) and (pointer: coarse) {
  .cta-section__button {
    min-height: 44px;
    min-width: 44px;
  }

  .cta-section__button:active {
    transform: scale(0.98);
  }
}
