/* Modern Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.fc-feedback-sec {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0;
}
/* Feedback Section Styling */
.fc-feedback {
	width: 100%;
	max-width: 600px;
}
.fc-feedback-inner {
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
}
.fc-feedback-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #0d5515 0%, #1ecf33 100%);
}
.fc-feedback-wrapper {
	padding: 3rem 2rem;
}
/* Form Styling */
.fc-form {
	max-width: 900px;
	margin: 0 auto;
}
.fc-form-input {
	margin-bottom: 1.5rem;
	position: relative;
}
.fc-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 400;
	color: #333;
	font-size: 18px;
	transition: all 0.3s ease;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.fc-form-input-field,
.fc-form-textarea-field {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 2px solid #e1e5ee;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color: #f9fafc;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.fc-form-input-field:focus,
.fc-form-textarea-field:focus {
	outline: none;
	border-color: #2575fc;
	box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
	background-color: white;
}
.fc-form-input-field::placeholder,
.fc-form-textarea-field::placeholder {
	color: #aab0bc;
}
.fc-form-textarea-field {
	min-height: 120px;
	resize: vertical;
}
/* File Input Styling */
input[type="file"] {
	padding: 0.6rem;
	background-color: #f9fafc;
	border-radius: 8px;
	border: 2px dashed #e1e5ee;
	cursor: pointer;
}
input[type="file"]::-webkit-file-upload-button {
	background: linear-gradient(90deg, #0d5515 0%, #1ecf33 100%);
	border: none;
	border-radius: 6px;
	color: white;
	padding: 0.5rem 1rem;
	margin-right: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}
input[type="file"]::-webkit-file-upload-button:hover {
	background: linear-gradient(90deg, #0d5515 0%, #1ecf33 100%);
}
/* Submit Button Styling */
.fc-form-btn {
	background: linear-gradient(90deg, #0d5515 0%, #1ecf33 100%);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 0.8rem 2rem;
	font-size: 18px;
	font-weight: 400;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: block;
	width: 100%;
	margin-top: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.fc-form-btn:hover {
	background: linear-gradient(90deg, #0d5515 0%, #1ecf33 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}
.fc-form-btn:active {
	transform: translateY(0);
}
/* Message Styling */
.fc-message {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 8px;
	background-color: #e8f4fe;
	border-left: 4px solid #18a429;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.fc-message span {
	color: #116f1c;
	font-weight: 500;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
	.fc-feedback-wrapper {
		padding: 2rem 1rem;
	}
}
@media (max-width: 480px) {
	.fc-form-btn {
		padding: 0.7rem 1.5rem;
	}
}