/* CONTACT */
.contact-section {
	padding: 60px 0;
	margin-bottom: 80px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 24px;
	align-items: stretch;
}

.contact-info {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.logo-large {
	margin-bottom: 28px;
}

.logo-large img {
	max-width: 130px;
	height: auto;
}

.address-box h3 {
	margin-bottom: 12px;
	font-size: 1.2rem;
	color: #001367;
}

.address-box p {
	margin-bottom: 6px;
	color: #555;
	font-size: 1rem;
}

.phone-numbers {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.phone-numbers a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text-color);
	font-weight: 700;
	font-size: 1.1rem;
	transition: var(--transition);
}

.phone-numbers a:hover {
	color: #001367;
}

.phone-numbers img {
	width: 22px;
	height: 22px;
	filter: none;
}

.contact-map {
	border-radius: 16px;
	overflow: hidden;
	display: flex;
}

.contact-map iframe {
	flex: 1;
	width: 100%;
	min-height: 400px;
	border-radius: 0 !important;
}

@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		padding: 28px;
	}

	.contact-map iframe {
		min-height: 0;
		height: 280px;
	}
}
