﻿/*--------------- PAGE SERVICES — même design que index -----------------*/

/* ===== HERO (= index_hero) ===== */
#services_hero {
	position: relative;
	min-height: 400px;
	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;
}
#services_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;
}
#services_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;
}
#services_hero_content {
	position: relative;
	z-index: 2;
	max-width: 750px;
}
#services_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;
}
#services_hero_titre span {
	color: #e94560;
}
#services_hero_desc {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.7);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
	text-align: justify;
}
#services_hero_desc strong {
	color: rgba(255,255,255,0.85);
}

/* ===== TAGS (= index_section_tag / index_hero_badge) ===== */
.services_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;
}
#services_hero .services_tag {
	background: rgba(173,22,40,0.15);
	color: #e94560;
}

/* ===== SECTION HEADERS ===== */
.services_section_header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 35px;
}
.services_section_titre {
	font-family: century gothic, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #1a1a2e;
	margin: 0;
}

/* ===== SERVICES DÉTAILLÉS (= index_body_services #1a1a2e) ===== */
#services_details {
	background: #1a1a2e;
	padding: 50px 15px 60px;
}
#services_details_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.services_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: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.services_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.3);
	background: rgba(255,255,255,0.08);
}
.services_card_icon {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #ad1628, #d63851);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.services_card_icon i {
	font-size: 22px;
	color: white;
}
.services_card_titre {
	font-family: century gothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 15px;
}
.services_card_content {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	line-height: 1.8;
}
.services_card_list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.services_card_list li {
	padding: 7px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.6);
	font-family: verdana, sans-serif;
	font-size: 12px;
}
.services_card_list li:last-child {
	border-bottom: none;
}
.services_card_list li i {
	color: #e94560;
	margin-right: 10px;
	font-size: 11px;
}

/* ===== POURQUOI NOUS (= index_body_whychoose #f8f9fc) ===== */
#services_why {
	background: #f8f9fc;
	padding: 50px 15px 60px;
	text-align: center;
}
#services_why_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	max-width: 1000px;
	margin: 0 auto;
}
.services_why_item {
	background: white;
	padding: 28px 20px;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.05);
	border: 1px solid #eef0f5;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services_why_item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-color: transparent;
}
.services_why_icon {
	font-size: 36px;
	color: #ad1628;
	margin-bottom: 12px;
}
.services_why_titre {
	font-family: century gothic, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 8px;
}
.services_why_desc {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: #666;
	line-height: 1.7;
}

/* ===== CTA (= index_cta) ===== */
#services_cta {
	background: linear-gradient(135deg, #ad1628 0%, #8b1120 100%);
	padding: 60px 20px;
	text-align: center;
}
#services_cta_content {
	max-width: 550px;
	margin: 0 auto;
}
#services_cta_titre {
	font-family: century gothic, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin: 0 0 12px 0;
}
#services_cta_desc {
	font-family: verdana, sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin: 0 0 25px 0;
	line-height: 1.7;
}
.services_btn_primary {
	display: inline-block;
	background: #fff;
	color: #ad1628;
	padding: 13px 30px;
	border: none;
	border-radius: 6px;
	font-family: verdana, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s;
}
.services_btn_primary:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
	color: #ad1628;
	text-decoration: none;
}


/* ================================================================ */
/* ===== 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_services { border-bottom: solid 2px #ad1628; }

#services {
	position: relative;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}
	#services_head {
		position: relative;
		width: 100%;
		height: auto;
	}
	#services_body {
		position: relative;
		width: 100%;
	}
	#services_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){

	#services_hero { min-height: 420px; padding: 50px 25px 60px; }
	#services_hero_titre { font-size: 28px; }
	#services_hero_desc { font-size: 13px; }

	#services_details { padding: 50px 25px 60px; }
	#services_details_grid { grid-template-columns: repeat(2, 1fr); }
	.services_card_icon { width: 58px; height: 58px; }
	.services_card_icon i { font-size: 24px; }
	.services_card_titre { font-size: 15px; }

	#services_why_grid { grid-template-columns: repeat(2, 1fr); }
}

/*--------------------------------------- 768 --------------------------------------*/
@media screen and (min-width: 768px){

	#services_hero { min-height: 460px; padding: 60px 40px 70px; }
	#services_hero_titre { font-size: 34px; }
	#services_hero_desc { font-size: 14px; max-width: 650px; }

	#services_details { padding: 60px 30px 70px; }
	.services_card { padding: 35px 25px; }
	.services_card_icon { width: 62px; height: 62px; }
	.services_card_icon i { font-size: 26px; }
	.services_card_titre { font-size: 17px; }
	.services_card_content { font-size: 13px; }
	.services_card_list li { font-size: 13px; padding: 9px 0; }

	.services_section_titre { font-size: 28px; }
	#services_why { padding: 60px 30px 70px; }
	#services_why_grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
	.services_why_item { padding: 30px 18px; }
	.services_why_titre { font-size: 14px; }

	#services_cta { padding: 70px 30px; }
	#services_cta_titre { font-size: 28px; }
	#services_cta_desc { font-size: 14px; }
	.services_btn_primary { font-size: 13px; padding: 14px 35px; }
}

/*--------------------------------------- 980 --------------------------------------*/
@media screen and (min-width: 980px){

	#menu_block_3 { display: block; }
	#menu_block_3_slider { display: none; }

	#services_hero { min-height: 500px; padding: 80px 50px 90px; }
	#services_hero_titre { font-size: 40px; line-height: 1.2; }
	#services_hero_desc { font-size: 15px; }

	#services_details { padding: 70px 40px 80px; }
	#services_details_grid { gap: 25px; }
	.services_card { padding: 38px 28px; }
	.services_card_icon { width: 65px; height: 65px; }
	.services_card_icon i { font-size: 28px; }
	.services_card_titre { font-size: 18px; }
	.services_card_content { font-size: 13px; }
	.services_card_list li { font-size: 13px; }

	.services_section_titre { font-size: 30px; }
	#services_why { padding: 70px 40px 80px; }
	.services_why_icon { font-size: 38px; }
	.services_why_titre { font-size: 15px; }
	.services_why_desc { font-size: 12px; }

	#services_cta { padding: 80px 40px; }
	#services_cta_titre { font-size: 32px; }
}

/*--------------------------------------- 1136 --------------------------------------*/
@media screen and (min-width: 1136px){

	#services_hero_titre { font-size: 44px; }
	#services_hero_desc { font-size: 16px; }

	.services_card { padding: 40px 30px; }
	.services_card_icon { width: 70px; height: 70px; }
	.services_card_icon i { font-size: 30px; }
	.services_card_titre { font-size: 19px; }
	.services_card_content { font-size: 14px; }
	.services_card_list li { font-size: 14px; padding: 10px 0; }

	.services_section_titre { font-size: 32px; }
	.services_why_item { padding: 35px 22px; }
	.services_why_icon { font-size: 40px; }
	.services_why_titre { font-size: 16px; }
	.services_why_desc { font-size: 13px; }

	#services_cta_titre { font-size: 36px; }
	#services_cta_desc { font-size: 15px; }
	.services_btn_primary { font-size: 14px; padding: 15px 40px; }
}

/*--------------------------------------- 1260 --------------------------------------*/
@media screen and (min-width: 1260px){

	#services_hero { padding: 90px 60px 100px; }
	#services_hero_titre { font-size: 48px; }

	#services_details_grid { gap: 28px; }
	.services_card { padding: 45px 35px; }
}
