/* WhatsApp CTA Section Styles */
.whatsapp-cta-section {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	overflow: hidden;
	position: relative;
	z-index: 10;
}

.whatsapp-cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.whatsapp-cta-section::after {
	content: '';
	position: absolute;
	bottom: -50%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
}

.whatsapp-cta-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	position: relative;
	z-index: 1;
}

.whatsapp-cta-icon {
	font-size: 120px;
	color: #ffffff;
	animation: pulse 2s ease-in-out infinite;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.whatsapp-cta-content {
	max-width: 600px;
}

.whatsapp-cta-content h3 {
	color: #ffffff;
	font-size: 28px;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@media (max-width: 767px) {
	.whatsapp-cta-wrapper {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	.whatsapp-cta-icon {
		font-size: 80px;
	}
	.whatsapp-cta-content h3 {
		font-size: 22px;
	}
}
