/* Base */
@import url('href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@100;200;300;400;500;600;700;800;900&family=Roboto+Flex:opsz,wght@8..144,100;8..144,300;8..144,500;8..144,700;8..144,900&display=swap"')

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-gold: #ED7F10;
    --secondary-gray: #5e6e76;
    --tertiary-blue: #226EE0;
    /*--tertiary-blue: #3986ae;*/
    --white: #ffffff;
  --color-background: #F9F9F9;
  --color-accent: #3986ae;
  --header-height: 120px;
    --shadow: rgba(0,0,0,0.1);
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-background);
  color: var(--color-secondary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

.button-primary {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.button-primary:hover {
  background-color: var(--color-accent);
}

.header, .footer {
  background-color: var(--color-secondary);
  color: #fff;
}

.card {
  background-color: #fff;
  border: 2px solid var(--color-accent);
  padding: 1rem;
  border-radius: 8px;
}


/*_______________________________________________________________________*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 2px solid var(--primary-gold);
  z-index: 999;
}

/*---------------------------- N E W      B L O C K ------------------------*/

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: 0 2px 0px var(--shadow);
    position: relative;
    z-index: 1000;

    max-width: 1200px;
    margin-inline: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 120px;
}

/* Logo à gauche */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Navigation centrée */
.nav-center {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav-center > li {
    position: relative;
}

.nav-center > li > a {
    text-decoration: none;
    color: var(--secondary-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-center > li > a:hover {
    color: var(--tertiary-blue);
    background-color: rgba(57, 134, 174, 0.1);
}

/* Bouton Nous Soutenir à droite */
.nav-support {
    flex-shrink: 0;
}

.nav-support .btn-support {
    background-color: var(--primary-gold);
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(250, 208, 13, 0.3);
}

.nav-support .btn-support:hover {
    background-color: #e8c00c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(250, 208, 13, 0.4);
}

/* Burger menu */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

/* Mega menu styles */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 32px var(--shadow);
    border-radius: 8px;
    border-top: 3px solid var(--primary-gold);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 1rem;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.mega-content {
    display: flex;
    padding: 2rem;
    gap: 2rem;
}

.mega-column {
    flex: 1;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    /*margin-bottom: 0.5rem;*/
}

.mega-column ul li a {
    text-decoration: none;
    color: var(--secondary-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mega-column ul li a:hover {
    background-color: rgba(57, 134, 174, 0.1);
    color: var(--tertiary-blue);
}

.mega-column ul li a i {
    color: var(--primary-gold);
}

.mega-grid {
    margin-bottom: 1rem;
}

.mega-item {
    text-decoration: none;
    color: var(--secondary-gray);
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mega-item:hover {
    background-color: rgba(57, 134, 174, 0.1);
    color: var(--tertiary-blue);
}

.media-block {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.media-block img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
}

.media-text {
    flex: 1;
}

.media-text p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-center {
        gap: 1rem;
        margin: 0;
    }
    
    .mega-menu {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 998;
        overflow-y: auto;
    }

    .nav-center.active {
        left: 0;
    }

    .nav-center > li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-center > li > a {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
    }

    .nav-support {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1001;
    }

    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background-color: #f8f9fa;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    .mega-content {
        flex-direction: column;
        padding: 1rem;
    }

    .dropdown:hover .mega-menu {
        margin-top: 0;
    }
}

/* Animation pour le burger */
.burger.active i {
    transform: rotate(90deg);
}

/* Effet de hover sur le logo */
.logo:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



/* Lien Accueil mobile - caché sur desktop */
.mobile-home-link {
    display: none;
}

/* Affichage sur mobile uniquement */
@media (max-width: 768px) {
    .mobile-home-link {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        order: -1; /* Met le lien en première position */
    }

    .mobile-home-link a {
        background-color: rgba(237, 127, 16, 0.1);
        border-left: 4px solid var(--primary-gold);
        font-weight: 600;
        color: var(--secondary-gray) !important;
        width: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .mobile-home-link a:hover {
        background-color: rgba(250, 208, 13, 0.2);
        color: var(--tertiary-blue) !important;
    }

    .mobile-home-link a i {
        color: var(--primary-gold);
        font-size: 1.1rem;
    }

    /* S'assurer que le lien Accueil apparaît en premier */
    .nav-center {
        display: flex;
        flex-direction: column;
    }
}
/*---------------------------- F I N    N E W    B L O C K -----------------*/

/*______________________________HERO_____________________________________*/
.hero {
    position: relative;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    top: var(--header-height);
    z-index: 1; /* S'assurer qu'il est au-dessus */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 2s ease-in-out, transform 12s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0,0,0,0.6) 0%, 
        rgba(94, 110, 118, 0.4) 50%, 
        rgba(57, 134, 174, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e8c00c 100%);
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 208, 13, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(250, 208, 13, 0.4);
    background: linear-gradient(135deg, #e8c00c 0%, var(--primary-gold) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-gray);
    transform: translateY(-3px);
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    right: 4rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    flex: 1;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-overlay {
        padding: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        left: 3rem;
        right: 3rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 2rem;
        justify-content: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        position: static;
        margin-top: 3rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
}

/*----------------------------FIN HERO--------------------------------------------*/


/*------------------------- CONTEXTE ------------------------------------*/
/* Section Contexte Côte d'Ivoire */
.context-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Assurer qu'il n'y a pas de marge qui empiète sur le hero */
}

.context-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ED7F10" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%233986ae" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%235e6e76" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--tertiary-blue);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.section-source {
    font-size: 0.9rem;
    color: var(--secondary-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.section-source i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forcer 4 colonnes égales */
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem 1.5rem; /* Réduire un peu le padding pour s'adapter aux 4 colonnes */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    min-width: 0; /* Permettre au contenu de se rétracter si nécessaire */
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-card.diabetes {
    border-top-color: #e74c3c;
}

.stat-card.hypertension {
    border-top-color: var(--tertiary-blue);
}

.stat-card.obesity {
    border-top-color: #f39c12;
}

.stat-card.mortality {
    border-top-color: var(--secondary-gray);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
    position: relative;
}

.stat-card.diabetes .stat-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.stat-card.hypertension .stat-icon {
    background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
    color: white;
}

.stat-card.obesity .stat-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.stat-card.mortality .stat-icon {
    background: linear-gradient(135deg, var(--secondary-gray), #34495e);
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.engagement-section {
    background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.engagement-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.engagement-content {
    position: relative;
    z-index: 1;
}

.engagement-title {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.engagement-quote {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.engagement-quote::before,
.engagement-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-gold);
    position: absolute;
}

.engagement-quote::before {
    top: -10px;
    left: -20px;
}

.engagement-quote::after {
    bottom: -30px;
    right: -20px;
}

.engagement-author {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.impact-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    text-align: center;
    color: var(--white);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
}

.impact-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .context-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .section-source {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    .section-source i {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .engagement-section {
        padding: 2rem 1.5rem;
    }

    .engagement-quote {
        font-size: 1.5rem;
    }

    .engagement-quote::before,
    .engagement-quote::after {
        font-size: 2rem;
    }

    .engagement-quote::before {
        top: -5px;
        left: -10px;
    }

    .engagement-quote::after {
        bottom: -20px;
        right: -10px;
    }
}

/* Animation d'apparition */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation des cartes au survol */
.stat-card:hover .stat-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat-card:not(:hover) .stat-number {
    transform: scale(1);
    transition: transform 0.3s ease;
}
/*---------------------------FIN CONTEXTE ------------------------------*/


/*-------------------------QUI SOMMES NOUS ----------------------------*/
 .about-section {
            padding: 6rem 0;
            background: var(--white);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            animation: fadeInLeft 1s ease-out;
        }

        .about-badge {
            display: inline-block;
            background-color: rgba(237, 127, 16, 0.1);
            color: var(--secondary-gray);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid var(--primary-gold);
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-title .highlight {
            color: var(--tertiary-blue);
        }

        .about-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .about-mission {
            background: linear-gradient(135deg, rgba(57, 134, 174, 0.1), rgba(237, 127, 16, 0.1));
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-gold);
            margin-bottom: 2rem;
        }

        .about-mission-text {
            font-style: italic;
            font-size: 1rem;
            color: var(--secondary-gray);
            font-weight: 500;
        }

        .about-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(57, 134, 174, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary-gray);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border: 2px solid var(--secondary-gray);
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background-color: var(--secondary-gray);
            color: var(--white);
            transform: translateY(-2px);
        }

        .about-visual {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        .founder-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            margin-bottom: 2rem;
        }

        .founder-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #333;
            position: relative;
            overflow: hidden;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .founder-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 0.5rem;
        }

        .founder-title {
            color: var(--tertiary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .founder-quote {
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .stats-mini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .stat-mini {
            text-align: center;
            padding: 1rem;
            background: rgba(237, 127, 16, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(250, 208, 13, 0.3);
        }

        .stat-mini-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--tertiary-blue);
            display: block;
        }

        .stat-mini-label {
            font-size: 0.8rem;
            color: var(--secondary-gray);
            margin-top: 0.25rem;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-title {
                font-size: 2rem;
            }

            .about-description {
                font-size: 1rem;
            }

            .about-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
                text-align: center;
            }

            .stats-mini {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .founder-card {
                padding: 1.5rem;
            }
        }
/*--------------------FIN QUI SOMMES NOUS -----------------------------*/


/*------------------- NOS SOLUTIONS -----------------------------------*/
.solutions-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, rgba(250, 208, 13, 0.05) 100%);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background-color: var(--tertiary-blue);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--tertiary-blue);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 5rem;
        }

        .solution-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--tertiary-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .solution-card.screening .solution-icon {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .solution-card.sport .solution-icon {
            background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
        }

        .solution-card.awareness .solution-icon {
            background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
            color: #333;
        }

        .solution-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 1rem;
        }

        .solution-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .solution-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--tertiary-blue);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .solution-card:hover .solution-cta {
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .method-section {
            background: linear-gradient(135deg, var(--secondary-gray), #34495e);
            padding: 4rem 3rem;
            border-radius: 25px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .method-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(237, 127, 16, 0.1), transparent);
            border-radius: 50%;
        }

        .method-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .method-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .method-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .method-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .method-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-gold);
            color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1rem;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-gold);
        }

        .step-description {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        .method-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -1rem;
            width: 2rem;
            height: 2px;
            background: var(--primary-gold);
            opacity: 0.5;
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.3s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .method-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .method-step:nth-child(2)::after,
            .method-step:nth-child(4)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .solutions-section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .solution-card {
                padding: 2rem 1.5rem;
            }

            .solution-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .method-section {
                padding: 3rem 2rem;
            }

            .method-title {
                font-size: 1.8rem;
            }

            .method-steps {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .method-step::after {
                display: none;
            }
        }
/*---------------FIN NOS SOLUTIONS ------------------------------------*/



/*---------------------------ACTU------------------------------------*/
.news-section {
            padding: 6rem 0;
            background: var(--white);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .news-header-content {
            flex: 1;
        }

        .news-badge {
            display: inline-block;
            background-color: rgba(57, 134, 174, 0.1);
            color: var(--tertiary-blue);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid var(--tertiary-blue);
        }

        .news-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .news-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 500px;
            line-height: 1.6;
        }

        .news-link {
            background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(57, 134, 174, 0.3);
        }

        .news-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(57, 134, 174, 0.4);
            background: linear-gradient(135deg, #2980b9, var(--tertiary-blue));
            color: white;
        }

        .news-icon {
            transition: transform 0.3s ease;
        }

        .news-link:hover .news-icon {
            transform: translateX(3px);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .news-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

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

        .news-content {
            padding: 1.5rem;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--secondary-gray);
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--tertiary-blue);
            font-weight: 600;
        }

        .news-location {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--primary-gold);
            font-weight: 600;
        }

        .news-location::before {
            content: "•";
            color: #ddd;
        }

        .news-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: var(--tertiary-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--primary-gold);
            gap: 0.75rem;
        }

        .read-more i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(3px);
        }

        /* Badge "Nouveau" pour les articles récents */
        .news-card.recent::before {
            content: "Nouveau";
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary-gold);
            color: #333;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 10;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Animation d'apparition */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
        .fade-in-up:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* État vide si pas d'articles */
        .news-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: #666;
        }

        .news-empty i {
            font-size: 4rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .news-empty h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .news-section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .news-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 2rem;
            }

            .news-title {
                font-size: 2rem;
            }

            .news-subtitle {
                max-width: 100%;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .news-content {
                padding: 1.25rem;
            }

            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .news-location::before {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .news-img {
                height: 180px;
            }

            .news-card-title {
                font-size: 1.1rem;
            }
        }

/*--------------------------FIN ACTU ---------------------------------*/

/*------------------------ PARTENAIRE ---------------------------*/
.partners-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, rgba(250, 208, 13, 0.03) 100%);
            border-top: 1px solid rgba(94, 110, 118, 0.1);
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .partners-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .partners-badge {
            display: inline-block;
            background-color: rgba(237, 127, 16, 0.1);
            color: var(--secondary-gray);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid var(--primary-gold);
        }

        .partners-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-gray);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .partners-subtitle {
            font-size: 1rem;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .partners-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            background: var(--white);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            padding: 2rem 0;
        }

        .carousel-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: calc(200px * 12); /* Ajuster selon le nombre de partenaires */
        }

        .partner-item {
            min-width: 200px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .partner-item:hover {
            transform: scale(1.05);
        }

        .partner-logo {
            max-width: 140px;
            max-height: 70px;
            width: auto;
            height: auto;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .partner-item:hover .partner-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Animation de défilement */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 6)); /* Moitié du nombre total */
            }
        }

        /* Pause au hover */
        .partners-carousel:hover .carousel-track {
            animation-play-state: paused;
        }

        /* Gradient de fondu sur les côtés */
        .partners-carousel::before,
        .partners-carousel::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 10;
            pointer-events: none;
        }

        .partners-carousel::before {
            left: 0;
            background: linear-gradient(to right, var(--white), transparent);
        }

        .partners-carousel::after {
            right: 0;
            background: linear-gradient(to left, var(--white), transparent);
        }

        .partners-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(94, 110, 118, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--tertiary-blue);
            display: block;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--secondary-gray);
            font-weight: 500;
        }

        .partners-cta {
            text-align: center;
            margin-top: 2.5rem;
        }

        .partners-link {
            color: var(--tertiary-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--tertiary-blue);
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .partners-link:hover {
            background-color: var(--tertiary-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(57, 134, 174, 0.3);
        }

        .partners-link i {
            transition: transform 0.3s ease;
        }

        .partners-link:hover i {
            transform: translateX(3px);
        }

        /* État vide */
        .partners-empty {
            text-align: center;
            padding: 3rem 2rem;
            color: #666;
        }

        .partners-empty i {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .partners-empty h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .partners-section {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .partners-title {
                font-size: 1.75rem;
            }

            .partners-subtitle {
                font-size: 0.95rem;
            }

            .partners-carousel {
                padding: 1.5rem 0;
            }

            .partner-item {
                min-width: 160px;
                height: 80px;
            }

            .partner-logo {
                max-width: 120px;
                max-height: 60px;
            }

            .carousel-track {
                width: calc(160px * 12);
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-160px * 6));
                }
            }

            .partners-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            .partners-stats {
                gap: 1rem;
            }

            .partners-carousel::before,
            .partners-carousel::after {
                width: 40px;
            }
        }
/*--------------------FIN PARTENAIRE ---------------------------*/

/*------------------- PIEDS DE PAGE -------------------------*/
.footer {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ED7F10" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>') repeat;
            pointer-events: none;
        }

        .footer-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 0;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #333;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
        }

        .footer-tagline {
            color: var(--primary-gold);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: var(--primary-gold);
            color: #333;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(250, 208, 13, 0.4);
        }

        .footer-section {
            min-width: 210px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 0.8rem;
            width: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-icon {
            width: 35px;
            height: 35px;
            background: var(--tertiary-blue);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            color: var(--white);
            margin-bottom: 0.25rem;
        }

        .newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .newsletter h4 {
            color: var(--primary-gold);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 0.9rem;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-btn {
            background: var(--primary-gold);
            color: #333;
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e8c00c;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-copyright a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--primary-gold);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-brand {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                padding: 3rem 1rem 0;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                padding: 2rem 1rem 0;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
/*----------------FIN PIEDS DE PAGE --------------------------*/

/*------------------ PAGE CONTACT -------------------------*/
/* CSS spécifique à la page contact simple */
.contact-hero {
    height: 60vh;
    /*background-image: url('{{ asset("images/photo_1711462175.jpg") }}');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(94, 110, 118, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-intro {
    margin-bottom: 4rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 colonnes égales */
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .contact-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.contact-page .contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-page .contact-item:nth-child(2) {
    border-top-color: var(--tertiary-blue);
}

.contact-page .contact-item:nth-child(3) {
    border-top-color: var(--secondary-gray);
}

.contact-page .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
}

.contact-page .contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
    color: var(--white);
}

.contact-page .contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, var(--secondary-gray), #34495e);
    color: var(--white);
}

.contact-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--tertiary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-gold);
    transform: scale(1.05);
}

.contact-address {
    line-height: 1.6;
}


.contact-info-styled {
    max-width: 700px;
    margin: 3rem auto 0;
}

.contact-item-styled {
    background: linear-gradient(135deg, rgba(57, 134, 174, 0.1), rgba(237, 127, 16, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item-styled:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.contact-icon-styled {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 1rem;
    color: var(--secondary-gray);
    font-weight: 500;
    line-height: 1.5;
}

.contact-text a {
    color: var(--tertiary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-styled {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .contact-item-styled {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .contact-icon-styled {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-text {
        font-size: 0.95rem;
    }
}

/* Animation d'apparition */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-page .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
/*--------------FIN PAGE CONTACT --------------------------*/

/*-------------- NOUS SOUTENIR --------------------------*/
/* CSS complet pour la section don optimisée */

/* CSS principal pour la page Nous Soutenir */
.support-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e8c00c 100%);
    padding: 6rem 0 4rem;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="supportPattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 10 L40 30 L30 50 L20 30 Z" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23supportPattern)"/></svg>') repeat;
    pointer-events: none;
}

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

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.support-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.support-content {
    padding: 6rem 0;
    background: var(--white);
}

.support-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.support-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
}

.support-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.support-ways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.support-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 127, 16, 0.1), transparent);
    transition: left 0.6s ease;
}

.support-card:hover::before {
    left: 100%;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.support-card.financial {
    border-top-color: var(--tertiary-blue);
}

.support-card.volunteer {
    border-top-color: #e74c3c;
}

.support-card.partner {
    border-top-color: var(--secondary-gray);
}

.support-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.support-card.financial .support-icon {
    background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
    color: var(--white);
}

.support-card.volunteer .support-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
}

.support-card.partner .support-icon {
    background: linear-gradient(135deg, var(--secondary-gray), #34495e);
    color: var(--white);
}

.support-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.support-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.support-btn {
    background: linear-gradient(135deg, var(--primary-gold), #e8c00c);
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(250, 208, 13, 0.3);
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(250, 208, 13, 0.4);
    background: linear-gradient(135deg, #e8c00c, var(--primary-gold));
}

.support-card.financial .support-btn {
    background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(57, 134, 174, 0.3);
}

.support-card.financial .support-btn:hover {
    box-shadow: 0 6px 25px rgba(57, 134, 174, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .support-hero {
        padding: 4rem 0 3rem;
    }

    .support-title {
        font-size: 2.5rem;
    }

    .support-subtitle {
        font-size: 1.2rem;
    }

    .support-content {
        padding: 4rem 0;
    }

    .support-ways {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-card {
        padding: 2rem 1.5rem;
    }

    .support-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

.payment-methods {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-section {
    background: rgba(57, 134, 174, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--tertiary-blue);
}

.payment-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1rem;
}

.payment-title i {
    color: var(--tertiary-blue);
}

.mobile-payments {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.mobile-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
}

.mobile-option:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.mobile-option.wave {
    border-color: #ff6b35;
}

.mobile-option.orange {
    border-color: #ff7900;
}

.payment-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobile-option span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-gray);
}

.phone-display {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px dashed var(--tertiary-blue);
}

.phone-display strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-gray);
}

.phone-number {
    font-weight: 700;
    color: var(--tertiary-blue);
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(57, 134, 174, 0.1);
    border-radius: 25px;
    border: 2px solid var(--tertiary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: all;
}

.phone-number:hover {
    background: var(--tertiary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.copy-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.bank-info {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bank-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--tertiary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 250px;
}

.bank-contact-btn:hover {
    background: var(--primary-gold);
    color: #333;
    transform: translateY(-2px);
}

.donation-amounts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(57, 134, 174, 0.1);
    text-align: center;
}

.amounts-label {
    font-weight: 600;
    color: var(--secondary-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 300px;
    margin: 0 auto;
}

.amount-btn {
    background: var(--white);
    border: 2px solid var(--tertiary-blue);
    color: var(--tertiary-blue);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.amount-btn:hover {
    background: var(--tertiary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.amount-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #333;
}

.amount-btn.custom {
    grid-column: 1 / -1;
    background: rgba(237, 127, 16, 0.1);
    border-color: var(--primary-gold);
    color: var(--secondary-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-payments {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-option {
        flex-direction: row;
        min-width: 200px;
        justify-content: flex-start;
    }
    
    .phone-number {
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
    
    .amount-btn.custom {
        grid-column: 1;
    }
}

/* Animations pour les notifications */
@keyframes slideInNotification {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutNotification {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.payment-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.mobile-option.wave .payment-logo {
    background: #fff;
    padding: 4px;
}
/*----------FIN NOUS SOUTENIR ---------------------------*/

/*-----------------------CLIMAT----------------------------*/
.climate-banner {
  background: linear-gradient(to right, #4CAF50, #2196F3);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.climate-content {
  max-width: 900px;
  margin: 0 auto;
}

.banner-icon {
  font-size: 3rem;
  color: #A5D6A7;
  margin-bottom: 20px;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.banner-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #4CAF50;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/*---------------------FIN CLIMAT-------------------------*/

/*--------------------- ACTUALITES ---------------------*/
/* CSS pour la page actualités modernisée */
.news-hero {
    background-image: url('images/landing1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.news-hero-overlay {
    background: linear-gradient(135deg, 
        rgba(94, 110, 118, 0.8) 0%, 
        rgba(57, 134, 174, 0.6) 50%, 
        rgba(250, 208, 13, 0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    padding: 4rem 0;
}

.news-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.news-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.modern-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid rgba(94, 110, 118, 0.1);
    padding: 1rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: var(--tertiary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-gold);
}

.breadcrumb-separator {
    color: #ccc;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--secondary-gray);
    font-weight: 600;
}

.news-page-content {
    padding: 4rem 0;
    background: var(--white);
}

.news-section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: rgba(57, 134, 174, 0.1);
    color: var(--tertiary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--tertiary-blue);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
}

.news-stats {
    text-align: center;
    background: linear-gradient(135deg, rgba(237, 127, 16, 0.1), rgba(57, 134, 174, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(250, 208, 13, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tertiary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-gray);
    font-weight: 600;
}

.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.news-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-modern:hover .news-img-modern {
    transform: scale(1.05);
}

.news-badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.news-content-modern {
    padding: 2rem;
}

.news-meta-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.news-date-modern {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--tertiary-blue);
    font-weight: 600;
}

.news-location-modern {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.news-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link-modern {
    color: var(--tertiary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.news-link-modern:hover {
    color: var(--primary-gold);
    gap: 0.75rem;
}

.news-link-modern i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.news-link-modern:hover i {
    transform: translateX(3px);
}

.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.empty-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.news-empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-gray);
}

.news-empty-state p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cta {
    background: linear-gradient(135deg, var(--tertiary-blue), #2980b9);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.empty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 134, 174, 0.3);
}

.news-cta-section {
    background: linear-gradient(135deg, var(--secondary-gray), #34495e);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.news-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: var(--primary-gold);
    color: #333;
}

.cta-btn.primary:hover {
    background: #e8c00c;
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--secondary-gray);
    transform: translateY(-3px);
}

/* Animation d'apparition */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .news-hero {
        height: 40vh;
        background-attachment: scroll;
    }

    .news-hero-title {
        font-size: 2.2rem;
    }

    .news-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-stats {
        margin-top: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/*------------------FIN ACTUALITES ---------------------*/

/*--------------------ARTICLE--------------------------*/
/* CSS article simple - utilise le style YROBOUO existant */
.article-main-simple {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.article-image-simple {
    margin-bottom: 2rem;
    text-align: center;
}

.article-image-simple img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-content-simple {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-gray);
    text-align: justify;
}

/* Styles pour le contenu HTML dans l'article */
.article-content-simple h1,
.article-content-simple h2,
.article-content-simple h3,
.article-content-simple h4,
.article-content-simple h5,
.article-content-simple h6 {
    color: var(--secondary-gray);
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.article-content-simple h1 {
    font-size: 2rem;
    color: var(--tertiary-blue);
}

.article-content-simple h2 {
    font-size: 1.6rem;
    color: var(--tertiary-blue);
}

.article-content-simple h3 {
    font-size: 1.3rem;
}

.article-content-simple p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-content-simple img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-content-simple ul,
.article-content-simple ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content-simple li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-content-simple blockquote {
    background: linear-gradient(135deg, rgba(57, 134, 174, 0.1), rgba(237, 127, 16, 0.1));
    padding: 1.5rem;
    border-left: 4px solid var(--primary-gold);
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--secondary-gray);
}

.article-content-simple strong {
    color: var(--secondary-gray);
    font-weight: 700;
}

.article-content-simple em {
    color: var(--tertiary-blue);
}

.article-content-simple a {
    color: var(--tertiary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-content-simple a:hover {
    color: var(--primary-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .article-main-simple {
        padding: 2rem 1.5rem;
        margin-top: -2rem;
    }
    
    .article-content-simple {
        font-size: 1rem;
    }
    
    .article-content-simple h1 {
        font-size: 1.8rem;
    }
    
    .article-content-simple h2 {
        font-size: 1.5rem;
    }
}
/*-----------------FIN ARTICLE-------------------------*/

/*------------------PUBLICATION -----------------------*/
.publications-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.publications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.publications-title {
  font-size: 2.5rem;
  color: #4CAF50;
  font-weight: 700;
}

.publications-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4CAF50;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.publications-link:hover {
  color: #43A047;
}

.pubs-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4CAF50;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.publications-link:hover .pubs-icon {
  background-color: #43A047;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.publication-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.pub-title {
  font-size: 1.5rem;
  color: #212121;
  margin-bottom: 10px;
  font-weight: 700;
}

.pub-meta {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.download-button {
  display: inline-block;
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.download-button i {
  margin-left: 8px;
}

.download-button:hover {
  background-color: #43A047;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/*------------------FIN PUBLICATION--------------------*/

/*---------------PAGES DOMAINES------------------*/
.domaine-hero {
  background-color: #f9f9f9;
  padding: 20px 20px;
}

.domaine-hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.domaine-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}

.domaine-hero-content {
  flex: 1 1 300px;
}

.domaine-title {
  font-size: 2.5rem;
  color: #3986ae;
  font-weight: 700;
  margin-bottom: 20px;
}

.domaine-narrative {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  line-height: 1.6;
}

.domaine-description {
  padding: 20px 20px;
  background-color: #fff;
}

.domaine-description p {
  /*max-width: 900px;*/
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/*--------------FIN PAGE DOMAINE---------------*/

::-moz-selection {
  background: #000;
  color: #fff; }

::selection {
  background: #000;
  color: #fff; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

.border-2 {
  border-width: 2px; }

.text-black {
  color: #000 !important; }

.bg-black {
  background: #000 !important; }

.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5); }

.color-white-opacity-5 {
  color: rgba(255, 255, 255, 0.5); }

.site-wrap:before {
  display: none;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden; }

.offcanvas-menu .site-wrap {
  height: 100%;
  width: 100%;
  z-index: 2; }
  .offcanvas-menu .site-wrap:before {
    opacity: 1;
    visibility: visible; }

.line-height-1 {
  line-height: 1 !important; }

.bg-black {
  background: #000; }

.site-section {
  padding: 2.5em 0; }
  @media (min-width: 768px) {
    .site-section {
      padding: 5em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem; }
  @media (min-width: 768px) {
    .site-section-heading {
      font-size: 3rem; } }

.border-top {
  border-top: 1px solid #edf0f5 !important; }

.site-footer {
  padding: 4em 0; }
  @media (min-width: 768px) {
    .site-footer {
      padding: 8em 0; } }
  .site-footer p {
    color: #737373; }
  .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #fff; }
  .site-footer a {
    color: #999999; }
    .site-footer a:hover {
      color: black; }
  .site-footer ul li {
    margin-bottom: 10px; }
  .site-footer .footer-heading {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900; }

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000; }

.text-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5); }

.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5); }

.hover-bg-enlarge {
  overflow: hidden;
  position: relative; }
  @media (max-width: 991.98px) {
    .hover-bg-enlarge {
      height: auto !important; } }
  .hover-bg-enlarge > div {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .8s all ease-in-out;
    -o-transition: .8s all ease-in-out;
    transition: .8s all ease-in-out; }
  .hover-bg-enlarge:hover > div, .hover-bg-enlarge:focus > div, .hover-bg-enlarge:active > div {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  @media (max-width: 991.98px) {
    .hover-bg-enlarge .bg-image-md-height {
      height: 300px !important; } }

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .bg-image.overlay {
    position: relative; }
    .bg-image.overlay:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7); }
  .bg-image > .container {
    position: relative;
    z-index: 1; }

@media (max-width: 991.98px) {
  .img-md-fluid {
    max-width: 100%; } }

@media (max-width: 991.98px) {
  .display-1, .display-3 {
    font-size: 3rem; } }

.play-single-big {
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  border-radius: 50%;
  position: relative;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
  .play-single-big > span {
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%); }
  .play-single-big:hover {
    width: 120px;
    height: 120px; }

.overlap-to-top {
  margin-top: -150px; }

.ul-check {
  margin-bottom: 50px; }
  .ul-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5; }
    .ul-check li:before {
      left: 0;
      font-size: 20px;
      top: -.3rem;
      font-family: "icomoon";
      content: "\e5ca";
      position: absolute; }
  .ul-check.white li:before {
    color: #fff; }
  .ul-check.success li:before {
    color: #53b94c; }
  .ul-check.primary li:before {
    color: #53b94c; }

.select-wrap, .wrap-icon {
  position: relative; }
  .select-wrap .icon, .wrap-icon .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px; }
  .select-wrap select, .wrap-icon select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%; }


/* Blocks */
.intro-section {
  background-size: cover;
  position: relative; }
  .intro-section, .intro-section .container .row {
    height: 100vh;
    min-height: 900px; }
  .intro-section:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #222;
    opacity: .7;
    border-bottom-right-radius: 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    @media (max-width: 991.98px) {
      .intro-section:before {
        width: 100%; } }
  .intro-section h1 {
    font-size: 7rem;
    font-weight: 900;
    color: #fff; }
  .intro-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 400px; }

.custom-breadcrumns {
  padding: 20px 0; }
  .custom-breadcrumns span, .custom-breadcrumns a {
    font-size: 14px; }
  .custom-breadcrumns a {
    display: inline-block;
    color: #bdbdbd; }
    .custom-breadcrumns a:hover {
      color: #3986ae; }
  .custom-breadcrumns .current {
    color: #3986ae; }

.section-title-underline {
  color: #000; }
  .section-title-underline span {
    display: inline-block;
    border-bottom: 4px solid #3986ae; }
  .section-title-underline.style-2 {
    color: #fff; }
    .section-title-underline.style-2 span {
      border-color: #3986ae; }

.section-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0; }
  .section-bg.style-1 {
    position: relative; }
    .section-bg.style-1:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #183661;
      opacity: .9;
      z-index: 0; }
    .section-bg.style-1 > .container {
      z-index: 2; }
    .section-bg.style-1 .icon {
      font-size: 3.5rem;
      color: #53b94c; }
    .section-bg.style-1 h3 {
      font-size: 20px;
      color: #53b94c;
      margin-bottom: 30px; }
    .section-bg.style-1 p {
      color: #7697c6; }

.news-updates {
  padding: 5rem 0; }
  .news-updates .section-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px; }
    .news-updates .section-heading h2 {
      margin-bottom: 0;
      line-height: 0; }
    .news-updates .section-heading a {
      font-size: 16px; }
  .news-updates .post-entry-big .img-link {
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
    margin-top: 35px;
    overflow: hidden; }
    .news-updates .post-entry-big .img-link img {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .news-updates .post-entry-big .img-link:before {
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      position: absolute;
      content: "";
      background: #000;
      opacity: 0;
      z-index: 2;
      visibility: hidden;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .news-updates .post-entry-big .img-link img {
      z-index: 1; }
    .news-updates .post-entry-big .img-link:hover:before {
      opacity: .6;
      visibility: visible; }
    .news-updates .post-entry-big .img-link:hover img {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
  .news-updates .post-entry-big .post-content .post-meta a {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    color: #939393; }
  .news-updates .post-entry-big .post-content .post-heading {
    line-height: .9; }
    .news-updates .post-entry-big .post-content .post-heading a {
      font-size: 18px;
      font-weight: bold;
      color: #303030; }
      .news-updates .post-entry-big .post-content .post-heading a:hover {
        color: #53b94c; }
  .news-updates .post-entry-big.horizontal .img-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px; }

.social-wrap a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #53b94c;
  position: relative; }
  .social-wrap a > span {
    position: absolute;
    color: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .social-wrap a:hover {
    background: #000; }

.block-number-1 .icon {
  color: #fff;
  font-size: 2rem; }

.ftco-testimonial-1 .ftco-testimonial-vcard img { 
  height: 250px;
width: auto; }

.ftco-testimonial-1 .ftco-testimonial-vcard h3 {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0;
  color: #000; }

.ftco-testimonial-1 p {
  color: #a2a2a2; }

.feature-1 .icon-wrapper, .person .icon-wrapper {
  position: relative;
  width: 96px;
  height: 55.43px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
  margin-top: -33.94px;
  background: #ccc; }
  .feature-1 .icon-wrapper > span, .person .icon-wrapper > span {
    width: 96px;
    height: 96px;
    text-align: center;
    font-size: 3rem;
    line-height: 96px;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 0; }
  .feature-1 .icon-wrapper:before, .feature-1 .icon-wrapper:after, .person .icon-wrapper:before, .person .icon-wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 67.88px;
    height: 67.88px;
    -webkit-transform: scaleY(0.5774) rotate(-45deg);
    -ms-transform: scaleY(0.5774) rotate(-45deg);
    transform: scaleY(0.5774) rotate(-45deg);
    background-color: inherit;
    left: 14.06px; }
  .feature-1 .icon-wrapper:before, .person .icon-wrapper:before {
    top: -33.94px; }
  .feature-1 .icon-wrapper:after, .person .icon-wrapper:after {
    bottom: -33.94px; }

.feature-1 .feature-1-content, .person .feature-1-content {
  padding: 50px 20px 20px 20px;
  text-align: center; }
  .feature-1 .feature-1-content h2, .person .feature-1-content h2 {
    font-size: 1.3rem;
    color: #000; }

.person {
  margin-bottom: 50px !important; }
  .person img {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto; }

.course-1-item {
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); }
  .course-1-item figure {
    position: relative; }
  .course-1-item .category {
    background: #53b94c;
    padding: 20px; }
    .course-1-item .category h3 {
      color: #fff;
      font-size: 20px;
      margin-bottom: 0; }
  .course-1-item .price {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translatey(-100%);
    -ms-transform: translatey(-100%);
    transform: translatey(-100%);
    padding: 10px 20px;
    background: #183661;
    color: #fff; }
  .course-1-item .course-1-content {
    padding: 20px 40px;
    text-align: center; }
    .course-1-item .course-1-content h2 {
      margin: 0 0 30px 0;
      font-size: 18px;
      color: #000; }
    .course-1-item .course-1-content .rating {
      text-align: center; }
      .course-1-item .course-1-content .rating > span {
        display: inline-block;
        margin: 2px; }
    .course-1-item .course-1-content .desc {
      font-size: 15px; }

.footer {
  padding: 4rem 0;
  background: #183661;
  font-size: 14px;
  color: #fff; }
  .footer .footer-heading {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px; }
    .footer .footer-heading span {
      border-bottom: 3px solid #fff; }
  .footer a:hover {
    color: #fff;
    text-decoration: underline; }
  .footer .copyright {
    color: #fff;
    padding-top: 7rem;
    text-align: center; }

.ftco-subscribe-1 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }
  .ftco-subscribe-1:before {
    position: absolute;
    content: "";
    background: #183661;
    opacity: .7;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .ftco-subscribe-1 > .container {
    position: relative;
    z-index: 2; }
    .ftco-subscribe-1 > .container h2, .ftco-subscribe-1 > .container p {
      color: #fff; }
  .ftco-subscribe-1 .form-control {
    height: auto !important; }

.video-1 {
  position: relative;
  display: block; }
  .video-1 .play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%; }
    .video-1 .play > span {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .video-1:hover {
    -webkit-box-shadow: 0 5px 30px -10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 30px -10px rgba(0, 0, 0, 0.3); }

#loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
  -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
  transition: opacity .2s ease-out, visibility 0s linear .2s;
  z-index: 2000; }

#loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

  .persoback {
    background-color: #53b94c;
  }

#loader.show {
  -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
  -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
  transition: opacity .4s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1; }

#loader .circular {
  -webkit-animation: loader-rotate 2s linear infinite;
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

#loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader-dash 1.5s ease-in-out infinite;
  animation: loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round; }

@-webkit-keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px; } }

@keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px; } }
