/*
 * CSS de la page Contact, reconstruite depuis l'export Elementor "Contact
 * export json" (elementor-7143-2026-08-24.json). Couleurs et structure
 * reprises telles quelles (3 cartes coordonnées, carte Google Maps, bandeau
 * CTA, photo + formulaire, réseaux sociaux).
 */

/* Forme décorative (assets/shape) derrière les cartes coordonnées. */
body.page-contact #page-content {
	position: relative;
}

body.page-contact #page-content::before {
	content: "";
	position: absolute;
	left: -60px;
	top: 260px;
	width: 260px;
	height: 260px;
	background: url('/assets/shape/team-contact-shape-bg.png') center / contain no-repeat;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: -48px;
	position: relative;
	z-index: 2;
	border-radius: 12px;
	overflow: hidden;
}

.contact-card {
	background: #126D30;
	color: #fff;
	padding: 32px 28px;
	text-align: center;
}

.contact-card i {
	font-size: 32px;
	margin-bottom: 14px;
	display: block;
}

.contact-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 10px;
}

.contact-card p,
.contact-card a {
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
}

.contact-card a:hover {
	text-decoration: underline;
}

.contact-visit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	padding: 72px 0;
}

.contact-visit h2 {
	color: #126D30;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 16px;
}

.contact-visit p {
	color: #1D1D1D;
	line-height: 1.7;
	margin: 0 0 12px;
}

.contact-visit iframe {
	width: 100%;
	height: 400px;
	border: 0;
	border-radius: 8px;
}

.contact-cta {
	background: var(--jade-background, #F2F1EE);
	color: #14181f;
	text-align: center;
	padding: 48px 24px;
}

.contact-cta h2 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
}

.contact-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	margin: 56px 0;
}

.contact-form-image {
	background-size: cover;
	background-position: center;
	min-height: 400px;
}

.contact-form-wrap {
	padding: 48px 40px;
}

.jade-contact-form .form-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.jade-contact-form .form-group {
	flex: 1 1 200px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.jade-contact-form label {
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.jade-contact-form input,
.jade-contact-form textarea {
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 15px;
	font-family: inherit;
}

.jade-contact-form textarea {
	min-height: 130px;
	resize: vertical;
}

.jade-contact-form button {
	padding: 14px 28px;
	background: #126D30;
	color: #fff;
	border: none;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
}

.jade-contact-form button:hover {
	background: #1ADD5A;
}

@media (max-width: 900px) {
	.contact-cards {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.contact-visit,
	.contact-form-section {
		grid-template-columns: 1fr;
	}

	.contact-form-image {
		min-height: 240px;
	}
}
