
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');
:root {
    --bg-dark: #0a0a0a;
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-purple: #8000ff;
    --neon-blue: #0080ff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    --gradient-2: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta));
    --gradient-3: linear-gradient(135deg, #00FFFF, #8000FF, #FF00FF);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;
    background-color: #000 !important;
    color: white !important;
    overflow-x: hidden;
    font-family: "Inter", sans-serif !important;
    position: relative;
    z-index: 0;
}





/******************************** SCROLL BAR *********************************/
/******************************** SCROLL BAR *********************************/
/******************************** SCROLL BAR *********************************/


/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15); /* fond encore plus discret */
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(
            to bottom,
            rgba(0, 255, 255, 0.4) 0%,
            rgba(128, 0, 255, 0.75) 100%
    );
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.35);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
            to bottom,
            rgba(0, 255, 255, 0.55),
            rgba(128, 0, 255, 0.95)
    );
    box-shadow: 0 0 10px rgba(128, 0, 255, 0.6);
}

/******************************** SCROLL BAR *********************************/
/******************************** SCROLL BAR *********************************/
/******************************** SCROLL BAR *********************************/

.ai-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background:
            radial-gradient(circle at 20% 80%, rgba(0, 136, 255, 0.07) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(0, 51, 102, 0.05) 0%, transparent 60%),
            #000000; /* base noire profonde */
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}



.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
    background:
            radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1), transparent),
            radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.1), transparent);
    animation: pulseBG 10s ease-in-out infinite alternate;
}

/* ANIMATIONS FLUIDES */
@keyframes backgroundPulse {
    0% { opacity: 0.15; }
    100% { opacity: 0.4; }
}


@keyframes pulseBG {
    0% {
        background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.15), transparent),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.15), transparent);
    }
    100% {
        background: radial-gradient(circle at 40% 60%, rgba(128, 0, 255, 0.2), transparent),
        radial-gradient(circle at 60% 40%, rgba(0, 255, 255, 0.2), transparent);
    }
}

/* PARTICULES */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--neon-cyan);
    animation: floatParticle linear infinite;
    opacity: 0.7;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    100% {
        transform: translateY(-10vh) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

h2 {
    font-family: "Space Grotesk", sans-serif !important;
    color: white;
}

/*********************************************************************************************** NAVBAR ******************************************************************/
.glass-navbar {
    background: rgba(10, 10, 10, 0.19);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Logo */
.logo {
    width: 110px;
    height: auto;
    transition: transform 0.4s ease;
}
.logo:hover {
    animation: glow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(210, 221, 225, 0.8));
}

/* Nav links */
.nav-link {
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1.5rem;

    /*background-image: linear-gradient(*/
    /*        90deg,*/
    /*        #40E0FF 25%,*/
    /*        #8000ff 45%,*/
    /*        #ffffff 50%*/
    /*);*/
    background-image: linear-gradient(
    90deg,
    white 100%,
    white 100%
    );
    background-size: 200% auto;
    background-position: right center;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    transition: background-position 0.5s ease, -webkit-text-fill-color 0.5s ease, color 0.5s ease;
}

.nav-link:hover {
    background-position: left center;
}



.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(
            to right,
            #00ffff 0%,
            #8000ff 100%
    );
    transition: width 0.4s ease-in-out;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active link indicator (optional) */
.nav-link.active::after {
    width: 100%;
}


/* Toggler icon override (Bootstrap) */
.navbar-toggler {
    border: none;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/**************************************************************************** HERO SECTION ********************************************************************************/
/**************************************************************************** HERO SECTION ********************************************************************************/
/**************************************************************************** HERO SECTION ********************************************************************************/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 150%;
    height: 150%;
    animation: pulseBG 10s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes pulseBG {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

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

.hero-content h1 {
    font-family: 'Space Grotesk', serif !important;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    animation: wave 8s ease-in-out infinite;
}

/* Word-level wave */
.wave-text .word {
    display: inline-block;
    margin-right: 0.5rem;
    animation: wave 8s ease-in-out infinite;
}

/* Highlight pour PME */
.wave-text .highlight {
    display: inline-block;
    position: relative;
    color: white;
    animation: wave-pme 8s ease-in-out infinite;
    animation-delay: calc(0.3s * 3);
}

/* Wave animation pour les mots */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-10px);
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
}


@keyframes wave-pme {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-6px); /* Lower height for PME */
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
}


.wave-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: white;
    background-size: 200%;
    background-position: 0% 50%;
    animation: glow 8s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
}


.wave-text .highlight::after {
    content: 'PME';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 128, 255, 0.6), rgba(128, 0, 255, 0.65));
    background-size: 200%;
    background-position: 0% 50%;
    animation: glow 8s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(128, 0, 255, 0.8);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Glow animation */
@keyframes glow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 200% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Sparkle effect */
.wave-text::before,
.wave-text .word:nth-child(2)::after,
.wave-text .word:nth-child(4)::after,
.wave-text .highlight::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s ease-in-out infinite;
}

/* Position sparkles */
.wave-text::before {
    top: -10px;
    left: 20%;
    animation-delay: 1.2s;
}
.wave-text .word:nth-child(2)::after {
    top: 10px;
    left: 80%;
    animation-delay: 0.6s;
}
.wave-text .word:nth-child(4)::after {
    top: -15px;
    left: 40%;
    animation-delay: 2.8s;
}
.wave-text .highlight::before {
    top: -8px;
    left: 50%;
    animation-delay: 1.8s;
}

/* Sparkle animation */
@keyframes sparkle {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    10%, 20% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
}

.hero-buttons a {
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Space Grotesk', serif !important;
}

.btn-primary {
    padding: 1.2rem 2.8rem;
    background: linear-gradient(
            to right,
            rgba(0, 255, 255, 0.45) 0%,
            rgba(128, 0, 255, 0.84) 100%
    );
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(64, 224, 255, 0.3);
    border: none;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(64, 224, 255, 0.4);
}

.btn-secondary {
    padding: 1.2rem 2.8rem;
    background: transparent;
    color: #40E0FF;
    text-decoration: none;
    border: 2px solid #40E0FF;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: linear-gradient(
            to right,
            rgba(0, 255, 255, 0.45) 0%,
            rgba(128, 0, 255, 0.55) 100%
    );
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(64, 224, 255, 0.4);
}

.image-frame {
    left: 15%;
    position: relative;
    display: inline-block;
}

.image-frame img {
    width: 110%;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(64, 224, 255, 0.15));
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* Icônes flottantes futuristes */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.2), rgba(128, 0, 255, 0.3));
    border: 1px solid rgba(64, 224, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #40E0FF;
    font-size: 16px;
    animation: floatIcon 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(64, 224, 255, 0.2);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.floating-icon:nth-child(3) {
    top: 35%;
    left: 50%;
    animation-delay: -4s;
}

.floating-icon:nth-child(4) {
    bottom: 25%;
    right: 10%;
    animation-delay: -1s;
}

.floating-icon:nth-child(5) {
    bottom: 8%;
    left: 20%;
    animation-delay: -3s;
}

.floating-icon:nth-child(6) {
    bottom: 5%;
    right: 35%;
    animation-delay: -5s;
}


@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-8px) rotate(240deg);
        opacity: 0.7;
    }
}

/* Responsive pour les icônes */
@media (max-width: 991.98px) {
    .floating-icons {
        display: none;
    }
}

/* Par défaut (desktop & tous les écrans) */
.wave-desktop {
    display: block;
}

.wave-mobile {
    display: none;
}

/* Mobile : <768px */
@media (max-width: 767.98px) {
    .wave-desktop {
        display: none;
    }

    .wave-mobile {
        display: block;
    }

    .hero-content h1 {
        font-size: 3.3rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-buttons a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .orb1, .orb2 {
        width: 150px;
        height: 150px;
    }
}

/* Mobile intermédiaire : 550px - 767.98px */
@media (min-width: 550px) and (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 3.3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-buttons a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .orb1, .orb2 {
        width: 150px;
        height: 150px;
    }
}

/* Très petits écrans : <550px */
@media (max-width: 549.99px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-buttons a {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}


/* Tablettes */
@media (min-width: 768px) and (max-width: 991.98px) {

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Ecrans plus large (ex: ipad pro) */
@media (min-width: 992px) {
    .hero-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}

/**************************************************************************** FIN HERO SECTION ********************************************************************************/
/**************************************************************************** FIN HERO SECTION ********************************************************************************/
/**************************************************************************** FIN HERO SECTION ********************************************************************************/

/**************************************************************************** POURQUOI IAP SECTION ********************************************************************************/
/**************************************************************************** POURQUOI IAP SECTION ********************************************************************************/
/**************************************************************************** POURQUOI IAP SECTION ********************************************************************************/
.section-pourquoi {
    background-color: rgba(0, 0, 0, 0.48);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    z-index: 0;
}

.section-pourquoi .animated-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.8;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(64, 224, 255, 0.2) 2px, transparent 2px),
            linear-gradient(90deg, rgba(64, 224, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: gridMove 8s linear infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 20px 20px; }
}

.title-pourquoi {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
}

.logotxt {
    width: 380px;
    position: relative;
    top: -12px;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.lead {
    font-size: 1.15rem;
    color: #ddd;
    line-height: 1.8;
}

.feature-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.glow-icon:hover {
    transform: translateY(-4px);
}

.oval-video {
    position: relative;
    bottom: 40px !important;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.25);
    animation: float 5s ease-in-out infinite;
    transition: transform 0.4s ease;
    overflow: hidden;
    border-radius: 0;
}

.oval-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.oval-video:hover {
    transform: scale(1.03);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 992px) {
    .logotxt { width: 250px;
        top: -6px;}
    .title-pourquoi { font-size: 2.2rem; padding-bottom: 2rem; }
    .lead { font-size: 1rem; }
    .feature-icons { grid-template-columns: 1fr; }
}


/**************************************************************************** FIN POURQUOI IAP SECTION ********************************************************************************/
/**************************************************************************** FIN POURQUOI IAP SECTION ********************************************************************************/
/**************************************************************************** FIN POURQUOI IAP SECTION ********************************************************************************/

/**************************************************************************** EXPERTISES ********************************************************************************/
/**************************************************************************** EXPERTISES ********************************************************************************/
/**************************************************************************** EXPERTISES ********************************************************************************/
.title_expertises {
    font-size: 3rem;
}


.services {
    position: relative;
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.services .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.services .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(64, 224, 255, 0.2) 2px, transparent 2px),
            linear-gradient(90deg, rgba(64, 224, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: gridMove 8s linear infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.services .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: float 5s ease-in-out infinite;
}

.services .orb1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.services .orb2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

.services .orb3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.2) 0%, transparent 70%);
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.services-container {
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 3rem;
    font-family: 'Space Grotesk', serif !important;
    font-weight: 800;
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(64, 224, 255, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 100%;
    margin-bottom: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:linear-gradient(
            to right,
            rgba(0, 255, 255, 0.05) 0%,
            rgba(128, 0, 255, 0.05) 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: #40E0FF;
    background: linear-gradient(
            to right,
            rgba(0, 255, 255, 0.05) 0%,
            rgba(128, 0, 255, 0.05) 100%);;
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);

    .service-icon {
        color: white;
        transform: scale(1.1);

    }
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(
            135deg,
            #00ffff 0%,
            #00c8ff 40%,
            #8000ff 100%
    );
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6), 0 0 20px rgba(128, 0, 255, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.service-card h3 {
    font-size: 1.4rem;
    font-family: 'Space Grotesk', serif !important;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Responsive mobile */
@media (max-width: 576px) {
    .title_expertises {
        font-size: 2rem;
    }
    .services {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .services .orb1, .services .orb2, .services .orb3 {
        width: 80px;
        height: 80px;
        filter: blur(20px);
    }
}

/* Responsive tablette */
@media (min-width: 577px) and (max-width: 991px) {
    .titre_expertises {
        font-size: 2rem;
    }
    .services {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .services .orb1, .services .orb2, .services .orb3 {
        width: 120px;
        height: 120px;
        filter: blur(25px);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .services {
        padding: 6rem 0;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .section-header p {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

/* Pour que les cards aient la même hauteur */
.res {
    display: flex;
    flex-wrap: wrap;
}

.col-12, .col-md-6, .col-lg-4 .cols {
    display: flex;
    flex-direction: column;}
/**************************************************************************** FIN EXPERTISES ********************************************************************************/
/**************************************************************************** FIN EXPERTISES ********************************************************************************/
/**************************************************************************** FIN EXPERTISES ********************************************************************************/

/**************************************************************************** SOLUTIONS ********************************************************************************/
/**************************************************************************** SOLUTIONS ********************************************************************************/
/**************************************************************************** SOLUTIONS ********************************************************************************/

.titre_solutions {
    font-size: 3rem;
}


.solutions {
    background-color: rgba(0, 0, 0, 0.48);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.solutions .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.solutions .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(64, 224, 255, 0.2) 2px, transparent 2px),
            linear-gradient(90deg, rgba(64, 224, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: gridMove 8s linear infinite;
    opacity: 0.6;
}

.solutions .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: float 5s ease-in-out infinite;
}

.solutions .orb1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.solutions .orb2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

.solutions .row.align-items-start {
    align-items: flex-start;
}

.solution-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 255, 0.49);
    border-radius: 15px;
    /*transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: auto;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: #40E0FF;
    background: linear-gradient(
            to right,
            rgba(0, 255, 255, 0.05) 0%,
            rgba(128, 0, 255, 0.05) 100%);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);
}


.col-12.col-md-4:nth-child(1) .solution-card:hover {
    transform: translateX(-10px) translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.3);
}


.col-12.col-md-4:nth-child(2) .solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 25px rgba(64, 224, 255, 0.3);
}


.col-12.col-md-4:nth-child(3) .solution-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.3);
}

.solutions .solution-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutions .solution-title {
    font-size: 2rem;
    font-family: 'Space Grotesk', serif !important;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

p.lead{
    color: rgba(255, 255, 255, 0.7);
}

.icon-big {
    color: transparent;
    /*background: linear-gradient(135deg, #00F5A0, #00D9F5);*/
    /*background: linear-gradient(135deg, #00E0FF, #FF00C8);*/
    /*background: linear-gradient(135deg, #4A00E0, #00C9FF);*/
    background: linear-gradient(135deg, #3DDCFF, #6B00F5);
    -webkit-background-clip: text;
    background-clip: text;
    box-shadow: var(--gradient-1);
    font-size: 40px;
    transition: all 0.3s ease;
}


.solution-card:hover .fa-rocket.icon-big {
    animation: rocketLaunch 0.8s ease-out infinite alternate;
}


.solution-card:hover .fa-crown.icon-big {
    animation: crownShift 0.6s ease-in-out infinite alternate;
}


.solution-card:hover .fa-star.icon-big {
    animation: starTwinkle 1s ease-in-out infinite;
}


@keyframes rocketLaunch {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}


@keyframes crownShift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}


@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
}

.solutions .solution-features li {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.solutions p.mt-3 {
    font-size: 1.2rem;
    color: #40E0FF;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
    .solution-card {
        margin: 20px 0;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    }
    /* Neutralise le margin-top pour IAP Pro */
    .col-12.col-md-4:nth-child(2) .solution-card {
        margin-top: 20px !important;
    }
    .solution-card .solution-icon .icon-big {
        font-size: 30px;
    }
    .solution-title {
        font-size: 1.5rem;
        color: var(--text-primary);
    }
    .solution-features li {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }
    .solution-card p {
        font-size: 1rem;
        color: var(--text-secondary);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Tablet layout: 2 cards l'une à côté de l'autre, la troisième en dessous */
    .row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .col-12.col-md-4:nth-child(1),
    .col-12.col-md-4:nth-child(2) {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
    }
    .col-12.col-md-4:nth-child(3) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* Même hauteur pour cards Pro et Starter */
    .col-12.col-md-4:nth-child(1) .solution-card,
    .col-12.col-md-4:nth-child(2) .solution-card {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 450px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    }
    /* Retire le margin top de IAP Pro en écran desktop*/
    .col-12.col-md-4:nth-child(2) .solution-card {
        margin-top: 0 !important;
    }
    .col-12.col-md-4:nth-child(3) .solution-card {
        margin-bottom: 20px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    }
    .solution-card .solution-icon .icon-big {
        font-size: 35px;
    }

    .solution-title {
        font-size: 1.8rem;
        color: var(--text-primary);
    }
    .solution-features li {
        font-size: 1rem;
        color: var(--text-secondary);
    }
    .solution-card p {
        font-size: 1.2rem;
        color: var(--text-secondary);
    }
}

@media (min-width: 992px) {
    /* Desktop layout: 3 cards l'une à côté de l'autre */
    .col-12.col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .solution-card {
        margin: 0 10px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    }
    .solution-card .solution-icon .icon-big {
        font-size: 40px;
    }

    .solution-title {
        font-size: 2rem;
        color: var(--text-primary);
    }
    .solution-features li {
        font-size: 1.1rem;
        color: var(--text-secondary);
    }
    .solution-card p {
        font-size: 1.3rem;
        color: var(--text-secondary);
    }
}
/**************************************************************************** FIN SOLUTIONS ********************************************************************************/
/**************************************************************************** FIN SOLUTIONS ********************************************************************************/
/**************************************************************************** FIN SOLUTIONS ********************************************************************************/


/**************************************************************************** PROCESSUS SECTION ********************************************************************************/
/**************************************************************************** PROCESSUS SECTION ********************************************************************************/
/**************************************************************************** PROCESSUS SECTION ********************************************************************************/

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


.title_processus {
    font-family: 'Space Grotesk', serif !important;
    padding-top: 4rem;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.timeline {
    position: relative;
    /*background: url("img/background.jpg") no-repeat;*/
    background-size: cover;
    overflow: hidden;
}

.step-circle {
    border-radius: 50%;
    max-width: 500px;
    padding: 2.4rem;
    text-align: center;
    height: 100px;
    background:  linear-gradient(
            to right,
            rgba(0, 255, 255, 0.5) 0%,
            rgba(128, 0, 255, 0.5) 100%
    );
    font-size: 2rem;
    display: flex;
    color: #ffffff;
    font-weight: bolder;
    align-items: center;
    justify-content: center;
}

.timeline-step {
    animation: float 3s ease-in-out infinite;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.timeline-step.left {
    margin-left: 15%;
}

.timeline-step.right {
    margin-left: 49%;
}

.step-box {
    will-change: backdrop-filter;
    position: relative;
    backdrop-filter: blur(10px);
    transition: backdrop-filter 0.01s ease-in-out;
    background:   linear-gradient(
            to right,
            #184b4d 0%,
            #32194d 100%
    );
    max-width: 400px;
    height: auto;
    border: 2px solid #40E0FF;
    border-radius: 10%;
    overflow: hidden;
}


.h3_processus {
    font-family: 'Space Grotesk', serif !important;
    margin-left: 2rem;
    color: #ffffff;
    font-weight: bold;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.step-box p {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 3.5rem;
    z-index: 4;

}
.timeline-line {
    position: absolute;
    top: 15%;
    bottom: 1%;
    left: 50%;
    width: 4px;
    background:  linear-gradient(
            to top,
            rgba(0, 255, 255, 0.5) 0%,
            rgba(128, 0, 255, 0.5) 100%
    );
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-line-end {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgb(64, 224, 255);
    transform: translateX(-50%) rotate(45deg);
    border: 2px solid rgba(64, 224, 255, 0.5);
}
.timeline-line-start {
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgb(128, 0, 255);
    transform: translateX(-50%) rotate(45deg);
    border: 2px solid rgba(128, 0, 255, 0.5);
}

.tim_p {
    padding-bottom: 5rem;
}

.piece_timeline {
    position: absolute;
    height: auto;
    z-index: 0;
    animation: float 3s ease-in-out infinite;
}

.piece_timeline_circuit {
    position: absolute;
    height: auto;
    z-index: 0;
}


@media (max-width: 992px) {

    .title_processus {
        font-size: 2rem !important;
    }

    .timeline-step {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin-left: 0 !important;
        padding-bottom: 60px;
    }

    .timeline-step.left,
    .timeline-step.right {
        margin-left: 0;
    }

    .step-circle {
        height: 70px;
        width: 70px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .step-box {
        max-width: 280px;
        width: 100%;
        border-radius: 10%;
        padding: 1rem 1rem;
    }

    .h3_processus {
        font-size: 1.2rem;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .step-box p {
        font-size: 0.95rem;
        margin: 0 1rem 1.5rem;
    }

    .piece_timeline {
        display: none;
    }

    /*.timeline-line,*/
    /*.timeline-line-start,*/
    /*.timeline-line-end,*/
    /*.piece_timeline {*/
    /*    display: none;
    /*}*/
}

/**************************************************************************** FIN PROCESSUS SECTION ********************************************************************************/
/**************************************************************************** FIN PROCESSUS SECTION ********************************************************************************/
/**************************************************************************** FIN PROCESSUS SECTION ********************************************************************************/


/****************************************************************************  FORMULAIRE DE CONTACT SECTION ********************************************************************************/
/****************************************************************************  FORMULAIRE DE CONTACT SECTION ********************************************************************************/
/****************************************************************************  FORMULAIRE DE CONTACT SECTION ********************************************************************************/
.form_section {
    background-color: rgba(0, 0, 0, 0.48);
    position: relative;
}

.form_section .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}

.form_section .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(64, 224, 255, 0.2) 2px, transparent 2px),
            linear-gradient(90deg, rgba(64, 224, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: gridMove 8s linear infinite;
    opacity: 0.6;
}

.title_contactt {
    font-family: 'Space Grotesk', serif !important;
    padding-top: 4rem;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.form_container{
    padding-bottom: 4rem;

}

.formulaire_contact {
    background: linear-gradient(
            to right,
            rgba(0, 255, 255, 0.1) 0%,
            rgba(128, 0, 255, 0.1) 100%
    );
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.formulaire_contact input,
.formulaire_contact select,
.formulaire_contact textarea {
    background-color: rgba(255, 255, 255, 0.12);
    color: #eaffff;
    border: 1px solid rgba(64, 224, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(64, 224, 255, 0.25);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.formulaire_contact select {
    background-color: rgba(255, 255, 255, 0.08);
    color: #d5d5d5 !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2340e0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pour les options dans le menu déroulant */
.formulaire_contact select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.formulaire_contact input::placeholder,
.formulaire_contact textarea::placeholder {
    color: #c0c0c0 !important;
    opacity: 1;
}

.formulaire_contact input:focus,
.formulaire_contact select:focus,
.formulaire_contact textarea:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: #a362ff;
    box-shadow: 0 0 15px #a362ff;
    outline: none;
}

.btn-gradient_fc {
    background: linear-gradient(
            to right,
            #2a005f 0%,
            #3b0f7e 50%,
            #004466 100%
    );
    color: #ffffff !important;
    font-weight: bold !important;
    border: 1px solid #5a2d9f;
    width: 30%;
    border-radius: 20px !important;
    padding: 0.6rem 1rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(90, 45, 159, 0.5), 0 0 8px rgba(0, 68, 102, 0.4);
}

.btn-gradient_fc:hover {
    background: linear-gradient(
            to right,
            #3e1b8f 0%,
            #5129b3 50%,
            #006080 100%
    );
    box-shadow: 0 0 20px #5129b3, 0 0 15px #006080;
    transform: translateY(-3px);
    opacity: 1;
}

.form-label {
    color: rgb(255, 255, 255);
}


@media (max-width: 992px) {
    .title_contactt {
        font-size: 2rem!important;
    }
}






/****************************************************************************  FIN FORMULAIRE DE CONTACT SECTION ********************************************************************************/
/****************************************************************************  FIN FORMULAIRE DE CONTACT SECTION ********************************************************************************/
/****************************************************************************  FIN FORMULAIRE DE CONTACT SECTION ********************************************************************************/

@keyframes float_contact {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes drift_contact {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    25% { transform: translateX(10px) translateY(-15px) rotate(90deg); }
    50% { transform: translateX(-5px) translateY(-25px) rotate(180deg); }
    75% { transform: translateX(-10px) translateY(-10px) rotate(270deg); }
    100% { transform: translateX(0px) translateY(0px) rotate(360deg); }
}
/* Éléments de fond dynamiques */
.icon-bg {
    position: absolute;
    filter: drop-shadow(0 0 15px #00ffff);
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    color: white;
}

/* Positionnement des icônes de fond */
.icon-bg-1 {
    top: 8%;
    width: 50px;
    left: 5%;
    animation: float_contact 15s ease-in-out infinite;
    animation-delay: 0s;
}

.icon-bg-2 {
    top: 15%;
    right: 20%;
    width: 30px;
    animation: drift_contact 200s linear infinite;
    animation-delay: 2s;
}

.icon-bg-3 {
    top: 70%;
    left: 20%;
    width: 50px;
    animation: drift_contact 200s linear infinite;
    animation-delay: 4s;
}

.icon-bg-4 {
    top: 65%;
    right: 30%;
    font-size: 20px;
    animation:  float_contact 15s ease-in-out infinite;
    animation-delay: 1s;
}

.title_coordonnees {
    font-family: 'Space Grotesk', serif !important;
    font-size: 3rem;
}
.coordonnees {
    /*background: #000;*/
    position: relative;
    padding: 6rem 0;
    margin-top: 100px;
    padding-bottom: 300px !important;
    overflow: hidden;
}

.coordonnees .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: float 5s ease-in-out infinite;
    z-index: 1 !important;
}

.coordonnees .orb1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.coordonnees .orb2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

.coordonnees .contact-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2 !important;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 30px 40px;
    animation: float 5s ease-in-out infinite;
}

.coordonnees .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #00ffff 0%, #00c8ff 40%, #8000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.coordonnees .contact-card:hover {
    transform: translateY(-10px);
    border-color: #40E0FF;
    background: linear-gradient(
            to right,
            rgba(0, 255, 255, 0.05) 0%,
            rgba(128, 0, 255, 0.05) 100%);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);
    .contact-icon {
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


.coordonnees .row > div:nth-child(2) .contact-card {
    position: relative;
    top: 30px;
    margin: 30px 30px 10px;
}


.coordonnees .row {
    margin-bottom: 40px;
}

.coordonnees .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-cyan);
}

.coordonnees .contact-title {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', serif !important;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coordonnees p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1.1rem;
}

.coordonnees a{
    word-break: break-word;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .title_coordonnees {
        font-size: 2rem !important;
    }

    .coordonnees {
        padding: 3rem 0;
    }
    .coordonnees .contact-title {
        font-size: 1.2rem;
    }
    .coordonnees p {
        font-size: 0.9rem;
    }
    .coordonnees .contact-card {
        padding: 1.5rem;
        min-height: auto;
        margin: 0 15px 30px;
    }
    .coordonnees .row > div:nth-child(2) .contact-card {
        top: 0;
        margin: 0 15px 30px;
    }
    .coordonnees .row {
        margin-bottom: 0;
    }
    .coordonnees .row > div:nth-child(2) .contact-card {
        top: 0 !important;
        margin: 0 15px 30px !important;
    }
    .icon-bg {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .title_coordonnees {
        font-size: 2rem !important;
    }
    .coordonnees {
        padding: 4rem 0;
    }

    .coordonnees .contact-title {
        font-size: 1.3rem;
    }
    .coordonnees p {
        font-size: 1rem;
    }
    .coordonnees .contact-card {
        padding: 1.75rem;
        margin: 0 20px 30px;
    }
    .coordonnees .row > div:nth-child(2) .contact-card {
        top: 20px;
        margin: 20px 20px 10px;
    }
    .coordonnees .row {
        margin-bottom: 30px;
    }

    .coordonnees .row > div:nth-child(1) {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .coordonnees .row > div:nth-child(2) {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .coordonnees .row > div:nth-child(3) {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    .coordonnees .row > div:nth-child(2) .contact-card {
        top: 0 !important;
        margin: 0 20px 30px !important;
    }
}

@media (min-width: 992px) {
    .coordonnees {
        padding: 6rem 0;
    }
    .coordonnees .contact-title {
        font-size: 1.5rem;
    }
    .coordonnees .contact-card {
        width: 100%;
    }
}



/*************************************** FOOTER ************************************************************/
.footer {
    position: relative;
    /*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);*/
    padding: 60px 40px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    background: rgba(10, 10, 10, 0.19);
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 24px;
    animation: twinkle 2s ease-in-out infinite alternate;
    color: #00bfff;
}

.sparkle-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.4s;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.logof {
    margin-bottom: 30px;
    animation: glow 3s ease-in-out infinite alternate;
}

.logof img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.5));
    transition: all 0.3s ease;
}

.logof img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.8));
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 20px var(--neon-cyan)); }
    100% { filter: drop-shadow(0 0 30px var(--neon-purple)); }
}

.quote {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    position: relative;
    background:  linear-gradient(
            to right,
            rgb(255, 255, 255) 0%,
            rgb(255, 255, 255) 20%,
            rgba(214, 186, 244, 0.8) 50%,
            rgb(117, 231, 241) 60%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.company-info {
    margin-bottom: 30px;
}

.company-name {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.company-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 5px;
}

.company-motto {
    font-size: 14px;
    color: #999999;
    font-style: italic;
}

.legal-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1200px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    color: #ffffff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover {
    background:  linear-gradient(
            to right,
            rgba(0, 255, 255, 0.45) 0%,
            rgba(128, 0, 255, 0.84) 100%
    );
    color: white;
    border-color: #00bfff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-link i {
    font-size: 12px;
}

.legal-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.legal-link:hover {
    background:  linear-gradient(
            to right,
            rgba(0, 255, 255, 0.45) 0%,
            rgba(128, 0, 255, 0.84) 100%
    );
    border-color: #00bfff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.legal-link:hover::before {
    left: 100%;
}

.copyright {
    font-size: 12px;
    color: #666666;
    text-align: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50%;
    animation: floatement 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatement {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .quote {
        font-size: 18px;
    }

    .legal-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .legal-link {
        width: 200px;
        text-align: center;
    }
}


#form-message {
    background: linear-gradient(
            to right,
            #2a005f 0%,
            #3b0f7e 100%
    );
    box-shadow: 0 0 12px rgba(90, 45, 159, 0.6), 0 0 6px rgba(0, 68, 102, 0.4);
    backdrop-filter: blur(6px);
    color: #cfcfff;
    padding: 16px;
    margin-top: 24px;
    border-radius: 16px;
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

#form-message.show {
    opacity: 1;
    transform: translateY(0);
}

