/* ===================== NEWSLETTER ===================== */
.newsletter-section {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 50%, #3d2454 100%);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.newsletter-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(176, 123, 172, 0.1);
	pointer-events: none;
}

.newsletter-section::after {
	content: '';
	position: absolute;
	bottom: -40%;
	left: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(176, 123, 172, 0.08);
	pointer-events: none;
}

.newsletter-content {
	position: relative;
	z-index: 2;
	max-width: 550px;
	margin: 0 auto;
}

.newsletter-title {
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 800;
	margin-bottom: 10px;
	color: #fff;
}

.newsletter-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 24px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	max-width: 460px;
	margin: 0 auto;
}

.newsletter-form input {
	flex: 1;
	padding: 14px 20px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-family: 'Tajawal', sans-serif;
	font-size: 15px;
	outline: none;
	transition: var(--transition-fast);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.15);
}

.newsletter-success {
	display: none;
	color: #2ecc71;
	font-size: 14px;
	font-weight: 500;
	margin-top: 12px;
	animation: fadeIn 0.3s ease;
}

.newsletter-success i {
	margin-left: 6px;
}

.newsletter-success.show {
	display: block;
}

.newsletter-error {
	display: none;
	color: #e74c3c;
	font-size: 13px;
	margin-top: 8px;
	animation: fadeIn 0.3s ease;
}

.newsletter-error.show {
	display: block;
}
