/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    min-height: 100vh;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    margin-top: -24px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img{
    width: 170px;
    height: 50px;
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgb(44, 44, 44);
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #333;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #EA8401, #FACB17);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(90deg, #201E1F, #020202);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px ;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 30, 31, 1);
}

.contact-btn span {
    font-size: 20px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -64px;
}

.hero-content span {
    color: #EA8401;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #EA8401, #FACB17);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.arrow {
    position: absolute;
    top: 220px;
    right: 280px;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    animation: blink 3s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
}

.reduction img {
    width: 100%;
}

/* Section bande défilante des logos */
.logo-marquee-section {
    background: linear-gradient(90deg, #201E1F, #020202);
    width: 100%;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    margin-top: -90px;
}

.marquee-container {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee-scroll 20s linear infinite;
    gap: 6rem;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 80px;
    width: 1000px;
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 2.5;
    transition: all 0.1s ease;
}

.logo-iteme img {
    height: 100px;
    width: 1000px;
    max-width: 120px;
    opacity: 2.5;
    transition: all 0.1s ease;
}

.logo-item:hover img {
    opacity: 5;
    transform: scale(1.05);
}

/* Animation du défilement */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Pause au survol */
.marquee-track:hover {
    animation-play-state: paused;
}



/* Version texte pour mobile */
@media (max-width: 500px) {
    .logo-marquee-section {
        padding: 1rem 0;
        margin-top: -550px;
    }
    
    .marquee-container {
        width: 95%;
    }
    
    .marquee-track {
        display: none; /* Cache les logos */
    }
    
    .marquee-track {
        display: none;
    }
    
    .marquee-container {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .marquee-container::after {
        content: "INCLUDIA ✦  KOTEKA SHOP ✦   ONE TOUCH LAB ACADEMY ✦ OPEN SCHOOL ✦ ICOM'S ACADEMY ✦ ECLAIRIA ✦ ICOM'STORE ✦ JOBLIWORKS ✦ INCLUDIA ✦  KOTEKA SHOP ✦   ONE TOUCH LAB ACADEMY ✦ OPEN SCHOOL ✦ ICOM'S ACADEMY ✦ ECLAIRIA ✦ ICOM'STORE ✦ JOBLIWORKS ✦";
        display: inline-block;
        color: white;
        font-weight: 700;
        font-size: 0.85rem;
        text-align: center;
        white-space: nowrap;
        animation: enterprise-marquee linear infinite;
        animation: infinite-scroll 20s linear infinite;
        will-change: transform;
        padding: 0.9rem 0;
        letter-spacing: 1px;
        text-transform: uppercase;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);

    }
    
    /* Animation parfaite pour boucle infinie */
   @keyframes infinite-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
    
    /* Style spécifique pour les séparateurs ✦ */
    .marquee-container::after {
        text-shadow: 
            0 0 8px rgba(241, 137, 1, 0.4),
            0 0 15px rgba(247, 201, 19, 0.2);
    }
    
    /* Couleur spéciale pour les séparateurs */
    .marquee-container::after {
        color: white;
    }
    
    /* Les séparateurs ✦ auront une couleur différente */
    .marquee-container::after {
        font-weight: 600;
    }
    
    /* Animation pour le texte */
    @keyframes text-marquee {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    /* Pause au survol */
    .marquee-container:hover::after {
        animation-play-state: paused;
    }
}

@media (width: 375px) {
    .logo-marquee-section {
    padding: 1rem 0;
    margin-top: -350px;
}
}

@media (width: 390px) {
    .logo-marquee-section {
    padding: 1rem 0;
    margin-top: -460px;
}
}

@media (width: 360px) {
    .logo-marquee-section {
    padding: 1rem 0;
    margin-top: -400px;
}
}

/*SECTION 3*/

/* Section Texte et Boutons */

.text-cta-section {
    padding: 5rem 5%;
    text-align: center;
}

.text-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-family: "Instrument Serif", serif;
    font-size: 5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #201E1F, #020202);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: linear-gradient(90deg, #201E1F, #020202);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-cta-section {
        padding: 4rem 5%;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .text-cta-section {
        padding: 3rem 5%;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .buttons-container {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
}

/* Style pour le soulignement en zigzag statique */
.zigzag-word {
    position: relative;
    display: inline-block;
}

.zigzag-word::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 8" preserveAspectRatio="none"><path d="M0,6 L20,2 L40,6 L60,2 L80,6 L100,2" stroke="%23EA8401" stroke-width="2" fill="none" /></svg>') no-repeat;
    background-size: 100% 100%;
}


/* Section Services */
.services-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.services-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #EA8401, #FACB17);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #EA8401, #FACB17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #EA8401;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: #EA8401;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 4rem 5%;
        margin-top: -40px;
    }
    
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .service-icon img {
        width: 50px;
        height: 50px;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 5%;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-card {
        padding: 1.8rem 1.2rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}


/* Section Technologies */
.technologies {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    text-align: center;
    margin-top: -50px;
}

.tech-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tech-title span {
    color: #EA8401;
}

.technologies img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    
    transition: transform 0.3s ease;
}

.technologies img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .technologies {
        padding: 3.5rem 5%;
    }
    
    .tech-title {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .technologies {
        padding: 3rem 5%;
    }
    
    .tech-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .technologies {
        padding: 2.5rem 5%;
    }
    
    .tech-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .technologies img {
        border-radius: 8px;
    }
}

@media (max-width: 320px) {
    .tech-title {
        font-size: 1.5rem;
    }
}



/* Section Formations */
.formations-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    margin-top: -30px;
}

.formations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.formations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.formations-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #EA8401, #FACB17);
    border-radius: 2px;
}

.formations-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.formation-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.formation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.formation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #EA8401, #FACB17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.formation-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.formation-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #EA8401;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.formation-card:hover .formation-name {
    color: #EA8401;
}

.formation-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .formations-section {
        padding: 4rem 5%;
        margin-top: -40px;
    }
    
    .formations-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .formations-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .formations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .formation-card {
        padding: 2rem 1.5rem;
    }
    
    .formation-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .formation-icon img {
        width: 35px;
        height: 35px;
    }
    
    .formation-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .formations-section {
        padding: 3rem 5%;
    }
    
    .formations-title {
        font-size: 2rem;
    }
    
    .formations-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .formations-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .formation-card {
        padding: 1.8rem 1.2rem;
    }
    
    .formation-name {
        font-size: 1.1rem;
    }
    
    .formation-description {
        font-size: 0.9rem;
    }
}

/* Section À propos */
.about-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    margin-top: -60px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #EA8401, #FACB17);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.about-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 0 0 45%;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    text-align: left;
}

/* Styles pour les parties importantes du texte */
.highlight {
    color: #EA8401;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(234, 132, 1, 0.1) 0%, rgba(234, 132, 1, 0.05) 100%);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.highlight-value {
    color: #FACB17;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(250, 203, 23, 0.15) 0%, rgba(250, 203, 23, 0.05) 100%);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }
    
    .about-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 5%;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 80%;
        max-width: 350px;
    }
    
    .about-image img {
        max-width: 100%;
    }
    
    .about-text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
    }
    
    .about-text p {
        font-size: 1.05rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 5%;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-image {
        width: 90%;
        max-width: 150px;
    }
    
    .about-image img {
        border-radius: 10px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .highlight, .highlight-value {
        padding: 0.1rem 0.2rem;
    }
}

@media (max-width: 320px) {
    .about-image {
        max-width: 250px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
}























/* Media Queries pour le Responsive Design */

/* Tablettes et petits écrans */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .navigation {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.9rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-top: -40px;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .arrow {
        display: none;
    }
    
    .hero-content {
        margin-top: -800px;
    }

    .contact-btn {
        display: none;
    }
}

/* Tablettes en mode portrait */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem 5%;
    }
    
    .logo img {
        width: 140px;
        height: 40px;
    }
    
    .navigation {
        gap: 1.2rem;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .contact-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .arrow {
        right: 150px;
        top: 180px;
    }
    
    .hero-content {
        margin-top: -30px;
    }
}

/* Smartphones en mode paysage */
@media (max-width: 667px) {
    .header {
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .navigation {
        gap: 1rem;
        margin-top: 0.3rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .arrow {
        display: none; /* Suppression de la flèche */
    }
    
    .hero-content {
        margin-top: -20px;
    }
}






















/* Smartphones en mode portrait */
@media (max-width: 480px) {
    .hero-section {
        padding: 0.8rem 5%;
        margin-top: -15px;
    }
    
    .logo img {
        width: 120px;
        height: 35px;
    }
    
    .navigation {
        gap: 0.8rem;
        flex-wrap: wrap;
        margin-top: 0.9rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }
    
    .contact-btn {
        display: none; /* Suppression du bouton contact */
    }
    
    .hero-content {
        margin-top: -500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 95%;
        margin-top: 0.5rem;
    }
    
    .arrow {
        display: none; /* Suppression de la flèche */
    }
}

@media (width: 390px) {
    .hero-content {
        margin-top: -420px;
    }
}

/* Très petits smartphones */
@media (max-width: 375px) {
    .header {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .navigation {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .hero-content {
        margin-top: -300px;
    }
}

@media (width: 360px) {
    .hero-content {
        margin-top: -350px;
    }
}


/* Extra small devices */
@media (max-width: 320px) {
    .navigation {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 768px) {
    .hero-content {
        margin-top: -550px; 
    }

    .logo-marquee-section {
        margin-top: -600px;
    }
}

@media (min-width: 820px) and (max-width: 820px) {
    .hero-content {
        margin-top: -650px; 
    }

    .logo-marquee-section {
        margin-top: -720px;
    }
}

@media (min-width: 1024px) and (min-height: 1366px) {
    .hero-content {
        margin-top: -10000px; 
    }

    .logo-marquee-section {
        margin-top: -900px;
    }
}

@media (min-width: 912px) and (max-width: 912px) {
    .hero-content {
        margin-top: -800px; 
    }

    .logo-marquee-section {
        margin-top: -880px;
    }
}

@media (min-width: 540px) and (max-width: 540px) {
    .hero-content {
        margin-top: -300px; 
    }

    .logo-marquee-section {
        margin-top: -350px;
    }
}

@media (min-width: 344px) and (max-width: 344px) {
    .hero-content {
        margin-top: -470px; 
        margin-bottom: 25px;
    }

}

@media (min-width: 853px) and (max-width: 853px) {
    .hero-content {
        margin-top: -750px; 
    }

    .logo-marquee-section {
        margin-top: -800px;
    }
}


@media (min-width: 1024px) and (min-height: 600px) {
    .hero-content {
        margin-top: -10px; 
    }

    .logo-marquee-section {
        margin-top: -80px;
    }
}


@media (min-width: 1280px) and (min-height: 800px) {
    .hero-content {
        margin-top: -250px; 
    }

    .logo-marquee-section {
        margin-top: -300px;
    }
}




/* Section Image Cliquable */
.clickable-image-section {
    padding: 3rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    text-align: center;
}

.clickable-image-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}


.image-link {
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.image-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-link img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-link:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .clickable-image-section {
        padding: 2.5rem 5%;
    }
    
    .image-link img {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .clickable-image-section {
        padding: 2rem 5%;
        margin-top: -30px;
    }
    
    .image-link img {
        max-width: 100%;
    }
    
    .image-link:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 853px) {
    .clickable-image-section {
        padding: 2rem 5%;
        margin-top: -40px;
    }
}

@media (max-width: 480px) {
    .clickable-image-section {
        padding: 1.5rem 5%;
        margin-top: -42px;
    }
    
    .image-link img {
        border-radius: 8px;
    }
}

/* Section Contact */
.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    margin-top: -50px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Partie Informations de contact */
.contact-info {
    display: grid;
    gap: 0.6rem;
}

.contact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #EA8401;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 132, 1, 0.15);
}

.contact-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #EA8401;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-text {
    color: #333;
    line-height: 1.5;
    font-size: 1.2rem;
}

/* Partie Formulaire */
.contact-form-section {
    background: white;
    padding: 4.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #EA8401;
    background: white;
    box-shadow: 0 0 0 3px rgba(234, 132, 1, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #201E1F, #020202);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        padding: 4rem 5%;
        margin-top: -20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        order: 2; /* Les cartes passent en dessous */
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-form-section {
        order: 1; /* Le formulaire passe au-dessus */
        padding: 2.5rem;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 5%;
        margin-top: -20px;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 600px;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
        max-width: 600px;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 5%;
        margin-top: -20px;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 1.8rem 1.2rem;
    }
    
    .contact-form-title {
        font-size: 1.6rem;
    }
    
    .form-input, .form-textarea {
        padding: 0.8rem 1rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .contact-section {
        padding: 2rem 5%;
        margin-top: -20px;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }

}



/* Section Revenue */
.revenue-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    margin-top: -50px;
}

.revenue-container {
    max-width: 1200px;
    margin: 0 auto;
}

.revenue-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.revenue-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.revenue-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.revenue-image img:hover {
    transform: scale(1.02);
}

.revenue-text {
    flex: 0 0 45%;
}

.revenue-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.8rem;
    text-align: left;
}

/* Style pour la partie importante du texte */
.revenue-highlight {
    color: #EA8401;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(234, 132, 1, 0.1) 0%, rgba(234, 132, 1, 0.05) 100%);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .revenue-content {
        gap: 3rem;
    }
    
    .revenue-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .revenue-section {
        padding: 4rem 5%;
    }
    
    .revenue-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .revenue-image {
        flex: 0 0 auto;
        width: 80%;
        max-width: 350px;
    }
    
    .revenue-image img {
        max-width: 100%;
    }
    
    .revenue-text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
    }
    
    .revenue-text p {
        font-size: 1.05rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .revenue-section {
        padding: 3rem 5%;
    }
    
    .revenue-content {
        gap: 2rem;
    }
    
    .revenue-image {
        width: 90%;
        max-width: 280px;
    }
    
    .revenue-image img {
        border-radius: 10px;
    }
    
    .revenue-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .revenue-highlight {
        padding: 0.1rem 0.2rem;
    }
}

@media (max-width: 320px) {
    .revenue-image {
        max-width: 250px;
    }
    
    .revenue-text p {
        font-size: 0.95rem;
    }
}


/* Section FAQ */
.faq-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
    margin-top: -60px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.faq-question h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    background: linear-gradient(135deg, #EA8401, #FACB17);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.plus-icon {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
}

/* État actif (ouvert) */
.faq-item.active .faq-question {
    border-bottom-color: #f0f0f0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
}

.faq-contact-btn {
    display: inline-block;
    background: linear-gradient(90deg, #201E1F, #020202);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 5%;
    }
    
    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        margin-top: -5px;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-contact-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 5%;
        margin-top: -40px;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-question h3 {
        font-size: 0.89rem;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
    }
    
    .plus-icon {
        font-size: 1rem;
    }
    
    .faq-contact-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .faq-cta {
        margin-top: -24px;
    }
}


/* Footer*/

/* Footer */
.footer {
    background: linear-gradient(135deg, #201E1F 0%, #020202 100%);
    color: white;
}

.footer-top {
    background: linear-gradient(135deg, #EA8401 0%, #FACB17 100%);
    padding: 4rem 5%;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #201E1F;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #201E1F;
    font-weight: 500;
}

.cta-email {
    display: inline-block;
    background: #201E1F;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #020202;
}

.footer-main {
    padding: 4rem 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-container .made {
    font-size: 12.5px;
    color: #EA8401;
}

.footer-column h3.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FACB17;
}

.footer-logo img {
    width: 250px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FACB17;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #FACB17;
    color: #201E1F;
    transform: translateY(-3px);
    border-color: #FACB17;
}

.whatsapp-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(37, 211, 102, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    color: #25D366;
    flex-shrink: 0;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.whatsapp-text {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
    margin-bottom: 5px;
}

.whatsapp-number {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin-bottom: 5px;
}

.whatsapp-number:hover {
    color: #FACB17;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 5%;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-top {
        padding: 3rem 5%;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 5%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-top {
        padding: 2.5rem 5%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-contact {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 2rem 5%;
    }
    
    .footer-main {
        padding: 2rem 5%;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-email {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .footer-column h3.footer-title {
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-contact {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .footer-logo img {
        width: 180px;
        height: auto;
    }

}

/* Bouton Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EA8401, #FACB17);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(234, 132, 1, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(234, 132, 1, 0.5);
    background: linear-gradient(135deg, #FACB17, #EA8401);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Animation de pulsation subtile */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(234, 132, 1, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(234, 132, 1, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(234, 132, 1, 0.3);
    }
}

.scroll-to-top.visible {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Pour les très grands écrans */
@media (min-width: 1440px) {
    .scroll-to-top {
        bottom: 40px;
        right: 40px;
        width: 55px;
        height: 55px;
    }
}