@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

@font-face {
    font-family: 'IntegralCF';
    src: url('../fonts/IntegralCF-ExtraBold.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Suppression du forçage de uppercase */
    font-weight: bold !important;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 100;
    background-color: rgb(255, 255, 255);
}

.logo {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #b6ff3a;
    transition: width 0.4s ease;
    clip-path: polygon(
        0 0,
        20% 50%,
        40% 0,
        60% 50%,
        80% 0,
        100% 50%,
        100% 100%,
        0 100%
    );
}

.nav-item:hover {
    color: #b6ff3a;
}

.nav-item:hover::after {
    width: 100%;
    animation: zigzag-pulse 1.5s infinite;
}

@keyframes zigzag-pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
    100% {
        opacity: 0.7;
    }
}

/* Nouveau design du CTA */
.cta-button {
    background: linear-gradient(135deg, #b6ff3a 0%, #a1e234 100%);
    color: #000000;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    border: none;
    box-shadow: 0 6px 15px rgba(182, 255, 58, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.6s;
    transform: skewX(-25deg);
    z-index: -1;
}

.cta-button:hover {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: #b6ff3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(182, 255, 58, 0.4);
}

.cta-button:hover::before {
    transform: translateX(200%) skewX(-25deg);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(182, 255, 58, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 200;
    display: none;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-item {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e04e39;
    transition: width 0.4s ease;
    clip-path: polygon(
        0 0,
        20% 50%,
        40% 0,
        60% 50%,
        80% 0,
        100% 50%,
        100% 100%,
        0 100%
    );
}

.mobile-nav-item:hover {
    color: #e04e39;
}

.mobile-nav-item:hover::after {
    width: 100%;
    animation: zigzag-pulse 1.5s infinite;
}

.mobile-cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

/* Media Queries */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navbar {
        gap: 20px;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Effet de parallaxe */
.parallax-effect {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    pointer-events: none;
    will-change: transform;
}

.hero-grid-background::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 45%;
    height: 45%;
    transform: translate(-50%, -50%);
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 65%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 65%, transparent 80%);
}

.background-text {
    position: absolute;
    font-size: 200px;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: -1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 170px;
    font-weight: 800;
    text-align: center;
    line-height: 0.95;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: -2px;
    max-width: 1200px;
    cursor: pointer;
    perspective: 1000px;
}

.hero-title br {
    line-height: 0.8;
    display: block;
    content: '';
    margin-top: 10px;
    margin-bottom: 10px;
}

.title-line {
    position: relative;
    display: inline-block;
    transition: color 0.5s ease;
    overflow: hidden;
}

.title-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: width 0.6s ease, height 0.6s ease;
}

.title-line:hover {
    color: #b6ff3a; /* Couleur verte */
}

.title-icon {
    height: auto;
    margin-right: 20px;
    vertical-align: middle;
}

.identite-icon {
    width: 100px;
    position: absolute;
    left: -130px;
    opacity: 0.85;
    z-index: -1;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-1px) rotate(-0.5deg); }
    20%, 40%, 60%, 80% { transform: translateX(1px) rotate(0.5deg); }
}

.identite-container:hover .identite-icon {
    animation: shake 0.8s ease-in-out infinite;
}

.title-line:hover ~ .identite-icon {
    animation: shake 0.8s ease-in-out infinite;
}

.manuscrit-text {
    position: absolute;
    top: 75%; /* Décaler encore plus le conteneur vers le haut */
    left: 100%;
    margin-left: 30px;
    transform: translateY(-50%);
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 32px;
    color: #333;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.manuscrit-text-content {
    transform: translateY(-10%);
}

.identite-container:hover .manuscrit-text {
    opacity: 1;
    transform: translateY(-50%) translateX(10px);
}

.identite-container .manuscrit-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    top: 35%; /* Décaler également pour l'état actif */
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    height: 80px;
    width: 100%;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.arrow-container {
    flex-shrink: 0;
}

.subtitle-text-container {
    position: relative;
    flex-grow: 1;
}

.hero-subtitle {
    font-size: 18px;
    text-align: left;
    max-width: 100%;
    line-height: 1.6;
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hero-subtitle p {
    margin: 0;
    white-space: normal;
    max-width: 100%;
}

.hero-subtitle div {
    max-height: 60px; /* Hauteur pour deux lignes approximativement */
    overflow: hidden;
}

.arrow-icon {
    width: 100px;
}

.alternate-subtitle {
    opacity: 0;
    pointer-events: none;
}

.social-links {
    position: absolute;
    bottom: 400px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    color: #b6ff3a;
    text-decoration: none;
    font-size: 20px;
}

.language-switch {
    position: absolute;
    bottom: 40px;
    right: 40px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .manuscrit-text {
        left: 100%;
        margin-left: 10px;
        font-size: 24px;
    }
}

.web-container {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.web-img-text {
    display: flex;
    align-items: center;
}

.web-img {
    width: 120px;
    height: auto;
    margin-right: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s, transform 0.5s;
}

.web-container:hover .web-img {
    opacity: 1;
    transform: translateX(0);
}

.web-img-abs {
    position: absolute;
    left: -280px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 250px;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
}

.web-container:hover .web-img-abs {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.strategie-container {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.strategie-img {
    position: absolute;
    right: -280px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 250px;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
}

.strategie-container:hover .strategie-img {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.identite-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Section de présentation */
.presentation {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.presentation-container {
    max-width: 2000px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presentation-text {
    font-size: 24px;
    line-height: 1.5;
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Roboto Slab', serif;
}

.text-intro, .text-regular {
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
}

.text-bold {
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
}

.button-container {
    display: flex;
    justify-content: center;
}

.cta-button-secondary {
    background-color: #b6ff3a;
    color: rgb(0, 0, 0);
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button-secondary:hover {
    background-color: #000000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .presentation-text {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .presentation {
        padding: 80px 0;
    }
}

/* Section Portfolio */
.portfolio {
    padding: 80px 0;
    background-color: white;
}

.portfolio-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}

.section-title-container {
    margin-bottom: 60px;
    position: relative;
    text-align: left;
}

.portfolio-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.title-accent {
    color: #b6ff3a;
    position: relative;
}

.title-decoration {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.dot-decoration {
    width: 12px;
    height: 12px;
    background-color: #b6ff3a;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
}

.line-decoration {
    height: 2px;
    width: 60px;
    background-color: #000000;
    display: inline-block;
}

.title-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    max-width: 600px;
}

.portfolio-title::after {
    content: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    cursor: none; /* Masquer le curseur par défaut */
    transition: transform 0.3s ease;
}

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

.portfolio-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.portfolio-text {
    color: white;
    max-width: 80%;
}

.portfolio-title-item {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-description {
    font-size: 14px;
    line-height: 1.4;
}

.portfolio-arrow {
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-arrow {
    transform: translateX(5px);
}

.portfolio-more {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 20px;
}

.portfolio-more-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.portfolio-more-text {
    margin-right: 10px;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-more {
        grid-column: span 1;
    }
    
    .portfolio-item {
        cursor: pointer; /* Restaurer le curseur normal sur mobile */
    }
    
    .portfolio-item {
        height: 300px;
    }
    
    .custom-cursor {
        display: none; /* Masquer le curseur personnalisé sur mobile */
    }
}

/* Badges de catégorie pour les projets */
.portfolio-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-wrap: wrap;
    max-width: calc(100% - 40px);
}

.portfolio-item:hover .portfolio-badges {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-badge {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .portfolio-badge {
    animation: badgePulse 2s infinite;
}

.portfolio-item:hover .portfolio-badge:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        background-color: #b6ff3a;
    }
    100% {
        transform: scale(1);
    }
}

/* Section Services */
.services {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.services-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #ffffff;
}

.services-title::after {
    content: none;
}

/* Styles pour l'accordéon */
.accordion-wrapper {
    max-width: 100%;
    margin: auto;
    width: 100%;
}

.accordion {
    border-top: 1px solid #333;
    background: #000;
    margin-bottom: 1px;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
}

.accordion:hover {
    max-height: 700px;
    background-color: #000;
    color: #fff;
}

.accordion:hover .accordion-title {
    color: #fff;
}

.accordion:hover .accordion-tag {
    border-color: #fff;
    color: #fff;
}

.accordion-trigger {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 2.6rem;
    cursor: default;
    display: block;
    position: relative;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.3rem;
    max-width: calc(100% - 50px);
    position: relative;
    width: 100%;
}

.accordion-title {
    font-size: 2rem;
    margin: 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.flex-container {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding-right: 30px;
}

.accordion-tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
}

.accordion:hover .accordion-tags {
    opacity: 1;
}

.accordion-tag {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.28rem 0.56rem;
    border-radius: 30px;
    font-size: 0.7rem;
    display: inline-block;
    margin-right: 0.35rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.5s ease;
    background-color: #000;
    padding: 0 2.6rem;
    color: #ffffff;
}

.accordion:hover .accordion-content {
    background-color: #000;
    color: #fff;
}

.accordion:hover .accordion-content-inner-wrapper p {
    color: #fff;
}

.accordion:hover .accordion-content {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding: 2.6rem;
}

.accordion-content-inner-wrapper p {
    margin: 0;
    line-height: 1.6;
    color: #bbbbbb;
    font-size: 0.95rem;
    text-transform: none !important;
    font-weight: normal !important;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .accordion-content-inner-wrapper p {
        font-size: 0.85rem;
    }
}

/* Exceptions pour certains éléments où le format uppercase ne serait pas approprié */
.accordion-content-inner-wrapper p,
.accordion-content-inner-wrapper,
.accordion-content,
p.subtitle,
p.description,
.tarif-desc,
.cta-subtitle,
.testimonial-text {
    text-transform: none !important;
    font-weight: normal !important;
}

/* Styles pour l'icône X qui pivote */
.icon-x {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.4s ease;
    width: 24px;
    height: 24px;
    z-index: 1;
}

.icon-x:before,
.icon-x:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b6ff3a;
    transition: transform 0.4s ease;
}

.icon-x:before {
    transform: rotate(90deg);
}

.accordion:hover .icon-x {
    transform: translateY(-50%) rotate(45deg);
}

/* Styles responsives pour l'accordéon */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .flex-container {
        margin-top: 1rem;
        padding-right: 30px;
        justify-content: flex-start;
    }
    
    .accordion-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }
    
    .accordion-wrapper {
        max-width: 100%;
    }
    
    .accordion {
        background: #000000;
        border-top: 1px solid rgba(204, 204, 204, 0.3);
        position: relative;
    }
    
    .accordion-trigger {
        padding: 1.5rem 0;
        display: flex;
        align-items: center;
    }
    
    .icon-x {
        display: block;
        right: 0;
        width: 20px;
        height: 20px;
    }
    
    .accordion-title {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        min-height: 40px;
    }
    
    .accordion-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .accordion:hover .accordion-content {
        padding: 0 0 1.5rem 0;
        background: transparent;
    }
    
    .flex-container {
        padding-right: 0;
    }
    
    .grid-container {
        max-width: 100%;
        align-items: center;
    }
    
    /* Modifier le comportement de l'accordéon pour utiliser un clic au lieu du hover sur mobile */
    .accordion {
        max-height: initial;
    }
    
    .accordion:hover {
        max-height: initial;
        background-color: #000000;
        color: #ffffff;
    }
    
    .accordion:hover .accordion-title {
        color: #ffffff;
    }
    
    .accordion:hover .accordion-tag {
        border-color: #ffffff;
        color: #ffffff;
    }
    
    .accordion.active {
        max-height: 700px;
        background-color: #000;
        color: #fff;
    }
    
    .accordion.active .accordion-title {
        color: #fff;
    }
    
    .accordion.active .accordion-tag {
        border-color: #fff;
        color: #fff;
    }
    
    .accordion:hover .accordion-content {
        max-height: 0;
        opacity: 0;
        padding: 0;
        background-color: #000000;
    }
    
    .accordion:hover .accordion-content-inner-wrapper p {
        color: #bbbbbb;
    }
    
    .accordion.active .accordion-content {
        max-height: 400px;
        opacity: 1;
        padding: 0 0 1.5rem 0;
        background-color: #000000;
    }
    
    .accordion.active .accordion-content-inner-wrapper p {
        color: #ffffff;
    }
    
    .accordion:hover .accordion-tags {
        opacity: 0;
    }
    
    .accordion.active .accordion-tags {
        opacity: 1;
    }
    
    .accordion:hover .icon-x {
        transform: translateY(-50%) rotate(0deg);
    }
    
    .accordion.active .icon-x {
        transform: translateY(-50%) rotate(45deg);
    }
}

@media (max-width: 576px) {
    .services {
        padding: 40px 10px;
    }
    
    .accordion-trigger {
        padding: 1rem 0;
    }
    
    .accordion-title {
        font-size: 1.3rem;
    }
    
    .accordion-tag {
        font-size: 0.5rem;
        padding: 0.15rem 0.3rem;
        margin-right: 0.2rem;
    }
    
    .accordion-tags {
        gap: 0.2rem;
    }
    
    .accordion.active .accordion-content {
        padding: 0 0 1rem 0;
    }
    
    .accordion-content-inner-wrapper p {
        font-size: 1rem;
    }
}

/* Section Marquee */
.marquee-section {
    background-color: #121212;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.marquee-row {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    will-change: transform;
}

.marquee-text-container {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    will-change: transform;
}

.marquee-text-container:after {
    content: "";
    display: table;
    clear: both;
}

.marquee-reverse .marquee-text-container {
    animation-direction: reverse;
}

.marquee-row:hover .marquee-text-container {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Animation de pulsation pour les textes en contour */
@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.marquee-text {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 8rem;
    color: white;
    margin-right: 2rem;
    text-transform: uppercase;
    position: relative;
    opacity: 0.9;
}

.marquee-text:nth-child(odd) {
    color: transparent;
    -webkit-text-stroke: 1px white;
    animation: pulse 3s ease-in-out infinite;
}

.marquee-text sup {
    font-size: 3rem;
    vertical-align: super;
    top: -2.5rem;
    position: relative;
}

.marquee-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.7s ease;
    overflow: hidden;
}

.marquee-image-container.loading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(30,30,30,0) 0%, 
        rgba(30,30,30,0.2) 50%, 
        rgba(30,30,30,0) 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.marquee-row:hover .marquee-image-container {
    opacity: 0.3;
}

.marquee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.7s ease;
}

.marquee-row:hover .marquee-image {
    transform: scale(1);
}

@media (max-width: 1200px) {
    .marquee-text {
        font-size: 6rem;
    }
    
    .marquee-text sup {
        font-size: 2rem;
        top: -2rem;
    }
    
    .marquee-row {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .marquee-text {
        font-size: 4rem;
    }
    
    .marquee-text sup {
        font-size: 1.5rem;
        top: -1rem;
    }
    
    .marquee-row {
        height: 90px;
    }
}

@media (max-width: 576px) {
    .marquee-text {
        font-size: 3rem;
        margin-right: 1rem;
    }
    
    .marquee-text sup {
        font-size: 1rem;
        top: -0.8rem;
    }
    
    .marquee-row {
        height: 70px;
    }
}

/* Animation des titres au scroll */
.scroll-animation {
    opacity: 0;
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.identite-container.scroll-animation {
    transform: translateY(-100px) rotate(-3deg);
}

.web-container.scroll-animation {
    transform: translateY(100px) rotate(2deg);
}

.strategie-container.scroll-animation {
    transform: translateY(-70px) rotate(-2deg);
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Ajout d'un délai pour chaque titre */
.identite-container.scroll-animation.visible {
    transition-delay: 0.1s;
}

.web-container.scroll-animation.visible {
    transition-delay: 0.4s;
}

.strategie-container.scroll-animation.visible {
    transition-delay: 0.7s;
}

/* Animation de sortie horizontale */
.hero-title {
    perspective: 1000px;
}

.hero-exit .identite-container {
    transform: translateX(-150%) rotate(-5deg);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 0.8s ease;
    transform-origin: left center;
}

.hero-exit .web-container {
    transform: translateX(150%) rotate(5deg);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 0.8s ease;
    transition-delay: 0.1s;
    transform-origin: right center;
}

.hero-exit .strategie-container {
    transform: translateX(-120%) rotate(-3deg);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 0.8s ease;
    transition-delay: 0.2s;
    transform-origin: left center;
}

/* Animation pour revenir à l'état initial */
.hero-title:not(.hero-exit) .identite-container,
.hero-title:not(.hero-exit) .web-container,
.hero-title:not(.hero-exit) .strategie-container {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

/* Création du curseur personnalisé */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 100px;
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    text-transform: uppercase;
    transform: translate(-50%, -50%) scale(0.8);
    mix-blend-mode: difference;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    will-change: transform;
    transition: opacity 0.3s ease, transform 0.05s ease-out;
}

/* Style du texte du curseur pour chaque projet */
.custom-cursor.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Cercle "Voir le projet" - élément distinct */
.project-circle {
    position: fixed;
    width: 130px;
    height: 130px;
    background-color: #b6ff3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 1.2;
    padding: 10px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(182, 255, 58, 0.4);
}

.project-circle.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 768px) {
    .portfolio-title, .services-title {
        font-size: 32px;
    }
    
    .title-subtitle {
        font-size: 14px;
    }
    
    .section-title-container {
        margin-bottom: 30px;
    }
}

/* Section Témoignages */
.testimonials {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    font-family: 'IntegralCF', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000;
    position: relative;
    display: inline-block;
}

.testimonials-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #000;
}

.testimonials-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    position: relative;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: calc(50% - 20px);
}

.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #000;
    padding: 30px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateX(0) rotate(0deg);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Effet Moïse pour les cartes à gauche */
.testimonials-column.left-column .testimonial-card {
    transform-origin: left center;
    transition: transform 1.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.7s ease;
}

.testimonials-column.left-column .testimonial-card.slide-out {
    transform: translateX(-30%) rotate(-20deg);
    opacity: 0.85;
}

/* Effet Moïse pour les cartes à droite */
.testimonials-column.right-column .testimonial-card {
    transform-origin: right center;
    transition: transform 1.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.7s ease;
}

.testimonials-column.right-column .testimonial-card.slide-out {
    transform: translateX(30%) rotate(20deg);
    opacity: 0.85;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-quote {
    margin-bottom: 15px;
    color: #b6ff3a;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #b6ff3a;
}

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

.testimonial-author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: #333;
}

.testimonial-author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-wrapper {
        flex-direction: column;
    }
    
    .testimonials-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.services .title-subtitle {
    color: #ffffff;
}

.services .title-accent {
    color: #b6ff3a;
}

.services .dot-decoration {
    background-color: #b6ff3a;
}

.services .line-decoration {
    background-color: #ffffff;
}

/* Section Slider Industries */
.industry-slider {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}

.slider-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.slider-title.text-center {
    text-align: center;
    display: block;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.slider-title .title-accent {
    color: #b6ff3a;
    position: relative;
    display: inline-block;
}

.slider-wrapper {
    position: relative;
    margin-bottom: 50px;
}

/* Curseur personnalisé pour le slider */
.slider-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b6ff3a;
    border: 2px solid #000;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-cursor::before,
.slider-cursor::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #000;
}

.slider-cursor::before {
    transform: rotate(45deg);
}

.slider-cursor::after {
    transform: rotate(-45deg);
}

.slider-cursor.left::before {
    transform: rotate(-45deg) translateX(-3px);
}

.slider-cursor.left::after {
    transform: rotate(45deg) translateX(-3px);
}

.slider-cursor.right::before {
    transform: rotate(45deg) translateX(3px);
}

.slider-cursor.right::after {
    transform: rotate(-45deg) translateX(3px);
}

.slider-cursor.visible {
    opacity: 1;
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
    scroll-behavior: auto; /* Désactiver le comportement de défilement par défaut */
    scroll-snap-type: none; /* Désactiver le snap */
    scroll-padding: 0 20px; /* Ajouter un peu d'espace aux extrémités */
    transition: transform 0.3s ease;
}

/* Effet visuel lorsqu'on atteint les limites */
.slider-track.at-start {
    transform: translateX(5px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-track.at-end {
    transform: translateX(-5px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-cursor.at-limit {
    background-color: rgba(182, 255, 58, 0.7);
    transform: translate(-50%, -50%) scale(1.2);
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track.active {
    cursor: grabbing;
}

.slider-item {
    min-width: 320px;
    height: 220px;
    flex: 0 0 320px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Pas de pointeur sur les éléments du slider */
    pointer-events: none;
}

.slider-track {
    /* Activer les événements de pointeur sur le track pour le défilement */
    pointer-events: auto;
}

.slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(182, 255, 58, 0.2);
    border-color: rgba(182, 255, 58, 0.5);
}

.slider-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.slider-item:hover .slider-image {
    filter: grayscale(0%);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.slider-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #b6ff3a;
    color: #000000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-item:hover .slider-badge {
    background-color: #9ce235;
    transform: translateY(-3px);
}

.slider-controls {
    display: none;
}

.slider-dots {
    display: none;
}

.slider-dot {
    display: none;
}

.slider-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-cta .cta-button {
    background-color: #b6ff3a;
    border: none;
    color: #000000;
    font-family: 'IntegralCF', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.slider-cta .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.6s ease;
    transform: skewX(-20deg);
}

.slider-cta .cta-button:hover {
    background-color: #000000;
    color: #b6ff3a;
}

.slider-cta .cta-button:hover::after {
    transform: translateX(200%) skewX(-20deg);
}

@media (max-width: 1024px) {
    .slider-title {
        font-size: 36px;
    }
    
    .slider-item {
        min-width: 280px;
        flex: 0 0 280px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .industry-slider {
        padding: 60px 0;
    }
    
    .slider-title {
        font-size: 28px;
    }
    
    .slider-title-container {
        margin-bottom: 40px;
    }
    
    .slider-item {
        min-width: 250px;
        flex: 0 0 250px;
        height: 180px;
    }
    
    .slider-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .slider-title {
        font-size: 24px;
    }
    
    .slider-item {
        min-width: 220px;
        flex: 0 0 220px;
        height: 160px;
    }
    
    .slider-controls {
        gap: 15px;
    }
}

/* Section CTA */
.cta-section {
    background-color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    color: #000;
}

.text-highlight {
    color: #b6ff3a;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(182, 255, 58, 0.3);
    z-index: -1;
}

.cta-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Roboto Slab', serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.cta-button-primary {
    background-color: #b6ff3a;
    color: #000;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 900;
    font-size: 16px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(182, 255, 58, 0.3);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(182, 255, 58, 0.5);
    background-color: #000;
    color: #b6ff3a;
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-secondary {
    background-color: transparent;
    color: #000;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 900;
    font-size: 16px;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-5px);
}

.cta-image {
    position: relative;
    z-index: 1;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.cta-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.cta-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: rgba(182, 255, 58, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@media (max-width: 992px) {
    .cta-title {
        font-size: 42px;
    }
    
    .cta-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-button-primary, 
    .cta-button-secondary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-image {
        height: 300px;
    }
    
    .cta-shape {
        width: 250px;
        height: 250px;
    }
}

/* === FOOTER MODERNE === */
.footer-modern {
    background: #000;
    color: #fff;
    border-radius: 40px 40px 0 0;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
}
.footer-modern-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-modern-left {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
}
.footer-modern-logo {
    height: 48px;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.footer-modern-center {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-modern-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.1rem;
}
.footer-modern-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-modern-link:hover {
    color: #b6ff3a;
}
.footer-modern-dot {
    color: #b6ff3a;
    opacity: 0.4;
    font-size: 1.5em;
    margin: 0 6px;
}
.footer-modern-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.footer-modern-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #111;
    border-radius: 50%;
    transition: background 0.2s;
}
.footer-modern-social img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}
.footer-modern-social:hover {
    background: #b6ff3a;
}
.footer-modern-social:hover img {
    filter: none;
}
.footer-modern-right {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-modern-btn {
    background: #b6ff3a;
    color: #000;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(182,255,58,0.08);
}
.footer-modern-btn:hover {
    background: #fff;
    color: #000000;
}
.footer-modern-arrow {
    font-size: 1.3em;
    font-weight: 700;
}
.footer-modern-bottom {
    text-align: center;
    margin-top: 30px;
    color: #fff;
    opacity: 0.5;
    font-size: 1rem;
}
.footer-modern-text-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}
@media (max-width: 900px) {
    .footer-modern-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-modern-left,
    .footer-modern-right {
        justify-content: center;
        width: 100%;
    }
    .footer-modern-center {
        align-items: center;
    }
}
@media (max-width: 600px) {
    .footer-modern {
        border-radius: 24px 24px 0 0;
        padding: 30px 0 10px 0;
    }
    .footer-modern-logo {
        height: 36px;
    }
    .footer-modern-nav {
        flex-direction: column;
        gap: 10px;
        font-size: 1rem;
    }
    .footer-modern-btn {
        width: 100%;
        justify-content: center;
    }
}

.cta-section.cta-simple {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #111;
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.cta-section.cta-simple::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(182, 255, 58, 0.15) 0%, rgba(182, 255, 58, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section.cta-simple::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(182, 255, 58, 0.1) 0%, rgba(182, 255, 58, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section.cta-simple .cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.cta-section.cta-simple .cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-section.cta-simple .cta-accent {
    color: #b6ff3a;
    position: relative;
    display: inline-block;
}

.cta-section.cta-simple .cta-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(182, 255, 58, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.cta-section.cta-simple .cta-subtitle {
    color: #555;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-btn-black {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    border: none;
    margin-top: 10px;
    overflow: hidden;
    z-index: 1;
}

.cta-btn-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.6s;
    transform: skewX(-25deg);
    z-index: -1;
}

.cta-btn-black:hover {
    background: linear-gradient(135deg, #b6ff3a 0%, #a1e234 100%);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(182, 255, 58, 0.4);
}

.cta-btn-black:hover::before {
    transform: translateX(200%) skewX(-25deg);
}

.cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.cta-btn-black:hover .cta-arrow {
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 700px) {
    .cta-section.cta-simple {
        padding: 70px 20px 60px;
    }
    
    .cta-section.cta-simple .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-section.cta-simple .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-btn-black {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .cta-arrow {
        width: 32px;
        height: 32px;
        margin-left: 12px;
    }
}

.about-unikom {
    background: #fff;
    padding: 100px 0 60px 0;
    text-align: center;
}
.about-unikom-container {
    max-width: 800px;
    margin: 0 auto;
}
.about-unikom-title {
    font-family: 'IntegralCF', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.about-unikom-accent {
    color: #b6ff3a;
}
.about-unikom-text {
    color: #444;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}
.about-unikom-btn {
    display: inline-block;
    background: #b6ff3a;
    color: #111;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 18px 38px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    box-shadow: 0 2px 12px rgba(182,255,58,0.08);
}
.about-unikom-btn:hover {
    background: #111;
    color: #b6ff3a;
}
@media (max-width: 700px) {
    .about-unikom-title {
        font-size: 2rem;
    }
    .about-unikom-text {
        font-size: 1rem;
    }
    .about-unikom-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
}

.forfaits-section {
    background: #f8f8f8;
    padding: 90px 0 60px 0;
    text-align: center;
}
.forfaits-title {
    font-family: 'IntegralCF', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 40px;
}
.forfaits-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.forfait-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 38px 32px 32px 32px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    text-align: left;
    position: relative;
    border: 2px solid transparent;
    transition: border 0.2s, box-shadow 0.2s;
}
.forfait-card.forfait-pop {
    border: 2px solid #b6ff3a;
}
.forfait-name {
    font-family: 'IntegralCF', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}
.forfait-price {
    color: #b6ff3a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.forfait-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}
.forfait-features li {
    margin-bottom: 8px;
}

.faq-section {
    background: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
}
.faq-title {
    font-family: 'IntegralCF', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 36px;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    margin-bottom: 32px;
}
.faq-q {
    font-family: 'IntegralCF', sans-serif;
    font-size: 1.15rem;
    color: #b6ff3a;
    margin-bottom: 8px;
    font-weight: 900;
}
.faq-a {
    color: #444;
    font-size: 1.08rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
@media (max-width: 900px) {
    .forfaits-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .forfait-card {
        max-width: 100%;
        min-width: 0;
        width: 90%;
    }
}

.tarifs-section {
    background: #fff;
    padding: 100px 0 60px 0;
}
.tarifs-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.tarifs-col-left {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
}
.tarifs-title {
    font-family: 'IntegralCF', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
}
.tarifs-desc {
    color: #888;
    font-size: 1.15rem;
    margin-bottom: 38px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.tarifs-btn {
    display: inline-flex;
    align-items: center;
    background: #b6ff3a;
    color: #111;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 16px 38px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    box-shadow: 0 2px 12px rgba(182,255,58,0.08);
    margin-top: 10px;
}
.tarifs-btn:hover {
    background: #111;
    color: #b6ff3a;
}
.tarifs-arrow {
    font-size: 1.5em;
    margin-left: 12px;
    font-weight: 700;
}
.tarifs-col-right {
    flex: 2 1 600px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}
.tarif-card {
    background: #f5f5f5;
    border-radius: 32px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0;
    overflow: hidden;
    min-height: 140px;
    position: relative;
    transition: box-shadow 0.2s;
}
.tarif-card:not(:last-child) {
    margin-bottom: 0;
}
.tarif-price-block {
    background: #fff;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 24px 24px;
    border-radius: 32px 0 0 32px;
    box-shadow: 2px 0 12px rgba(182,255,58,0.04);
    font-family: 'IntegralCF', sans-serif;
}
.tarif-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    display: block;
}
.tarif-price-period {
    font-size: 1.1rem;
    font-weight: 400;
    color: #888;
    margin-left: 2px;
}
.tarif-frais {
    color: #bbb;
    font-size: 0.95rem;
    margin-top: 8px;
}
.tarif-content {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 38px;
    width: 100%;
    gap: 30px;
}
.tarif-name {
    font-family: 'IntegralCF', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
}
.tarif-desc {
    color: #444;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}
.tarif-link {
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.tarif-link:hover {
    color: #b6ff3a;
}
.tarif-link.disabled {
    color: #bbb;
    pointer-events: none;
    font-style: italic;
}
@media (max-width: 1100px) {
    .tarifs-container {
        flex-direction: column;
        gap: 40px;
    }
    .tarifs-col-left, .tarifs-col-right {
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .tarifs-section {
        padding: 60px 0 30px 0;
    }
    .tarifs-title {
        font-size: 2rem;
    }
    .tarif-card {
        flex-direction: column;
        border-radius: 24px;
        min-height: 0;
    }
    .tarif-price-block {
        border-radius: 24px 24px 0 0;
        min-width: 0;
        width: 100%;
        padding: 24px 0 16px 0;
    }
    .tarif-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 18px 24px 18px;
        gap: 10px;
    }
    .tarif-name {
        font-size: 1.3rem;
    }
}

.tarif-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0.2, 0.2, 1);
    background: #f8f8f8;
    border-radius: 0 0 18px 18px;
    margin-top: 0;
    padding: 0 0 0 0;
}
.tarif-card.open .tarif-details {
    margin-top: 18px;
    padding: 24px 24px 18px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.tarif-inclusions {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.tarif-check {
    color: #b6ff3a;
    font-weight: bold;
    margin-right: 8px;
}
.tarif-details-btn {
    display: inline-block;
    background: #b6ff3a;
    color: #111;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 14px 32px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.tarif-details-btn:hover {
    background: #111;
    color: #b6ff3a;
}
.tarif-arrow {
    font-size: 1.2em;
    margin-left: 6px;
}
.tarif-note {
    color: #bbb;
    font-size: 0.95rem;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
} 

.pricing-simple {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .pricing-header h2 {
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
  }
  
  .pricing-header p {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .btn-main {
    display: inline-block;
    background: #bfff2a;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 2rem;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .btn-main:hover {
    background: #a6e626;
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
  }
  
  .pricing-card {
    background: #f7f7f7;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  
  .pricing-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  
  .pricing-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 0.5rem;
  }
  
  .pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    margin-left: 0.2rem;
  }
  
  .pricing-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .pricing-desc {
    color: #444;
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 700px) {
    .pricing-header h2 {
      font-size: 2rem;
    }
    .pricing-cards {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .pricing-card {
      padding: 1.2rem 1rem;
    }
  }

/* Media Queries améliorées */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 120px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .accordion-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 90px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .portfolio-grid {
        gap: 15px;
    }
    
    .portfolio-item {
        height: 300px;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .accordion-trigger {
        padding: 2rem;
    }
    
    .accordion-content {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .nav-item {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    /* Suppression du menu hamburger */
    .menu-toggle {
        display: none;
    }

    /* Suppression du menu mobile */
    .mobile-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .accordion-title {
        font-size: 1.5rem;
    }
    
    .accordion-trigger {
        padding: 1.5rem;
    }
    
    .accordion-content {
        padding: 0 1.5rem;
    }
    
    .slider-title {
        font-size: 28px;
    }
    
    .slider-item {
        min-width: 250px;
        height: 180px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .footer-modern-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-modern-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .portfolio-item {
        height: 200px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .accordion-title {
        font-size: 1.3rem;
    }
    
    .accordion-trigger {
        padding: 1.2rem;
    }
    
    .accordion-content {
        padding: 0 1.2rem;
    }
    
    .slider-title {
        font-size: 24px;
    }
    
    .slider-item {
        min-width: 220px;
        height: 160px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .footer-modern {
        padding: 30px 20px;
    }
    
    .footer-modern-text-logo {
        font-size: 2rem;
    }
}

/* Améliorations pour les images responsives */
img {
    max-width: 100%;
    height: auto;
}

/* Améliorations pour les conteneurs flexibles */
.container, 
.portfolio-container,
.services-container,
.slider-container,
.cta-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Améliorations pour le texte */
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
}

/* Améliorations pour les boutons */
.cta-button,
.footer-modern-btn,
.about-unikom-btn {
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

/* Améliorations pour les grilles */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Améliorations pour les sections */
section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

/* Améliorations pour le menu mobile */
.mobile-menu {
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

.mobile-nav-links {
    width: 100%;
}

.mobile-nav-item {
    width: 100%;
    text-align: center;
}

/* Améliorations pour les animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Styles pour le carousel d'équipe */
.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: relative;
	text-align: center;
	margin-bottom: 80px;
	pointer-events: none;
	white-space: nowrap;
	font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
	background:#B6FF3A;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.text-center {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin: 0 auto;
	overflow: hidden;
	user-select: none;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: grab;
	user-select: none;
}

.carousel-track:active {
	cursor: grabbing;
}

.carousel-track.dragging {
	transition: transform 0.05s linear;
}

.card {
	position: absolute;
	width: 320px;
	height: 320px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: grab;
	user-select: none;
}

.card:active {
	cursor: grabbing;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	user-select: none;
	pointer-events: none;
}

.card-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: #b6ff3a;
	color: #000000;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: bold;
	z-index: 2;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	user-select: none;
	pointer-events: none;
}

.card:hover .card-badge {
	background-color: #ffffff;
	transform: translateY(-3px);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-2 .card-badge {
	background-color: #ffffff;
	color: #000000;
	filter: grayscale(100%);
	opacity: 0.7;
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.left-1 .card-badge {
	background-color: #f0f0f0;
	color: #000000;
	filter: grayscale(80%);
	opacity: 0.8;
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-1 .card-badge {
	background-color: #f0f0f0;
	color: #000000;
	filter: grayscale(80%);
	opacity: 0.8;
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.right-2 .card-badge {
	background-color: #ffffff;
	color: #000000;
	filter: grayscale(100%);
	opacity: 0.7;
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.carousel-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.carousel-cta .cta-button {
    font-size: 16px;
    padding: 14px 30px;
    box-shadow: 0 8px 20px rgba(182, 255, 58, 0.25);
    border-radius: 50px;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.carousel-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(182, 255, 58, 0.4);
}

.drag-indicator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 8px 16px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	z-index: 15;
}

.drag-indicator:hover {
	opacity: 1;
}

.drag-text {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.drag-icon-left, 
.drag-icon-right {
	font-size: 14px;
	animation: arrow-pulse 1.5s ease-in-out infinite;
}

.drag-icon-left {
	animation-delay: 0.75s;
	animation: arrow-pulse-left 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse-left {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(-3px);
	}
}

.drag-icon-right {
	animation-delay: 0s;
	animation: arrow-pulse-right 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse-right {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(3px);
	}
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}

	.card {
		width: 250px;
		height: 250px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.card-badge {
		font-size: 12px;
		padding: 6px 12px;
	}
	
	.drag-indicator {
		padding: 6px 12px;
	}
	
	.drag-text {
		font-size: 10px;
	}
}

.manuscrit-arrow {
    max-width: 250px;
    height: auto;
    opacity: 1;
    display: block;
    margin-top: -40px; /* Augmenter la marge négative pour un décalage vers le haut plus important */
    position: relative;
}

/* Style pour les éléments de titre qui utilisaient IntegralCF */
h1, h2, h3, h4, h5, h6,
.header-title, .hero-title, .section-title, .portfolio-title, .services-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

/* Style pour les éléments qui utilisaient Montserrat */
p, a, button, .text, .desc, .subtitle, .paragraph {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

/* Remplacer toutes les anciennes références à IntegralCF */
.portfolio-title-item, .service-title, .testimonial-title, .contact-title, .about-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Remplacement global des polices */
[class*="title"], 
h1, h2, h3, h4, h5, h6, 
.title, 
.accordion-title, 
.marquee-text, 
.slider-title,
.cta-title,
.custom-cursor,
.project-circle,
.testimonials-title,
.about-title,
.services-title,
.portfolio-title,
.portfolio-title-item,
.footer-modern-text-logo {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

p, a, span, button, input, textarea, label, li,
.text, .desc, .subtitle, .paragraph,
.nav-item, .nav-link, .cta-button,
.portfolio-badge, .accordion-tag,
.testimonial-text, .testimonial-author,
.footer-modern-link, .footer-modern-btn {
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

/* On conserve certaines polices spécifiques */
.manuscrit-text {
    font-family: 'Gloria Hallelujah', cursive !important;
}

/* Remplacement de la police Arial Black pour about-title */
.about-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
}

/* Ajout de règles pour les éléments du footer */
.footer-modern {
    font-family: 'Poppins', sans-serif !important;
}

/* Ajout en fin de fichier après les styles existants */

/* Liste des éléments de texte qui ne devraient pas être en uppercase */
.cta-text,
.presentation-text,
.portfolio-description, 
.title-subtitle,
.services .title-subtitle,
.slider-title + p,
.footer-modern-bottom,
.tarif-inclusions li,
.tarif-note,
.faq-a,
.about-unikom-text,
.pricing-desc {
    text-transform: none !important;
    font-weight: normal !important;
}