/* ============================================================
   RESET LOCAL DE LA SECTION
============================================================ */
.framed,
.framed * {
	box-sizing: border-box;
}

.framed {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--line);
	overflow: hidden;
}

.framed > div {
	display: flex;
	min-width: 0;
}

/* ============================================================
   COORDONNÉES
============================================================ */
.contact-aside {
	background: var(--anthracite);
	color: var(--white);
	padding: 64px 56px;
	position: relative;
	overflow: hidden;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.contact-aside::after {
	content: "";
	position: absolute;
	bottom: -60px;
	right: -60px;
	width: 200px;
	height: 200px;
	border: 32px solid rgba(217, 48, 37, 0.18);
	border-radius: 50%;
	pointer-events: none;
}

.contact-aside h2 {
	color: var(--white);
	font-size: 38px;
	font-weight: 800;
	line-height: 1.05;
	margin: 0;
}

.contact-aside .intro {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.7;
	max-width: 380px;
}

.ci-list {
	margin-top: 44px;
	position: relative;
	z-index: 2;
}

.ci-row {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 18px;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	align-items: start;
}

.ci-row:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ci-ic {
	width: 44px;
	height: 44px;
	border: 1.5px solid var(--red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	flex-shrink: 0;
}

.ci-k {
	font-family: var(--font-tertiary);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
}

.ci-v {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 17px;
	color: var(--white);
	margin-top: 6px;
	line-height: 1.4;
}

.ci-v span {
	display: block;
	font-family: var(--font-secondary);
	font-weight: 400;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
}

.contact-social {
	margin-top: 36px;
	display: flex;
	gap: 10px;
	position: relative;
	z-index: 2;
}

.contact-social a {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	transition: all 0.2s ease;
}

.contact-social a:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}

/* ============================================================
   FORMULAIRE
============================================================ */
.form-wrap {
	background: var(--white);
	padding: 64px 56px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.form-title {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
	color: var(--dark);
}

.form-note {
	font-family: var(--font-secondary);
	font-size: 14px;
	color: var(--body);
	margin-top: 20px;
}

.contact-form {
	width: 100%;
}

.uk-input, .uk-select, .uk-textarea{
	color:var(--dark);
}

.contact-form .wpcf7 {
	width: 100%;
}

.contact-form .wpcf7-form {
	margin: 0;
	width: 100%;
}

.contact-form .wpcf7-form > p {
	margin: 0 0 18px;
}

.contact-form .wpcf7-form > p:last-child {
	margin-bottom: 0;
}

.contact-form .wpcf7-not-valid-tip {
	font-size: 12px;
	color: var(--red);
	margin-top: 6px;
	font-family: var(--font-secondary);
}

.contact-form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 14px;
	border-radius: 0;
	font-family: var(--font-secondary);
	font-size: 13px;
	line-height: 1.5;
}

/* Champs CF7 */
.contact-form .uk-form-label,
.contact-form label {
	display: block;
	font-family: var(--font-tertiary);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--body);
	font-weight: 600;
	margin-bottom: 10px;
}

.contact-form .req {
	color: var(--red);
}

.contact-form .uk-input,
.contact-form .uk-select,
.contact-form .uk-textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 0;
	padding: 16px;
	height: auto;
	font-size: 15px;
	font-family: var(--font-secondary);
	background: var(--white);
	box-shadow: none;
	outline: none;
	box-sizing: border-box;
}

.contact-form .uk-input:focus,
.contact-form .uk-select:focus,
.contact-form .uk-textarea:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--red);
	box-shadow: none;
	outline: none;
}

.contact-form .uk-input::placeholder,
.contact-form .uk-textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #b7b7b7;
}

.contact-form .uk-textarea,
.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form .wpcf7-checkbox {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
}

.contact-form .wpcf7-list-item {
	margin: 0;
}

.contact-form .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	margin: 0;
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--font-secondary);
	font-size: 13px;
	font-weight: 400;
	color: var(--body);
}

.contact-form .wpcf7-list-item input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-form .uk-checkbox:checked,
.contact-form input[type="checkbox"]:checked {
	background-color: var(--red);
	border-color: var(--red);
}

.contact-form .wpcf7-form-control-wrap[data-name="your-project"] select,
.contact-form select[name="your-project"] {
	color: var(--anthracite);
}

.contact-form select[name="your-project"] {
	height: 50px;
	min-height: 50px;
	padding: 0 16px;
}


.contact-form .wpcf7-form-control-wrap[data-name="your-project"] select:focus,
.contact-form .wpcf7-form-control-wrap[data-name="your-project"] select:valid {
	color: var(--anthracite);
}

.consent-txt a{
	color:var(--red);
}
.consent-txt a:hover{
	color:var(--red);
	text-decoration: underline;
}

/* ============================================================
   BOUTON
============================================================ */
.contact-form .btn-red,
.contact-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--red);
	color: var(--white);
	border: 0;
	border-radius: 0;
	padding: 16px 28px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.contact-form .btn-red:hover,
.contact-form .wpcf7-submit:hover {
	background: var(--red-hover);
	color: var(--white);
	transform: translateY(-1px);
}

/* ============================================================
   NOUS TROUVER
============================================================ */
.find-info {
	padding: 56px 48px;
	background: var(--white);
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.find-info h3 {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.05;
	margin: 0;
}

.find-info .addr {
	margin-top: 22px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 18px;
	color: var(--anthracite);
	line-height: 1.4;
}

.find-info .addr span {
	display: block;
	font-family: var(--font-secondary);
	font-weight: 400;
	font-size: 14px;
	color: var(--body);
	margin-top: 6px;
}

.find-hours {
	margin-top: 28px;
	border-top: 1px solid var(--line);
	padding-top: 24px;
}

.find-hours .hr {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
	padding: 6px 0;
	color: var(--body);
}

.find-hours .hr b {
	font-family: var(--font-primary);
	color: var(--anthracite);
	font-weight: 600;
}

.find-hours .hr .closed {
	color: var(--red);
	font-family: var(--font-tertiary);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.find-map {
	position: relative;
	min-height: 520px;
	background: var(--paper);
	width: 100%;
	display: flex;
}

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

/* ============================================================
   CADRE GLOBAL
============================================================ */
.framed {
	border: 1px solid var(--line);
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.framed > div {
	display: flex;
	min-width: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 959px) {
	.framed {
		display: block;
	}

	.framed > div {
		display: block;
	}

	.contact-aside,
	.form-wrap,
	.find-info {
		padding: 40px 28px;
	}

	.contact-aside h2,
	.find-info h3 {
		font-size: 34px;
	}

	.find-map {
		min-height: 380px;
	}
}

@media (max-width: 639px) {
	.contact-aside,
	.form-wrap,
	.find-info {
		padding: 32px 20px;
	}

	.contact-aside h2,
	.find-info h3 {
		font-size: 30px;
	}

	.ci-row {
		grid-template-columns: 36px 1fr;
		gap: 14px;
	}

	.ci-ic {
		width: 36px;
		height: 36px;
	}
}


.final::before{
    background-color:var(--paper);
}