/* contact.css */

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
}

.contact-area {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.contact-wrapper {
	display: flex;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info,
.contact-form {
	padding: 40px;
}

.contact-info {
	background-color: #2b2d30;
	color: #ffffff;
	width: 40%;
}

.contact-form {
	width: 60%;
}

h3 {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 700;
}

.contact-info h3 {
	color: #ffffff;
}

.contact-info p {
	margin-bottom: 30px;
}

.contact-details {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.contact-details li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.contact-details i {
	font-size: 20px;
	margin-right: 15px;
	margin-top: 5px;
}

.contact-details h4 {
	font-size: 18px;
	margin: 0 0 5px;
	color: darkgray
}

.contact-details p {
	margin: 0;
}

.social-links {
	display: flex;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-right: 10px;
	color: #ffffff;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.social-links a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.form-group {
	margin-bottom: 20px;
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
	border-color: #dc3545;
}

.error-message {
	color: #dc3545;
	font-size: 14px;
	margin-top: 5px;
	position: absolute;
	bottom: -20px;
	left: 0;
}

.btn-primary {
	background-color: #007bff;
	border: none;
	padding: 12px 30px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, opacity 0.3s ease;
}

.btn-primary:hover {
	background-color: #0056b3;
}

.btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}


@media (max-width: 768px) {
	.contact-wrapper {
		flex-direction: column;
	}

	.contact-info,
	.contact-form {
		width: 100%;
	}

	/* Hide the "Get In Touch" section on mobile */
	.contact-info {
		display: none;
	}

	/* Further reduce header size on mobile */
	.breadcrumb-area {
		padding: 25px 0 !important;
		margin-bottom: 20px !important;
	}

	/* Make logo container much smaller */
	.logo-container {
		top: -20px !important;
		padding: 8px !important;
	}

	.logo-container img {
		width: 80px !important;
	}

	/* Minimize navbar padding */
	.navbar {
		padding: 5px 0 !important;
	}

	/* Reduce container padding in header */
	.breadcrumb-area .container {
		padding-top: 10px !important;
	}

	.breadcrumb-area h2 {
		font-size: 1.3rem !important;
		margin-bottom: 5px !important;
	}

	/* Reduce contact area padding to minimize space between header and form */
	.contact-area {
		padding: 20px 0 !important;
	}

	.contact-form {
		padding: 20px !important;
	}

	/* Fix Turnstile captcha width overflow */
	#cf-turnstile,
	.cf-turnstile {
		width: 100% !important;
		max-width: 100% !important;
		transform: scale(0.85);
		transform-origin: 0 0;
		margin-bottom: 10px;
	}

	/* Ensure form container doesn't overflow */
	.contact-form form {
		max-width: 100%;
		overflow-x: hidden;
	}
}

/* Styling for the big circled envelope icon */
.big-envelope-icon {
	margin-top: 60px;
	text-align: center;
}

.big-envelope-icon i {
	font-size: 80px;
	color: #007bff;
	/* Change this to any color you'd like */
	background-color: #fff;
	padding: 30px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}