/* CTA Section Styles */

.cta-section {
  padding: var(--space-16) var(--space-24);
  background-color: var(--color-accent-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Business\ men.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.cta-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  color: var(--color-fg-inverse);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}

.cta-text {
  color: var(--color-fg-inverse);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  max-width: 768px;
  margin: 0 auto var(--space-8);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-fg-inverse);
  color: var(--color-accent-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-2);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-body);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 var(--space-1) var(--space-3) rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 var(--space-2) var(--space-4) rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cta-title {
    font-size: var(--font-size-h3);
  }
  
  .cta-text {
    font-size: var(--font-size-body);
  }
}
