/* =====================================
   PAGE CONTACT
===================================== */

.contact-page {
	background: #fff;
	color: #1a1a1a;
}

.contact-page * {
	box-sizing: border-box;
}

.contact-page h1,
.contact-page h2,
.contact-page h3 {
	font-family: "Outfit", "Open Sans", Arial, sans-serif;
	color: #000;
}

/* HERO */

.contact-hero {
	padding: 70px 20px;
	background: linear-gradient(135deg,#fdfbfb 0%,#ebedee 100%);
	text-align: center;
}

.contact-hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.contact-hero h1 {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 15px;
}

.contact-hero p {
	font-size: 20px;
	line-height: 1.7;
	margin: 0;
}

/* CONTENEUR */

.contact-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* BLOC ADRESSE + CARTE */

.contact-main {
	padding: 70px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 30px;
	align-items: stretch;
}

.contact-info-card,
.contact-map-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 16px;
	padding: 30px;
}

.contact-info-card h2 {
	margin-top: 0;
	margin-bottom: 20px;
}

.contact-info-block p {
	line-height: 1.8;
	margin-bottom: 18px;
}

.contact-storefront {
	width: 100%;
	border-radius: 12px;
	margin: 20px 0;
	display: block;
}

.contact-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	background: #E8675C;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	border: 1px solid #E8675C;
	transition: all .2s ease;
}

.contact-btn:hover {
	background: #d8564c;
	border-color: #d8564c;
	color: #fff !important;
}

.contact-btn-outline {
	background: transparent;
	color: #E8675C !important;
}

.contact-btn-outline:hover {
	background: #E8675C;
	color: #fff !important;
}

/* CARTE */

.contact-map-card {
	padding: 15px;
}

.contact-map-card .acf-map {
	height: 620px;
	border-radius: 12px;
	overflow: hidden;
}

/* FORMULAIRE */

.contact-form-section {
	padding: 0 0 70px;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 30px;
}

.contact-hours-card,
.contact-partner-card,
.contact-form-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 16px;
	padding: 30px;
}

.contact-hours-card {
	margin-bottom: 20px;
}

.contact-hours-card h2,
.contact-partner-card h2,
.contact-form-card h2 {
	margin-top: 0;
}

.contact-hours-card p {
	line-height: 2;
	margin-bottom: 0;
}

.contact-hours-card strong {
	display: inline-block;
	width: 90px;
}

.contact-partner-card {
	background: #2c2c2c;
	color: #fff;
}

.contact-partner-card h2 {
	color: #fff;
}

.contact-form-card p {
	margin-bottom: 25px;
	color: #666;
}

/* FORMULAIRE CF7 */

.contact-form-card input[type=text],
.contact-form-card input[type=email],
.contact-form-card textarea {
	width: 100%;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	padding: 12px;
}

.contact-form-card textarea {
	min-height: 180px;
}

.contact-form-card input[type=submit] {
	background: #E8675C !important;
	border: 1px solid #E8675C !important;
	color: #fff !important;
	border-radius: 8px !important;
	padding: 14px 28px !important;
	font-weight: 700 !important;
	text-transform: none !important;
}

/* ACCÈS */

.contact-access {
	padding: 70px 0 90px;
	background: #f8f9fa;
}

.contact-access h2 {
	text-align: center;
	margin-bottom: 40px;
}

.contact-access-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.contact-access-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 16px;
	padding: 25px;
}

.contact-access-card h3 {
	margin-top: 0;
}

.contact-access-card p {
	line-height: 1.8;
}

.contact-text-link {
	color: #E8675C;
	font-weight: 700;
	text-decoration: none;
}

.contact-text-link:hover {
	text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 991px) {

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

	.contact-hero h1 {
		font-size: 36px;
	}

	.contact-hero p {
		font-size: 18px;
	}

	.contact-map-card .acf-map {
		height: 400px;
	}
}

/* Bouton formulaire contact */

.contact-form-card input[type="submit"],
.contact-form-card .wpcf7-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	height: 52px !important;
	padding: 0 28px !important;

	line-height: 1 !important;
	text-align: center !important;

	background: #E8675C !important;
	border: 1px solid #E8675C !important;
	border-radius: 8px !important;

	color: #fff !important;
	font-weight: 700 !important;
	font-size: 16px !important;

	cursor: pointer;
}