/* ==========================================================================================
*  DEK - Dynamique Eberande Kolongele
*  Fichier CSS Complet - Version Finale
*  Palette unifiée : bleu institutionnel, bleu lumineux et or civique
*  Parallaxe fonctionnel, Testimonial conservé, Couleurs reposantes
* ========================================================================================== */


/* ==========================================================================
   01. VARIABLES GLOBALES
   ========================================================================== */

:root {
	/* Palette institutionnelle inspiree du bleu presidence */
	--primary-color: #0d315b;
	--primary-dark: #071b33;
	--primary-light: #edf5fb;
	--accent-color: #d8ac3a;
	--accent-light: #fff4d2;
	--cream-bg: #fbf8ef;
	--section-alt-bg: #f3f7fb;
	--flag-blue: #2b6c9e;
	--flag-gold: #d8ac3a;

	/* Neutres */
	--white-color: #FFFFFF;
	--off-white: #fbfcfe;
	--text-color: #1c2c3d;
	--text-light: #586b7d;
	--border-color: #dce6ef;
	--divider-color: rgba(0, 0, 0, 0.06);
	--dark-divider-color: rgba(255, 255, 255, 0.12);

	/* Polices */
	--default-font: "Inter", sans-serif;
	--accent-font: "Playfair Display", serif;
}


/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	background-color: var(--white-color);
	color: var(--text-color);
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

p {
	line-height: 1.8em;
	margin-bottom: 1.5em;
	color: var(--text-light);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters>* {
	padding-right: 0;
	padding-left: 0;
}


/* ==========================================================================
   03. ANIMATIONS IMAGES
   ========================================================================== */

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transform-origin: left;
}


/* ==========================================================================
   04. BOUTONS
   ========================================================================== */

.btn-default {
	display: inline-block;
	font-family: var(--default-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--accent-color);
	color: var(--white-color);
	border: 2px solid var(--accent-color);
	padding: 15px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-default:hover {
	background: transparent;
	color: var(--accent-color);
}

.btn-default.btn-highlighted {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--primary-color);
}

.readmore-btn {
	position: relative;
	color: var(--accent-color);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-block;
	padding-right: 25px;
	transition: all 0.3s ease;
}

.readmore-btn::after {
	content: '\f061';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	transition: transform 0.3s ease;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:hover::after {
	transform: translate(5px, -50%);
	color: var(--primary-color);
}


/* ==========================================================================
   05. PRELOADER
   ========================================================================== */

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container {
	position: relative;
	width: 100px;
	height: 100px;
}

.loading {
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-top-color: var(--white-color);
	border-bottom-color: var(--accent-color);
	border-radius: 50%;
	animation: rotate-loading 1.5s linear infinite;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 60px;
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/* ==========================================================================
   06. TOPBAR
   ========================================================================== */

.topbar {
	background-color: var(--primary-dark);
	padding: 8px 0;
}

.topbar .container .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar-contact-info ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 25px;
}

.topbar-contact-info ul li {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.topbar-contact-info ul li a {
	color: inherit;
}

.topbar-contact-info ul li i {
	font-size: 14px;
	margin-right: 7px;
	color: rgba(255, 255, 255, 0.5);
}

.topbar-contact-info ul li:hover {
	color: var(--white-color);
}

.topbar-social-icons ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 3px;
	justify-content: flex-end;
}

.topbar-social-icons ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--white-color);
	font-size: 12px;
	transition: all 0.3s ease;
}

.topbar-social-icons ul li a:hover {
	background-color: var(--accent-color);
	transform: translateY(-1px);
}


/* ==========================================================================
   07. HEADER
   ========================================================================== */

.main-header {
	position: relative;
	z-index: 1000;
	background-color: var(--white-color);
	box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid var(--border-color);
}

.header-sticky {
	position: relative;
	transition: all 0.3s ease;
}

.navbar {
	padding: 0;
	height: 85px;
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	text-decoration: none;
}

.navbar-brand img {
	height: 45px;
	width: auto;
}

.main-menu {
	display: flex;
	align-items: center;
}

.main-menu .nav-menu-wrapper {
	margin: 0 15px;
}

.main-menu .navbar-nav {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0;
}

.main-menu .nav-item .nav-link {
	display: block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--text-light);
	padding: 12px 12px;
	position: relative;
	transition: color 0.3s ease;
}

.main-menu .nav-item .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 12px;
	right: 12px;
	height: 2px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.main-menu .nav-item .nav-link:hover,
.main-menu .nav-item .nav-link.active {
	color: var(--primary-color);
}

.main-menu .nav-item .nav-link:hover::after,
.main-menu .nav-item .nav-link.active::after {
	transform: scaleX(1);
}

.header-btn .btn-default {
	font-size: 12px;
	padding: 11px 22px;
}

/* Mobile */
.navbar-toggle {
	display: none;
	cursor: pointer;
}

.navbar-toggle .slicknav_btn {
	background-color: var(--primary-color);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.slicknav_icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--white-color);
	margin: 4px auto;
	transition: all 0.3s ease;
}

.responsive-menu {
	display: none;
}

.slicknav_menu {
	background-color: var(--primary-color);
	padding: 8px 0;
	position: absolute;
	width: 100%;
	z-index: 999;
}

.slicknav_nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.slicknav_nav li a {
	display: block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	padding: 10px 22px;
	letter-spacing: 0.4px;
	transition: all 0.3s ease;
}

.slicknav_nav li a:hover {
	color: var(--accent-light);
	background-color: rgba(255, 255, 255, 0.04);
	padding-left: 28px;
}

/* Sticky */
header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background-color: var(--white-color);
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
	animation: slideDown 0.3s ease;
	z-index: 1000;
}

header.main-header .header-sticky.active .navbar {
	height: 72px;
}

header.main-header .header-sticky.active .navbar-brand img {
	height: 38px;
}

header.main-header .header-sticky.active .nav-scroll-progress {
	top: 72px;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

.nav-scroll-progress {
	--scroll-progress: 0%;
	position: absolute;
	left: 0;
	right: 0;
	top: 85px;
	height: 3px;
	background: rgba(23, 63, 115, 0.08);
	overflow: hidden;
	z-index: 1001;
}

.nav-scroll-progress span {
	display: block;
	width: var(--scroll-progress);
	height: 100%;
	background: linear-gradient(90deg, var(--primary-color), var(--flag-gold), var(--accent-color));
	transition: width 0.12s linear;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.scroll-to-top {
	--scroll-progress: 0%;
	position: fixed;
	right: 24px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: conic-gradient(var(--flag-gold) var(--scroll-progress), rgba(255, 255, 255, 0.2) 0), var(--accent-color);
	color: var(--white-color);
	box-shadow: 0 12px 30px rgba(7, 29, 54, 0.24);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.3s ease-in-out;
	z-index: 999;
}

.scroll-to-top::before {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: var(--accent-color);
	transition: background 0.3s ease-in-out;
}

.scroll-to-top i {
	position: relative;
	z-index: 1;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.scroll-to-top:hover::before {
	background: var(--primary-color);
}


/* ==========================================================================
   08. HERO (avec parallaxe via parallaxie.js)
   ========================================================================== */

.hero {
	position: relative;
	padding: 100px 0 0 0;
	background-color: var(--primary-color);
	background-image: url('../images/hero-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 1;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 29, 54, 0.92) 0%, rgba(23, 63, 115, 0.78) 52%, rgba(22, 79, 122, 0.48) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero.parallaxie {
	/* Le fond est géré par parallaxie.js via l'attribut data-parallaxie */
	background-size: cover;
	background-position: center center;
}

.hero .container {
	position: relative;
	z-index: 3;
}

.hero .row {
	display: flex;
	align-items: flex-end;
}

.hero .col-lg-7 {
	padding-bottom: 60px;
}

.hero-content {
	position: relative;
	z-index: 3;
}

.hero-content .section-title h3 {
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 18px;
}

.hero-content .section-title h1 {
	font-family: var(--accent-font);
	font-size: 52px;
	font-weight: 800;
	line-height: 1.15em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 20px;
}

.hero-content .section-title h1 span {
	color: var(--accent-color);
}

.hero-content .section-title p {
	font-size: 16px;
	line-height: 1.7em;
	color: rgba(255, 255, 255, 0.8);
	max-width: 520px;
	margin-bottom: 35px;
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}

.hero-body .btn-default {
	font-size: 13px;
	padding: 16px 30px;
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

.hero-body .btn-default:hover {
	background: transparent;
	color: var(--white-color);
	border-color: var(--white-color);
}

.hero-body .btn-default.btn-highlighted {
	background: transparent;
	border-color: var(--white-color);
	color: var(--white-color);
}

.hero-body .btn-default.btn-highlighted:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.hero-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 25px;
}

.hero-footer p {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.hero-image {
	position: relative;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: -1px;
	min-height: 560px;
	isolation: isolate;
}

.hero-image::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(88%, 390px);
	height: 76%;
	background: linear-gradient(160deg, rgba(201, 162, 39, 0.22), rgba(23, 63, 115, 0.34) 46%, rgba(22, 79, 122, 0.22));
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 46% 46% 8px 8px;
	transform: translateX(-50%);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
	z-index: -1;
}

.hero-image::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(76%, 340px);
	height: 14px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	filter: blur(8px);
	transform: translateX(-50%);
	z-index: -2;
}

.hero-image figure {
	margin: 0;
	display: block;
	line-height: 0;
	width: 100%;
	max-width: 430px;
}

.hero-image img {
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: 560px;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34));
}


/* ==========================================================================
   09. TITRES DE SECTION
   ========================================================================== */

.section-row {
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}

.section-row .section-title {
	width: 100%;
	max-width: 600px;
	text-align: center;
	margin: 0 auto;
}

.section-row .section-title.section-title-left {
	max-width: 100%;
	text-align: left;
	margin: 0 auto;
}

.section-title {
	margin-bottom: 35px;
}

.section-title h3 {
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.section-title h1,
.section-title h2 {
	font-family: var(--accent-font);
	letter-spacing: -0.02em;
	margin-bottom: 0;
	color: var(--primary-color);
}

.section-title h1 {
	font-size: 52px;
	font-weight: 800;
}

.section-title h2 {
	font-size: 38px;
	font-weight: 700;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 15px;
	margin-bottom: 0;
	color: var(--text-light);
}

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section p,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.section-title.dark-section h3 {
	color: rgba(255, 255, 255, 0.7);
}

.section-title-content {
	margin-left: 25px;
}

.section-title-content p {
	margin: 0;
	color: var(--text-light);
}


/* ==========================================================================
   10. SECTION ACTUALITÉS
   ========================================================================== */

.our-campaign {
	background-color: var(--section-alt-bg);
	padding: 90px 0;
}

.campaign-list {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid var(--border-color);
}

.campaign-item {
	position: relative;
	width: 33.33%;
	border: 1px solid var(--border-color);
	border-left-width: 0;
	padding: 35px;
	transition: all 0.4s ease;
	overflow: hidden;
	background: transparent;
}

.campaign-item:nth-child(-n+3) {
	border-top-width: 1px;
}

.campaign-item:nth-child(n+4) {
	border-top-width: 0;
}

.campaign-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--section-alt-bg);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease;
	z-index: 1;
}

.campaign-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.campaign-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 88%;
}

.campaign-item.active:before,
.campaign-item:hover:before {
	transform: translate(100%, -100%);
}

.campaign-item.active .campaign-image,
.campaign-item:hover .campaign-image {
	opacity: 1;
}

.campaign-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.campaign-content {
	position: relative;
	z-index: 2;
}

.campaign-icon {
	margin-bottom: 25px;
}

.campaign-content-info {
	margin-bottom: 25px;
}

.campaign-item .campaign-icon img {
	max-width: 50px;
	transition: all 0.4s ease;
}

.campaign-item.active .campaign-icon img,
.campaign-item:hover .campaign-icon img {
	filter: brightness(0) invert(1);
}

.campaign-content-info h3 {
	font-size: 18px;
	margin-bottom: 15px;
	transition: all 0.4s ease;
	color: var(--primary-color);
}

.campaign-content-info p {
	margin-bottom: 0;
	transition: all 0.4s ease;
	color: var(--text-light);
	font-size: 14px;
}

.campaign-item.active .campaign-content-info h3,
.campaign-item:hover .campaign-content-info h3,
.campaign-item.active .campaign-content-info p,
.campaign-item:hover .campaign-content-info p,
.campaign-item.active .campaign-readmore-btn .readmore-btn,
.campaign-item:hover .campaign-readmore-btn .readmore-btn {
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 50px;
	text-align: center;
}

.section-footer-text p {
	color: var(--primary-color);
	margin-bottom: 0;
	font-weight: 500;
	font-size: 14px;
}

.section-footer-text p a {
	text-decoration: underline;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--accent-color);
	transition: color 0.3s ease;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}


/* ==========================================================================
   11. SECTION SECTEURS D'ACTIVITÉ
   ========================================================================== */

.our-achievements {
	padding: 90px 0;
}

.achievement-images {
	position: relative;
	padding: 0 140px 50px 0;
	margin-right: 20px;
}

.achievement-img-1 {
	padding: 0 0 30px 30px;
}

.achievement-img-2 {
	position: absolute;
	bottom: 25px;
	right: 30px;
	max-width: 220px;
	transform: rotate(12deg);
	border: 5px solid var(--white-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-img-1 img,
.achievement-img-2 img {
	width: 100%;
	object-fit: cover;
}

.achievement-list-item {
	display: flex;
	align-items: center;
	gap: 20px 60px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
	transition: all 0.3s ease;
}

.achievement-list-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.achievement-item {
	width: calc(100% - 80px);
	display: flex;
	align-items: center;
}

.achievement-item .icon-box {
	width: 65px;
	height: 65px;
	border: 2px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	overflow: hidden;
	transition: all 0.3s ease;
	background-color: var(--white-color);
}

.achievement-list-item:hover .icon-box {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.achievement-item .icon-box img {
	max-width: 30px;
	transition: all 0.3s ease;
}

.achievement-list-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.achievement-item-content {
	width: calc(100% - 90px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.achievement-item-content p {
	margin-bottom: 0;
	font-weight: 500;
	font-size: 15px;
	color: var(--text-color);
}

.achievement-item-content h3 {
	font-size: 20px;
	margin-left: 30px;
	color: var(--accent-color);
	font-family: var(--default-font);
	font-weight: 700;
}

.achievement-button a {
	display: block;
	transform: rotate(-45deg);
	transition: all 0.3s ease;
}

.achievement-button a:hover {
	transform: rotate(0);
}

.achievement-button a img {
	max-width: 24px;
}


/* ==========================================================================
   12. SECTION GALERIE
   ========================================================================== */

.our-gallery {
	background: var(--primary-light);
	padding: 90px 0 60px;
}

.photo-gallery {
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 4px;
}

.photo-gallery a {
	position: relative;
	display: block;
	cursor: pointer;
}

.photo-gallery a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 1;
}

.photo-gallery:hover a::before {
	opacity: 0.75;
	visibility: visible;
}

.photo-gallery a::after {
	content: '\f002';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	color: var(--white-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 1;
}

.photo-gallery:hover a::after {
	opacity: 1;
	visibility: visible;
}

.photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
}


/* ==========================================================================
   13. SECTION PRÉSIDENT / TESTIMONIAL (CONSERVÉ COMME L'ORIGINAL)
   ========================================================================== */



.our-testimonial {
    background: url(../images/testimonial-bg-image.png), var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 0;
}

.our-testimonial::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/testimonial-bg-image.png') no-repeat center center;
	background-size: cover;
	opacity: 0.06;
	z-index: 0;
}

.our-testimonial .container {
	position: relative;
	z-index: 1;
}

.testimonial-slider {
	margin-right: 50px;
}

.testimonial-slider .swiper-wrapper {
	cursor: pointer;
}

.testimonial-quote {
	margin-bottom: 20px;
}

.testimonial-quote img {
	max-width: 36px;
	opacity: 0.7;
}

.testimonial-content {
	margin-bottom: 20px;
}

.testimonial-content p {
	font-size: 18px;
	line-height: 1.7em;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
	font-style: italic;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 13px;
	color: var(--accent-color);
	margin-right: 3px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.author-content {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 20px;
}

.author-content p {
	display: inline-block;
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
	font-size: 16px;
}

.author-content p span {
	color: rgba(255, 255, 255, 0.6);
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	margin-left: 20px;
	padding-left: 20px;
	font-weight: 400;
}

.testimonial-slider .testimonial-pagination {
	margin-top: 30px;
	padding-bottom: 5px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
	transform: scale(1.3);
}

.testimonial-image {
	text-align: right;
	padding-left: 50px;
}

.testimonial-image img {
	width: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: bottom center;
}


/* ==========================================================================
   14. SECTION PARCOURS POLITIQUE
   ========================================================================== */

.our-ability {
	padding: 90px 0 60px;
	background-color: var(--white-color);
}

.ability-nav {
	margin-bottom: 50px;
}

.ability-nav ul {
	list-style: none;
	border: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0 0 20px 0;
	margin: 0;
	border-bottom: 1px solid var(--border-color);
}

.ability-nav ul li .nav-link {
	position: relative;
	background: transparent;
	border: none;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-light);
	padding: 8px 0;
	margin: 0;
	text-transform: capitalize;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ability-nav ul li .nav-link::after {
	content: '';
	position: absolute;
	bottom: -21px;
	left: 0;
	right: 0;
	height: 3px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ability-nav ul li .nav-link.active,
.ability-nav ul li .nav-link:hover {
	color: var(--primary-color);
	background: transparent;
}

.ability-nav ul li .nav-link.active::after,
.ability-nav ul li .nav-link:hover::after {
	transform: scaleX(1);
}

.ability-tab-content {
	margin-right: 30px;
}

.ability-tab-content .section-title h2 {
	font-size: 30px;
	margin-bottom: 15px;
}

.ability-tab-content .section-title p {
	font-size: 15px;
}

.ability-content-list ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.ability-content-list ul li {
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 25px;
	margin-bottom: 15px;
	font-size: 15px;
	color: var(--text-color);
}

.ability-content-list ul li:last-child {
	margin-bottom: 0;
}

.ability-content-list ul li::before {
	content: '\f00c';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	top: 3px;
	left: 0;
	color: var(--accent-color);
}

.ability-button {
	margin-top: 25px;
}

.ability-tab-image figure {
	display: block;
	border-radius: 6px;
	overflow: hidden;
}

.ability-tab-image img {
	width: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
}


/* ==========================================================================
   15. TICKER & ACTIVITES
   ========================================================================== */

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters > * {
	padding-right: 0;
	padding-left: 0;
}

.scrolling-ticker {
	padding: 44px 0 88px;
	background: var(--white-color);
	overflow: hidden;
}

.scrolling-ticker-box {
	--gap: 30px;
	display: flex;
	align-items: center;
	gap: var(--gap);
	overflow: hidden;
	user-select: none;
}

.scrolling-content {
	display: flex;
	flex-shrink: 0;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 80s linear infinite;
}

.scrolling-ticker:hover .scrolling-content {
	animation-play-state: paused;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span {
	display: flex;
	align-items: center;
	font-family: var(--accent-font);
	font-size: clamp(48px, 7vw, 96px);
	font-weight: 800;
	line-height: 1.2em;
	text-transform: uppercase;
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1px rgba(23, 63, 115, 0.35);
	opacity: 0.8;
}

.our-activity .container-fluid {
	padding-right: 0;
	padding-left: 0;
}

.activity-video-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 620px;
	padding: 0 30px;
	text-align: center;
	background: url('../images/activity-video-bg.jpg') no-repeat center center / cover;
	overflow: hidden;
}

.activity-video-box::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(7, 29, 54, 0.9), rgba(23, 63, 115, 0.78));
	z-index: 0;
}

.activity-video-box::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(201, 162, 39, 0.2), transparent 48%);
	z-index: 0;
	pointer-events: none;
}

.activity-title {
	position: relative;
	max-width: 460px;
	margin: 0 auto 40px;
	z-index: 1;
}

.activity-title h2 {
	font-family: var(--accent-font);
	font-size: 42px;
	line-height: 1.15em;
	color: var(--white-color);
}

.video-play-button {
	position: relative;
	text-align: center;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: var(--white-color);
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.video-play-button a::before,
.video-play-button a::after {
	content: "";
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 42px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	transform: scale(0.62);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a::after {
	animation-delay: 0.3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 32px;
	margin-left: 3px;
	color: currentColor;
}

.activity-content-list,
.activity-list-item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.activity-list-item:nth-child(even) {
	flex-direction: row-reverse;
}

.activity-list-item {
	overflow: hidden;
}

.activity-content-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	min-height: 310px;
	padding: 3.125vw 4.688vw;
	text-align: center;
	background: var(--accent-color);
	transition: filter 0.35s ease, transform 0.35s ease;
}

.activity-list-item:nth-child(even) .activity-content-box {
	background: var(--primary-color);
}

.activity-list-item:hover .activity-content-box {
	filter: brightness(1.04);
	transform: translateY(-2px);
}

.activity-content-box .icon-box {
	margin-bottom: 28px;
}

.activity-content-box .icon-box img {
	width: 100%;
	max-width: 58px;
	filter: brightness(0) invert(1);
}

.activity-content h3 {
	font-family: var(--accent-font);
	font-size: 24px;
	line-height: 1.25em;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 8px;
}

.activity-content p {
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 0;
}

.activity-image {
	width: 50%;
	overflow: hidden;
}

.activity-image figure {
	display: block;
	height: 100%;
}

.activity-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.832;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.activity-list-item:hover .activity-image img {
	transform: scale(1.05);
}


/* ==========================================================================
   16. JOURNAL DE BORD
   ========================================================================== */

.field-journal {
	padding: 100px 0;
	background: var(--section-alt-bg);
}

.field-journal-card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	align-items: stretch;
	background: var(--white-color);
	box-shadow: 0 18px 50px rgba(7, 29, 54, 0.08);
	margin-bottom: 30px;
	overflow: hidden;
}

.field-journal-image figure,
.field-journal-image img {
	width: 100%;
	height: 100%;
}

.field-journal-image img {
	min-height: 460px;
	object-fit: cover;
}

.field-journal-content {
	padding: clamp(28px, 4vw, 56px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.journal-label {
	display: inline-flex;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-color);
	background: var(--accent-light);
	padding: 10px 12px;
	margin-bottom: 18px;
}

.field-journal-content h3 {
	font-size: 34px;
	color: var(--primary-color);
	margin-bottom: 18px;
}

.field-journal-content p:last-of-type {
	margin-bottom: 0;
}

.journal-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 30px;
}

.journal-fact {
	background: var(--primary-light);
	border-left: 3px solid var(--flag-gold);
	padding: 16px;
}

.journal-fact strong,
.journal-fact span {
	display: block;
}

.journal-fact strong {
	font-size: 12px;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.journal-fact span {
	font-size: 14px;
	line-height: 1.5em;
	color: var(--text-light);
}

.field-journal-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
	grid-template-rows: repeat(2, minmax(260px, 1fr));
	gap: 30px;
	align-items: stretch;
}

.journal-gallery-item {
	overflow: hidden;
	background: var(--white-color);
	box-shadow: 0 12px 34px rgba(7, 29, 54, 0.08);
}

.journal-gallery-item img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.journal-gallery-item:hover img {
	transform: scale(1.04);
}

.journal-gallery-item-tall {
	grid-column: 2;
	grid-row: 1 / span 2;
}

.journal-gallery-item-tall img {
	min-height: 560px;
}


/* ==========================================================================
   17. ACTUALITES TERRAIN
   ========================================================================== */

.news-spotlight,
.terrain-news-page {
	padding: 100px 0;
	background: var(--white-color);
}

.news-spotlight-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.news-spotlight-card a {
	display: grid;
	grid-template-columns: minmax(220px, 0.86fr) 1fr;
	height: 100%;
	background: var(--primary-light);
	color: inherit;
	overflow: hidden;
	box-shadow: 0 16px 42px rgba(7, 29, 54, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-spotlight-card a:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 56px rgba(7, 29, 54, 0.14);
}

.news-spotlight-image {
	min-height: 260px;
	overflow: hidden;
}

.news-spotlight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-spotlight-card a:hover .news-spotlight-image img {
	transform: scale(1.05);
}

.news-spotlight-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-spotlight-content span,
.terrain-article-kicker {
	display: inline-flex;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 0.9px;
	color: var(--accent-color);
	background: var(--accent-light);
	padding: 10px 12px;
	margin-bottom: 16px;
}

.news-spotlight-content h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.news-spotlight-content p {
	margin-bottom: 0;
}

.terrain-page-header {
	padding: 110px 0 90px;
	background:
		linear-gradient(90deg, rgba(7, 29, 54, 0.92), rgba(23, 63, 115, 0.72)),
		url('../images/page-header-bg.jpg') center center / cover no-repeat;
}

.terrain-page-header .section-title {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.terrain-page-header .section-title h1 {
	font-size: clamp(38px, 6vw, 72px);
	color: var(--white-color);
}

.terrain-page-header .section-title p {
	max-width: 720px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.86);
}

.terrain-news-page {
	background: var(--section-alt-bg);
}

.terrain-article {
	background: var(--white-color);
	box-shadow: 0 18px 50px rgba(7, 29, 54, 0.08);
	margin-bottom: 50px;
	overflow: hidden;
}

.terrain-article:last-child {
	margin-bottom: 0;
}

.terrain-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
	align-items: stretch;
}

.terrain-article-media {
	position: relative;
	min-height: 520px;
	background: var(--primary-dark);
	overflow: hidden;
}

.terrain-article-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.terrain-article-content {
	padding: clamp(30px, 4vw, 58px);
}

.terrain-article-content h2 {
	font-size: clamp(30px, 4vw, 46px);
	margin-bottom: 20px;
}

.terrain-article-content h3 {
	font-size: 24px;
	margin: 28px 0 12px;
}

.terrain-article-lead {
	font-size: 18px;
	color: var(--text-color);
}

.terrain-article-content blockquote {
	margin: 30px 0;
	padding: 26px 30px;
	background: var(--primary-light);
	border-left: 4px solid var(--flag-gold);
}

.terrain-article-content blockquote p {
	font-family: var(--accent-font);
	font-size: 24px;
	line-height: 1.4em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.terrain-article-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 30px;
}

.terrain-article-gallery img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.terrain-alert {
	border-top: 5px solid var(--accent-color);
}

.terrain-alert .terrain-article-media {
	background: var(--accent-light);
	padding: 28px;
}

.terrain-alert .terrain-article-media img {
	object-fit: contain;
	background: var(--white-color);
}

.terrain-alert-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 28px 0;
}

.terrain-alert-list div {
	background: var(--accent-light);
	padding: 18px;
}

.terrain-alert-list strong,
.terrain-alert-list span {
	display: block;
}

.terrain-alert-list strong {
	color: var(--accent-color);
	font-size: 24px;
	line-height: 1em;
	margin-bottom: 8px;
}

.terrain-alert-list span {
	font-size: 13px;
	line-height: 1.45em;
	color: var(--text-light);
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.main-footer {
	background: var(--primary-dark);
	padding: 70px 0 0;
	color: var(--white-color);
}

.footer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 40px;
	padding-bottom: 35px;
}

.footer-header .section-title {
	width: 60%;
	margin-bottom: 0;
}

.footer-newsletter-form {
	width: 35%;
}

.footer-newsletter-form .form-group {
	display: flex;
}

.footer-newsletter-form .form-control {
	width: 65%;
	font-size: 14px;
	padding: 12px 18px;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: var(--default-font);
	color: var(--text-color);
}

.footer-newsletter-form .btn-default {
	width: 35%;
	padding: 12px 15px;
	font-size: 13px;
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-newsletter-form .btn-default:hover {
	background: transparent;
	color: var(--accent-color);
}

.footer-logo {
	margin-bottom: 18px;
}

.footer-logo img {
	max-width: 220px;
}

.about-footer-content p {
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-size: 14px;
}

.footer-links h3 {
	font-size: 18px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	margin-right: 10px;
}

.footer-contact-item .icon-box img {
	max-width: 18px;
}

.footer-contact-content {
	width: calc(100% - 28px);
}

.footer-contact-content p,
.footer-contact-content p a {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-contact-content p a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 18px 0;
	margin-top: 60px;
	text-align: center;
}

.copyright-text p {
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	font-size: 13px;
}


/* ==========================================================================
   16. RESPONSIVE - TABLETTE
   ========================================================================== */

@media only screen and (max-width: 1200px) {
	.main-menu .nav-item .nav-link {
		font-size: 12px;
		padding: 12px 8px;
	}

	.hero-content .section-title h1 {
		font-size: 42px;
	}
}

@media only screen and (max-width: 991px) {
	.navbar {
		height: 65px;
	}

	.navbar-brand img {
		height: 35px;
	}

	header.main-header .header-sticky.active .navbar {
		height: 65px;
	}

	header.main-header .header-sticky.active .navbar-brand img {
		height: 35px;
	}

	.nav-scroll-progress,
	header.main-header .header-sticky.active .nav-scroll-progress {
		top: 65px;
	}

	.main-menu,
	.header-btn {
		display: none;
	}

	.navbar-toggle {
		display: block;
	}

	.responsive-menu {
		display: block;
	}

	.hero {
		padding: 60px 0 0 0;
	}

	.hero .row {
		flex-direction: row;
		align-items: flex-end;
	}

	.hero .col-lg-7 {
		width: 60%;
		flex: 0 0 60%;
		max-width: 60%;
		padding-bottom: 40px;
		text-align: left;
		order: 1;
	}

	.hero .col-lg-5 {
		width: 40%;
		flex: 0 0 40%;
		max-width: 40%;
		order: 2;
	}

	.hero-content .section-title h1 {
		font-size: 38px;
	}

	.hero-content .section-title p {
		max-width: 520px;
	}

	.hero-body {
		justify-content: flex-start;
	}

	.hero-footer {
		text-align: left;
	}

	.hero-image {
		min-height: 430px;
		max-width: 360px;
		margin-left: auto;
	}

	.hero-image figure {
		max-width: 330px;
	}

	.hero-image img {
		max-height: 430px;
	}

	.section-row {
		margin-bottom: 35px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 8px;
	}

	.our-campaign {
		padding: 60px 0;
	}

	.campaign-item {
		width: 50%;
		padding: 25px;
	}

	.campaign-item:nth-child(-n+3) {
		border-top-width: 0;
	}

	.campaign-item:nth-child(-n+2) {
		border-top-width: 1px;
	}

	.our-achievements {
		padding: 60px 0;
	}

	.achievement-images {
		max-width: 70%;
		margin: 0 auto 30px;
		padding: 0 100px 50px 0;
	}

	.our-testimonial {
		padding: 60px 0 0;
	}

	.testimonial-slider {
		margin: 0 0 30px 0;
	}

	.testimonial-image {
		max-width: 60%;
		padding-left: 0;
		margin: 0 auto;
	}

	.our-ability {
		padding: 60px 0 40px;
	}

	.ability-nav {
		margin-bottom: 35px;
	}

	.ability-tab-content {
		margin: 0 0 25px 0;
	}

	.scrolling-ticker {
		padding: 28px 0 56px;
	}

	.activity-video-box {
		min-height: auto;
		padding: 96px 30px;
	}

	.activity-title {
		margin-bottom: 30px;
	}

	.activity-title h2 {
		font-size: 34px;
	}

	.video-play-button a {
		width: 70px;
		height: 70px;
	}

	.video-play-button a i {
		font-size: 26px;
	}

	.activity-content-box {
		min-height: 260px;
		padding: 30px;
	}

	.activity-content-box .icon-box {
		margin-bottom: 18px;
	}

	.activity-content-box .icon-box img {
		max-width: 48px;
	}

	.activity-content h3 {
		font-size: 22px;
	}

	.field-journal {
		padding: 70px 0;
	}

	.field-journal-card {
		grid-template-columns: 1fr;
	}

	.field-journal-image img {
		min-height: 360px;
	}

	.field-journal-gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		gap: 20px;
	}

	.journal-gallery-item-tall {
		grid-column: span 2;
		grid-row: auto;
	}

	.journal-gallery-item-tall img {
		min-height: 420px;
	}

	.news-spotlight,
	.terrain-news-page {
		padding: 70px 0;
	}

	.news-spotlight-grid,
	.terrain-article-layout {
		grid-template-columns: 1fr;
	}

	.news-spotlight-card a {
		grid-template-columns: minmax(220px, 0.78fr) 1fr;
	}

	.terrain-page-header {
		padding: 90px 0 70px;
	}

	.terrain-article-media {
		min-height: 360px;
	}

	.terrain-alert-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.our-gallery {
		padding: 60px 0 30px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-header {
		flex-direction: column;
		text-align: center;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.footer-header .section-title {
		width: 100%;
	}

	.footer-newsletter-form {
		width: 70%;
		margin-top: 15px;
	}

	.about-footer {
		margin-bottom: 25px;
	}

	.footer-links {
		margin-bottom: 25px;
	}

	.footer-copyright {
		margin-top: 35px;
	}
}


/* ==========================================================================
   17. RESPONSIVE - MOBILE
   ========================================================================== */

@media only screen and (max-width: 767px) {
	.topbar .container .row {
		flex-direction: column;
		gap: 6px;
	}

	.topbar-contact-info ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 12px;
	}

	.topbar-contact-info ul li {
		font-size: 11px;
	}

	.topbar-social-icons {
		display: none;
	}

	.navbar {
		height: 60px;
	}

	.navbar-brand img {
		height: 30px;
	}

	header.main-header .header-sticky.active .navbar {
		height: 60px;
	}

	header.main-header .header-sticky.active .navbar-brand img {
		height: 30px;
	}

	.nav-scroll-progress,
	header.main-header .header-sticky.active .nav-scroll-progress {
		top: 60px;
	}

	.scroll-to-top {
		right: 16px;
		bottom: 16px;
		width: 42px;
		height: 42px;
	}

	.hero {
		padding: 45px 0 0 0;
	}

	.hero .row {
		flex-direction: column;
		align-items: center;
	}

	.hero .col-lg-7,
	.hero .col-lg-5 {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.hero .col-lg-7 {
		padding-bottom: 25px;
		text-align: center;
	}

	.hero-content .section-title h1 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 14px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-body {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 10px;
		margin-bottom: 25px;
	}

	.hero-body .btn-default {
		width: 100%;
		text-align: center;
	}

	.hero-body .btn-default.ms-3 {
		margin-left: 0 !important;
	}

	.hero-footer {
		text-align: center;
	}

	.hero-footer p {
		font-size: 14px;
	}

	.hero-image {
		min-height: 320px;
		max-width: 250px;
		margin: 18px auto 0;
	}

	.hero-image figure {
		max-width: 240px;
	}

	.hero-image img {
		max-height: 320px;
	}

	.footer-logo img {
		max-width: 210px;
	}

	.scrolling-ticker {
		padding: 22px 0 44px;
	}

	.scrolling-ticker-box {
		--gap: 18px;
	}

	.scrolling-ticker-box .scrolling-content span {
		font-size: 42px;
	}

	.activity-video-box {
		padding: 64px 20px;
	}

	.activity-title h2 {
		font-size: 26px;
	}

	.video-play-button a {
		width: 60px;
		height: 60px;
	}

	.video-play-button a::before,
	.video-play-button a::after {
		top: -34%;
		left: -34%;
	}

	.video-play-button a i {
		font-size: 22px;
	}

	.activity-list-item,
	.activity-list-item:nth-child(even) {
		flex-direction: column;
	}

	.activity-content-box,
	.activity-image {
		width: 100%;
	}

	.activity-content-box {
		min-height: auto;
		padding: 28px 20px;
	}

	.activity-content-box .icon-box {
		margin-bottom: 12px;
	}

	.activity-content h3 {
		font-size: 20px;
	}

	.activity-image img {
		aspect-ratio: 1 / 0.7;
	}

	.field-journal {
		padding: 55px 0;
	}

	.field-journal-image img {
		min-height: 250px;
	}

	.field-journal-content h3 {
		font-size: 26px;
	}

	.journal-facts,
	.field-journal-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.journal-gallery-item-tall {
		grid-column: auto;
	}

	.journal-gallery-item img,
	.journal-gallery-item-tall img {
		min-height: 240px;
	}

	.news-spotlight,
	.terrain-news-page {
		padding: 55px 0;
	}

	.news-spotlight-grid,
	.news-spotlight-card a,
	.terrain-article-gallery,
	.terrain-alert-list {
		grid-template-columns: 1fr;
	}

	.news-spotlight-image {
		min-height: 220px;
	}

	.news-spotlight-content,
	.terrain-article-content {
		padding: 24px;
	}

	.terrain-page-header {
		padding: 72px 0 58px;
	}

	.terrain-article-media {
		min-height: 280px;
	}

	.terrain-alert .terrain-article-media {
		padding: 16px;
	}

	.terrain-article-content blockquote p {
		font-size: 20px;
	}

	.terrain-article-gallery img {
		height: 230px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.campaign-item {
		width: 100%;
		padding: 20px;
	}

	.campaign-item:nth-child(-n+2) {
		border-top-width: 0;
	}

	.campaign-item:first-child {
		border-top-width: 1px;
	}

	.achievement-images {
		max-width: 100%;
		padding: 0 50px 60px 0;
	}

	.achievement-img-2 {
		max-width: 130px;
		bottom: 15px;
		right: 15px;
	}

	.achievement-list-item {
		gap: 15px;
	}

	.achievement-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.achievement-item .icon-box img {
		max-width: 24px;
	}

	.achievement-item-content {
		width: calc(100% - 65px);
		flex-direction: column;
		align-items: flex-start;
		gap: 3px;
	}

	.achievement-item-content h3 {
		margin-left: 0;
		font-size: 16px;
	}

	.testimonial-image {
		max-width: 85%;
	}

	.testimonial-content p {
		font-size: 15px;
	}

	.ability-nav ul {
		gap: 10px 20px;
		flex-wrap: wrap;
		padding-bottom: 15px;
	}

	.ability-nav ul li .nav-link {
		font-size: 13px;
	}

	.ability-nav ul li .nav-link::after {
		bottom: -16px;
	}

	.footer-newsletter-form {
		width: 100%;
	}

	.footer-newsletter-form .form-group {
		flex-direction: column;
		gap: 10px;
	}

	.footer-newsletter-form .form-control,
	.footer-newsletter-form .btn-default {
		width: 100%;
	}

	.footer-copyright {
		margin-top: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scrolling-content,
	.video-play-button a::before,
	.video-play-button a::after {
		animation: none;
	}

	.scroll-to-top,
	.nav-scroll-progress span,
	.activity-content-box,
	.activity-image img,
	header.main-header .header-sticky,
	header.main-header .header-sticky.active .navbar,
	header.main-header .header-sticky.active .navbar-brand img {
		transition: none;
	}
}


/* === DEK INTERNAL PAGES === */
.site-page-header {
    position: relative;
    padding: 110px 0 88px;
    background: linear-gradient(110deg, rgba(7, 35, 72, .96), rgba(8, 72, 107, .88)), url('../images/page-header-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}
.site-page-header::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    bottom: -230px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02);
}
.site-page-header .section-title { max-width: 850px; margin: 0; position: relative; z-index: 1; }
.site-page-header .section-title h1 { color: #fff; font-size: 58px; margin-bottom: 20px; }
.site-page-header .section-title p { color: rgba(255,255,255,.78); max-width: 760px; margin: 0; font-size: 18px; }
.inner-page-section { padding: 100px 0; background: #f7f9fc; }
.content-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-color); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 12px; }
.content-kicker::before { content: ""; width: 24px; height: 2px; background: var(--accent-color); }
.content-meta { color: #607086; font-size: 13px; font-weight: 600; }
.section-gap-top { margin-top: 70px; }
.section-intro-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-intro-row h2 { margin: 0; font-size: 42px; color: var(--primary-color); }
.section-intro-row > p { max-width: 520px; margin: 0; color: #5f6f82; }
.featured-statement { display: grid; grid-template-columns: 1.05fr .95fr; background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 18px 55px rgba(10,39,72,.09); }
.featured-statement-copy { padding: 60px; align-self: center; }
.featured-statement-copy h2 { font-size: 42px; color: var(--primary-color); margin-bottom: 18px; }
.featured-statement-copy p { color: #607086; margin-bottom: 28px; }
.featured-statement-visual { min-height: 440px; }
.featured-statement-visual img { width: 100%; height: 100%; object-fit: cover; }
.content-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.content-card { background: #fff; padding: 34px; border-radius: 18px; border: 1px solid #e7edf4; transition: .3s ease; }
.content-card:hover { transform: translateY(-6px); box-shadow: 0 16px 42px rgba(10,39,72,.09); }
.content-card h3 { font-size: 24px; color: var(--primary-color); margin: 12px 0; }
.content-card p { color: #607086; }
.document-list { display: grid; gap: 18px; }
.document-item { display: grid; grid-template-columns: 68px 1fr 48px; gap: 22px; align-items: center; padding: 28px 30px; background: #fff; border: 1px solid #e6edf4; border-radius: 18px; }
.document-icon { width: 60px; height: 60px; border-radius: 15px; display: grid; place-items: center; background: rgba(3,91,134,.09); color: var(--accent-color); font-size: 25px; }
.document-item h3 { margin: 5px 0 7px; color: var(--primary-color); font-size: 23px; }
.document-item p { margin: 0; color: #66768a; }
.document-action { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-color); color: #fff; }
.gallery-filter-note { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.gallery-filter-note p { margin: 0; color: #617185; }
.gallery-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-page-item { position: relative; display: block; overflow: hidden; border-radius: 16px; min-height: 280px; background: #dfe7ef; }
.gallery-page-item:nth-child(1), .gallery-page-item:nth-child(6) { grid-row: span 2; min-height: 580px; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-page-item span { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(5,35,69,.42); color: #fff; font-size: 30px; opacity: 0; transition: .3s; }
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item:hover span { opacity: 1; }
.agenda-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: start; }
.agenda-layout h2 { color: var(--primary-color); font-size: 40px; margin-bottom: 30px; }
.agenda-list { display: grid; gap: 18px; }
.agenda-item { display: grid; grid-template-columns: 125px 1fr; gap: 24px; align-items: center; padding: 26px; background: #fff; border-radius: 18px; border: 1px solid #e6edf4; }
.agenda-date { min-height: 100px; border-radius: 14px; background: var(--primary-color); color: #fff; display: grid; place-content: center; text-align: center; padding: 12px; }
.agenda-date strong { font-size: 17px; }
.agenda-date span { color: rgba(255,255,255,.7); }
.agenda-item h3 { margin: 6px 0 8px; color: var(--primary-color); font-size: 24px; }
.agenda-item p { margin: 0; color: #65758a; }
.agenda-aside { background: var(--primary-color); color: #fff; border-radius: 22px; padding: 42px; position: sticky; top: 120px; }
.agenda-aside h2 { color: #fff; font-size: 34px; }
.agenda-aside p, .agenda-aside li { color: rgba(255,255,255,.78); }
.agenda-aside ul { padding-left: 20px; margin: 25px 0 30px; }
.bio-profile { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center; }
.bio-image { border-radius: 22px; overflow: hidden; min-height: 560px; box-shadow: 0 20px 55px rgba(10,39,72,.12); }
.bio-image img { width: 100%; height: 100%; object-fit: cover; }
.bio-content h2 { font-size: 46px; color: var(--primary-color); }
.bio-lead { font-size: 18px; color: #607086; }
.bio-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 30px; }
.bio-facts div { padding: 20px; background: #fff; border: 1px solid #e5ecf3; border-radius: 14px; }
.bio-facts span { display: block; color: #718096; font-size: 13px; margin-bottom: 5px; }
.bio-facts strong { color: var(--primary-color); }
.timeline-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.timeline-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 28px; background: #fff; border-radius: 16px; border: 1px solid #e6edf4; }
.timeline-list article > span { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-color); color: #fff; font-weight: 700; }
.timeline-list h3 { color: var(--primary-color); font-size: 22px; }
.timeline-list p { margin: 0; color: #66768a; }
.contact-page-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: stretch; }
.contact-panel, .contact-info-panel { background: #fff; border-radius: 22px; padding: 48px; box-shadow: 0 18px 50px rgba(10,39,72,.08); }
.contact-panel h2, .contact-info-panel h2 { color: var(--primary-color); font-size: 38px; }
.contact-panel > p { color: #65758a; margin-bottom: 30px; }
.contact-panel label { color: var(--primary-color); font-weight: 600; margin-bottom: 8px; }
.contact-panel .form-control { min-height: 54px; border-radius: 10px; border-color: #dce5ee; }
.contact-panel textarea.form-control { min-height: 150px; }
.contact-info-panel { background: var(--primary-color); color: #fff; }
.contact-info-panel h2 { color: #fff; }
.contact-info-list { display: grid; gap: 18px; margin-top: 32px; }
.contact-info-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }
.contact-info-list i { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: var(--accent-color); }
.contact-info-list small { display: block; color: rgba(255,255,255,.58); margin-bottom: 2px; }
.contact-info-list a, .contact-info-list strong { color: #fff; font-weight: 600; }
.contact-note { margin-top: 28px; padding: 20px; border-radius: 14px; background: rgba(255,255,255,.08); }
.contact-note p { color: rgba(255,255,255,.7); margin: 4px 0 0; }

@media (max-width: 991px) {
    .site-page-header { padding: 85px 0 70px; }
    .site-page-header .section-title h1 { font-size: 44px; }
    .featured-statement, .agenda-layout, .bio-profile, .contact-page-grid { grid-template-columns: 1fr; }
    .content-card-grid, .gallery-page-grid { grid-template-columns: repeat(2,1fr); }
    .featured-statement-visual { min-height: 360px; }
    .agenda-aside { position: static; }
    .bio-image { min-height: 480px; }
}
@media (max-width: 767px) {
    .site-page-header { padding: 68px 0 56px; }
    .site-page-header .section-title h1 { font-size: 34px; }
    .site-page-header .section-title p { font-size: 16px; }
    .inner-page-section { padding: 60px 0; }
    .section-intro-row, .gallery-filter-note { display: block; }
    .section-intro-row h2, .featured-statement-copy h2, .bio-content h2 { font-size: 31px; }
    .featured-statement-copy, .contact-panel, .contact-info-panel { padding: 28px; }
    .content-card-grid, .gallery-page-grid, .bio-facts, .timeline-list { grid-template-columns: 1fr; }
    .gallery-page-item, .gallery-page-item:nth-child(1), .gallery-page-item:nth-child(6) { min-height: 290px; grid-row: auto; }
    .document-item { grid-template-columns: 52px 1fr; padding: 22px; }
    .document-icon { width: 50px; height: 50px; }
    .document-action { display: none; }
    .agenda-item { grid-template-columns: 1fr; }
    .agenda-date { min-height: 82px; }
    .bio-image { min-height: 400px; }
}


/* ==========================================================================================
   DEK — Modernisation visuelle 2026
   Palette unifiée : bleu institutionnel, bleu lumineux et or civique
   ========================================================================================== */

:root {
    --primary-color: #0d315b;
    --primary-dark: #071b33;
    --primary-light: #edf5fb;
    --accent-color: #d8ac3a;
    --accent-light: #fff4d2;
    --cream-bg: #fbf8ef;
    --section-alt-bg: #f3f7fb;
    --flag-blue: #2b6c9e;
    --flag-gold: #d8ac3a;
    --white-color: #ffffff;
    --off-white: #fbfcfe;
    --text-color: #1c2c3d;
    --text-light: #586b7d;
    --border-color: #dce6ef;
    --divider-color: rgba(13, 49, 91, 0.09);
    --dark-divider-color: rgba(255, 255, 255, 0.14);
    --shadow-sm: 0 10px 30px rgba(7, 27, 51, 0.08);
    --shadow-md: 0 20px 55px rgba(7, 27, 51, 0.12);
    --shadow-lg: 0 28px 80px rgba(7, 27, 51, 0.18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
}

html { scroll-behavior: smooth; }
body {
    background:
        radial-gradient(circle at 8% 18%, rgba(43, 108, 158, .055), transparent 26%),
        radial-gradient(circle at 92% 62%, rgba(216, 172, 58, .06), transparent 22%),
        var(--off-white);
    color: var(--text-color);
}
::selection { background: var(--accent-color); color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 { letter-spacing: -.018em; }
.section-title h3,
.content-kicker {
    color: var(--accent-color);
}
.section-title h3::before,
.content-kicker::before {
    background: linear-gradient(90deg, var(--accent-color), #f0ce72);
}
.section-title h1 span,
.section-title h2 span,
.hero-content .section-title h1 span {
    color: #f0c85a;
}

/* Boutons */
.btn-default {
    border-radius: 999px;
    padding: 16px 28px;
    text-transform: none;
    letter-spacing: .02em;
    background: linear-gradient(135deg, var(--accent-color), #efc95e);
    border-color: transparent;
    color: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(216, 172, 58, .24);
    position: relative;
    overflow: hidden;
}
.btn-default::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.38) 48%, transparent 72%);
    transform: translateX(-125%);
    transition: transform .55s ease;
}
.btn-default:hover::before { transform: translateX(125%); }
.btn-default:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(13, 49, 91, .24);
}
.btn-default.btn-highlighted {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.52);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(12px);
}
.btn-default.btn-highlighted:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-color);
}
.readmore-btn { color: var(--primary-color); }
.readmore-btn::after { color: var(--accent-color); }
.readmore-btn:hover { color: var(--accent-color); }

/* Barre supérieure et navigation */
.topbar {
    background: linear-gradient(100deg, #06182d, var(--primary-color));
    border-bottom: 1px solid rgba(216, 172, 58, .32);
    padding: 9px 0;
}
.topbar-social-icons ul li a {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.08);
}
.topbar-social-icons ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}
.main-header {
    border-bottom: 0;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 35px rgba(7,27,51,.07);
    backdrop-filter: blur(18px);
}
header.main-header .header-sticky.active {
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 40px rgba(7,27,51,.11);
    backdrop-filter: blur(18px);
}
.navbar { height: 92px; }
.navbar-brand img { height: 52px; }
.main-menu .nav-menu-wrapper { margin: 0; }
.main-menu .navbar-nav { gap: 3px; align-items: center; }
.main-menu .nav-item .nav-link {
    border-radius: 999px;
    padding: 11px 14px;
    font-size: 12px;
    letter-spacing: .045em;
    color: #40566d;
}
.main-menu .nav-item .nav-link::after { display: none; }
.main-menu .nav-item .nav-link:hover {
    color: var(--primary-color);
    background: var(--primary-light);
}
.main-menu .nav-item .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--flag-blue));
    box-shadow: 0 9px 22px rgba(13,49,91,.18);
}
.main-menu .nav-item:last-child .nav-link {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--accent-color), #efca61);
    box-shadow: 0 9px 22px rgba(216,172,58,.22);
    margin-left: 5px;
}
.main-menu .nav-item:last-child .nav-link:hover,
.main-menu .nav-item:last-child .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--flag-blue));
}
.nav-scroll-progress { top: 92px; background: rgba(13,49,91,.07); }
.nav-scroll-progress span {
    background: linear-gradient(90deg, var(--primary-color), var(--flag-blue), var(--accent-color));
}
.navbar-toggle .slicknav_btn { border-radius: 12px; background: linear-gradient(135deg, var(--primary-color), var(--flag-blue)); }
.slicknav_menu { background: linear-gradient(145deg, var(--primary-dark), var(--primary-color)); padding: 12px; box-shadow: var(--shadow-md); }
.slicknav_nav li a { border-radius: 12px; margin: 3px 0; }
.slicknav_nav li a:hover, .slicknav_nav li .active { background: rgba(255,255,255,.10); color: #f3cf6b; }

/* Hero */
.hero {
    min-height: 720px;
    padding: 118px 0 0;
    border-radius: 0 0 54px 54px;
    box-shadow: 0 30px 80px rgba(7,27,51,.20);
}
.hero::before {
    background:
        linear-gradient(90deg, rgba(5,20,39,.97) 0%, rgba(13,49,91,.90) 47%, rgba(43,108,158,.57) 100%),
        radial-gradient(circle at 72% 22%, rgba(216,172,58,.24), transparent 33%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -150px;
    top: -215px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.02);
    z-index: 2;
    pointer-events: none;
}
.hero .col-lg-7 { padding-bottom: 76px; }
.hero-content { max-width: 720px; }
.hero-content .section-title h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #f4d779;
    backdrop-filter: blur(10px);
}
.hero-content .section-title h1 {
    font-size: clamp(48px, 5.2vw, 76px);
    line-height: 1.02em;
    margin-bottom: 26px;
    text-shadow: 0 8px 30px rgba(0,0,0,.20);
}
.hero-content .section-title p { font-size: 18px; max-width: 650px; color: rgba(255,255,255,.84); }
.hero-body { gap: 12px; }
.hero-image {
    padding: 34px 26px 0;
    filter: drop-shadow(0 30px 30px rgba(2,15,29,.30));
}
.hero-image::before {
    background: linear-gradient(145deg, rgba(216,172,58,.34), rgba(43,108,158,.40));
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 48% 48% 16px 16px;
    backdrop-filter: blur(6px);
}
.hero-image::after {
    border-color: rgba(240,201,94,.72);
    opacity: .78;
}
.hero-footer { max-width: 660px; }

/* Espacement général */
.our-campaign,
.our-achievements,
.our-gallery,
.field-journal,
.news-spotlight,
.inner-page-section { position: relative; overflow: hidden; }
.our-campaign,
.our-achievements,
.our-gallery { padding: 110px 0; }
.our-campaign {
    background:
        radial-gradient(circle at 95% 5%, rgba(216,172,58,.10), transparent 20%),
        linear-gradient(180deg, #f7fbff, var(--section-alt-bg));
}
.our-achievements {
    background:
        radial-gradient(circle at 4% 90%, rgba(43,108,158,.08), transparent 23%),
        #fff;
}
.our-gallery {
    background:
        radial-gradient(circle at 90% 15%, rgba(216,172,58,.10), transparent 20%),
        var(--primary-light);
}
.section-title h2 { font-size: clamp(38px, 4vw, 56px); }
.section-title-content p { font-size: 17px; }

/* Cartes d'actualités */
.campaign-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    border: 0;
}
.campaign-item,
.campaign-item:nth-child(-n+3),
.campaign-item:nth-child(n+4) {
    width: auto;
    min-height: 455px;
    padding: 220px 25px 28px;
    border: 1px solid rgba(13,49,91,.08);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.campaign-item::before { display: none; }
.campaign-image {
    height: 205px;
    bottom: auto;
    border-radius: 25px 25px 0 0;
}
.campaign-image::after {
    background: linear-gradient(180deg, transparent 45%, rgba(7,27,51,.58));
    opacity: 1;
}
.campaign-image img { transition: transform .55s ease; }
.campaign-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: rgba(216,172,58,.36); }
.campaign-item:hover .campaign-image img { transform: scale(1.06); }
.campaign-content { z-index: 3; }
.campaign-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: -30px 0 22px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--accent-color), #f2d57d);
    box-shadow: 0 10px 25px rgba(216,172,58,.24);
}
.campaign-item .campaign-icon img { max-width: 28px; filter: brightness(0) saturate(100%) invert(14%) sepia(36%) saturate(1930%) hue-rotate(174deg) brightness(91%); }
.campaign-content-info h3,
.campaign-item.active .campaign-content-info h3,
.campaign-item:hover .campaign-content-info h3 { color: var(--primary-color); font-size: 21px; }
.campaign-content-info p,
.campaign-item.active .campaign-content-info p,
.campaign-item:hover .campaign-content-info p { color: var(--text-light); }
.campaign-item.active .campaign-readmore-btn .readmore-btn,
.campaign-item:hover .campaign-readmore-btn .readmore-btn { color: var(--primary-color); }

/* Réalisations */
.achievement-img-1 { padding: 0; }
.achievement-img-1 figure,
.achievement-img-1 img { border-radius: 30px; }
.achievement-img-1 figure { box-shadow: var(--shadow-md); }
.achievement-img-2 {
    border-radius: 22px;
    overflow: hidden;
    transform: rotate(5deg);
    border: 7px solid #fff;
    box-shadow: var(--shadow-md);
}
.achievement-list-box { display: grid; gap: 14px; }
.achievement-list-item,
.achievement-list-item:last-child {
    margin: 0;
    padding: 20px 22px;
    border: 1px solid rgba(13,49,91,.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 26px rgba(7,27,51,.055);
}
.achievement-list-item:hover { transform: translateX(7px); box-shadow: var(--shadow-sm); border-color: rgba(216,172,58,.40); }
.achievement-item .icon-box {
    border: 0;
    border-radius: 18px;
    background: var(--primary-light);
}
.achievement-list-item:hover .icon-box { background: linear-gradient(135deg, var(--primary-color), var(--flag-blue)); }
.achievement-item-content h3 { color: var(--accent-color); }

/* Galerie */
.photo-gallery { border-radius: 24px; box-shadow: var(--shadow-sm); }
.photo-gallery a::before { background: linear-gradient(135deg, rgba(7,27,51,.83), rgba(43,108,158,.52)); }
.photo-gallery:hover a::before { opacity: .72; }
.photo-gallery img { transition: transform .55s ease; }
.photo-gallery:hover img { transform: scale(1.055); }

/* Blocs riches de la page d'accueil */
.our-testimonial {
    background:
        radial-gradient(circle at 84% 22%, rgba(216,172,58,.20), transparent 28%),
        url(../images/testimonial-bg-image.png),
        linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: 48px;
    margin: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.testimonial-item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 28px; backdrop-filter: blur(12px); }
.testimonial-rating i { color: #f2c95e; }
.scrolling-ticker { background: transparent; }
.scrolling-ticker-box .scrolling-content span { -webkit-text-stroke-color: rgba(13,49,91,.28); }
.activity-video-box { min-height: 650px; }
.activity-video-box::before { background: linear-gradient(135deg, rgba(7,27,51,.94), rgba(43,108,158,.75)); }
.activity-content-box { background: linear-gradient(135deg, #b88617, var(--accent-color)); }
.activity-list-item:nth-child(even) .activity-content-box { background: linear-gradient(135deg, var(--primary-color), var(--flag-blue)); }
.field-journal { background: linear-gradient(180deg, #f7fbff, var(--section-alt-bg)); }
.field-journal-card,
.journal-gallery-item { border-radius: 28px; }
.journal-label { border-radius: 999px; }
.journal-fact { border: 1px solid rgba(13,49,91,.07); border-left: 4px solid var(--accent-color); border-radius: 14px; }
.news-spotlight-card { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-sm); }
.news-spotlight-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.news-spotlight-content span { color: var(--accent-color); }

/* Pages internes */
.site-page-header {
    padding: 125px 0 100px;
    background:
        radial-gradient(circle at 78% 18%, rgba(216,172,58,.26), transparent 25%),
        linear-gradient(110deg, rgba(7,27,51,.98), rgba(13,49,91,.93) 55%, rgba(43,108,158,.84)),
        url('../images/page-header-bg.jpg') center/cover no-repeat;
    border-radius: 0 0 46px 46px;
    box-shadow: 0 25px 65px rgba(7,27,51,.15);
}
.site-page-header::before {
    content: "";
    position: absolute;
    inset: auto auto -160px -120px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,172,58,.15), transparent 66%);
}
.site-page-header .section-title h1 { font-size: clamp(46px, 5vw, 68px); }
.inner-page-section {
    background:
        radial-gradient(circle at 6% 10%, rgba(43,108,158,.06), transparent 24%),
        radial-gradient(circle at 94% 82%, rgba(216,172,58,.07), transparent 21%),
        #f7fafe;
    padding: 110px 0;
}
.featured-statement,
.content-card,
.document-item,
.agenda-item,
.contact-panel,
.contact-info-panel {
    border: 1px solid rgba(13,49,91,.08);
    box-shadow: var(--shadow-sm);
}
.featured-statement { border-radius: 30px; box-shadow: var(--shadow-md); }
.featured-statement-copy { padding: 64px; }
.content-card { border-radius: 24px; padding: 36px; position: relative; overflow: hidden; }
.content-card::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: rgba(216,172,58,.10);
}
.content-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); border-color: rgba(216,172,58,.35); }
.document-item { border-radius: 22px; transition: .3s ease; }
.document-item:hover { transform: translateX(6px); border-color: rgba(216,172,58,.40); box-shadow: var(--shadow-md); }
.document-icon { background: var(--accent-light); color: var(--primary-color); border-radius: 17px; }
.document-action { background: linear-gradient(135deg, var(--primary-color), var(--flag-blue)); }
.gallery-page-item { border-radius: 24px; box-shadow: var(--shadow-sm); }
.gallery-page-item span { background: linear-gradient(135deg, rgba(7,27,51,.78), rgba(43,108,158,.48)); }
.agenda-item { border-radius: 22px; }
.agenda-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(216,172,58,.36); }
.agenda-date { border-radius: 18px; background: linear-gradient(145deg, var(--primary-color), var(--flag-blue)); box-shadow: 0 12px 26px rgba(13,49,91,.18); }
.agenda-aside { border-radius: 28px; background: linear-gradient(145deg, var(--primary-dark), var(--primary-color)); box-shadow: var(--shadow-md); overflow: hidden; }
.agenda-aside::after { content: ""; position: absolute; width: 210px; height: 210px; right: -85px; bottom: -90px; border-radius: 50%; background: rgba(216,172,58,.14); }
.contact-panel,
.contact-info-panel { border-radius: 28px; padding: 52px; }
.contact-panel .form-control { border-radius: 14px; background: #f9fbfd; border-color: #d9e5ef; }
.contact-panel .form-control:focus { border-color: var(--accent-color); box-shadow: 0 0 0 4px rgba(216,172,58,.15); }
.contact-info-panel { background: linear-gradient(145deg, var(--primary-dark), var(--primary-color)); }
.contact-info-list > div { border-radius: 18px; background: rgba(255,255,255,.05); }
.contact-info-list i { color: #f2cd6c; background: rgba(216,172,58,.13); }

/* Pied de page */
.main-footer {
    position: relative;
    margin-top: 0;
    padding-top: 86px;
    background:
        radial-gradient(circle at 88% 12%, rgba(216,172,58,.14), transparent 25%),
        linear-gradient(145deg, #051426, var(--primary-dark) 52%, #0d315b);
    border-radius: 46px 46px 0 0;
    overflow: hidden;
}
.footer-header {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 26px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(10px);
}
.footer-newsletter-form .form-group { padding: 5px; background: #fff; border-radius: 999px; }
.footer-newsletter-form .form-control { border-radius: 999px 0 0 999px; }
.footer-newsletter-form .btn-default { border-radius: 999px; color: var(--primary-dark); }
.footer-logo img { max-width: 230px; background: rgba(255,255,255,.96); border-radius: 16px; padding: 8px 10px; }
.footer-links ul li a:hover,
.footer-contact-content p a:hover { color: #f3cf6a; }
.footer-copyright { background: rgba(0,0,0,.20); border-top: 1px solid rgba(255,255,255,.07); }
.scroll-to-top { background: conic-gradient(var(--accent-color) var(--scroll-progress), rgba(255,255,255,.22) 0), var(--primary-color); }
.scroll-to-top::before { background: var(--primary-color); }

/* Responsive */
@media (max-width: 1199px) {
    .campaign-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .main-menu .nav-item .nav-link { padding: 10px 10px; font-size: 11px; }
}
@media (max-width: 991px) {
    .hero { min-height: auto; border-radius: 0 0 36px 36px; }
    .hero-image { max-width: 520px; margin: 0 auto; }
    .our-testimonial { margin: 14px; border-radius: 32px; }
    .navbar { height: 72px; }
    .navbar-brand img { height: 44px; }
    .nav-scroll-progress { top: 72px; }
    .footer-header { align-items: stretch; }
}
@media (max-width: 767px) {
    .topbar { display: none; }
    .hero { padding-top: 84px; border-radius: 0 0 28px 28px; }
    .hero-content .section-title h1 { font-size: 43px; }
    .hero-content .section-title p { font-size: 16px; }
    .hero-body .btn-default { width: 100%; margin-left: 0 !important; }
    .campaign-list { grid-template-columns: 1fr; }
    .campaign-item { min-height: auto; padding-top: 218px; }
    .our-campaign, .our-achievements, .our-gallery { padding: 76px 0; }
    .achievement-images { padding-right: 60px; }
    .section-title h2 { font-size: 36px; }
    .site-page-header { padding: 82px 0 66px; border-radius: 0 0 28px 28px; }
    .inner-page-section { padding: 72px 0; }
    .featured-statement-copy, .contact-panel, .contact-info-panel { padding: 30px; }
    .footer-header { padding: 26px; border-radius: 22px; }
    .footer-newsletter-form .form-group { display: block; border-radius: 18px; background: transparent; padding: 0; }
    .footer-newsletter-form .form-control,
    .footer-newsletter-form .btn-default { width: 100%; border-radius: 999px; }
    .footer-newsletter-form .form-control { margin-bottom: 10px; }
    .main-footer { border-radius: 30px 30px 0 0; }
}


/* ==========================================================================================
   DEK — Révision ciblée : identité originale, navigation fixe, hero slider et activités
   ========================================================================================== */

/* Identité visuelle originale fournie par DEK : aucune recoloration ni filtre. */
.navbar-brand img,
.footer-logo img,
#loading-icon img {
    filter: none !important;
    object-fit: contain;
}
.navbar-brand img { height: 64px; max-width: 230px; }
.footer-logo img { max-width: 255px; width: 100%; height: auto; background: #fff; padding: 8px; border-radius: 14px; }
#loading-icon img { width: 48px; height: 48px; }

/* Navigation réellement sticky : elle reste visible sans disparaître au défilement. */
.main-header,
header.main-header.active-sticky-header {
    position: sticky !important;
    top: 0;
    z-index: 1200;
    height: auto !important;
}
.header-sticky,
header.main-header .header-sticky.active {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    animation: none !important;
    background: rgba(255,255,255,.96);
    box-shadow: none;
}
.main-header.is-scrolled { box-shadow: 0 16px 38px rgba(7,27,51,.14); }
.navbar,
header.main-header .header-sticky.active .navbar { height: 94px; }
header.main-header .header-sticky.active .navbar-brand img { height: 64px; }
.nav-scroll-progress,
header.main-header .header-sticky.active .nav-scroll-progress { top: auto; bottom: 0; }
.main-menu .nav-item:last-child .nav-link,
.main-menu .nav-item:last-child .nav-link:hover,
.main-menu .nav-item:last-child .nav-link.active {
    margin-left: 0;
    color: #40566d;
    background: transparent;
    box-shadow: none;
}
.main-menu .nav-item:last-child .nav-link:hover { color: var(--primary-color); background: var(--primary-light); }
.main-menu .nav-item:last-child .nav-link.active { color: #fff; background: linear-gradient(135deg, var(--primary-color), var(--flag-blue)); box-shadow: 0 9px 22px rgba(13,49,91,.18); }

/* Hero slider */
.dek-hero-slider { position: relative; overflow: hidden; border-radius: 0 0 54px 54px; box-shadow: 0 30px 80px rgba(7,27,51,.20); background: var(--primary-dark); }
.dek-hero-slider .swiper { width: 100%; }
.dek-hero-slide { position: relative; min-height: 720px; overflow: hidden; display: flex; align-items: stretch; }
.dek-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.025); transition: transform 7s ease; }
.swiper-slide-active .dek-hero-bg { transform: scale(1.09); }
.dek-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,34,.97) 0%, rgba(10,43,80,.91) 46%, rgba(15,49,78,.54) 74%, rgba(4,18,34,.25) 100%); }
.dek-hero-slide::after { content: ""; position: absolute; width: 540px; height: 540px; right: -180px; top: -230px; border-radius: 50%; border: 1px solid rgba(255,255,255,.17); box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.02); pointer-events: none; }
.min-vh-hero { min-height: 720px; padding: 100px 0 84px; }
.dek-hero-content { position: relative; z-index: 3; max-width: 780px; color: #fff; }
.dek-hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 9px 15px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); color: #f4d779; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.dek-hero-content h1,
.dek-hero-content h2 { color: #fff; font-family: var(--accent-font); font-size: clamp(48px, 5.2vw, 76px); line-height: 1.03; margin-bottom: 24px; text-shadow: 0 8px 30px rgba(0,0,0,.24); }
.dek-hero-content h1 span,
.dek-hero-content h2 span { color: #f0c85a; }
.dek-hero-content > p { max-width: 660px; color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.75; }
.dek-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.dek-hero-content blockquote { margin: 34px 0 0; padding-left: 18px; border-left: 3px solid #f0c85a; color: rgba(255,255,255,.82); font-family: var(--accent-font); font-size: 18px; }
.dek-hero-portrait { position: relative; z-index: 3; height: 650px; display: flex; align-items: flex-end; justify-content: center; filter: drop-shadow(0 28px 28px rgba(2,15,29,.34)); }
.dek-hero-portrait::before { content: ""; position: absolute; width: 430px; height: 430px; bottom: 35px; border-radius: 50%; background: linear-gradient(145deg, rgba(216,172,58,.28), rgba(43,108,158,.34)); border: 1px solid rgba(255,255,255,.26); backdrop-filter: blur(7px); }
.dek-hero-portrait img { position: relative; z-index: 2; max-height: 620px; width: auto; }
.dek-hero-controls { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 8; display: flex; justify-content: space-between; align-items: center; pointer-events: none; }
.dek-hero-controls > * { pointer-events: auto; }
.dek-hero-slider .hero-pagination { position: static; display: flex; width: auto; gap: 9px; }
.dek-hero-slider .hero-pagination .swiper-pagination-bullet { width: 11px; height: 11px; margin: 0; background: rgba(255,255,255,.56); opacity: 1; border: 2px solid transparent; }
.dek-hero-slider .hero-pagination .swiper-pagination-bullet-active { width: 34px; border-radius: 999px; background: #f0c85a; }
.dek-hero-navigation { display: flex; gap: 9px; }
.dek-hero-navigation button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.30); border-radius: 50%; background: rgba(5,20,39,.38); color: #fff; backdrop-filter: blur(10px); transition: .3s ease; }
.dek-hero-navigation button:hover { background: #f0c85a; color: var(--primary-dark); border-color: #f0c85a; transform: translateY(-2px); }

/* Activités : index éditorial + images de proportions hétérogènes sans débord blanc. */
.terrain-news-page { padding: 92px 0 110px; }
.activity-overview { margin-bottom: 54px; }
.activity-overview-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 28px; }
.activity-overview-heading h2 { color: var(--primary-color); font-size: clamp(34px, 4vw, 48px); margin: 0; }
.activity-overview-heading > p { max-width: 520px; margin: 0; color: var(--text-light); }
.activity-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.activity-overview-card { position: relative; min-height: 430px; display: flex; align-items: flex-end; overflow: hidden; border-radius: 28px; background: var(--primary-dark); box-shadow: var(--shadow-sm); isolation: isolate; }
.activity-overview-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,20,39,.02) 18%, rgba(5,20,39,.93) 82%); }
.activity-overview-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.activity-overview-card:hover img { transform: scale(1.07); }
.activity-overview-card > div { padding: 28px; }
.activity-overview-card h3 { color: #fff; font-size: 25px; margin-bottom: 10px; }
.activity-overview-card p { color: rgba(255,255,255,.72); margin-bottom: 15px; }
.activity-overview-card strong { color: #f0c85a; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }
.activity-overview-tag { position: absolute; top: 20px; left: 20px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--primary-color); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.activity-overview-card-alert .activity-overview-tag { background: #fff0e5; color: #9b3c20; }
.terrain-article { border-radius: 32px; border: 1px solid rgba(13,49,91,.08); box-shadow: var(--shadow-md); }
.terrain-article-layout { grid-template-columns: minmax(340px,.82fr) minmax(0,1.18fr); }
.terrain-article:nth-of-type(even) .terrain-article-media { order: 2; }
.terrain-article-media { min-height: 610px; background: linear-gradient(145deg, var(--primary-dark), var(--primary-color)); isolation: isolate; }
.terrain-article-media img { position: relative; z-index: 2; object-fit: cover; }
.terrain-article-media.media-contain { padding: 28px; display: grid; place-items: center; }
.terrain-article-media.media-contain::before { content: ""; position: absolute; inset: -24px; z-index: 0; background: var(--media-bg) center/cover no-repeat; filter: blur(22px); transform: scale(1.12); opacity: .48; }
.terrain-article-media.media-contain::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(145deg, rgba(7,27,51,.48), rgba(43,108,158,.24)); }
.terrain-article-media.media-contain img { width: 100%; height: auto; max-height: 540px; object-fit: contain; border-radius: 20px; box-shadow: 0 18px 46px rgba(3,15,29,.28); background: transparent; }
.terrain-alert .terrain-article-media { background: var(--primary-dark); padding: 28px; }
.terrain-alert .terrain-article-media img { background: transparent; }
.terrain-article-content { padding: clamp(34px,4.5vw,64px); }
.terrain-article-gallery img { border-radius: 18px; }

/* Pages de détail */
.article-detail-hero { position: relative; min-height: 590px; display: flex; align-items: flex-end; overflow: hidden; border-radius: 0 0 48px 48px; }
.article-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,20,39,.96), rgba(13,49,91,.82) 55%, rgba(5,20,39,.38)); }
.article-detail-heading { position: relative; z-index: 2; max-width: 930px; padding: 100px 0 82px; color: #fff; }
.article-back-link { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 30px; color: rgba(255,255,255,.74); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.article-back-link:hover { color: #f0c85a; }
.article-detail-heading .content-kicker { color: #f0c85a; }
.article-detail-heading h1 { color: #fff; font-size: clamp(44px,5.3vw,72px); line-height: 1.05; margin: 12px 0 22px; }
.article-detail-heading > p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 18px; }
.article-detail-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: rgba(255,255,255,.70); font-size: 14px; }
.article-detail-page { padding: 100px 0; background: #f7fafe; }
.article-detail-layout { display: grid; grid-template-columns: minmax(0,1.38fr) minmax(300px,.62fr); gap: 56px; align-items: start; }
.article-detail-body { padding: clamp(30px,4vw,58px); border: 1px solid rgba(13,49,91,.08); border-radius: 30px; background: #fff; box-shadow: var(--shadow-sm); }
.article-detail-body p { font-size: 17px; line-height: 1.85; color: var(--text-light); }
.article-detail-lead { color: var(--primary-color) !important; font-family: var(--accent-font); font-size: 23px !important; line-height: 1.55 !important; }
.article-detail-aside { position: sticky; top: 130px; padding: 38px; border-radius: 28px; background: linear-gradient(145deg, var(--primary-dark), var(--primary-color)); box-shadow: var(--shadow-md); color: #fff; }
.article-detail-aside h2 { color: #fff; font-size: 31px; }
.article-detail-aside p { color: rgba(255,255,255,.74); }
.article-detail-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 35px; }
.article-detail-gallery a { height: 230px; overflow: hidden; border-radius: 18px; }
.article-detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-detail-gallery a:hover img { transform: scale(1.06); }

/* Contact : page informative sans formulaire et sans exposition dans le menu. */
.contact-info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.contact-info-cards article { display: grid; gap: 10px; padding: 34px; border: 1px solid rgba(13,49,91,.08); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-info-cards i { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--accent-light); color: var(--primary-color); font-size: 22px; }
.contact-info-cards span { color: var(--text-light); font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }
.contact-info-cards a, .contact-info-cards strong { color: var(--primary-color); font-size: 18px; }
.contact-publication-note { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin-top: 28px; padding: 28px; border-radius: 22px; background: var(--primary-light); }
.contact-publication-note i { color: var(--accent-color); font-size: 28px; }
.contact-publication-note h3 { color: var(--primary-color); font-size: 22px; margin-bottom: 7px; }
.contact-publication-note p { margin: 0; color: var(--text-light); }

/* Footer sans newsletter */
.main-footer { padding-top: 76px; }
.main-footer > .container > .row { row-gap: 34px; }

@media (max-width: 1199px) {
    .navbar-brand img, header.main-header .header-sticky.active .navbar-brand img { height: 55px; max-width: 205px; }
    .main-menu .nav-item .nav-link { padding: 10px 11px; font-size: 11px; }
    .activity-overview-grid { grid-template-columns: repeat(2,1fr); }
    .activity-overview-card:last-child { grid-column: 1 / -1; min-height: 360px; }
}
@media (max-width: 991px) {
    .navbar, header.main-header .header-sticky.active .navbar { height: 80px; }
    .navbar-brand img, header.main-header .header-sticky.active .navbar-brand img { height: 52px; max-width: 200px; }
    .dek-hero-slider { border-radius: 0 0 36px 36px; }
    .dek-hero-slide, .min-vh-hero { min-height: 650px; }
    .min-vh-hero { padding: 90px 0 94px; }
    .dek-hero-content h1, .dek-hero-content h2 { font-size: 54px; }
    .terrain-article-layout, .article-detail-layout { grid-template-columns: 1fr; }
    .terrain-article:nth-of-type(even) .terrain-article-media { order: 0; }
    .terrain-article-media { min-height: 430px; }
    .article-detail-aside { position: static; }
    .contact-info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .navbar, header.main-header .header-sticky.active .navbar { height: 72px; }
    .navbar-brand img, header.main-header .header-sticky.active .navbar-brand img { height: 44px; max-width: 175px; }
    .dek-hero-slider { border-radius: 0 0 28px 28px; }
    .dek-hero-slide, .min-vh-hero { min-height: 620px; }
    .min-vh-hero { padding: 72px 0 104px; }
    .dek-hero-content h1, .dek-hero-content h2 { font-size: 42px; }
    .dek-hero-content > p { font-size: 16px; }
    .dek-hero-actions .btn-default { width: 100%; text-align: center; }
    .dek-hero-controls { bottom: 22px; }
    .dek-hero-navigation button { width: 42px; height: 42px; }
    .activity-overview-heading { display: block; }
    .activity-overview-heading > p { margin-top: 14px; }
    .activity-overview-grid { grid-template-columns: 1fr; }
    .activity-overview-card, .activity-overview-card:last-child { min-height: 390px; grid-column: auto; }
    .terrain-news-page { padding: 68px 0 78px; }
    .terrain-article { border-radius: 24px; }
    .terrain-article-media { min-height: 330px; }
    .terrain-article-media.media-contain { min-height: 360px; padding: 20px; }
    .terrain-article-gallery { grid-template-columns: 1fr; }
    .article-detail-hero { min-height: 540px; border-radius: 0 0 30px 30px; }
    .article-detail-heading { padding: 78px 0 66px; }
    .article-detail-heading h1 { font-size: 40px; }
    .article-detail-page { padding: 70px 0; }
    .article-detail-gallery { grid-template-columns: 1fr; }
    .article-detail-gallery a { height: 260px; }
}
