/* Subscribe Page Styles */
.subscribe-page {
	padding: 3rem 0;
	min-height: 70vh;
}

.subscribe-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.subscribe-header {
	text-align: center;
	margin-bottom: 3rem;
}

.subscribe-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1e1e2d;
	margin: 0 0 1.5rem 0;
	line-height: 1.2;
}

.subscribe-intro {
	font-size: 1.1rem;
	color: #6b7280;
	line-height: 1.8;
	margin: 0;
}

.subscribe-intro p {
	margin: 0 0 1rem 0;
}

.subscribe-form-wrapper {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
	border: 1px solid #e5e7eb;
}

.subscribe-step {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #e5e7eb;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e1e2d;
	margin: 0;
}

.step-content {
	padding: 1rem 0;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.required {
	color: #ef4444;
	margin-right: 0.25rem;
}

.form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #fff;
}

.form-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-error {
	display: none;
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.checkbox-group {
	margin: 2rem 0;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	padding: 1rem;
	background: #f9fafb;
	border-radius: 12px;
	border: 2px solid #e5e7eb;
	transition: all 0.3s ease;
}

.checkbox-label:hover {
	border-color: #667eea;
	background: #f3f4f6;
}

.checkbox-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
}

.checkbox-text {
	font-size: 1rem;
	color: #374151;
	line-height: 1.6;
}

.social-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	gap: 0.75rem;
}

.social-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}

.social-youtube:hover {
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
	color: #fff;
}

.social-instagram:hover {
	background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
	color: #fff;
}

.social-x:hover {
	background: #000;
	color: #fff;
}

.social-telegram:hover {
	background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
	color: #fff;
}

.social-icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.social-label {
	font-weight: 600;
	font-size: 1rem;
	color: #1e1e2d;
	transition: color 0.3s ease;
}

.social-link:hover .social-label {
	color: #fff;
}

.social-action {
	font-size: 0.875rem;
	color: #6b7280;
	transition: color 0.3s ease;
}

.social-link:hover .social-action {
	color: rgba(255, 255, 255, 0.9);
}

.form-actions {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 2rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline {
	background: #fff;
	color: #667eea;
	border: 2px solid #667eea;
}

.btn-outline:hover {
	background: #667eea;
	color: #fff;
}

.btn .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.subscribe-success {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	border-radius: 20px;
	border: 2px solid #667eea;
}

.success-icon {
	margin-bottom: 1.5rem;
}

.success-icon .dashicons {
	font-size: 4rem;
	width: 4rem;
	height: 4rem;
	color: #10b981;
}

.success-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1e1e2d;
	margin: 0 0 1rem 0;
}

.success-message {
	font-size: 1.1rem;
	color: #6b7280;
	line-height: 1.8;
	margin: 0;
}

.subscribe-loading {
	text-align: center;
	padding: 3rem 2rem;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #e5e7eb;
	border-top-color: #667eea;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1.5rem;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.subscribe-loading p {
	font-size: 1.1rem;
	color: #6b7280;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.subscribe-wrapper {
		padding: 1rem;
	}
	
	.subscribe-title {
		font-size: 2rem;
	}
	
	.subscribe-form-wrapper {
		padding: 1.5rem;
	}
	
	.social-links-grid {
		grid-template-columns: 1fr;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.btn {
		width: 100%;
		justify-content: center;
	}
}

