/* ===== CONTACT PAGE PREMIUM INSANE IDENTITY ===== */
.contact-section-id {
	padding: 88px 0 0 0;
	background: #fff;
	margin-top: 32px;
}
.contact-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}
.contact-title {
	text-align: center;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 32px;
}
.contact-grid {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	gap: 36px;
	margin-bottom: 44px;
}
.contact-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(0,0,0,.06);
	padding: 28px 28px 22px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	min-width: 340px;
	max-width: 420px;
	flex: 1 1 0;
	gap: 18px;
}
.contact-card .field-label {
	font-weight: 600;
	margin-bottom: 8px;
}
.contact-card .select {
	width: 100%;
	height: 44px;
	border-radius: 10px;
	border: 1px solid #e6e6e6;
	padding: 0 12px;
	margin-bottom: 14px;
	background: #fff;
	font: inherit;
}
.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	margin-bottom: 0;
}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	font-size: 16px;
	width: 100%;
	min-width: 0;
	padding: 0 18px;
	background: #f5f5f5;
	transition: box-shadow .12s, transform .08s;
}
.btn:active { transform: translateY(1px); }
.btn-dark { background: #1f1f1f; color: #fff; }
.btn-phone { background: #1187a6; color: #fff; }
.btn-telegram { background: #1da1f2; color: #fff; }
.btn-snapchat { background: #ffea00; color: #1f1f1f; border: 1px solid #e5d700; }
.btn-google { background: #fff; color: #222; border: 1px solid #e6e6e6; }
.btn:hover { box-shadow: 0 4px 16px 0 #0001; transform: translateY(-2px) scale(1.04); }
.i { width: 18px; height: 18px; display: inline-block; position: relative; }
.i-mail { background: none; border: none; }
.i-phone::before { content: "📞"; position: absolute; inset: 0; display: grid; place-items: center; }
.i-telegram::before { content: "✈️"; position: absolute; inset: 0; display: grid; place-items: center; }
.i-snap::before { content: "👻"; position: absolute; inset: 0; display: grid; place-items: center; }
.i-pin::before { content: "📍"; font-size: 18px; }
.i-google::before { content: "G"; font-weight: 800; }
.address-box {
	display: flex;
	gap: 12px;
	align-items: center;
	border: 1px solid #eee;
	background: #f9fafb;
	border-radius: 12px;
	padding: 14px 14px;
	margin-bottom: 14px;
}
/* Bloc réseaux sociaux centré, ligne horizontale premium */
.contact-socials {
	width: 100%;
	max-width: 700px;
	margin: 0 auto 48px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.socials-title {
	font-size: 13px;
	letter-spacing: .02em;
	margin: 36px 0 12px 0;
	color: #0a1220;
	text-align: center;
}
.contact-socials ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	gap: 22px;
	justify-content: center;
	align-items: center;
}
.contact-socials img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 6px 16px rgba(0,0,0,.06);
	padding: 6px;
	transition: transform .12s;
}
.contact-socials a:hover img {
	transform: translateY(-2px) scale(1.08);
}
@media (max-width: 980px) {
	.contact-grid {
		flex-direction: column;
		gap: 18px;
		align-items: center;
	}
	.contact-card {
		min-width: 0;
		width: 100%;
		max-width: 98vw;
		padding: 18px 8px 14px 8px;
	}
	.contact-title { font-size: 24px; }
	.contact-socials { margin-top: 24px; }
	.contact-socials ul { gap: 14px; }
}
@media (max-width: 600px) {
	.btn { min-width: 0; font-size: 14px; padding: 0 8px; }
	.contact-socials ul { gap: 8px; }
}

