.feedback-container {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	font-family: "Roboto Condensed", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
	padding-bottom: 80px;
}
.feedback-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(33, 37, 41, 0.1);
	padding: 40px;
	width: 100%;
	max-width: 600px;
	position: relative;
	overflow: hidden;
}
.feedback-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #c01e2e 0%, #212529 100%);
}
.feedback-header {
	text-align: center;
	margin-bottom: 40px;
}
.feedback-title {
	color: #212529;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 1px;
	margin-top: 0;
	line-height: 25px;
}
.feedback-subtitle {
	color: #6c757d;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
}
.feedback-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.form-group-name {
	position: relative;
}
.form-group-image {
	position: relative;
}
.form-group-message {
	position: relative;
}
.input-label {
	display: block;
	color: #212529;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: none;
	letter-spacing: 1px;
}
.text-input-field {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1rem;
	color: #212529;
	background: #f8f9fa;
	transition: all 0.3s ease;
	outline: none;
	letter-spacing: 1px;
}
.text-input-field:focus {
	border-color: #c01e2e;
	background: white;
	box-shadow: 0 0 0 3px rgba(192, 30, 46, 0.1);
}
.message-textarea {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1rem;
	color: #212529;
	background: #f8f9fa;
	transition: all 0.3s ease;
	outline: none;
	resize: vertical;
	min-height: 120px;
}
.message-textarea:focus {
	border-color: #c01e2e;
	background: white;
	box-shadow: 0 0 0 3px rgba(192, 30, 46, 0.1);
}
.image-upload-container {
	position: relative;
	border: 2px dashed #e9ecef;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	background: #f8f9fa;
	transition: all 0.3s ease;
	cursor: pointer;
}
.image-upload-container:hover {
	border-color: #c01e2e;
	background: #fff5f5;
}
.image-upload-container.has-image {
	border-style: solid;
	border-color: #c01e2e;
	background: white;
}
.file-input-hidden {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.upload-placeholder {
	color: #6c757d;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
}
.upload-icon {
	font-size: 2rem;
	color: #c01e2e;
	margin-bottom: 10px;
}
.image-preview-container {
	display: none;
	position: relative;
}
.preview-image {
	max-width: 100%;
	max-height: 200px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.remove-image-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #c01e2e;
	color: white;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.remove-image-btn:hover {
	background: #212529;
	transform: scale(1.1);
}
.submit-button {
	background: linear-gradient(135deg, #c01e2e 0%, #212529 100%);
	color: white;
	border: none;
	padding: 18px 40px;
	border-radius: 12px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(192, 30, 46, 0.3);
}
.submit-button:active {
	transform: translateY(0);
}
.success-message {
	display: none;
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	font-weight: 600;
	margin-top: 20px;
}
.form-group-captcha {
	position: relative;
}
.captcha-container {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.captcha-question {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	padding: 16px 20px;
	flex: 1;
	font-weight: 600;
	font-size: 18px;
	color: #212529;
	letter-spacing: 1px;
	min-height: 54px;
}
.captcha-question span {
	display: inline-block;
}
#captchaNum1,
#captchaNum2 {
	font-weight: 700;
	color: #c01e2e;
	font-size: 20px;
	min-width: 30px;
	text-align: center;
}
.captcha-operator {
	font-weight: 700;
	color: #212529;
	font-size: 20px;
	min-width: 25px;
	text-align: center;
}
.captcha-equals {
	font-weight: 700;
	color: #212529;
	font-size: 18px;
}
.captcha-question-mark {
	font-weight: 700;
	color: #c01e2e;
	font-size: 20px;
}
.captcha-input {
	width: 80px;
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1rem;
	color: #212529;
	background: white;
	transition: all 0.3s ease;
	outline: none;
	text-align: center;
	font-weight: 600;
	letter-spacing: 1px;
}
.captcha-input:focus {
	border-color: #c01e2e;
	box-shadow: 0 0 0 3px rgba(192, 30, 46, 0.1);
}
.captcha-refresh-btn {
	width: 50px;
	height: 50px;
	padding: 0;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	background: white;
	color: #c01e2e;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	letter-spacing: 1px;
}
.captcha-refresh-btn:hover {
	border-color: #c01e2e;
	background: #fff5f5;
	transform: rotate(20deg);
}
.captcha-refresh-btn:active {
	transform: rotate(20deg) scale(0.95);
}
.captcha-error {
	display: block;
	color: #c01e2e;
	font-size: 14px;
	font-weight: 500;
	margin-top: 8px;
	letter-spacing: 0.5px;
	text-align: left;
}
.image-upload-container.drag-over {
	border-color: #c01e2e;
	background: #fff5f5;
	box-shadow: 0 0 0 3px rgba(192, 30, 46, 0.1);
}
/* Responsive Design */
@media (max-width: 768px) {
	.feedback-card {
		padding: 30px 20px;
		margin: 10px;
	}
	.feedback-title {
		font-size: 2rem;
	}
	.feedback-subtitle {
		font-size: 16px;
	}
	.text-input-field,
	.message-textarea {
		padding: 14px 16px;
	}
	.submit-button {
		padding: 16px 30px;
		font-size: 18px;
	}
	.captcha-container {
		flex-wrap: wrap;
		gap: 10px;
	}
	.captcha-question {
		flex-basis: 100%;
		font-size: 16px;
	}
	#captchaNum1,
	#captchaNum2 {
		font-size: 18px;
	}
	.captcha-operator {
		font-size: 18px;
	}
	.captcha-input {
		flex: 1;
		min-width: 70px;
	}
	.captcha-refresh-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.feedback-container {
		padding: 50px 20px 60px;
	}
	.feedback-card {
		padding: 25px 15px;
	}
	.feedback-title {
		font-size: 25px;
	}
	.image-upload-container {
		padding: 20px;
	}
	.upload-icon {
		font-size: 1.5rem;
	}
	.captcha-container {
		flex-direction: column;
		gap: 8px;
	}
	.captcha-question {
		flex-basis: auto;
		font-size: 14px;
		padding: 12px 16px;
		gap: 6px;
	}
	#captchaNum1,
	#captchaNum2 {
		font-size: 16px;
	}
	.captcha-operator {
		font-size: 16px;
	}
	.captcha-equals {
		font-size: 16px;
	}
	.captcha-question-mark {
		font-size: 16px;
	}
	.captcha-input {
		width: 100%;
		padding: 12px 14px;
		font-size: 14px;
	}
	.captcha-refresh-btn {
		width: 100%;
		height: 45px;
		font-size: 16px;
	}
}