/**
 * Contact Us — scoped under .fmd-contact-static
 */

.fmd-contact-static {
	margin: 0;
	font-family: "Inter", sans-serif;
	background: #f9fafc;
	color: #333;
}

.fmd-contact-static .contact-hero {
	background: linear-gradient(to right, #273c4e, #000428);
	color: #fff;
	padding: 80px 20px;
	text-align: center;
}

.fmd-contact-static .contact-hero h1 {
	font-size: 3em;
	margin-bottom: 10px;
	margin-top: 0;
}

.fmd-contact-static .contact-hero p {
	font-size: 1.2em;
	margin: 0;
}

.fmd-contact-static .contact-grid-wrap {
	padding: 60px 100px;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}

.fmd-contact-static .contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fmd-contact-static .contact-info,
.fmd-contact-static .contact-form {
	flex: 1 1 400px;
	background: #fff;
	padding: 60px 120px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	animation: fmd-contact-fadeInUp 1s ease-in-out;
}

.fmd-contact-static .contact-info h2,
.fmd-contact-static .contact-form h2 {
	color: #273c4e;
	margin-bottom: 20px;
	margin-top: 0;
}

.fmd-contact-static .contact-info p {
	margin: 10px 0;
	font-size: 1em;
}

.fmd-contact-static .contact-info i {
	margin-right: 10px;
	color: #273c4e;
}

.fmd-contact-static .contact-info a {
	color: #273c4e;
	text-decoration: none;
}

.fmd-contact-static .contact-info a:hover {
	text-decoration: underline;
}

.fmd-contact-static .contact-form input,
.fmd-contact-static .contact-form textarea {
	width: 100%;
	padding: 12px;
	margin: 10px 0 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-family: "Inter", sans-serif;
	box-sizing: border-box;
}

.fmd-contact-static .contact-form button {
	background: #273c4e;
	color: #fff;
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 700;
}

.fmd-contact-static .contact-form button:hover {
	background: #00376b;
}

.fmd-contact-static .contact-form-note {
	font-size: 0.85rem;
	color: #666;
	margin-top: 1rem;
	margin-bottom: 0;
}

.fmd-contact-static .contact-map {
	margin-top: 30px;
}

.fmd-contact-static .contact-map iframe {
	width: 100%;
	height: 300px;
	border: none;
	border-radius: 10px;
}

@keyframes fmd-contact-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

	.fmd-contact-static .contact-hero h1 {
		font-size: 2rem;
	}
}
