/*--------------- PAGE CONTACT — même design que index -----------------*/

/* ===== HERO (= index_hero) ===== */
#contact_hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px 50px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
	overflow: hidden;
}
#contact_hero::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -15%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(173,22,40,0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
#contact_hero::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(15,52,96,0.2) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
#contact_hero_content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}
#contact_hero_titre {
	font-family: century gothic, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 0 18px 0;
	letter-spacing: -0.3px;
}
#contact_hero_titre span {
	color: #e94560;
}
#contact_hero_desc {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.7);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.8;
	text-align: justify;
}

/* ===== TAGS (= index pill) ===== */
.contact_tag {
	display: inline-block;
	background: rgba(173,22,40,0.1);
	color: #ad1628;
	padding: 6px 18px;
	border-radius: 50px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}
#contact_hero .contact_tag {
	background: rgba(173,22,40,0.15);
	color: #e94560;
}

/* ===== SECTION HEADERS ===== */
.contact_section_header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 35px;
}
.contact_section_titre {
	font-family: century gothic, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #1a1a2e;
	margin: 0 0 8px 0;
}
.contact_section_subtitle {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

/* ===== COORDONNÉES (fond sombre = index_body_services) ===== */
#contact_infos {
	background: #1a1a2e;
	padding: 50px 15px 60px;
}
#contact_infos_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	max-width: 1000px;
	margin: 0 auto;
}
.contact_info_card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact_info_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.3);
	background: rgba(255,255,255,0.08);
}
.contact_info_card_icon {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #ad1628, #d63851);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}
.contact_info_card_icon i {
	font-size: 22px;
	color: white;
}
.contact_info_card_titre {
	font-family: century gothic, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}
.contact_info_card_desc {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
}

/* ===== FORMULAIRE (fond clair = #f8f9fc) ===== */
#contact_form_section {
	background: #f8f9fc;
	padding: 50px 15px 60px;
}
#contact_form_wrapper {
	max-width: 700px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	padding: 30px 20px;
	box-shadow: 0 4px 25px rgba(0,0,0,0.06);
	border: 1px solid #eef0f5;
}
#contact_form_row {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.contact_form_group {
	margin-bottom: 20px;
}
.contact_form_label {
	display: block;
	font-family: verdana, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #1a1a2e;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}
.contact_form_input {
	display: block;
	width: 100%;
	font-family: verdana, sans-serif;
	font-size: 13px;
	color: #333;
	padding: 12px 14px;
	border: 1px solid #dde0e6;
	border-radius: 8px;
	outline: none;
	background: #f8f9fc;
	transition: border-color 0.3s, box-shadow 0.3s;
	box-sizing: border-box;
}
.contact_form_input:focus {
	border-color: #ad1628;
	box-shadow: 0 0 0 3px rgba(173,22,40,0.08);
	background: #fff;
}
.contact_form_textarea {
	display: block;
	width: 100%;
	font-family: verdana, sans-serif;
	font-size: 13px;
	color: #333;
	padding: 12px 14px;
	border: 1px solid #dde0e6;
	border-radius: 8px;
	outline: none;
	background: #f8f9fc;
	height: 140px;
	resize: vertical;
	transition: border-color 0.3s, box-shadow 0.3s;
	box-sizing: border-box;
}
.contact_form_textarea:focus {
	border-color: #ad1628;
	box-shadow: 0 0 0 3px rgba(173,22,40,0.08);
	background: #fff;
}
.contact_form_button {
	display: inline-block;
	background: #ad1628;
	color: #fff;
	padding: 14px 35px;
	border: none;
	border-radius: 6px;
	font-family: verdana, sans-serif;
	font-size: 13px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
}
.contact_form_button:hover {
	background: #8b1120;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(173,22,40,0.35);
}
.contact_form_button i {
	margin-right: 8px;
}

/* ===== CTA (= index_cta) ===== */
#contact_cta {
	background: linear-gradient(135deg, #ad1628 0%, #8b1120 100%);
	padding: 60px 20px;
	text-align: center;
}
#contact_cta_content {
	max-width: 550px;
	margin: 0 auto;
}
#contact_cta_titre {
	font-family: century gothic, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin: 0 0 12px 0;
}
#contact_cta_desc {
	font-family: verdana, sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin: 0;
	line-height: 1.7;
}


/* ================================================================ */
/* ===== RESPONSIVE                                           ===== */
/* ================================================================ */

/*--------------------------------------- 320 --------------------------------------*/
@media screen and (min-width: 320px){

body { position: relative; padding: 0; margin: 0; }

#menu_block_3 { display: none; }
#menu_block_3_slider { display: none; }
#menu_block_2_nav_contact { border-bottom: solid 2px #ad1628; }

#contact {
	position: relative;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}
	#contact_head {
		position: relative;
		width: 100%;
		height: auto;
	}
	#contact_body {
		position: relative;
		width: 100%;
	}
	#contact_foot {
		position: relative;
		background: #0d0d0d;
		width: 100%;
	}
	#index_body_fond {
		display: none;
		position: fixed;
		background: black;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0.7;
		z-index: 50;
	}
}

/*--------------------------------------- 480 --------------------------------------*/
@media screen and (min-width: 480px){

	#contact_hero { min-height: 400px; padding: 50px 25px 60px; }
	#contact_hero_titre { font-size: 28px; }
	#contact_hero_desc { font-size: 13px; }

	#contact_infos { padding: 50px 25px 60px; }
	#contact_infos_grid { grid-template-columns: repeat(2, 1fr); }
	.contact_info_card_icon { width: 58px; height: 58px; }
	.contact_info_card_icon i { font-size: 24px; }

	#contact_form_section { padding: 50px 25px 60px; }
	#contact_form_wrapper { padding: 35px 25px; }
	#contact_form_row {
		flex-direction: row;
		gap: 15px;
	}
	#contact_form_row .contact_form_group {
		flex: 1;
	}
}

/*--------------------------------------- 768 --------------------------------------*/
@media screen and (min-width: 768px){

	#contact_hero { min-height: 440px; padding: 60px 40px 70px; }
	#contact_hero_titre { font-size: 34px; }
	#contact_hero_desc { font-size: 14px; max-width: 600px; }

	#contact_infos { padding: 60px 30px 70px; }
	#contact_infos_grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
	.contact_info_card { padding: 35px 18px; }
	.contact_info_card_icon { width: 60px; height: 60px; }
	.contact_info_card_icon i { font-size: 24px; }
	.contact_info_card_titre { font-size: 14px; }
	.contact_info_card_desc { font-size: 12px; }

	.contact_section_titre { font-size: 28px; }
	.contact_section_subtitle { font-size: 13px; }
	#contact_form_section { padding: 60px 30px 70px; }
	#contact_form_wrapper { padding: 40px 35px; }
	.contact_form_input { font-size: 14px; }
	.contact_form_textarea { font-size: 14px; height: 160px; }
	#contact_form_row { gap: 20px; }

	#contact_cta { padding: 70px 30px; }
	#contact_cta_titre { font-size: 28px; }
	#contact_cta_desc { font-size: 14px; }
}

/*--------------------------------------- 980 --------------------------------------*/
@media screen and (min-width: 980px){

	#menu_block_3 { display: block; }
	#menu_block_3_slider { display: none; }

	#contact_hero { min-height: 480px; padding: 80px 50px 90px; }
	#contact_hero_titre { font-size: 40px; line-height: 1.2; }
	#contact_hero_desc { font-size: 15px; }

	#contact_infos { padding: 70px 40px 80px; }
	#contact_infos_grid { gap: 25px; }
	.contact_info_card { padding: 38px 20px; }
	.contact_info_card_icon { width: 65px; height: 65px; }
	.contact_info_card_icon i { font-size: 26px; }
	.contact_info_card_titre { font-size: 16px; }
	.contact_info_card_desc { font-size: 13px; }

	.contact_section_titre { font-size: 30px; }
	#contact_form_section { padding: 70px 40px 80px; }
	#contact_form_wrapper { padding: 45px 40px; max-width: 750px; }
	.contact_form_label { font-size: 11px; }
	.contact_form_button { width: auto; padding: 14px 45px; }

	#contact_cta { padding: 80px 40px; }
	#contact_cta_titre { font-size: 32px; }
}

/*--------------------------------------- 1136 --------------------------------------*/
@media screen and (min-width: 1136px){

	#contact_hero_titre { font-size: 44px; }
	#contact_hero_desc { font-size: 16px; }

	.contact_info_card_icon { width: 70px; height: 70px; }
	.contact_info_card_icon i { font-size: 28px; }
	.contact_info_card_titre { font-size: 17px; }
	.contact_info_card_desc { font-size: 13px; }

	.contact_section_titre { font-size: 32px; }
	#contact_form_wrapper { padding: 50px 45px; max-width: 800px; }
	.contact_form_input { padding: 14px 16px; }
	.contact_form_textarea { padding: 14px 16px; height: 180px; }

	#contact_cta_titre { font-size: 36px; }
	#contact_cta_desc { font-size: 15px; }
}

/*--------------------------------------- 1260 --------------------------------------*/
@media screen and (min-width: 1260px){

	#contact_hero { padding: 90px 60px 100px; }
	#contact_hero_titre { font-size: 48px; }

	.contact_info_card { padding: 42px 25px; }
}
