/* Pagina Contatti */

.contact-map {
	margin-bottom: 0;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 350px;
	border: 0;
}

/* Card info */
.contact-info-card {
	background: #f9f9f9;
	border-radius: 12px;
	padding: 28px;
	height: 100%;
}

.contact-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-section-title i {
	color: var(--primary);
	font-size: 24px;
}

.contact-info-block {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}

.contact-info-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: #fff !important;
	border-radius: 8px;
	font-size: 18px;
}

.contact-info-icon i {
	color: #fff !important;
	font-size: 18px;
	line-height: 1;
}

.contact-phone {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
}

.contact-extensions {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	margin-top: 8px;
	font-size: 13px;
	color: #666;
}

.contact-extensions strong {
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	background: var(--primary);
	color: #fff;
	border-radius: 4px;
	font-size: 11px;
	margin-right: 4px;
}

.contact-social {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #e8e8e8;
	display: flex;
	gap: 12px;
}

.contact-social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8e8e8;
	color: #555;
	border-radius: 50%;
	font-size: 18px;
	transition: all 0.2s;
}

.contact-social a:hover {
	background: var(--primary);
	color: #fff;
}

/* Form card */
.contact-form-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 28px;
}

@media (max-width: 767px) {

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

	.contact-map iframe {
		height: 250px;
	}
}