

:root {
    --bg-color: #0033CC;
    --text-color: #FFFFFF;
    --barre-navigation-bg: #001F99;
    --barre-navigation-text: #f5f8f9;
    --primary-gradient: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    --secondary-gradient: linear-gradient(135deg, #00BFFF 0%, #00D9FF 100%);
    --accent-color: #00D9FF;
    --terracotta: #E07A5F;
    --glass-bg: rgba(0, 217, 255, 0.08);
    --glass-border: rgba(0, 217, 255, 0.2);
    --card-hover-bg: rgba(0, 217, 255, 0.15);
    --neon-blue: #00D9FF;
    --neon-purple: #0066FF;
    --dernier-gradient: linear-gradient(135deg, #FFFFFF 0%, #00D9FF 100%);
}

.section-light {
    --bg-color: #FFFFFF;
    --text-color: #0033CC;
    --barre-navigation-text: #0033CC;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.section-light .titre-section {
    color: var(--text-color);
}

.section-light .motif-fond-bruit {
    opacity: 0.05;
    mix-blend-mode: normal;
}

.section-light .intro-bruit,
.section-light .desc-bruit,
.section-light .contenu-carte span,
.section-light .realisations-cta p,
.section-light .glass-panel h2,
.section-light .glass-panel p {
    color: var(--text-color);
}

.section-light .card-2 {
    background: var(--barre-navigation-bg);
    border: 1px solid var(--glass-border);
}

.section-light .card-2 .contenu-carte span {
    color: #FFFFFF;
}

.section-light .card-2 .contenu-carte small {
    color: var(--accent-color);
}

.section-light .glass-panel {
    background: rgba(0, 51, 204, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 51, 204, 0.2);
}

.section-light .glass-panel h2,
.section-light .glass-panel p {
    color: #FFFFFF;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

body.loaded {
    opacity: 1;
    transform: none !important;
}

body.exiting {
    opacity: 0;
    transform: translateX(-20px);
}

.degrade-fond {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
}

.degrade-fond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 217, 255, 0.05) 35px, rgba(0, 217, 255, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 102, 255, 0.05) 35px, rgba(0, 102, 255, 0.05) 70px);
    opacity: 0.5;
}

@keyframes gradientShift {

    0%,
    100% {
        background:
            radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    }

    50% {
        background:
            radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 30% 80%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 60% 40%, rgba(0, 102, 255, 0.2) 0%, transparent 60%);
    }
}

.icones-flottantes {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.icone-flottante {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-rotate 20s infinite ease-in-out;
}

.icon-1 {
    top: 15%;
    left: 10%;
    color: #00D9FF;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 15%;
    color: #0066FF;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    left: 5%;
    color: #00BFFF;
    animation-delay: 4s;
}

.icon-4 {
    top: 70%;
    right: 20%;
    color: #00D9FF;
    animation-delay: 1s;
}

.icon-5 {
    top: 40%;
    right: 8%;
    color: #0066FF;
    animation-delay: 3s;
}

.icon-6 {
    top: 80%;
    left: 15%;
    color: #00BFFF;
    animation-delay: 5s;
}

@keyframes float-rotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.barre-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--barre-navigation-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.barre-navigation.verre-liquide {
    background: rgba(0, 31, 153, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 1rem 5%;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--barre-navigation-text);
    white-space: nowrap;
}

.liens-navigation {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.liens-navigation li {
    position: relative;
    z-index: 1;
}

.liens-navigation a {
    color: var(--barre-navigation-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    white-space: nowrap;
}

.liens-navigation a:hover,
.liens-navigation a.active {
    color: #fff;
    background: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.defiler-bas {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 10;
    transition: color 0.3s;
}

.defiler-bas:hover {
    color: var(--accent-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -15px);
    }

    60% {
        transform: translate(-50%, -7px);
    }
}

.bento-largeur-max {
    grid-column: 1 / -1;
    grid-row: span 2;
    min-height: 400px;
}

.menu-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.ligne-menu-burger {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--barre-navigation-text);
    border-radius: 3px;
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
}

.menu-burger.open .ligne-menu-burger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-burger.open .ligne-menu-burger:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-burger.open .ligne-menu-burger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 18, 51, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-mobile.open {
    transform: translateX(0);
}

.menu-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.menu-mobile ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lien-mobile {
    display: block;
    padding: 1.2rem 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
    transition: background 0.25s, color 0.25s;
}

.lien-mobile:hover,
.lien-mobile.active-mobile {
    background: rgba(0, 217, 255, 0.15);
    color: var(--accent-color);
}

.section-accueil {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    text-align: center;
}

.contenu-accueil {
    max-width: 900px;
    z-index: 2;
}

.contenu-accueil h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contenu-accueil p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.bouton-action {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.bouton-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
}

.orbe-lumineux {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-purple), var(--neon-blue));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
}

.section-bruit {
    padding: 8rem 10%;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motif-fond-bruit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(motifafricain.jpg);
    opacity: 0.1;
    z-index: 0;
    mix-blend-mode: multiply;
}

.conteneur-bruit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: center;
}

.contenu-bruit {
    padding-right: 2rem;
}

.etiquette-bruit {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.contenu-bruit h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.surligne-bruit {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.intro-bruit {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.grille-bruit {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.element-bruit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.element-bruit i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: var(--glass-bg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
    border: 1px solid var(--glass-border);
}

.element-bruit:hover i {
    transform: rotate(15deg) scale(1.1);
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.element-bruit span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.desc-bruit {
    color: var(--barre-navigation-text);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.action-bruit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.action-bruit:hover {
    transform: translateX(5px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
}

.make-noise-visual {
    position: relative;
    height: 600px;
}

.carte-visuelle {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-1 {
    width: 85%;
    height: 90%;
    top: 0;
    right: 0;
    z-index: 1;
    border: 1px solid var(--glass-border);
}

.card-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.make-noise-visual:hover .card-1 img {
    transform: scale(1.05);
}

.card-2 {
    width: 200px;
    height: 200px;
    bottom: 20px;
    left: 0;
    z-index: 2;
    background: var(--barre-navigation-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    animation: float-card 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.contenu-carte {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contenu-carte i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.contenu-carte span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
}

.contenu-carte small {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--barre-navigation-text);
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 900px) {
    .conteneur-bruit {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contenu-bruit {
        padding-right: 0;
        text-align: center;
    }

    .intro-bruit {
        border-left: none;
        padding-left: 0;
    }

    .grille-bruit {
        justify-content: center;
    }

    .make-noise-visual {
        height: 400px;
    }

    .card-2 {
        width: 150px;
        height: 150px;
    }
}

.section-services {
    padding: 5rem 10%;
}

.titre-section {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.titre-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.grille-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .grille-services {
        grid-template-columns: 1fr;
    }
}

.carte-service {
    background-color: #0033CC;
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.carte-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.carte-service:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.carte-service:hover::before {
    opacity: 0.1;
}

.conteneur-icone {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    transition: transform 0.4s ease;
}

.carte-service:hover .conteneur-icone {
    transform: scale(1.2) rotate(5deg);
    color: #FFFFFF;
    text-shadow: 0 0 20px var(--neon-blue);
}

.carte-service h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.carte-service p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bouton-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.carte-service:hover .bouton-service {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.bouton-service i {
    transition: transform 0.3s;
}

.carte-service:hover .bouton-service i {
    transform: translateX(4px);
}

.section-pourquoi {
    padding: 6rem 10%;
    background: transparent;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.conteneur-pourquoi {
    max-width: 1400px;
    margin: 0 auto;
}

.entete-pourquoi {
    text-align: center;
    margin-bottom: 4rem;
}

.sous-titre-section {
    color: var(--barre-navigation-text);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.ligne-chronologie {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--glass-border);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.element-chronologie {
    padding: 8px 40px;
    
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.element-chronologie.left {
    left: 0;
    text-align: right;
}

.element-chronologie.right {
    left: 50%;
    text-align: left;
}

.element-chronologie::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid var(--bg-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--accent-color);
    transition: all 0.3s ease;
}

.element-chronologie.left::after {
    right: -10px;
}

.element-chronologie.right::after {
    left: -10px;
}

.element-chronologie:hover::after {
    background: #FFFFFF;
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--accent-color);
}

.contenu-chronologie {
    padding: 1.2rem 1.5rem;
    
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.contenu-chronologie:hover {
    transform: translateY(-5px);
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icone-chronologie {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.6rem;
    display: inline-block;
}

.contenu-chronologie h3 {
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.contenu-chronologie p {
    color: var(--barre-navigation-text);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .ligne-chronologie {
        left: 30px;
    }

    .element-chronologie {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .element-chronologie.left,
    .element-chronologie.right {
        left: 0;
        text-align: left;
    }

    .element-chronologie.left::after,
    .element-chronologie.right::after {
        left: 20px;
    }
}

.section-realisations {
    padding: 8rem 10%;
    background: var(--bg-color);
}

.entete-portfolio {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.titre-portfolio {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.sous-titre-portfolio {
    font-size: 1.2rem;
    color: var(--barre-navigation-text);
}

.portfolio-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.element-bento {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-haut {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.image-bento {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fond-bento {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 31, 153, 0.9), rgba(0, 31, 153, 0.1) 60%, transparent);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.bento-content {
    transform: translateY(15px);
    transition: transform 0.5s ease;
}

.categorie-bento {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.nom-bento {
    font-size: 1.8rem;
    color: #FFF;
    font-weight: 600;
    margin: 0;
}

.bento-large .nom-bento {
    font-size: 2.5rem;
}

.icone-bento {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.2rem;
    transform: translate(-15px, 15px) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.element-bento:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
}

.element-bento:hover .image-bento {
    transform: scale(1.08);
}

.element-bento:hover .fond-bento {
    background: linear-gradient(to top, rgba(0, 31, 153, 0.95), rgba(0, 31, 153, 0.3) 50%, transparent);
}

.element-bento:hover .bento-content {
    transform: translateY(0);
}

.element-bento:hover .icone-bento {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    background: var(--primary-gradient);
}

.pied-portfolio {
    text-align: center;
    margin-top: 5rem;
}

@media (max-width: 1024px) {
    .portfolio-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-haut,
    .bento-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .portfolio-bento {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-haut,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .titre-portfolio {
        font-size: 2.5rem;
    }
}

/* ═══════════════════════════════════════
   CONTACT — REDESIGN CRÉATIF COMPLET
═══════════════════════════════════════ */
.nouvelle-section-contact {
    position: relative;
    padding: 7rem 5% 6rem;
    overflow: hidden;
    background: linear-gradient(160deg, #020e3a 0%, #001270 40%, #003380 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: shapePulse 8s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00D9FF, #0066FF);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0066FF, #00BFFF);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00D9FF, transparent);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
    opacity: 0.08;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ffffff, transparent);
    top: 20%;
    right: 25%;
    animation-delay: 1s;
    opacity: 0.05;
}

@keyframes shapePulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.12;
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 0.18;
    }
}

.contact-new-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.contact-gauche-inner {
    padding-right: 2rem;
}

.contact-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
}

.titre-contact {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.accent-titre-contact {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sous-texte-contact {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: justify;
    hyphens: auto;
}

/* Détails de contact */
.details-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.element-detail-contact {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icone-detail-contact {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.element-detail-contact:hover .icone-detail-contact {
    background: var(--accent-color);
    color: #001270;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.etiquette-detail {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.valeur-detail {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.valeur-detail:hover {
    color: var(--accent-color);
}

.reseaux-contact {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.cbouton-reseau {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cbouton-reseau:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cbouton-reseau.tiktok:hover {
    background: #010101;
    border-color: #010101;
}

.cbouton-reseau.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.cbouton-reseau.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.cbouton-reseau.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2.8rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.titre-carte-formulaire {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.4rem;
}

.sous-titre-carte-formulaire {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.nouveau-formulaire-contact {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.groupe-champ {
    position: relative;
}

.groupe-champ input,
.groupe-champ textarea,
.groupe-champ select {
    width: 100%;
    padding: 1.3rem 1.2rem 0.6rem 3rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.groupe-champ textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.groupe-champ label {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.25s ease;
    background: transparent;
}

.groupe-champ:has(textarea) label {
    top: 1.4rem;
    transform: none;
}

.groupe-champ input:focus~label,
.groupe-champ input:not(:placeholder-shown)~label,
.groupe-champ select:focus~label,
.groupe-champ select.has-value~label,
.groupe-champ textarea:focus~label,
.groupe-champ textarea:not(:placeholder-shown)~label {
    top: 0.55rem;
    transform: none;
    font-size: 0.72rem;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.groupe-champ:has(textarea) input:focus~label,
.groupe-champ:has(textarea) textarea:focus~label {
    top: 0.45rem;
    transform: none;
}

.icone-champ {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    transition: color 0.3s;
    pointer-events: none;
}

.groupe-champ:has(textarea) .icone-champ {
    top: 1.6rem;
    transform: none;
}

.fleche-selection {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    pointer-events: none;
    transition: transform 0.3s;
}

.groupe-champ input:focus,
.groupe-champ textarea:focus,
.groupe-champ select:focus {
    background: rgba(0, 217, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.15);
}

.groupe-champ input:focus~.icone-champ,
.groupe-champ textarea:focus~.icone-champ,
.groupe-champ select:focus~.icone-champ {
    color: var(--accent-color);
}

.groupe-champ input::placeholder,
.groupe-champ textarea::placeholder {
    color: transparent;
}

.groupe-champ select option {
    background: #001270;
    color: #FFFFFF;
}

.erreur-champ {
    display: none;
    font-size: 0.78rem;
    color: #ff6b6b;
    margin-top: 0.35rem;
    padding-left: 0.5rem;
}

.groupe-champ.error input,
.groupe-champ.error textarea,
.groupe-champ.error select {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.groupe-champ.error .erreur-champ {
    display: block;
}

.groupe-champ.error .icone-champ {
    color: #ff6b6b;
}

.groupe-champ.success input,
.groupe-champ.success textarea,
.groupe-champ.success select {
    border-color: #51cf66;
    box-shadow: 0 0 0 3px rgba(81, 207, 102, 0.15);
}

.groupe-champ.success .icone-champ {
    color: #51cf66;
}

.nouveau-bouton-envoi {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.15rem 2rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.nouveau-bouton-envoi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00D9FF, #0066FF);
    opacity: 0;
    transition: opacity 0.35s;
}

.nouveau-bouton-envoi:hover::before {
    opacity: 1;
}

.nouveau-bouton-envoi:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 102, 255, 0.5);
}

.nouveau-bouton-envoi:active {
    transform: translateY(0);
}

.texte-bouton,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nouveau-bouton-envoi.loading .texte-bouton,
.nouveau-bouton-envoi.loading .btn-icon {
    display: none;
}

.nouveau-bouton-envoi.loading .btn-spinner {
    display: block;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.8rem;
    background: rgba(81, 207, 102, 0.12);
    border: 1px solid rgba(81, 207, 102, 0.3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #51cf66;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-success.visible {
    display: flex;
}

/* Responsive contact */
@media (max-width: 960px) {
    .contact-new-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-gauche-inner {
        padding-right: 0;
        text-align: center;
    }

    .titre-contact {
        font-size: 2.6rem;
    }

    .details-contact {
        align-items: center;
    }

    .element-detail-contact {
        justify-content: center;
    }

    .reseaux-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 1.8rem;
    }

    .titre-contact {
        font-size: 2rem;
    }
}

.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fabPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both 1.5s;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

@keyframes fabPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.fondu-haut {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

.animer-defilement {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animer-defilement.est-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .titre-section {
        font-size: 2.2rem;
    }

    .section-accueil {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 100px;
    }

    .contenu-accueil h1 {
        font-size: 2.5rem;
    }

    .orbe-lumineux {
        width: 200px;
        height: 200px;
        margin-top: 3rem;
    }

    .animer-defilement {
        
    }

    .liens-navigation {
        display: none;
    }

    .menu-burger {
        display: flex;
    }

    .menu-mobile {
        display: block;
    }
}

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

.conteneur-avis-ultra {
    position: relative;
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 5%;
    z-index: 10;
}

.grille-avis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.carte-avis {
    background: rgba(20, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carte-avis:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
}

.carte-avis-vedette {
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(25, 30, 50, 0.8) 0%, rgba(15, 20, 35, 0.9) 100%);
    border: 1px solid rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
    z-index: 2;
}

.carte-avis-vedette:hover {
    transform: scale(1.05) translateY(-10px);
}

.calque-bruit-avis {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.lueur-avis {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.haut-avis,
.contenu-avis,
.pied-avis {
    position: relative;
    z-index: 1;
}

.haut-avis {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.auteur-avis {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auteur-avis img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.meta-avis h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.meta-avis span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.plateforme-avis {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.plateforme-avis i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    display: block;
}

.etoiles-avis {
    color: #FFB400;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.contenu-avis h5 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contenu-avis p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.pied-avis {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.badge-avis {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #00B67A;
    
    font-weight: 600;
    background: rgba(0, 182, 122, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .grille-avis {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carte-avis-vedette {
        transform: scale(1);
    }

    .carte-avis-vedette:hover {
        transform: translateY(-5px);
    }
}