/* Contact Us Section Styles - Dark Theme */
:root {
	--contact-bg: #0b0f19;
	--contact-card-bg: #111625;
	--contact-text-main: #e2e8f0;
	--contact-text-muted: #94a3b8;
	--contact-accent: #3b82f6;
	--contact-accent-glow: rgba(59, 130, 246, 0.5);
	--contact-border: rgba(206, 193, 193, 0.329);
}

.contact-us-section {
	padding: 100px 0;

	position: relative;
	overflow: hidden;
}

.contact-us-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(
			circle at 20% 50%,
			rgba(59, 130, 246, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(59, 130, 246, 0.05) 0%,
			transparent 50%
		);
	z-index: 0;
}

.contact-us-section .container {
	position: relative;
	z-index: 1;
}

/* Alert Styles */
.contact-us-section .alert {
	border-radius: 12px;
	margin-bottom: 30px;
	border: none;
}

.contact-us-section .alert-success {
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-us-section .alert-danger {
	background: rgba(239, 68, 68, 0.15);
	color: #ef4444;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Contact Image Wrapper */
.contact-image-wrapper {
	position: relative;
	height: 100%;
}

.contact-image-wrapper figure {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--contact-border);
	height: 100%;
}

.contact-image-wrapper img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
	padding-left: 40px;
}

.contact-form {
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(202, 199, 199, 0.3);
	border: 1px solid var(--contact-border);
	position: relative;
	overflow: hidden;
}

/* Decorative glow */
.contact-form::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle,
		rgba(59, 130, 246, 0.1) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.contact-form .form-group {
	margin-bottom: 25px;
	position: relative;
}

.contact-form .form-control {
	width: 100%;
	padding: 18px 24px;
	border: 2px solid rgba(255, 255, 255, 0);
	border-radius: 12px;
	font-size: 15px;
	color: var(--contact-text-main);

	transition: all 0.3s ease;
	font-family: inherit;
}

.contact-form .form-control:focus {
	outline: none;
	border-color: #ff781859;
	background: linear-gradient(
		90deg,
		#ff6a0017 0%,
		#ff2d2d1a 35%,
		#0a2a6623 70%,
		#0f4c811f 100%
	);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.082);
}

.contact-form .form-control::placeholder {
	color: var(--contact-text-muted);
}

.contact-form textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

/* Submit Button */
/* .contact-form .btn-default {
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, var(--contact-accent) 0%, #2563eb 100%);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
	position: relative;
	overflow: hidden;
}

.contact-form .btn-default::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.contact-form .btn-default:hover::before {
	left: 100%;
}

.contact-form .btn-default:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.contact-form .btn-default:active {
	transform: translateY(-1px);
} */

/* Floating label effect */
.contact-form .form-group.focused .form-control {
	border-color: var(--contact-accent);
}

/* Input icons */

/* Responsive Design */
@media (max-width: 991px) {
	.contact-form-wrapper {
		padding-left: 0;
		margin-top: 40px;
	}

	.contact-image-wrapper img {
		min-height: 400px;
	}

	.contact-form {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.contact-us-section {
		padding: 70px 0;
	}

	.contact-image-wrapper img {
		min-height: 300px;
	}

	.contact-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 15px 18px;
	}

	.contact-form .btn-default {
		padding: 16px 24px;
	}
}

@media (max-width: 480px) {
	.contact-us-section {
		padding: 50px 0;
	}

	.contact-form {
		padding: 25px 20px;
	}

	.contact-form .form-control {
		padding: 14px 16px;
		font-size: 14px;
	}
}

/* Animation enhancements */
@keyframes pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
	}
}

.contact-form .btn-default:focus {
	animation: pulse-glow 2s infinite;
}
