/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "poppins", sans-serif;
}

body{
background:#f5f6f7;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ================= HEADER ================= */

.header{
background:#fff;
box-shadow:0 2px 6px rgba(0,0,0,0.08);
position:fixed;
width:100%;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo-circle{
background:#0e8f44;
color:#fff;
padding:10px;
border-radius:50%;
font-weight:bold;
}

.logo h3{
font-size:18px;
}

.logo p{
font-size:12px;
color:gray;
}

/* NAVIGATION */

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.nav-links a.active{
color:#0e8f44;
}

/* BOUTON */

.btn-support{
background:#ff6a00;
color:white;
padding:10px 18px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

/* MENU MOBILE */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}


/* ================= HERO ================= */

.hero{
height:100vh;
background:url("../images/hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
max-width:700px;
}

.hero h1{
font-size:45px;
line-height:1.3;
}

.hero span{
color:#2ecc71;
}

.hero p{
margin:20px 0;
font-size:18px;
}

.hero-buttons{
display:flex;
gap:20px;
justify-content:center;
}

.btn-primary{
background:#2ecc71;
padding:12px 25px;
border-radius:25px;
text-decoration:none;
color:white;
}

.btn-secondary{
background:#444;
padding:12px 25px;
border-radius:25px;
text-decoration:none;
color:white;
}




/* ================= QUI SOMMES NOUS ================= */

.about{
padding:100px 0;
background:#f8f9fa;
margin-top:60px;
}

.about-container{
display:flex;
align-items:center;
gap:50px;
}

/* TEXTE */

.about-text{
flex:1;
}

.about-text h2{
font-size:32px;
margin-bottom:20px;
}

.about-text p{
margin-bottom:15px;
color:#555;
line-height:1.6;
}

/* STATS */

.about-stats{
display:flex;
gap:20px;
margin-top:20px;
}

.stat-box{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
min-width:140px;
}

.stat-box h3{
color:#2ecc71;
font-size:22px;
}

/* IMAGE */

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}





/* ================= NOTRE ADN ================= */

.values{
padding:100px 0;
background:white;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:32px;
margin-bottom:10px;
}

.section-header p{
color:#666;
}

/* GRID */

.values-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */

.value-card{
background:#f8f9fa;
padding:30px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
text-align:center;
}

.value-card:hover{
transform:translateY(-5px);
}

/* ICONES */

.value-icon{
width:60px;
height:60px;
margin:auto;
margin-bottom:15px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
}

.vision{
background:#3498db;
}

.mission{
background:#2ecc71;
}

.objectifs{
background:#ff6a00;
}

.value-card h3{
margin-bottom:15px;
}

.value-card p{
color:#555;
line-height:1.6;
}






/* ================= DOMAINES ================= */

.domains{
padding:100px 0;
background:#f8f9fa;
}

/* GRID */

.domains-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

/* CARD */

.domain-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
text-align:left;
}

.domain-card:hover{
transform:translateY(-5px);
}

/* ICON PNG */

.domain-card img{
width:40px;
margin-bottom:15px;
}

/* TEXT */

.domain-card h3{
margin-bottom:10px;
font-size:18px;
}

.domain-card p{
color:#666;
line-height:1.5;
}

/* BOUTON BAS */

.domains-btn{
text-align:center;
margin-top:40px;
}





/* ================= REALISATIONS ================= */

.projects{
padding:100px 0;
background:white;
}

/* GRID */

.projects-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:40px;
}

/* CARD */

.project-card{
background:#f8f9fa;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.project-card:hover{
transform:translateY(-5px);
}

/* IMAGE */

.project-card img{
width:100%;
height:200px;
object-fit:cover;
}

/* CONTENT */

.project-content{
padding:20px;
}

.project-content h3{
margin-bottom:10px;
font-size:18px;
}

.project-content p{
color:#666;
}

/* BOUTON */

.projects-btn{
text-align:center;
margin-top:40px;
}






/* ================= IMPACT ================= */

.impact{
background:#0e8f44;
color:white;
padding:80px 0;
}

.impact-header h2,
.impact-header p{
color:white;
}

/* GRID */

.impact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
text-align:center;
}

/* CARD */

.impact-card{
padding:20px;
}

/* ICON */

.impact-icon img{
margin-bottom:15px;
width:50px;
/* Transformation icône noire -> blanche */
  filter: brightness(0) invert(1);
}



/* CHIFFRE */

.impact-card h3{
font-size:32px;
margin-bottom:5px;
}

.impact-card p{
font-size:14px;
opacity:0.9;
}




/* ================= PARTENAIRES ================= */

.partners{
padding:80px 0;
background:#f8f9fa;
}

/* GRID LOGOS */

.partners-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-top:40px;
}

/* CONTENEUR LOGO */

.partner-logo{
background:white;
padding:20px;
border-radius:10px;
display:flex;
justify-content:center;
align-items:center;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
transition:0.3s;
}

/* HOVER LOGO */

.partner-logo:hover{
transform:translateY(-5px);
}

/* IMAGE LOGO */

.partner-logo img{
max-width:100%;
height:45px;
object-fit:contain;
filter:grayscale(100%);
opacity:0.7;
transition:0.3s;
}

/* COULEUR AU SURVOL */

.partner-logo:hover img{
filter:grayscale(0);
opacity:1;
}

/* LIEN PARTENAIRE */

.partners-btn{
text-align:center;
margin-top:30px;
}

.partner-link{
color:#0e8f44;
font-weight:600;
text-decoration:none;
}




/* ================= CTA ================= */

.cta{
background:#ff6a00;
padding:80px 0;
text-align:center;
color:white;
}

.cta-container{
max-width:700px;
margin:auto;
}

.cta h2{
font-size:32px;
margin-bottom:15px;
}

.cta p{
margin-bottom:30px;
opacity:0.9;
line-height:1.6;
}

/* BOUTONS */

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.cta-btn{
padding:12px 25px;
border-radius:25px;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

/* Bouton blanc */

.white-btn{
background:white;
color:#ff6a00;
}

/* Boutons contour */

.outline-btn{
border:2px solid white;
color:white;
}

.outline-btn:hover{
background:white;
color:#ff6a00;
}

.white-btn:hover{
opacity:0.9;
}



/* ================= FOOTER ================= */

.footer{
background:#081c3a;
color:white;
padding-top:60px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-col h4{
margin-bottom:15px;
font-size:18px;
}

.footer-col p{
opacity:0.8;
line-height:1.6;
margin:15px 0;
}

/* LOGO */

.footer-logo{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
font-size:18px;
}

.footer-logo img{
width:40px;
}

/* LISTES */

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:white;
opacity:0.8;
transition:0.3s;
}

.footer-col ul li a:hover{
opacity:1;
}

/* SOCIAL */

.footer-socials{
display:flex;
gap:12px;
margin-top:15px;
}

.footer-socials img{
width:22px;
transition:0.3s;
/* Transformation icône noire -> blanche */
  filter: brightness(0) invert(1);
}

.footer-socials img:hover{
transform:scale(1.1);
}

/* CONTACT */

.footer-contact li{
display:flex;
align-items:center;
gap:10px;
}

.footer-contact img{
width:18px;
/* Transformation icône noire -> blanche */
  filter: brightness(0) invert(1);
}

/* BAS FOOTER */

.footer-bottom{
text-align:center;
padding:20px;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
font-size:14px;
opacity:0.7;
}



/* ================= HERO PAGE INTERNE ================= */

.page-hero{
    position: relative;
    height: 320px;
    background: url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay vert */

.page-hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,128,0,0.75),
        rgba(0,100,0,0.75)
    );
}

/* Contenu */

.page-hero-content{
    position: relative;
    z-index: 2;
}

.page-hero h1{
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero p{
    font-size: 18px;
    opacity: 0.9;
}





/* ================= TIMELINE ================= */

.timeline-section{
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline{
    position: relative;
    max-width: 700px;
    margin: auto;
}

/* Ligne verticale */

.timeline::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #28a745;
}

/* Item */

.timeline-item{
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

/* Point */

.timeline-dot{
    position: absolute;
    left: 11px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #28a745;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(40,167,69,0.2);
}

/* Carte */

.timeline-content{
    background: white;
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.timeline-content:hover{
    transform: translateY(-4px);
}

/* Texte */

.timeline-content h3{
    color: #28a745;
    margin-bottom: 5px;
}

.timeline-content p{
    font-size: 14px;
    color: #555;
}



.timeline-item{
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.timeline-item.show{
    opacity: 1;
    transform: translateY(0);
}




/* ================= VISION & MISSION ================= */

.vision-mission{
    padding: 80px 0;
    background: #f8f9fa;
}

/* GRID */

.vision-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

/* CARD */

.vision-card{
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.vision-card:hover{
    transform: translateY(-6px);
}

/* ICON */

.vision-icon{
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
}

.vision-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TITRE */

.vision-card h3{
    color: #222;
    margin-bottom: 10px;
}

/* TEXTE */

.vision-card p{
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


.vision-card:hover h3{
    color: #28a745;
}




/* ================= NOS OBJECTIFS ================= */

.objectifs-section{
    padding: 80px 0;
    background: #ffffff;
}

/* GRID */

.objectifs-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 30px;
}

/* CARD */

.objectif-card{
    display: flex;
    align-items: center;
    gap: 15px;

    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 10px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.objectif-card:hover{
    transform: translateY(-4px);
    background: #f1fdf4;
}

/* ICONE */

.objectif-icon{
    font-size: 18px;
    color: #28a745;
    font-weight: bold;
}

/* TEXTE */

.objectif-card p{
    font-size: 14px;
    color: #444;
}





/* ================= DOMAINES DETAILLES ================= */

.domaines-details{
padding:80px 0;
background:#f8f9fa;
}

/* ITEM */

.domaine-item{
display:flex;
align-items:center;
gap:40px;
margin-bottom:60px;
}

/* ALTERNANCE */

.domaine-item.reverse{
flex-direction:row-reverse;
}

/* TEXTE */

.domaine-text{
flex:1;
}

.domaine-text p{
margin:10px 0 15px;
color:#555;
}

.domaine-text h4{
margin-bottom:10px;
font-size:15px;
}

/* LISTE */

.domaine-text ul{
padding-left:18px;
}

.domaine-text li{
margin-bottom:6px;
font-size:14px;
}

/* IMAGE */

.domaine-image{
flex:1;
}

.domaine-image img{
width:100%;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* TITRE + ICONE */

.domaine-title{
display:flex;
align-items:center;
gap:12px;
margin-bottom:10px;
}

.domaine-title img{
width:40px;
height:40px;
object-fit:contain;
}







.realisations{
padding:80px 0;
background:#f5f6f7;
}

.realisations-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:40px;
}

/* CARD */

.real-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 25px rgba(0,0,0,0.08);
}

/* IMAGE */

.real-image{
position:relative;
height:220px;
}

.real-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* Overlay */

.real-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
color:#fff;
}

.real-overlay h3{
font-size:20px;
margin-bottom:5px;
}

.real-overlay span{
font-size:14px;
opacity:0.9;
}

/* CONTENT */

.real-content{
padding:20px;
}

.real-content p{
color:#555;
font-size:14px;
margin-bottom:20px;
}

/* BLOCK */

.real-block{
margin-bottom:20px;
}

.real-block h4{
font-size:15px;
margin-bottom:10px;
}

/* TAGS */

.real-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.real-tags span{
padding:6px 12px;
border-radius:20px;
font-size:13px;
}

/* Résultats beige */

.real-tags.beige span{
background:#f3ece4;
color:#8a6b3c;
}

/* Partenaires bleu */

.real-tags.blue span{
background:#e5efff;
color:#2f5fbf;
}
















/* ================= PERSPECTIVES ================= */

.perspectives{
padding:80px 0;
background:linear-gradient(135deg,#0a8f3c,#0c6e2f);
color:#fff;
}

/* Header blanc */

.section-header.light h2,
.section-header.light p{
color:#fff;
}

/* Grid */

.perspectives-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;
}

/* Carte */

.perspective-card{
display:flex;
align-items:center;
gap:15px;
background:rgba(255,255,255,0.1);
padding:20px;
border-radius:12px;
backdrop-filter:blur(6px);
transition:0.3s;
}

.perspective-card:hover{
transform:translateY(-5px);
background:rgba(255,255,255,0.18);
}

/* Icône */

.perspective-icon{
width:40px;
height:40px;
object-fit:contain;
/* Transformation icône noire -> blanche */
  filter: brightness(0) invert(1);
}

/* Texte */

.perspective-card h3{
font-size:16px;
margin-bottom:5px;
}

.perspective-card p{
font-size:13px;
opacity:0.9;
}





.galerie{
padding:80px 0;
background:#f8f9fa;
}

/* FILTRES */

.galerie-filters{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin:30px 0 40px;
}

.filter-btn{
padding:8px 18px;
border:none;
border-radius:25px;
background:#e9ecef;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.filter-btn.active{
background:#16a34a;
color:white;
}

.filter-btn:hover{
background:#16a34a;
color:white;
}

/* GRID */

.galerie-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* ITEM */

.galerie-item{
position:relative;
overflow:hidden;
border-radius:15px;
cursor:pointer;
}

.galerie-item img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
}

.galerie-item:hover img{
transform:scale(1.1);
}

/* BADGE */

.badge{
position:absolute;
top:10px;
left:10px;
background:#16a34a;
color:white;
padding:5px 12px;
border-radius:20px;
font-size:12px;
}






/* ================= NOS COORDONNÉES ================= */

.contact-info-section {
  background: #f5f7fa;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
}

.section-title p {
  color: #777;
  margin-top: 10px;
}

/* Cards container */

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Card */

.contact-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
}

/* Icon container */

.contact-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 28px;
}

/* Couleurs */

.contact-icon.green {
  background: #17a34a;
}

.contact-icon.blue {
  background: #2f80ed;
}

.contact-icon.orange {
  background: #ff6b00;
}

/* Texte */

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}






/* ========================================
   RÉSEAUX SOCIAUX
======================================== */
.social-section {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.social-title {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: filter var(--transition-normal);
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}






/* ================= IFJ CONTACT SECTION ================= */

.ifj-contact-section {
  background: #f5f7fa;
  padding: 100px 0;
}

.ifj-contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ===== TITRES ===== */

.ifj-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.ifj-section-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ================= FORMULAIRE ================= */

.ifj-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.ifj-form-group {
  margin-bottom: 20px;
}

.ifj-form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.ifj-contact-form input,
.ifj-contact-form select,
.ifj-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.ifj-contact-form textarea {
  min-height: 120px;
  resize: none;
}

.ifj-contact-form input:focus,
.ifj-contact-form select:focus,
.ifj-contact-form textarea:focus {
  border-color: #17a34a;
}

/* Bouton */

.ifj-submit-btn {
  background: #17a34a;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.ifj-submit-btn img {
  width: 18px;
}

.ifj-submit-btn:hover {
  background: #14843c;
}

/* ================= LOCALISATION ================= */

.ifj-location-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Map */

.ifj-map-box {
  position: relative;
  margin-bottom: 30px;
}

.ifj-map-box img {
  width: 100%;
  border-radius: 12px;
}

.ifj-map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ifj-map-overlay img {
  width: 35px;
  margin-bottom: 8px;
}

.ifj-map-overlay span {
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1c;
}

/* Heures */

.ifj-hours-box {
  background: #eaf5ee;
  padding: 20px;
  border-radius: 12px;
}

.ifj-hours-box h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.ifj-hour-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.ifj-closed {
  color: #888;
}





/* ================= IFJ COMMENT NOUS SOUTENIR ================= */

.ifj-support-section {
  background: #f5f7fa;
  padding: 100px 0;
}

.ifj-support-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */

.ifj-support-header {
  text-align: center;
  margin-bottom: 60px;
}

.ifj-support-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ifj-support-header p {
  color: #6b7280;
  font-size: 14px;
}

/* Cards */

.ifj-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ifj-support-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.ifj-support-card:hover {
  transform: translateY(-8px);
}

/* Top colored section */

.ifj-card-top {
  padding: 25px;
  color: #ffffff;
}

.ifj-card-top img {
  width: 28px;
  margin-bottom: 10px;
}

.ifj-card-top h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.ifj-card-top p {
  font-size: 13px;
  line-height: 1.5;
}

/* Colors */

.ifj-orange {
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
}

.ifj-green {
  background: linear-gradient(135deg, #17a34a, #21c063);
}

.ifj-blue {
  background: linear-gradient(135deg, #2f80ed, #2563eb);
}

/* Body */

.ifj-card-body {
  padding: 25px;
}

.ifj-card-body h4 {
  margin-bottom: 15px;
  font-size: 14px;
}

.ifj-card-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ifj-card-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 10px;
  color: #555;
}

.ifj-card-body li img {
  width: 16px;
}

/* Button */

.ifj-card-btn {
  display: inline-block;
  background: #0f172a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.ifj-card-btn:hover {
  background: #000000;
}







/* ================= IFJ NOS PARTENAIRES ================= */

.ifj-partners-section {
  background: #f5f7fa;
  padding: 100px 0;
}

.ifj-partners-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */

.ifj-partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.ifj-partners-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ifj-partners-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Grid */

.ifj-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */

.ifj-partner-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.ifj-partner-card:hover {
  transform: translateY(-6px);
}

/* Icon circle */

.ifj-partner-icon {
  background: #17a34a;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ifj-partner-icon img {
  width: 20px;
  /* Transformation icône noire -> blanche */
  filter: brightness(0) invert(1);
}

/* Content */

.ifj-partner-content h3 {
  font-size: 16px;
  margin-bottom: 3px;
}

.ifj-partner-content span {
  font-size: 12px;
  color: #17a34a;
  display: block;
  margin-bottom: 8px;
}

.ifj-partner-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}






/* ================= IFJ CTA SECTION ================= */

.ifj-cta-section {
  background: linear-gradient(135deg, #17a34a, #0f8a3d);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.ifj-cta-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.ifj-cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ifj-cta-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Buttons */

.ifj-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ifj-cta-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* Bouton blanc */

.ifj-cta-btn.primary {
  background: #ffffff;
  color: #17a34a;
}

.ifj-cta-btn.primary:hover {
  background: #f3f4f6;
}

/* Bouton outline */

.ifj-cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.ifj-cta-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}
