/* Modern CTA Section */
.cta-modern {
  background: #ffffff;
  padding: 4rem 2rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(217,112,0,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74,110,26,0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-content {
  margin-bottom: 2.5rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cta-btn-icon {
  font-size: 1.25rem;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #4A6E1A 0%, #3A5614 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 110, 26, 0.3);
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, #3A5614 0%, #2A4010 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 110, 26, 0.4);
}

.cta-btn-secondary {
  background: linear-gradient(135deg, #D97000 0%, #FF8C00 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(217, 112, 0, 0.3);
}

.cta-btn-secondary:hover {
  background: linear-gradient(135deg, #FF8C00 0%, #D97000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 112, 0, 0.4);
}

.cta-btn-outline {
  background: white;
  color: #D97000;
  border: 2px solid #D97000;
}

.cta-btn-outline:hover {
  background: #D97000;
  color: white;
  border-color: #D97000;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-modern {
    padding: 3rem 1.5rem;
    margin: 3rem 0;
  }

  .cta-title {
    font-size: 1.875rem;
  }

  .cta-subtitle {
    font-size: 1.125rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.625rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-btn {
    max-width: 100%;
    font-size: 0.95rem;
  }
}
