/* ========================================
   CTA CALL-BACK BANNER SECTION
======================================== */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0;
  background: radial-gradient(circle at 10% 20%, var(--color-blue-700) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 255, 0.06) 0%, transparent 50%),
    var(--gradient-primary);
  color: var(--color-dark, #111111);
}

/* Decorative background glowing orbs */
.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -200px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 255, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* ========================================
   CTA CARD CONTAINER (WHITE BACKGROUND)
======================================== */

.cta-card {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
  text-align: center;
  background: var(--color-blue-50);
  border: 1px solid var(--color-border, #E4E8EF);
  border-radius: var(--radius-2xl, 28px);
  box-shadow: 0 20px 50px rgba(0, 40, 120, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Hide LET'S CONNECT label */
.cta-label,
.cta-info-label {
  display: none !important;
}

/* ========================================
   CTA TITLE (BLUE PRIMARY GRADIENT)
======================================== */

.cta-title {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0000FF 0%, #0088FF 60%, #00CCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0000FF;
}

.cta-title span {
  display: inline-block;
  background: linear-gradient(135deg, #0000FF 0%, #0088FF 60%, #00CCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0000FF;
}

.cta-desc {
  max-width: 740px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
  color: var(--color-secondary, #555555);
}

/* ========================================
   CTA ACTIONS & BUTTON
======================================== */

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, #0000FF 0%, #0088FF 100%);
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 80, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 80, 255, 0.45);
  background: linear-gradient(135deg, #0011FF 0%, #00A2FF 100%);
}

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

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

/* ========================================
   CTA META (PHONE / EMAIL CONTACT)
======================================== */

.cta-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--color-border, #E4E8EF);
}

.cta-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--color-secondary, #555555);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cta-meta-item:hover {
  color: var(--color-royal-blue, #0000FF);
  transform: translateY(-1px);
}

.cta-meta-item svg {
  color: var(--color-royal-blue, #0000FF);
  flex-shrink: 0;
}

.cta-meta-divider {
  color: var(--color-divider, #D0D6E0);
  font-size: 1rem;
}

/* ========================================
   RESPONSIVE
======================================== */

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

  .cta-card {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 1.625rem;
    line-height: 1.3;
  }

  .cta-title br {
    display: none;
  }

  .cta-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .cta-meta {
    flex-direction: column;
    gap: 12px;
  }

  .cta-meta-divider {
    display: none;
  }
}