@charset "utf-8";

/* ===================================
   VARIABLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --secondary: #ff00d4;
    --yellow_br: #e5ff00;
    --orange_br: #ff4800;
    --accent: #9d4edd;
    --dark-1: #0a0a12;
    --dark-2: #12121f;
    --dark-3: #1a1a2e;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-tr: rgba(255, 255, 255, 0.01);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-cyan: rgba(0, 240, 255, 0.4);
    --glow-yellow: rgba(255, 238, 0, 0.4);
    --glow-orange: rgba(255, 145, 0, 0.4);
    --glow-magenta: rgba(255, 0, 212, 0.4);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-1);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   MATRIX BACKGROUND & GRID OVERLAY
   =================================== */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    opacity: 0.3;
}

.scan-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.4;
}

.scan-horizontal {
    width: 100%;
    height: 2px;
    animation: scanHorizontal 8s linear infinite;
}

.scan-horizontal-reverse {
    width: 100%;
    height: 2px;
    animation: scanHorizontal 12s linear infinite reverse;
    animation-delay: -4s;
}

.scan-vertical {
    width: 2px;
    height: 100%;
    animation: scanVertical 10s linear infinite;
}

.scan-vertical-reverse {
    width: 2px;
    height: 100%;
    animation: scanVertical 15s linear infinite reverse;
    animation-delay: -6s;
}

@keyframes scanHorizontal {
    from { top: 0%; }
    to { top: 100%; }
}

@keyframes scanVertical {
    from { left: 0%; }
    to { left: 100%; }
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 120px;
    height: 120px;
    position: relative;
}

.loader-ring::before,
.loader-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.loader-ring::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-color: var(--glow-magenta);
    border-bottom-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 0.7s linear infinite;
}

.loader-ring::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-bottom-color: var(--primary);
    border-top-color: var(--secondary);
    border-left-color: var(--glow-magenta);
    animation: spin 0.6s linear infinite reverse;
}

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

.loading-text {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===================================
   FIXED NAVIGATION
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(10, 10, 18, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.nav-lang {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* ===================================
   MAIN CONTENT & SECTIONS
   =================================== */
.main-content {
    position: relative;
    z-index: 10;
}

.section {
    min-height: auto;
    padding: 40px 2rem 80px; /* 120px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: .1px solid var(--glow-cyan);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 1200px;
    /* max-width: 100%;    */
    /* margin-left: auto;  */
    /* margin-right: auto; */
}

.section-header2 {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--glass-bg);
    border: .1px solid var(--glow-cyan);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;

}


.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 95vh;
    padding: 40px 2rem 80px; /* 120px */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Portail de lumière derrière tout le hero */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 180%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 240, 255, 0.15) 0%,
        rgba(0, 240, 255, 0.08) 25%,
        transparent 60%
    );
    filter: blur(80px);
    z-index: -1;
    animation: portalPulse 6s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.6;
    }
}
/*   ololololololololololololololololololololololololololololololol     */
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    
    /* GLASS INTENSE */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03),
        rgba(0, 240, 255, 0.04)
    );
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid;
    border-image: linear-gradient(
        135deg,
        rgba(0, 240, 255, 0.5),
        rgba(255, 0, 212, 0.3)
    ) 1;
    border-radius: 32px;
    padding: 4rem 5rem;
    box-shadow: 
        0 0 80px rgba(0, 240, 255, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 2px 2px rgba(255, 255, 255, 0.2),
        inset 0 -2px 2px rgba(0, 240, 255, 0.1);
}

/*   ololololololololololololololololololololololololololololololol     */

.gradient-text {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary),
        var(--primary)
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    
    /* Ombre qui donne de la profondeur */
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

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

/*   ololololololololololololololololololololololololololololololol     */

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* Floating Cards - DÉSACTIVÉES pour ne pas gêner le texte */
.floating-cards {
    display: none;
}

/* Code commenté si tu veux les réactiver plus tard
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.float-card .card-icon {
    font-size: 2rem;
}

.float-card .card-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}
*/

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background: transparent;
    padding: 40px 2rem 80px; /* 120px */
}

/* .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 4rem;
} 
    

*/
.services-grid::before {
    content: '';
    grid-row: 1;
    grid-column: 4;
    background: radial-gradient(circle at center, var(--glow-cyan), transparent);
    opacity: 0;
    animation: breathe 4s ease-in-out infinite;
    border-radius: 16px;
}

.services-grid::after {
    content: '';
    grid-row: 2;
    grid-column: 2;
    background: radial-gradient(circle at center, var(--orange_br), transparent);
    opacity: 0;
    animation: breathe 4s ease-in-out infinite;
    border-radius: 16px;
}

@keyframes breathe {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.1; }
}


.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /*  colonnes */
    grid-template-rows: auto auto;      /* 2 rangées */
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 4rem;
}

/* RANGÉE DU HAUT */
.service-card:nth-child(1) {
    /* Développement Web - Prend 2 colonnes (2fr) */
    grid-row: 1;
    grid-column: 1 / 3; /* Span 2 colonnes */
}

.service-card:nth-child(2) {
    /* Support Info - 1 colonne (1fr) */
    grid-row: 1;
    grid-column: 3 / 4;
}

.service-card:nth-child(3) {
    /* Config & Réseau - 1 colonne (1fr) */
    grid-row: 2;
    grid-column: 1;
}

/* RANGÉE DU BAS */
.service-card:nth-child(4) {
    /* Consultation - Prend 2 colonnes (2fr) */
    grid-row: 2;
    grid-column: 3 / 5; /* Span 2 colonnes à DROITE */
}
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Approach Section */
.approach-section > * {
    position: relative;
    z-index: 1;
}


/* Approach Section */
.approach-section {
    max-width: 1200px;
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    padding: 40px 2rem 80px;
    position: relative; /* ← IMPORTANT pour le ::before */
    overflow: hidden;   /* ← Garde l'image dans les coins arrondis */
}

/* IMAGE DE FOND avec transparence contrôlable */
.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/earth.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4; /* ← CONTRÔLE ICI la transparence de l'image SEULEMENT */
    z-index: -1;
    /* filter: blur(2px); */ /* ← Active si tu veux du flou */
}



.approach-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.approach-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.approach-highlight {
    background: var(--glass-bg);
    border: .01px solid var(--glass-bg);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}



.approach-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

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

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.approach-highlight h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-highlight p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}


/* Formules Grid */
.approach-formulas {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.approach-formulas h4 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.formula-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.formula-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.formula-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.formula-item h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.formula-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Valeurs Humaines */
.approach-values {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(255, 0, 212, 0.05));
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.approach-values h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approach-values p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-section {
    padding: 40px 2rem 80px; /* 120px */
    background: transparent;
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 4rem;
    overflow-x: auto;
    overflow-y: visible; /* ← AJOUTE ÇA */
    scroll-snap-type: x mandatory;
    /* padding: 1rem; /* ← Change padding-bottom pour padding */
    padding: 40px 2rem 80px; /* 120px */
    -webkit-overflow-scrolling: touch;
}

.portfolio-item {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    opacity: 1; /* ← Force l'opacité à 1 */
}

.portfolio-grid::-webkit-scrollbar {
    height: 8px;
}

.portfolio-grid::-webkit-scrollbar-track {
    background: var(--glass-bg);
    border-radius: 10px;
}

.portfolio-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.portfolio-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    color: var(--primary);
    margin-bottom: 1rem;
}

.portfolio-link {
    color: var(--primary);
    font-weight: 500;
}

.portfolio-cta {
   /* text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2rem;  */

    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: .5px solid var(--primary);
    border-radius: 16px;
    padding: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 40px 2rem 80px; /* 120px */
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.1s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.author-company {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 40px 2rem 80px; /* 120px */
    background: transparent;
}

.about-content {
    max-width: 1200px;
    width: 100%;
}

.about-story,
.about-philosophy,
.about-today {
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
}

.about-story h3,
.about-philosophy h3,
.about-today h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-story p,
.about-philosophy p,
.about-today p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.about-values h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.1s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.value-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 40px 2rem 80px; /* 120px */
    background: transparent;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--secondary);
}

.contact-location {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-location h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-location p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.location-name {
    color: var(--primary) !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-cta {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: .5px solid var(--primary);
    border-radius: 16px;
    padding: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background: transparent;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    grid-column: span 3;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-family: 'Syne', sans-serif;
    color: var(--primary);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet - max-width 768px pour les capsules */
@media (max-width: 1200px) {
    .section-header,
    .approach-section,
    .portfolio-cta,
    .about-story,
    .about-philosophy,
    .about-today,
    .about-values,
    .contact-location,
    .contact-cta {
        max-width: 768px;
    }
}

/* Mobile - max-width 100% pour les capsules */
@media (max-width: 768px) {
    .section-header,
    .approach-section,
    .portfolio-cta,
    .about-story,
    .about-philosophy,
    .about-today,
    .about-values,
    .contact-location,
    .contact-cta {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr !important; /* Une colonne sur mobile */
        grid-template-rows: auto;
    }
    
    .service-card:first-child,
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    
    .portfolio-grid {
        gap: 1rem;
    }
    
    .portfolio-item {
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-border);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .section {
        padding: 100px 1rem 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .values-grid,
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===================================
   COOKIE BANNER - BOTTOM PROFESSIONAL
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-wrapper {
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary);
    box-shadow: 
        0 -4px 30px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 240, 255, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.cookie-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2.5rem;
    animation: cookiePulse 2s ease-in-out infinite;
}

@keyframes cookiePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cookie-texts {
    flex: 1;
}

.cookie-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}

.cookie-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-decline {
    background: var(--glass-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.cookie-btn-accept:hover {
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

.cookie-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transform: rotate(90deg);
}

.cookie-footer-link {
    background: rgba(10, 10, 18, 0.95);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-link-small {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cookie-link-small:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-law-small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cookie-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .cookie-info {
        width: 100%;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cookie-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
    
    .cookie-title {
        font-size: 1rem;
    }
    
    .cookie-desc {
        font-size: 0.85rem;
    }
    
    .cookie-footer-link {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-logo img {
        width: 70px !important;
        height: auto !important;
    }
}

body.cookie-active {
    overflow: hidden;
}

.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.cookie-banner-overlay.show {
    display: block;
}