#faq-content {
	padding: 55px 100px 80px;
}
.hero .hero-content h1 {
	margin-bottom: revert;
}
.faq-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-bottom: 50px;
}
.faq-tab {
	font-size: 16px;
	padding: 12px 28px;
	border: 1px solid #C5BA9B;
	cursor: pointer;
	transition: all 0.25s ease;
	background-color: white;
}
.faq-tab:hover {
	border-color: #C5BA9B;
	color: #252526;
}
.faq-tab.active {
	border-color: #C5BA9B;
	color: #252526;
	font-weight: 600;
}
#faq-contact {
	padding: 0px 100px 80px;
}
#faq-contact .contact-inner {
	display: flex;
	align-items: center;
	gap: 80px;
	justify-content: space-between;
}
.form-row p{
	display: flex;
	gap: 10px;
}
#faq-contact .contact-form-wrap {
	flex: 1;
}
#faq-contact .contact-form-wrap h2 {
	margin-bottom: 36px;
}
#faq-contact .form-row {
	display: flex;
	gap: 18px;
	margin-bottom: 18px;
}
#faq-contact .form-field {
	flex: 1;
	display: block;
}
#faq-contact .form-field .wpcf7-form-control-wrap {
	display: block;
}
#faq-contact .form-group {
	margin-bottom: 18px;
}
#faq-contact input[type="text"], #faq-contact input[type="tel"], #faq-contact input[type="email"], #faq-contact textarea {
	width: 100%;
	height: 35px;
	padding: 0 18px;
	border: 1px solid #d8c9a3;
	background-color: #fff;
	font-size: 0.85rem;
	font-family: inherit;
	color: #252526;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease;
}
#faq-contact textarea {
	height: 130px;
	padding: 14px 18px;
	resize: vertical;
	line-height: 1.5;
}
#faq-contact input::placeholder, #faq-contact textarea::placeholder {
	color: #C5BA9B;
	font-family: inherit;
	font-size: 0.85rem;
}
#faq-contact input:focus, #faq-contact textarea:focus {
	border-color: #C5BA9B;
}
#faq-contact .form-submit {
	margin: 18px 0 0;
}
#faq-contact .form-submit .btn-cta {
	margin-top: 0;
	cursor: pointer;
}
#faq-contact .wpcf7-not-valid-tip {
	font-size: 0.72rem;
	color: #d33;
	margin-top: 5px;
}
#faq-contact .wpcf7-response-output {
	margin: 16px 0 0 !important;
	font-size: 0.8rem;
}
#faq-contact .contact-image {
	flex: 0 0 40%;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #C5BA9B;
}
#faq-contact .contact-image .arch-img {
	overflow: hidden;
	border-radius: 1000px 1000px 0px 0px;
}
#faq-contact .contact-image .arch-img img {
	width: 100%;
	object-fit: cover;
	display: block;
}
#faq-localisation {
	max-width: none;
	padding: 0 0 80px;
}
.localisation-inner {
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1400px;
	margin: 0 auto;
}
.localisation-map {
	flex: 0 0 55%;
	overflow: hidden;
}
.localisation-map img {
	width: 100%;
	height: 100%;
	max-height: 360px;
	object-fit: cover;
	display: block;
}
.localisation-addresses {
	flex: 1;
	padding-right: 60px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.address-card h4 {
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin: 0 0 8px;
}
.address-card p {
	font-size: 0.9rem;
}
.address-card .metro {
	margin-top: 8px;
	color: #666;
	font-size: 0.82rem;
	display: flex;
	align-items: center;
	gap: 6px;
}
.address-card .metro-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: #C5BA9B;
	color: #fff;
	border-radius: 50%;
	font-size: 0.65rem;
	font-weight: 700;
	flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
	#faq-content, #faq-contact {
		padding: 20px;
	}
	.page-faq #faq-content .faq-group {
        padding-left: 0;
        padding-right: 0;
    }
	#faq-contact .contact-inner, .localisation-inner {
		flex-direction: column;
		gap: 20px;
	}
	.faq-tabs {
		margin-bottom: 20px;
	}
	#faq-contact .contact-form-wrap, #faq-contact .contact-image {
		width: 100%;
		max-width: 100%;
		flex: none;
	}
	.localisation-map, .localisation-addresses {
		width: 100%;
		flex: none;
		padding: 0 20px;
	}
	.localisation-map img {
		max-height: 400px;
	}
	#faq-contact .contact-inner br{
		display: none;
	}
	.form-row p {
		width: 100%;
	}
	#faq-contact .contact-image .arch-img {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		height: 400px;
		border-radius: 0;
		overflow: hidden;
	}
	#faq-contact .contact-image .arch-img img,
	#faq-contact .contact-image .arch-img picture {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
		display: block;
	}
	#faq-contact .contact-form-wrap h2 {
		margin-bottom: 30px;
		margin-top: 0px;
	}
}

@media screen and (max-width: 550px) {
	#faq-contact .form-row {
		flex-direction: column;
		gap: 20px;
	}
	.faq-tab {
		font-size: 0.78rem;
		padding: 10px 20px;
	}
}
/* ============================================================================
 * FAQ 100 % HTML (comme le lexique) : nav par ancres + toutes les questions
 * visibles, groupées par catégorie. Remplace les onglets qui masquaient le contenu.
 * ========================================================================== */
.faq-anchors {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 50px;
}
.faq-anchor {
	border: 1px solid #C5BA9B;
	padding: 11px 22px;
	font-size: 14px;
	color: #252526;
	text-decoration: none;
	background: #fff;
	transition: all 0.25s ease;
}
.faq-anchor:hover {
	background: #F5F2EA;
}
.faq-group {
	scroll-margin-top: 120px; /* décalage sous le header au clic d'ancre */
	margin-bottom: 44px;
}
.faq-group:last-child {
	margin-bottom: 0;
}
.faq-group-title {
	font-size: 30px;
	margin: 0 0 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E9E2D2;
}

/* Sécurise le full-bleed mobile (image form) : pas de scroll horizontal */
.page-faq { overflow-x: clip; }
