/* ==========================================
   CONSULTATION CTA SECTION (ENTERPRISE CARD)
   ========================================== */

.cta-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Seamless white background */
  width: 100%;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* --- Clean Enterprise Banner Card --- */
.cta-card {
  position: relative;
  background-color: #F8FAFC; /* Soft slate-tinted white */
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 70px 32px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* --- Badge --- */
.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(255, 90, 31, 0.08);
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF5A1F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* --- Typography --- */
.cta-title {
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 800;
  color: #0F172A; /* Dark Slate Text */
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

/* --- Action Button --- */
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #FF5A1F;
  color: #FFFFFF;
  border: 1px solid #FF5A1F;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px -4px rgba(255, 90, 31, 0.25);
}

.cta-btn:hover {
  background-color: #E44D14;
  border-color: #E44D14;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(255, 90, 31, 0.35);
}

.cta-btn svg {
  transition: transform 0.2s ease;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-card {
    padding: 48px 20px;
  }

  .cta-title {
    font-size: 1.85rem;
  }
}