input.error {
	border-color: #f20000;
	box-shadow: 0 0 0 1px #f20000;
}

/* Review Banner */
.hezarfen-review-banner {
	position: relative;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-left: 4px solid #2271b1;
	border-radius: 8px;
	padding: 20px 48px 20px 24px;
	margin: 20px 0;
}

.hezarfen-review-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	padding: 0 4px;
	transition: color .2s;
}

.hezarfen-review-close:hover {
	color: #333;
}

.hezarfen-review-step {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.hezarfen-review-icon {
	font-size: 32px;
	line-height: 1;
	flex-shrink: 0;
}

.hezarfen-review-text {
	flex: 1;
	min-width: 200px;
}

.hezarfen-review-question {
	font-size: 16px;
	font-weight: 600;
	color: #1d2327;
	margin: 0;
}

.hezarfen-review-subtitle {
	font-size: 14px;
	color: #50575e;
	margin: 4px 0 0;
}

.hezarfen-review-hint {
	font-size: 13px;
	color: #787c82;
	margin: 6px 0 0;
	font-style: italic;
}

.hezarfen-review-actions {
	display: flex;
	gap: 10px;
}

.hezarfen-review-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 9px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
	transition: all .2s;
	white-space: nowrap;
}

.hezarfen-review-btn--yes {
	background: #fff;
	color: #2e7d32;
	border-color: #2e7d32;
}

.hezarfen-review-btn--yes:hover {
	background: #2e7d32;
	color: #fff;
}

.hezarfen-review-btn--no {
	background: #fff;
	color: #666;
	border-color: #ccc;
}

.hezarfen-review-btn--no:hover {
	background: #f0f0f0;
	color: #333;
}

.hezarfen-review-btn--primary {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

.hezarfen-review-btn--primary:hover {
	background: #135e96;
	color: #fff;
}

.hezarfen-review-btn--later {
	background: transparent;
	color: #787c82;
	border-color: #ccc;
}

.hezarfen-review-btn--later:hover {
	background: #f0f0f0;
	color: #50575e;
}

.hezarfen-review-support-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 9px 20px;
	background: #25D366;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: background .2s;
}

.hezarfen-review-support-link:hover {
	background: #1ebe57;
	color: #fff;
}

/* Training Section Styles */
.hezarfen-training-section {
	padding: 20px 0;
}

.hezarfen-training-header {
	margin-bottom: 30px;
}

.hezarfen-training-header h2 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #23282d;
}

.hezarfen-training-header p {
	font-size: 14px;
	color: #666;
	margin: 0 0 20px 0;
}

/* YouTube Swimming Card */
.hezarfen-swimming-card {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 200px;
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
	border-radius: 16px;
	box-shadow: 
		0 8px 32px rgba(255, 0, 0, 0.3),
		0 4px 16px rgba(0, 0, 0, 0.1);
	z-index: 50;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: swimIn 1s ease-out, floatCard 6s ease-in-out infinite 1s;
	overflow: hidden;
}

.hezarfen-swimming-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 3s ease-in-out infinite;
}

.hezarfen-swimming-card:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 
		0 16px 48px rgba(255, 0, 0, 0.4),
		0 8px 24px rgba(0, 0, 0, 0.15);
}

.hezarfen-card-content {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	position: relative;
	z-index: 2;
}

.hezarfen-youtube-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: #fff;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse 2s ease-in-out infinite;
}

.hezarfen-card-text {
	display: flex;
	flex-direction: column;
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hezarfen-card-text strong {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.hezarfen-card-text span {
	font-size: 11px;
	opacity: 0.9;
	line-height: 1.2;
}

.hezarfen-card-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

.hezarfen-close-card {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: rgba(0, 0, 0, 0.3);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 4;
	opacity: 0;
}

.hezarfen-swimming-card:hover .hezarfen-close-card {
	opacity: 1;
}

.hezarfen-close-card:hover {
	background: rgba(0, 0, 0, 0.6);
	transform: scale(1.1);
}

/* WhatsApp Support Card */
.hezarfen-whatsapp-card {
	position: fixed;
	bottom: 110px;
	right: 20px;
	width: 200px;
	background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
	border-radius: 16px;
	box-shadow: 
		0 8px 32px rgba(37, 211, 102, 0.3),
		0 4px 16px rgba(0, 0, 0, 0.1);
	z-index: 50;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: swimIn 1s ease-out 0.3s backwards, floatCard 6s ease-in-out infinite 1.3s;
	overflow: hidden;
}

.hezarfen-whatsapp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 3s ease-in-out infinite;
}

.hezarfen-whatsapp-card:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 
		0 16px 48px rgba(37, 211, 102, 0.4),
		0 8px 24px rgba(0, 0, 0, 0.15);
}

.hezarfen-whatsapp-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: #fff;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes swimIn {
	0% {
		transform: translateX(300px) rotate(10deg);
		opacity: 0;
	}
	70% {
		transform: translateX(-10px) rotate(-2deg);
		opacity: 1;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes floatCard {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-5px) rotate(1deg);
	}
	50% {
		transform: translateY(-3px) rotate(0deg);
	}
	75% {
		transform: translateY(-7px) rotate(-1deg);
	}
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

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

.hezarfen-videos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.hezarfen-video-card {
	background: #fff;
	border: 1px solid #e1e5e9;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	position: relative;
}

.hezarfen-video-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff0000, #cc0000);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.hezarfen-video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	border-color: rgba(255, 0, 0, 0.2);
}

.hezarfen-video-card:hover::before {
	transform: scaleX(1);
}

.hezarfen-video-thumbnail {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	background: #000;
}

.hezarfen-video-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.hezarfen-video-thumbnail:hover img {
	opacity: 0.8;
}

.hezarfen-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.9;
	transition: all 0.3s ease;
}

.hezarfen-video-thumbnail:hover .hezarfen-play-button {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}

.hezarfen-video-info {
	padding: 20px;
	background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.hezarfen-video-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
}

.hezarfen-video-title a {
	color: #2c3e50;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
	position: relative;
}

.hezarfen-video-title a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff0000, #cc0000);
	transition: width 0.3s ease;
}

.hezarfen-video-title a:hover {
	color: #cc0000;
	transform: translateY(-1px);
}

.hezarfen-video-title a:hover::after {
	width: 100%;
}

.hezarfen-video-description {
	color: #666;
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 12px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hezarfen-video-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #999;
	flex-wrap: wrap;
	gap: 8px;
}

.hezarfen-meta-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hezarfen-video-duration {
	background: #000;
	color: #fff;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 500;
}

.hezarfen-video-date {
	background: #f0f0f0;
	color: #666;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 500;
	font-size: 11px;
}

.hezarfen-comment-cta {
	background: linear-gradient(135deg, #007cba 0%, #0073aa 100%);
	color: #fff;
	padding: 4px 8px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
	animation: glowPulse 3s ease-in-out infinite;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hezarfen-comment-cta:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
}

@keyframes glowPulse {
	0%, 100% {
		box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
	}
	50% {
		box-shadow: 0 4px 16px rgba(0, 115, 170, 0.5);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hezarfen-videos-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.hezarfen-video-card {
		margin: 0 10px;
	}
	
	.hezarfen-swimming-card {
		width: 180px;
		bottom: 15px;
		right: 15px;
	}
	
	.hezarfen-whatsapp-card {
		width: 180px;
		bottom: 100px;
		right: 15px;
	}
	
	.hezarfen-card-content {
		padding: 12px;
		gap: 10px;
	}
	
	.hezarfen-youtube-icon,
	.hezarfen-whatsapp-icon {
		width: 28px;
		height: 28px;
	}
	
	.hezarfen-card-text strong {
		font-size: 13px;
	}
	
	.hezarfen-card-text span {
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.hezarfen-swimming-card {
		width: 160px;
		bottom: 10px;
		right: 10px;
	}
	
	.hezarfen-whatsapp-card {
		width: 160px;
		bottom: 90px;
		right: 10px;
	}
	
	.hezarfen-card-content {
		padding: 10px;
		gap: 8px;
	}
	
	.hezarfen-youtube-icon,
	.hezarfen-whatsapp-icon {
		width: 24px;
		height: 24px;
	}
	
	.hezarfen-card-text strong {
		font-size: 12px;
	}
	
	.hezarfen-card-text span {
		font-size: 9px;
	}
}
