:root {
    --bleu-clair: #38bdf8;
    --bleu: #0284c7;
    --bleu-fonce: #075985;
    --fond: #f0f9ff;
    --blanc: #ffffff;
    --texte: #1e293b;
    --gris: #64748b;
    --ombre: rgba(2, 132, 199, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--fond);
    color: var(--texte);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

p,
h1,
h2,
h3,
span,
a,
li {
    overflow-wrap: break-word;
}

.page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.25), transparent 35%),
        linear-gradient(135deg, #ffffff, #e0f2fe);
}

/* ==============================
   HEADER
============================== */

header {
    width: 100%;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(2, 132, 199, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    width: 55px;
}

.brand-text h3 {
    color: var(--bleu-fonce);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.brand-text span {
    font-size: 0.7rem;
    color: var(--gris);
    display: block;
    line-height: 1.1;
}

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--bleu-fonce);
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

nav a {
    text-decoration: none;
    color: var(--bleu-fonce);
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    white-space: nowrap;
}

nav a:hover {
    color: var(--bleu);
    border-bottom-color: var(--bleu);
}

/* ==============================
   HERO
============================== */

.hero {
    position: relative;
    min-height: 90vh;
    padding: 80px 8% 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 45px;
    overflow: hidden;
    isolation: isolate;
}

.hero .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.6s ease-in-out, transform 8s ease;
    z-index: 0;
}

.hero .image.active {
    opacity: 1;
    transform: scale(1);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 89, 133, 0.78),
        rgba(2, 132, 199, 0.45),
        rgba(255, 255, 255, 0.20)
    );
    z-index: 1;
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.construction {
    display: inline-flex;
    align-items: center;
    background: #ff0000;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 12px 25px var(--ombre);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.construction:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px var(--ombre);
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 20px;
}

.slogan {
    font-size: 1.15rem;
    color: #ffffff;
    border-left: 5px solid #ffffff;
    padding-left: 18px;
    margin-bottom: 28px;
    font-style: italic;
}

.hero p {
    color: #ffffff;
    font-size: 1.05rem;
    max-width: 680px;
}

.hero-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.70),
        rgba(255, 255, 255, 0.38),
        rgba(255, 255, 255, 0.20)
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 35px;
    padding: 40px 30px;
    box-shadow: 0 25px 60px rgba(7, 89, 133, 0.22);
    text-align: center;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(2, 132, 199, 0.15);
}

.hero-card img {
    width: 190px;
    margin-bottom: 25px;
}

.hero-card h3 {
    color: var(--bleu-fonce);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.hero-card p {
    color: #ffffff;
    text-shadow:
        0 0 8px rgb(218, 213, 213),
        0 2px 8px rgba(0, 0, 0, 0.57);
    font-size: 0.98rem;
}

/* ==============================
   TITRES DE SECTION
============================== */

section {
    padding: 70px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span {
    color: var(--bleu);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section-title h2 {
    color: var(--bleu-fonce);
    font-size: 2.2rem;
    margin-top: 8px;
}

/* ==============================
   SECTIONS RÉSUMÉES EN CARTES
============================== */

.content-sections {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 35%),
        radial-gradient(circle at bottom right, rgba(7, 89, 133, 0.10), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
    padding: 85px 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Chaque div devient une carte */
.content-sections .section-box {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 34px 34px 32px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 18px 42px rgba(2, 132, 199, 0.10);
    text-align: left;
    margin: 0;
    overflow: hidden;
    transition: 0.35s ease;
}

/* ==============================
   CARTE NOTRE ÉQUIPE AVEC IMAGE
============================== */

.equipe-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    padding: 26px;
}

.equipe-image {
    position: relative;
    height: 100%;
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(2, 132, 199, 0.18);
}

.equipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.equipe-box:hover .equipe-image img {
    transform: scale(1.07);
}

.equipe-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 89, 133, 0.18),
        rgba(56, 189, 248, 0.10)
    );
}

.equipe-content {
    position: relative;
    z-index: 1;
}

.equipe-content .section-resume {
    text-align: justify;
}

/* Responsive */
@media (max-width: 850px) {
    .equipe-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .equipe-image {
        min-height: 230px;
    }
}

@media (max-width: 500px) {
    .equipe-box {
        padding: 20px;
        gap: 20px;
    }

    .equipe-image {
        min-height: 200px;
        border-radius: 18px;
    }
}

/* Cercle décoratif */
.content-sections .section-box::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 145px;
    height: 145px;
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.20),
        rgba(7, 89, 133, 0.08)
    );
    border-radius: 50%;
}

/* Barre inférieure animée */
.content-sections .section-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #38bdf8, #075985);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.content-sections .section-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(2, 132, 199, 0.17);
    border-color: rgba(56, 189, 248, 0.65);
}

.content-sections .section-box:hover::after {
    transform: scaleX(1);
}

.content-sections .section-box span {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--bleu);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.content-sections .section-box h2 {
    position: relative;
    z-index: 1;
    color: var(--bleu-fonce);
    font-size: 1.55rem;
    line-height: 1.3;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-sections .section-box h2 i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.22);
    transition: 0.35s ease;
}

.content-sections .section-box:hover h2 i {
    transform: rotate(-5deg) scale(1.06);
}

.section-resume {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.75;
    text-align: justify;
}

/* La dernière carte prend toute la largeur pour un bon équilibre */
.content-sections .section-box:last-child {
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 950px) {
    .content-sections {
        grid-template-columns: 1fr;
        padding: 65px 6%;
    }

    .content-sections .section-box:last-child {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .content-sections {
        padding: 50px 5%;
        gap: 22px;
    }

    .content-sections .section-box {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .content-sections .section-box h2 {
        font-size: 1.28rem;
        gap: 10px;
    }

    .content-sections .section-box h2 i {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
        border-radius: 13px;
    }

    .content-sections .section-box span {
        font-size: 0.72rem;
    }

    .section-resume {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}
.details-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(2, 132, 199, 0.22);
    transition: 0.3s ease;
}

.details-btn i {
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(2, 132, 199, 0.32);
    background: linear-gradient(135deg, #075985, #0284c7);
}

.details-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .details-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.88rem;
    }
}


/* ==============================
   ACTUALITÉS
============================== */

.news-section {
    background: var(--blanc);
}

.development-alert {
    text-align: center;
    padding: 16px 20px;
    background: #ff0000;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 30px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--blanc);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.09);
    border: 1px solid #dbeafe;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(2, 132, 199, 0.15);
}

.news-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    overflow: hidden;
}

.news-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    color: var(--bleu);
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    color: var(--bleu-fonce);
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    color: var(--gris);
    font-size: 0.98rem;
    margin-bottom: 18px;
    flex: 1;
}

.news-link {
    display: inline-block;
    color: var(--bleu);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.news-link:hover {
    color: var(--bleu-fonce);
    transform: translateX(5px);
}

.news-link::after {
    content: " →";
}

/* ==============================
   FOOTER
============================== */

.footer-crede {
    background: linear-gradient(135deg, #075985, #0f172a);
    color: #ffffff;
    padding: 60px 8% 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.25fr 1.15fr 1fr 1.15fr;
    gap: 35px;
    align-items: start;
}

.footer-rubrique {
    text-align: left;
}

.footer-rubrique h2 {
    font-size: 1.22rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #38bdf8;
    color: #ffffff;
    text-align: left;
    line-height: 1.3;
}

.footer-rubrique h2 i {
    color: #38bdf8;
    margin-right: 8px;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #e0f2fe;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.contact-line i {
    color: #38bdf8;
    font-size: 1.1rem;
    width: 24px;
    min-width: 24px;
    margin-top: 4px;
    text-align: center;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(56, 189, 248, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-icons a i {
    font-size: 1.35rem;
}

.social-icons a:hover {
    background: #38bdf8;
    color: #075985;
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 14px 28px rgba(56, 189, 248, 0.35);
}

.footer-interventions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-interventions ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #e0f2fe;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.footer-interventions ul li i {
    color: #38bdf8;
    font-size: 1.15rem;
    width: 24px;
    min-width: 24px;
    margin-top: 4px;
    text-align: center;
}

.localisation-img {
    width: 100%;
    max-width: 280px;
    display: block;
    margin-top: 10px;
}

.partenaires-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.partenaires-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 12px;
    height: 74px;
    transition: 0.3s ease;
}

.partenaires-list a:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(56, 189, 248, 0.25);
}

.partenaires-list img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    color: #dbeafe;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1100px) {
    .news-grid,
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    nav {
        gap: 14px;
    }

    nav a {
        font-size: 0.84rem;
    }
}

@media (max-width: 850px) {
    header {
        padding: 10px 4%;
    }

    .brand {
        max-width: calc(100% - 55px);
    }

    .brand img {
        width: 46px;
    }

    .brand-text h3 {
        font-size: 0.85rem;
        line-height: 1.1;
    }

    .brand-text span {
        font-size: 0.62rem;
        line-height: 1.2;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        position: relative;
        z-index: 120;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 90px 0 20px;
        border-left: 1px solid #e0f2fe;
        box-shadow: -10px 0 30px rgba(2, 132, 199, 0.18);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 90;
    }

    #menu-toggle:checked ~ nav {
        transform: translateX(0);
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav a {
        display: block;
        width: 100%;
        padding: 14px 25px;
        font-size: 0.92rem;
        border-bottom: 1px solid #e0f2fe;
        border-left: 4px solid transparent;
    }

    nav a:hover {
        background: #f0f9ff;
        border-left-color: var(--bleu);
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 5% 45px;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero h2 {
        font-size: 1.05rem;
    }

    .slogan {
        border-left: none;
        border-top: 4px solid #ffffff;
        padding-left: 0;
        padding-top: 14px;
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-card {
        padding: 30px 22px;
        border-radius: 25px;
    }

    .hero-card img {
        width: 135px;
        margin-bottom: 18px;
    }

    section {
        padding: 55px 5%;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 9px 4%;
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 42px;
    }

    .brand-text h3 {
        font-size: 0.78rem;
    }

    .brand-text span {
        font-size: 0.56rem;
    }

    .hamburger span {
        width: 23px;
        height: 3px;
    }

    .hero {
        padding: 40px 5% 35px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero h2 {
        font-size: 0.98rem;
    }

    .slogan {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .construction {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
        padding: 12px 16px;
    }

    .hero-card {
        padding: 25px 18px;
    }

    .hero-card img {
        width: 115px;
    }

    .content-sections {
        padding: 55px 5%;
    }

    .content-sections .section-box {
        padding: 26px 22px;
        border-radius: 20px;
        margin-bottom: 28px;
    }

    .content-sections .section-box h2 {
        font-size: 1.35rem;
    }

    .section-resume {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .news-content {
        padding: 22px;
    }

    .footer-crede {
        padding: 45px 5% 22px;
    }

    .footer-rubrique h2 {
        font-size: 1.08rem;
    }

    .contact-line,
    .footer-interventions ul li {
        font-size: 0.92rem;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .social-icons a i {
        font-size: 1.3rem;
    }
}

@media (max-width: 420px) {
    .brand-text span {
        display: none;
    }

    .brand-text h3 {
        font-size: 0.82rem;
    }

    .brand img {
        width: 38px;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero h2 {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.38rem;
    }

    .partenaires-list {
        grid-template-columns: 1fr;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
    }

    .social-icons a i {
        font-size: 1.45rem;
    }
}


/* ==============================
PAGE DÉTAIL : QUI SOMMES-NOUS ?
============================== */

.page-detail-hero {
    position: relative;
    min-height: 42vh;
    padding: 90px 8%;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.86),
            rgba(2, 132, 199, 0.68)
        ),
        url("environement3.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.20), transparent 35%);
}

.page-detail-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.page-detail-content span {
    color: #e0f2fe;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.page-detail-content h1 {
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.15;
    margin: 12px 0 16px;
}

.page-detail-content p {
    color: #ffffff;
    font-size: 1.08rem;
    max-width: 760px;
}

.about {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.box {
    background: rgba(255, 255, 255, 0.96);
    padding: 32px;
    border-radius: 25px;
    border: 1px solid #dbeafe;
    box-shadow: 0 16px 38px rgba(2, 132, 199, 0.10);
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(2, 132, 199, 0.16);
    border-color: #38bdf8;
}

.about-box {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 50%;
}

.about-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.about-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.22);
}

.about-title h3 {
    margin: 0;
    color: var(--bleu-fonce);
    font-size: 1.35rem;
    line-height: 1.2;
}

.about-box p {
    position: relative;
    z-index: 1;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
    text-align: justify;
}

.about-box:hover .about-icon {
    transform: translateY(-3px) scale(1.05);
    transition: 0.3s ease;
}

.back-home {
    margin-top: 35px;
    text-align: center;
}

.back-home .details-btn {
    margin-top: 0;
}

@media (max-width: 850px) {
    .page-detail-hero {
        min-height: auto;
        padding: 70px 6%;
    }

    .page-detail-content h1 {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .page-detail-content h1 {
        font-size: 1.8rem;
    }

    .page-detail-content p {
        font-size: 0.95rem;
    }

    .box {
        padding: 24px;
        border-radius: 20px;
    }

    .about-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1.25rem;
        border-radius: 14px;
    }

    .about-title h3 {
        font-size: 1.12rem;
    }
}


/* ==============================
PAGE DÉTAIL : NOS VALEURS
============================== */

.valeurs-hero {
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.86),
            rgba(2, 132, 199, 0.68)
        ),
        url("55.jpg");
    background-size: cover;
    background-position: center;
}

.values-section {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.13), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
}

.value-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 34px 24px 28px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.10);
    overflow: hidden;
    transition: 0.35s ease;
    text-align: left;
    min-height: 285px;
}

.value-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 145px;
    height: 145px;
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.20),
        rgba(7, 89, 133, 0.10)
    );
    border-radius: 50%;
}

.value-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #38bdf8, #075985);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 28px 60px rgba(2, 132, 199, 0.18);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe, #ffffff);
    color: #075985;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow:
        inset 0 0 0 1px rgba(56, 189, 248, 0.35),
        0 12px 28px rgba(2, 132, 199, 0.18);
    transition: 0.35s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    transform: rotate(6deg) scale(1.08);
}

.value-card h3 {
    position: relative;
    z-index: 1;
    color: var(--bleu-fonce);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.values-section .back-home {
    margin-top: 35px;
    text-align: center;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 28px 22px 24px;
        border-radius: 24px;
    }

    .value-icon {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .value-card h3 {
        font-size: 1.12rem;
    }

    .value-card p {
        font-size: 0.92rem;
    }
}

/* ==============================
PAGE DÉTAIL : DOMAINES
============================== */

.domaines-hero {
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.88),
            rgba(2, 132, 199, 0.66)
        ),
        url("44.jpg");
    background-size: cover;
    background-position: center;
}

.domaines-section-detail {
    background:
        linear-gradient(135deg, rgba(7, 89, 133, 0.96), rgba(14, 165, 233, 0.88)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 35%);
    position: relative;
    overflow: hidden;
}

.domaines-section-detail .section-title span,
.domaines-section-detail .section-title h2 {
    color: #ffffff;
}

.domaines-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.domain-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 82px 1fr;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    padding: 26px;
    color: #ffffff;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

.domain-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.04)
    );
    opacity: 0;
    transition: 0.35s ease;
}

.domain-item:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.25);
}

.domain-item:hover::before {
    opacity: 1;
}

.domain-number {
    position: relative;
    z-index: 1;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.38);
}

.domain-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: #ffffff;
    color: #075985;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    transition: 0.35s ease;
}

.domain-item:hover .domain-icon {
    transform: rotate(-6deg) scale(1.07);
    background: #e0f2fe;
}

.domain-content {
    position: relative;
    z-index: 1;
}

.domain-content h3 {
    color: #ffffff;
    font-size: 1.22rem;
    margin-bottom: 14px;
    line-height: 1.3;
}

.domain-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-content ul li {
    position: relative;
    color: #e0f2fe;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 20px;
    margin-bottom: 8px;
}

.domain-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.domaines-section-detail .back-home {
    margin-top: 35px;
    text-align: center;
}

@media (max-width: 1100px) {
    .domaines-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .domain-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px;
    }

    .domain-number {
        font-size: 1.8rem;
    }

    .domain-icon {
        width: 62px;
        height: 62px;
        font-size: 1.6rem;
        border-radius: 20px;
    }

    .domain-content h3 {
        font-size: 1.1rem;
    }

    .domain-content ul li {
        font-size: 0.92rem;
    }
}


/* ==============================
   PAGE DÉTAIL : NOS APPROCHES
   Sélecteurs renommés pour éviter les conflits
============================== */

.approches-hero {
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.88),
            rgba(15, 23, 42, 0.70)
        ),
        url("environement.jpg");
    background-size: cover;
    background-position: center;
}

/* Section principale */
.crede-approches-detail {
    position: relative;
    padding: 85px 8%;
    background-image:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.90),
            rgba(15, 23, 42, 0.80)
        ),
        url("environement3.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Voile décoratif */
.crede-approches-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 30%);
    z-index: 0;
}

/* Tous les éléments au-dessus du fond */
.crede-approches-title,
.crede-approches-grid,
.crede-approches-back {
    position: relative;
    z-index: 1;
}

/* Titre */
.crede-approches-title {
    text-align: center;
    margin-bottom: 45px;
}

.crede-approches-title span {
    display: inline-block;
    color: #e0f2fe;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.crede-approches-title h2 {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1.25;
}

/* Grille */
.crede-approches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Cartes */
.crede-approche-card {
    position: relative;
    background: #ffffff;
    color: #1e293b;
    border-radius: 26px;
    padding: 34px 28px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.75);
    overflow: hidden;
    transition: 0.35s ease;
    text-align: left;
}

/* Barre latérale */
.crede-approche-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #38bdf8, #075985);
}

/* Cercle décoratif */
.crede-approche-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 50%;
}

.crede-approche-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.34);
}

/* Icône */
.crede-approche-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #075985, #38bdf8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 20px;
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.25);
    transition: 0.35s ease;
}

.crede-approche-card:hover .crede-approche-icon {
    transform: rotate(-5deg) scale(1.07);
}

/* Textes */
.crede-approche-card h3 {
    position: relative;
    z-index: 1;
    color: #075985;
    font-size: 1.22rem;
    margin-bottom: 13px;
    line-height: 1.3;
}

.crede-approche-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0;
}

/* Bouton retour */
.crede-approches-back {
    margin-top: 38px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
    .crede-approches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 750px) {
    .crede-approches-detail {
        padding: 60px 5%;
        background-attachment: scroll;
    }

    .crede-approches-grid {
        grid-template-columns: 1fr;
    }

    .crede-approches-title h2 {
        font-size: 1.7rem;
    }

    .crede-approche-card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .crede-approche-icon {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
        border-radius: 16px;
    }

    .crede-approche-card h3 {
        font-size: 1.12rem;
    }

    .crede-approche-card p {
        font-size: 0.92rem;
    }
}


/* ==============================
   PAGE DÉTAIL : NOTRE ÉQUIPE
   Sélecteurs renommés pour éviter les conflits
============================== */

.equipe-hero {
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.86),
            rgba(15, 23, 42, 0.68)
        ),
        url("equip.jpg");
    background-size: cover;
    background-position: center;
}

/* Section principale */
.crede-equipe-detail {
    position: relative;
    padding: 85px 8%;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(7, 89, 133, 0.10), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
    overflow: hidden;
}

.crede-equipe-detail::before {
    content: "";
    position: absolute;
    top: -110px;
    left: -110px;
    width: 260px;
    height: 260px;
    background: rgba(56, 189, 248, 0.13);
    border-radius: 50%;
}

.crede-equipe-detail::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -95px;
    width: 240px;
    height: 240px;
    background: rgba(7, 89, 133, 0.10);
    border-radius: 50%;
}

/* Titre */
.crede-equipe-title,
.crede-equipe-grid,
.crede-equipe-back {
    position: relative;
    z-index: 1;
}

.crede-equipe-title {
    text-align: center;
    margin-bottom: 45px;
}

.crede-equipe-title span {
    display: inline-block;
    color: var(--bleu);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.crede-equipe-title h2 {
    color: var(--bleu-fonce);
    font-size: 2.2rem;
    line-height: 1.25;
}

/* Grille */
.crede-equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Carte membre */
.crede-membre-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(56, 189, 248, 0.26);
    border-radius: 24px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(2, 132, 199, 0.10);
    overflow: hidden;
    transition: 0.35s ease;
}

.crede-membre-card::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 120px;
    height: 120px;
    background: rgba(56, 189, 248, 0.13);
    border-radius: 50%;
}

.crede-membre-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #075985);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.crede-membre-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(2, 132, 199, 0.17);
    border-color: rgba(56, 189, 248, 0.65);
}

.crede-membre-card:hover::after {
    transform: scaleX(1);
}

/* Photo membre */
.crede-membre-photo {
    position: relative;
    z-index: 1;
    width: 95px;
    height: 95px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.20);
    overflow: hidden;
}

.crede-membre-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    background: #ffffff;
    transition: 0.35s ease;
}

.crede-membre-card:hover .crede-membre-photo img {
    transform: scale(1.07);
}

/* Infos membre */
.crede-membre-info {
    position: relative;
    z-index: 1;
}

.crede-membre-info h3 {
    color: var(--bleu-fonce);
    font-size: 1.04rem;
    line-height: 1.25;
    margin-bottom: 9px;
}

.crede-membre-info a {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    color: #475569;
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.45;
    word-break: break-word;
    max-width: 100%;
}

.crede-membre-info a i {
    color: var(--bleu);
    margin-top: 3px;
    min-width: 14px;
}

.crede-membre-info a:hover {
    color: var(--bleu);
}

/* Carte contact */
.crede-contact-card {
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
}

.crede-contact-card .crede-membre-photo {
    background: #ffffff;
    padding: 8px;
}

.crede-contact-card .crede-membre-photo img {
    object-fit: contain;
}

/* Bouton retour */
.crede-equipe-back {
    margin-top: 38px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .crede-equipe-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .crede-equipe-detail {
        padding: 65px 6%;
    }

    .crede-equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .crede-equipe-title h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 520px) {
    .crede-equipe-detail {
        padding: 55px 5%;
    }

    .crede-equipe-grid {
        grid-template-columns: 1fr;
    }

    .crede-membre-card {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .crede-membre-photo {
        width: 90px;
        height: 90px;
    }

    .crede-membre-info h3 {
        font-size: 1rem;
    }

    .crede-membre-info a {
        font-size: 0.8rem;
    }
}


/* ==============================
   PAGE CONTACT CREDE ONG RDC
   Sélecteurs renommés pour éviter les conflits
============================== */

.crede-contact-hero {
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.88),
            rgba(15, 23, 42, 0.70)
        ),
        url("environement3.jpg");
    background-size: cover;
    background-position: center;
}

.crede-contact-detail {
    position: relative;
    padding: 85px 8%;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(7, 89, 133, 0.10), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
    overflow: hidden;
}

.crede-contact-detail::before {
    content: "";
    position: absolute;
    top: -110px;
    left: -110px;
    width: 260px;
    height: 260px;
    background: rgba(56, 189, 248, 0.13);
    border-radius: 50%;
}

.crede-contact-title,
.crede-contact-layout,
.crede-contact-map-box,
.crede-contact-back {
    position: relative;
    z-index: 1;
}

.crede-contact-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.crede-contact-title span {
    display: inline-block;
    color: var(--bleu);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.crede-contact-title h2 {
    color: var(--bleu-fonce);
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
}

.crede-contact-title p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.crede-contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: start;
}

.crede-contact-infos {
    display: grid;
    gap: 18px;
}

.crede-contact-card,
.crede-contact-social,
.crede-contact-form-box,
.crede-contact-map-box {
    background: #ffffff;
    border: 1px solid rgba(56, 189, 248, 0.26);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(2, 132, 199, 0.10);
}

.crede-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    text-align: left;
    transition: 0.35s ease;
}

.crede-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(2, 132, 199, 0.16);
    border-color: rgba(56, 189, 248, 0.65);
}

.crede-contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.22);
}

.crede-contact-card h3,
.crede-contact-social h3,
.crede-contact-form-box h3,
.crede-contact-map-text h3 {
    color: var(--bleu-fonce);
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.crede-contact-card p,
.crede-contact-map-text p {
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

.crede-contact-card a {
    color: #475569;
    text-decoration: none;
}

.crede-contact-card a:hover {
    color: var(--bleu);
    text-decoration: underline;
}

.crede-contact-social {
    padding: 24px 22px;
    text-align: left;
}

.crede-contact-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

.crede-contact-social-icons a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.35rem;
    transition: 0.3s ease;
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.20);
}

.crede-contact-social-icons a:hover {
    transform: translateY(-5px) scale(1.06);
    background: linear-gradient(135deg, #075985, #38bdf8);
}

.crede-contact-form-box {
    padding: 30px;
    text-align: left;
}

.crede-contact-form {
    display: grid;
    gap: 16px;
}

.crede-form-group {
    display: grid;
    gap: 7px;
}

/* Styles pour les champs de formulaire */
.crede-form-group input,
.crede-form-group textarea {
    width: 100%;
    border: 1px solid #dbeafe;
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
    transition: 0.3s ease;
}

.crede-form-group input::placeholder,
.crede-form-group textarea::placeholder {
    color: #64748b;
}

.crede-form-group input:focus,
.crede-form-group textarea:focus {
    border-color: #38bdf8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.crede-form-group input,
.crede-form-group textarea {
    width: 100%;
    border: 1px solid #dbeafe;
    background: #f8fafc;
    border-radius: 14px;
    padding: 13px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
    transition: 0.3s ease;
}

.crede-form-group input:focus,
.crede-form-group textarea:focus {
    border-color: #38bdf8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.crede-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.crede-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.22);
}

.crede-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(2, 132, 199, 0.32);
    background: linear-gradient(135deg, #075985, #0284c7);
}

.crede-contact-map-box {
    margin-top: 35px;
    padding: 28px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
    align-items: center;
}

.crede-contact-map-box img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    display: block;
}

.crede-contact-back {
    margin-top: 38px;
    text-align: center;
}

/* Responsive */
@media (max-width: 950px) {
    .crede-contact-layout,
    .crede-contact-map-box {
        grid-template-columns: 1fr;
    }

    .crede-contact-detail {
        padding: 65px 6%;
    }
}

@media (max-width: 600px) {
    .crede-contact-detail {
        padding: 55px 5%;
    }

    .crede-contact-title h2 {
        font-size: 1.65rem;
    }

    .crede-contact-card {
        padding: 20px;
        border-radius: 20px;
    }

    .crede-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1.15rem;
        border-radius: 14px;
    }

    .crede-contact-form-box {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .crede-contact-map-box {
        padding: 22px;
        border-radius: 20px;
    }

    .crede-contact-social-icons a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}
.crede-zones-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
}

.crede-zones-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #f0f9ff;
    color: #075985;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.94rem;
    font-weight: 700;
    border: 1px solid #dbeafe;
}

.crede-zones-list li i {
    color: #38bdf8;
    font-size: 0.95rem;
}

@media (max-width: 500px) {
    .crede-zones-list {
        grid-template-columns: 1fr;
    }
}


/* Alertes de succès et d'erreur */
/*--------------------------------*/
.crede-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.crede-alert.hide-alert {
    opacity: 0;
    transform: translateY(-12px);
}

.crede-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.crede-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.crede-alert i {
    font-size: 1.1rem;
}

.crede-alert-success,
.crede-alert-error {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}


/* ==============================
   PAGE CRTN DANS SITE CREDE
   Entête et pied de page CREDE
============================== */

/* ==============================
   HERO CRTN
============================== */

.crtn-showcase-hero {
    min-height: 86vh;
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 55px;
    background:
        linear-gradient(
            135deg,
            rgba(0, 40, 114, 0.76),
            rgba(0, 26, 77, 0.68)
        ),
        url("crtnEq.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

.crtn-showcase-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.14), transparent 35%);
    z-index: 0;
}

.crtn-showcase-logo,
.crtn-showcase-content {
    position: relative;
    z-index: 1;
}

.crtn-showcase-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crtn-showcase-logo img {
    width: 310px;
    height: 310px;
    object-fit: contain;
    
}

.crtn-showcase-content {
    color: #ffffff;
    text-align: left;
}

.crtn-showcase-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 22px;
}

.crtn-showcase-content h1 {
    font-size: 4rem;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 14px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.crtn-showcase-content h2 {
    font-size: 1.45rem;
    color: #dbeafe;
    font-weight: 400;
    margin-bottom: 22px;
}

.crtn-showcase-content p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 760px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

.crtn-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.crtn-main-btn,
.crtn-second-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
}

.crtn-main-btn {
    background: #ffffff;
    color: #002872f3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.crtn-second-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.crtn-main-btn:hover,
.crtn-second-btn:hover {
    transform: translateY(-4px);
}

/* ==============================
   TITRES CRTN
============================== */

.crtn-showcase-title {
    text-align: center;
    margin-bottom: 42px;
}

.crtn-showcase-title span {
    color: #002872f3;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.crtn-showcase-title h2 {
    color: #002872f3;
    font-size: 2.2rem;
    margin-top: 8px;
}

.crtn-light-title span,
.crtn-light-title h2 {
    color: #002872f3;
}

/* ==============================
   À PROPOS CRTN
============================== */

.crtn-showcase-about {
    padding: 80px 8%;
    background:
        radial-gradient(circle at top left, rgba(0, 40, 114, 0.06), transparent 35%),
        linear-gradient(180deg, #ffffff, #f6f9ff);
}

.crtn-showcase-about-card {
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(199, 215, 255, 0.85);
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(0, 40, 114, 0.10);
}

.crtn-showcase-about-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 16px;
}

.crtn-showcase-about-card p:last-child {
    margin-bottom: 0;
}

/* ==============================
   SERVICES CRTN
============================== */

.crtn-showcase-services {
    padding: 85px 8%;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(
            135deg,
            rgba(0, 40, 114, 0.86),
            rgba(0, 26, 77, 0.78)
        );
}

.crtn-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.crtn-showcase-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(199, 215, 255, 0.85);
    border-radius: 26px;
    padding: 30px 26px;
    box-shadow: 0 18px 45px rgba(0, 40, 114, 0.11);
    overflow: hidden;
    transition: 0.35s ease;
}

.crtn-showcase-card::before {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    background: rgba(0, 40, 114, 0.10);
    border-radius: 50%;
}

.crtn-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 58px rgba(0, 40, 114, 0.17);
}

.crtn-showcase-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b3a8f, #002872);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.crtn-showcase-card h3 {
    position: relative;
    z-index: 1;
    color: #002872f3;
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.crtn-showcase-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ==============================
   RÉALISATION CRTN
============================== */

.crtn-showcase-proof {
    padding: 85px 8%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92),
            rgba(234, 241, 255, 0.90)
        ),
        url("crtnDev.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.crtn-proof-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.crtn-proof-text,
.crtn-proof-box {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0, 40, 114, 0.14);
}

.crtn-proof-text h3,
.crtn-proof-box h3 {
    color: #002872f3;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.crtn-proof-text p,
.crtn-proof-box p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 14px;
}

.crtn-proof-box {
    background: linear-gradient(
        135deg,
        rgba(0, 40, 114, 0.90),
        rgba(0, 26, 77, 0.88)
    );
    color: #ffffff;
    text-align: center;
}

.crtn-proof-box i {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 18px;
}

.crtn-proof-box h3,
.crtn-proof-box p {
    color: #ffffff;
    text-align: center;
}

/* ==============================
   DOMAINES CRTN
============================== */

.crtn-showcase-domains {
    padding: 80px 8%;
    background:
        radial-gradient(circle at bottom right, rgba(0, 40, 114, 0.07), transparent 35%),
        linear-gradient(180deg, #ffffff, #f6f9ff);
}

.crtn-domain-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.crtn-domain-tags div {
    background: #eef4ff;
    color: #002872f3;
    border: 1px solid #c7d7ff;
    border-radius: 18px;
    padding: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.crtn-domain-tags div:hover {
    background: #002872f3;
    color: #ffffff;
    transform: translateY(-5px);
}

/* ==============================
   CONTACT CRTN
============================== */

.crtn-showcase-contact {
    padding: 85px 8%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92),
            rgba(234, 241, 255, 0.90)
        ),
        url("crtnDev.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.crtn-contact-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.crtn-contact-card-pro,
.crtn-contact-message-pro {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(199, 215, 255, 0.85);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0, 40, 114, 0.11);
    transition: 0.35s ease;
}

.crtn-contact-card-pro:hover,
.crtn-contact-message-pro:hover {
    box-shadow: 0 26px 58px rgba(0, 40, 114, 0.17);
    transform: translateY(-5px);
}

.crtn-contact-card-pro h3,
.crtn-contact-message-pro h3 {
    color: #002872f3;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.crtn-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #475569;
    line-height: 1.6;
}

.crtn-contact-row i {
    color: #002872f3;
    min-width: 22px;
    margin-top: 5px;
}

.crtn-contact-row a {
    color: #475569;
    text-decoration: none;
}

.crtn-contact-row a:hover {
    color: #002872f3;
    text-decoration: underline;
}

.crtn-social-pro {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.crtn-social-pro a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b3a8f, #002872);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: 0.3s ease;
}

.crtn-social-pro a:hover {
    transform: translateY(-5px) scale(1.06);
    background: #001a4d;
}

.crtn-contact-message-pro p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 14px;
}

.crtn-whatsapp-btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
}

.crtn-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

/* ==============================
   RESPONSIVE CRTN
============================== */

@media (max-width: 1100px) {
    .crtn-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crtn-domain-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .crtn-contact-panel,
    .crtn-proof-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .crtn-showcase-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 6%;
        gap: 35px;
        background-attachment: scroll;
    }

    .crtn-showcase-content {
        text-align: center;
    }

    .crtn-showcase-logo img {
        width: 230px;
        height: 230px;
    }

    .crtn-showcase-actions {
        justify-content: center;
    }

    .crtn-showcase-grid {
        grid-template-columns: 1fr;
    }

    .crtn-showcase-proof {
        background-attachment: scroll;
    }
}

@media (max-width: 600px) {
    .crtn-showcase-content h1 {
        font-size: 2.6rem;
    }

    .crtn-showcase-content h2 {
        font-size: 1.05rem;
    }

    .crtn-showcase-content p {
        font-size: 0.95rem;
    }

    .crtn-showcase-about,
    .crtn-showcase-services,
    .crtn-showcase-proof,
    .crtn-showcase-domains,
    .crtn-showcase-contact {
        padding: 60px 5%;
    }

    .crtn-showcase-title h2 {
        font-size: 1.6rem;
    }

    .crtn-showcase-about-card,
    .crtn-contact-card-pro,
    .crtn-contact-message-pro,
    .crtn-proof-text,
    .crtn-proof-box {
        padding: 24px;
        border-radius: 22px;
    }

    .crtn-domain-tags {
        grid-template-columns: 1fr;
    }

    .crtn-main-btn,
    .crtn-second-btn {
        width: 100%;
    }

    .crtn-showcase-logo img {
        width: 190px;
        height: 190px;
        padding: 16px;
    }
}


/* ==============================
   PAGE ACTUALITÉS CREDE ONG RDC
============================== */

.crede-news-hero {
    background:
        linear-gradient(
            135deg,
            rgba(7, 89, 133, 0.88),
            rgba(15, 23, 42, 0.72)
        ),
        url("environement3.jpg");
    background-size: cover;
    background-position: center;
}

.crede-news-page {
    padding: 85px 8%;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.13), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
}

.crede-news-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
}

.crede-news-title span {
    display: inline-block;
    color: var(--bleu);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.crede-news-title h2 {
    color: var(--bleu-fonce);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.crede-news-title p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.crede-news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.crede-news-item {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.10);
    border: 1px solid #dbeafe;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.crede-news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(2, 132, 199, 0.17);
    border-color: #38bdf8;
}

.crede-news-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.crede-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.crede-news-item:hover .crede-news-img img {
    transform: scale(1.08);
}

.crede-news-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
}

.crede-news-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.crede-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--bleu);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.crede-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.crede-news-content h3 {
    color: var(--bleu-fonce);
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.crede-news-content p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.crede-news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    padding: 11px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s ease;
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.22);
}

.crede-news-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #075985, #0284c7);
}

.crede-news-empty {
    max-width: 650px;
    margin: auto;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 26px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.10);
}

.crede-news-empty i {
    color: var(--bleu);
    font-size: 3rem;
    margin-bottom: 18px;
}

.crede-news-empty h3 {
    color: var(--bleu-fonce);
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.crede-news-empty p {
    color: #475569;
}

/* ==============================
   DÉTAIL ACTUALITÉ
============================== */

.crede-news-detail-page {
    padding: 85px 8%;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.13), transparent 35%),
        linear-gradient(180deg, #ffffff, #f0f9ff);
}

.crede-news-detail-card {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #dbeafe;
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.12);
    overflow: hidden;
}

.crede-news-detail-image {
    width: 100%;
    max-height: 430px;
    overflow: hidden;
}

.crede-news-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: cover;
    display: block;
}

.crede-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 28px 34px 0;
    color: var(--bleu);
    font-size: 0.9rem;
    font-weight: 700;
}

.crede-news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.crede-news-detail-card h2 {
    color: var(--bleu-fonce);
    font-size: 2rem;
    line-height: 1.3;
    padding: 18px 34px 0;
}

.crede-news-detail-content {
    padding: 24px 34px 34px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.85;
    text-align: justify;
}

.crede-news-detail-back {
    padding: 0 34px 34px;
}

/* Responsive */
@media (max-width: 1100px) {
    .crede-news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .crede-news-list {
        grid-template-columns: 1fr;
    }

    .crede-news-page,
    .crede-news-detail-page {
        padding: 60px 5%;
    }

    .crede-news-title h2 {
        font-size: 1.6rem;
    }

    .crede-news-img {
        height: 190px;
    }

    .crede-news-detail-card h2 {
        font-size: 1.45rem;
        padding: 18px 22px 0;
    }

    .crede-news-detail-meta,
    .crede-news-detail-content,
    .crede-news-detail-back {
        padding-left: 22px;
        padding-right: 22px;
    }

    .crede-news-btn {
        width: 100%;
    }
}

/* ----------------------------------------------------
Actualités
------------------------------------------------------*/
.news-image {
    height: 220px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-image i {
    font-size: 3rem;
    color: #ffffff;
}

.news-date,
.news-category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bleu);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.news-category {
    margin-left: 8px;
}

.news-more {
    text-align: center;
    margin-top: 35px;
}

@media (max-width: 600px) {
    .news-date,
    .news-category {
        display: flex;
        margin-left: 0;
    }

    .news-image {
        height: 190px;
    }
}

/* ==============================
   META HERO ACTUALITÉ
============================== */

.hero-news-small-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hero-news-small-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e0f2fe;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 5px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-news-small-meta i {
    font-size: 0.75rem;
    color: #38bdf8;
}

/* ==============================
   SUIVEZ-NOUS / PARTAGE ACTUALITÉ
============================== */

.crede-news-follow {
    padding: 22px 34px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.crede-news-follow span,
.crede-news-share-box span {
    color: var(--bleu-fonce);
    font-size: 0.95rem;
    font-weight: 800;
}

.crede-news-follow-icons,
.crede-news-share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.crede-news-follow-icons a,
.crede-news-share-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--bleu-fonce);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.crede-news-follow-icons a:hover,
.crede-news-share-icons a:hover {
    background: linear-gradient(135deg, #38bdf8, #075985);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bloc de partage dans l'article */
.crede-news-share-box {
    padding: 0 34px 34px;
    margin-top: 8px;
}

.crede-news-share-box span {
    display: block;
    margin-bottom: 10px;
}

/* Bouton retour hors section */
.outside-back {
    text-align: center;
    margin: 28px auto 0;
    padding: 0 8%;
}

/* Responsive */
@media (max-width: 700px) {
    .hero-news-small-meta {
        gap: 8px;
    }

    .hero-news-small-meta span {
        font-size: 0.72rem;
        padding: 5px 9px;
    }

    .crede-news-follow {
        padding: 20px 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .crede-news-share-box {
        padding: 0 22px 28px;
    }

    .crede-news-follow-icons a,
    .crede-news-share-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}



/* ==============================
   AUTRES ACTUALITÉS DE MÊME CATÉGORIE
============================== */

.crede-related-news {
    max-width: 1200px;
    margin: 55px 8% ;
}

.crede-related-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 35px;
}

.crede-related-title span {
    display: inline-block;
    color: var(--bleu);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.crede-related-title h2 {
    color: var(--bleu-fonce);
    font-size: 2rem;
    margin-bottom: 10px;
}

.crede-related-title p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
}

.crede-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.crede-related-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #dbeafe;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.10);
    transition: 0.35s ease;
}

.crede-related-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 55px rgba(2, 132, 199, 0.16);
    border-color: #38bdf8;
}

.crede-related-image {
    height: 180px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    overflow: hidden;
}

.crede-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.crede-related-card:hover .crede-related-image img {
    transform: scale(1.08);
}

.crede-related-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.8rem;
}

.crede-related-content {
    padding: 22px;
}

.crede-related-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--bleu);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.crede-related-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.crede-related-content h3 {
    color: var(--bleu-fonce);
    font-size: 1.08rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.crede-related-content p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.crede-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bleu);
    font-weight: 900;
    text-decoration: none;
    font-size: 0.9rem;
}

.crede-related-link:hover {
    color: var(--bleu-fonce);
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .crede-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .crede-related-grid {
        grid-template-columns: 1fr;
    }

    .crede-related-title h2 {
        font-size: 1.5rem;
    }

    .crede-related-image {
        height: 190px;
    }
}

/* =====================================================
   CORRECTION AFFICHAGE DÉTAIL ACTUALITÉ
   À METTRE TOUT À LA FIN DE style.css
===================================================== */

/* Petit paragraphe catégorie + vues dans le hero */
.page-detail-hero.crede-news-hero .page-detail-content p.hero-news-small-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-top: 8px !important;
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
}

.page-detail-hero.crede-news-hero .page-detail-content p.hero-news-small-meta span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 4px 9px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #e0f2fe !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
}

.page-detail-hero.crede-news-hero .page-detail-content p.hero-news-small-meta i {
    font-size: 0.68rem !important;
    color: #38bdf8 !important;
}

/* Bloc Suivez-nous sur */
.crede-news-detail-card .crede-news-follow {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    padding: 22px 34px 0 !important;
}

.crede-news-detail-card .crede-news-follow > span {
    color: var(--bleu-fonce) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
}

.crede-news-follow-icons {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    flex-wrap: wrap !important;
}

.crede-news-follow-icons a {
    width: 41px !important;
    height: 41px !important;
    border-radius: 50% !important;
    background: #e0f2fe !important;
    color: var(--bleu-fonce) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 0.82rem !important;
    transition: 0.3s ease !important;
}

.crede-news-follow-icons a:hover {
    background: linear-gradient(135deg, #38bdf8, #075985) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* Bloc Partager sur */
.crede-news-detail-card .crede-news-share-box {
    padding: 0 34px 34px !important;
    margin-top: 12px !important;
}

.crede-news-detail-card .crede-news-share-box > span {
    display: block !important;
    color: var(--bleu-fonce) !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.crede-news-share-icons {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.crede-news-share-icons a {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #e0f2fe !important;
    color: var(--bleu-fonce) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: 0.3s ease !important;
}

.crede-news-share-icons a:hover {
    background: linear-gradient(135deg, #38bdf8, #075985) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* Bouton retour placé hors de la section détail */
.crede-news-detail-back.outside-back {
    text-align: center !important;
    margin: 28px !important;
    padding: 0 8% !important;
}

/* Responsive */
@media (max-width: 700px) {
    .page-detail-hero.crede-news-hero .page-detail-content p.hero-news-small-meta {
        justify-content: center !important;
        gap: 7px !important;
    }

    .page-detail-hero.crede-news-hero .page-detail-content p.hero-news-small-meta span {
        font-size: 0.66rem !important;
        padding: 4px 8px !important;
    }

    .crede-news-detail-card .crede-news-follow {
        padding: 20px 22px 0 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .crede-news-detail-card .crede-news-share-box {
        padding: 0 22px 28px !important;
    }

    .crede-news-follow-icons a,
    .crede-news-share-icons a {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.98rem !important;
    }
}