/**
 * CTA Section Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

.cta-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.cta-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #fff;
}

.cta-description {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	opacity: 0.95;
}

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

.cta-section .btn-primary {
	background-color: #fff;
	color: #667eea;
	border-color: #fff;
}

.cta-section .btn-primary:hover {
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	color: #667eea;
	text-decoration: none;
}

.cta-section .btn-secondary {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}

.cta-section .btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
}

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

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

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

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

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