/* ---- Contact page modern & dynamic ---- */
:root {
	--contact-green: #0a7d3b;
	--contact-orange: #ff6a00;
	--contact-bg: #f7fafc;
	--contact-card: #fff;
	--contact-dark: #181818;
}

body {
	background: var(--contact-bg);
}

/* Hero plus large et immersif */
.contact-hero {
	background: linear-gradient(90deg, var(--contact-dark) 0%, #1a1a1a 55%, #f7ede4 100%);
	color: #fff;
	padding: 2.5rem 0 1.5rem 0;
	margin-bottom: 1.5rem;
	border-radius: 0 0 38px 38px;
	box-shadow: 0 8px 32px rgba(11,11,11,0.08);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.contact-hero .container {
	max-width: 98vw;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
@media (max-width: 1300px) {
	.contact-hero {
		max-width: 99vw;
		border-radius: 0 0 24px 24px;
	}
	.contact-hero .container {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}
}
.contact-hero h1 {
	font-size: 2.1rem;
	font-weight: 800;
	margin: 0 0 .4rem;
	letter-spacing: -1px;
}
.contact-hero .lead {
	color: #ffe;
	font-size: 1.1rem;
	margin-bottom: .7rem;
}
.hero-cta .btn {
	margin-right: .7rem;
	margin-bottom: .5rem;
	font-weight: 700;
	box-shadow: 0 4px 18px rgba(255,106,0,0.10);
	transition: transform .18s, box-shadow .18s;
}
.hero-cta .btn:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 32px rgba(255,106,0,0.18);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 2.2rem;
	align-items: start;
	margin-top: 1.2rem;
}
@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}
}

.contact-form {
	background: rgba(255,255,255,0.82);
	border-radius: 22px;
	box-shadow: 0 12px 40px 0 rgba(11,11,11,0.13), 0 2px 12px rgba(255,106,0,0.10);
	padding: 2.5rem 2.2rem 1.7rem 2.2rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	border: 2px solid #ffecd6;
	max-width: 520px;
	margin-bottom: 1.2rem;
	animation: fadeInUp .7s cubic-bezier(.2,.9,.2,1);
	backdrop-filter: blur(7px) saturate(1.2);
	position: relative;
	overflow: hidden;
}
.contact-form label {
	font-weight: 700;
	color: #ff6a00;
	font-size: 1.09rem;
	display: flex;
	align-items: center;
	gap: 0.4em;
	margin-bottom: .18rem;
	position: relative;
	transition: color .18s;
}
.contact-form label:before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 0.4em;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.7;
}
.contact-form label[for*="name"], .contact-form label:has(input[type="text"])::before {
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23ff6a00" viewBox="0 0 24 24" width="18" height="18" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="8" r="4" stroke="%23ff6a00" stroke-width="1.5" fill="none"/><path d="M4 20c0-4 8-4 8-4s8 0 8 4" stroke="%23ff6a00" stroke-width="1.5" fill="none"/></svg>');
}
.contact-form label[for*="email"], .contact-form label:has(input[type="email"])::before {
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23ff6a00" viewBox="0 0 24 24" width="18" height="18" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="6" width="20" height="12" rx="4" stroke="%23ff6a00" stroke-width="1.5" fill="none"/><path d="M2 6l10 7 10-7" stroke="%23ff6a00" stroke-width="1.5" fill="none"/></svg>');
}
.contact-form label[for*="message"], .contact-form label:has(textarea)::before {
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23ff6a00" viewBox="0 0 24 24" width="18" height="18" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="4" width="20" height="16" rx="4" stroke="%23ff6a00" stroke-width="1.5" fill="none"/><path d="M6 8h12M6 12h8" stroke="%23ff6a00" stroke-width="1.5" fill="none"/></svg>');
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: .8rem 1.1rem;
	border-radius: 11px;
	border: 1.7px solid #e0e0e0;
	font-size: 1.09rem;
	background: rgba(246,248,250,0.92);
	margin-top: .2rem;
	transition: border 0.18s, box-shadow 0.18s, background .18s;
	font-family: inherit;
	outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #ff6a00;
	box-shadow: 0 0 0 3px #ffe3d1;
	background: #fffbe9;
}
.contact-form input:disabled,
.contact-form textarea:disabled {
	background: #f3f3f3;
	color: #bbb;
}
.contact-form button.btn {
	background: linear-gradient(90deg, #ff6a00 60%, #ffb86c 100%);
	color: #fff;
	font-weight: 800;
	border: none;
	border-radius: 11px;
	padding: .9rem 1.5rem;
	font-size: 1.15rem;
	margin-top: .7rem;
	cursor: pointer;
	transition: background .18s, box-shadow .18s, transform .13s;
	box-shadow: 0 2px 12px rgba(255,106,0,0.13);
	letter-spacing: 0.01em;
	outline: none;
}
.contact-form button.btn:hover, .contact-form button.btn:focus {
	background: linear-gradient(90deg, #181818 60%, #ff6a00 100%);
	box-shadow: 0 6px 24px rgba(255,106,0,0.18);
	transform: translateY(-2px) scale(1.03);
}
.contact-form .muted {
	color: #888;
	font-size: .98rem;
	margin-top: .2rem;
}

.contact-info {
	background: rgba(255,255,255,0.92);
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(11,11,11,0.09);
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	border: 2px solid #e6e9ef;
	margin-bottom: 1.2rem;
	animation: fadeInUp .8s .1s cubic-bezier(.2,.9,.2,1) both;
	backdrop-filter: blur(4px) saturate(1.1);
}
.contact-info h2 {
	font-size: 1.2rem;
	color: var(--contact-green);
	margin-bottom: .7rem;
}
.contact-info p {
	margin: .5rem 0;
	color: #222;
}
.contact-info a {
	color: var(--contact-orange);
	text-decoration: none;
	font-weight: 600;
}
.contact-info a:hover {
	text-decoration: underline;
}

.contact-aside {
	background: rgba(255,255,255,0.92);
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(11,11,11,0.09);
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	border: 2px solid #e6e9ef;
	animation: fadeInUp .9s .15s cubic-bezier(.2,.9,.2,1) both;
	backdrop-filter: blur(4px) saturate(1.1);
}
.contact-aside h2 {
	font-size: 1.1rem;
	color: var(--contact-green);
	margin-bottom: .7rem;
}
.map-wrap {
	width: 100%;
	height: 260px;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid #e6e9ef;
	margin-bottom: .7rem;
	box-shadow: 0 4px 18px rgba(11,11,11,0.07);
}
.map-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(.18) contrast(1.08);
}

@media (max-width: 700px) {
	.contact-hero {
		padding: 1.2rem 0 1rem 0;
		border-radius: 0 0 18px 18px;
	}
	.contact-form, .contact-info, .contact-aside {
		padding: 1rem .5rem;
	}
	.contact-form {
		max-width: 100%;
	}
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: none; }
}
/* Styles spécifiques à la page contact */
