/* Call to Action Section */
.cta-section {
  margin-left: var(--sidebar-width);
  padding: 80px 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 25%, #14b8a6 75%, #0d9488 100%);
  width: calc(100% - var(--sidebar-width));
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all var(--transition-speed);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.cta-btn.primary {
  background: var(--text-light);
  color: var(--primary-color);
  border: 2px solid var(--text-light);
}

.cta-btn.primary:hover {
  background: transparent;
  color: var(--text-light);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--text-light);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Responsive */
@media only screen and (max-width: 1024px) {
  .cta-section {
    margin-left: 0;
    width: 100%;
    padding: 60px 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

