@tailwind base;
@tailwind components;
@tailwind utilities;

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles généraux */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 80px; /* Compensation pour le header fixe */
}

/* ==================== */
/* Styles de l'en-tête */
/* ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00e5ff;
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 6px;
    transition:  all 0.4s ease-in-out;
}

/* Animation croix */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        backdrop-filter: blur(6px);
        margin-top: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 100%; /* Position sous le header fixe */
        left: 0;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.4s ease-in-out;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
    }

    
    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li:hover {
        transform: translateX(10px);
    }

    nav ul li a {
        display: block;
        width: 100%;
        color: #ffffff;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #00e5ff;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==================== */
/* Styles de pied de page */
/* ==================== */
footer {
    position: relative;
    z-index: 10;
    background-color: #111;
    margin-top: auto;
    padding-top: 4rem;
    color: #ccc;
    text-align: center;
    padding: 2rem 20px;
    border-top: 3px solid #545555;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-container h3 {
    color: #00e5ff;
    margin-bottom: 1rem;
}

/* Styles pour la newsletter */
.newsletter {
    flex: 1 1 100%;
    margin-bottom: 2rem;
}

.about,
.socials,
.links {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.newsletter input[type="email"] {
    box-shadow: 0 2px 6px rgba(0, 229, 255, 0.2);
    background-color: #1e1e1e;
    color: #fff;
    width: 400px;   
    height: 35px;
}

.newsletter input[type="email"]::placeholder {
    color: #aaa;
}

.newsletter {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

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

.subscribe-button {
    padding: 10px 15px;
    background-color: #00e5ff;
    border: none;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.subscribe-button:hover {
    background-color: #00bcd4;
}

/* Styles pour les réseaux sociaux */
.socials ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.socials ul li {
    margin-top: 15px;
    margin-right: 20px;
    justify-content: center;
}

.socials ul li img {
    width: 30px;
    height: auto;
}

.socials ul li a img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.socials ul li a:hover img {
    transform: scale(1.2);
    filter: brightness(1.3) drop-shadow(0 0 5px #00e5ff);
}

/* Styles pour les liens */
.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin: 0.5rem 0;
}

.links ul li a {
    color: #00e5ff;
    text-decoration: none;
}

.links ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about,
    .socials,
    .links {
        margin: 1rem 0;
    }

    .socials ul {
        flex-wrap: wrap;
    }

    .socials ul li {
        margin-right: 15px;
        margin-bottom: 10px;
    }
}

/* ==================== */
/* Styles spécifiques à la page d'accueil (index.html) */
/* ==================== */
.hero {
    min-height: 150vh;
    padding: 4rem 20px;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    grid-column: 1;
    grid-row: 1;
    padding: 2rem;
}

.hero-image-container {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-actions {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-left {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-text h1 {
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #00e5ff;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    box-shadow:  #00e5ff;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Styles pour les réalisations */
.featured-achievements {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    justify-items: center;
}

.achievement-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    justify-items: center;
}

.achievement-card:nth-child(1) { animation-delay: 0.2s; }
.achievement-card:nth-child(2) { animation-delay: 0.4s; }
.achievement-card:nth-child(3) { animation-delay: 0.6s; }
.achievement-card:nth-child(4) { animation-delay: 0.8s; }
.achievement-card:nth-child(5) { animation-delay: 1.0s; }
.achievement-card:nth-child(6) { animation-delay: 1.2s; }

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

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

.achievement-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.achievement-card:hover .achievement-image {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.achievement-card h3 {
    padding: 1rem;
    color: #00e5ff;
    font-size: 1.2rem;
}

.achievement-card p {
    padding: 0 1rem 1rem;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Media queries pour la responsivité des animations */
@media (max-width: 768px) {
    .featured-achievements {
        padding: 2rem 1rem;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievement-card {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .achievement-card.visible {
        animation: fadeInUp 0.6s ease forwards;
    }

    .achievement-image {
        height: 180px;
    }

    .achievement-card h3 {
        font-size: 1.1rem;
    }

    .achievement-card p {
        font-size: 0.85rem;
    }
}

/* Centrage des cartes sur grand écran */
@media (min-width: 1200px) {
    .achievement-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
            "card1 card2 card3"
            "card4 card5 card6";
        justify-content: center;
        max-width: 1200px;
        gap: 2rem;
        width: fit-content;
        margin: 0 auto;
    }
    
    /* Positionner les cartes dans les zones définies */
    .achievement-card:nth-child(1) {
        grid-area: card1;
    }
    
    .achievement-card:nth-child(2) {
        grid-area: card2;
    }
    
    .achievement-card:nth-child(3) {
        grid-area: card3;
    }
    
    .achievement-card:nth-child(4) {
        grid-area: card4;
    }
    
    .achievement-card:nth-child(5) {
        grid-area: card5;
    }
    
    .achievement-card:nth-child(6) {
        grid-area: card6;
    }
}

/* ==================== */
/* Styles pour la page À Propos */
/* ==================== */
.about-page {
    padding: 20px;
}

.profile-image-full {
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content {
    max-width: 800px;
    margin: auto;
}

.about-text p {
    margin-bottom: 15px;
}

.about-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00e5ff;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.about-text {
    max-width: 900px;
    margin: 20px auto;
    text-align: justify;
    padding: 0 20px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #00e5ff;
    text-align: center;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-text {
        padding: 0 15px;
        text-align: center;
    }
    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-text {
        padding: 0 10px;
    }
    .about-text h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

.cta-button {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 15px;
    background-color: #00e5ff;
    color: #000;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button h4 {
    color: #000;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Section Compétences Rapides */
.quick-skills {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    text-align: center;
}

.quick-skills h2 {
    color: #00e5ff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
}

.skills-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.skills-showcase .skill-category:nth-child(5),
.skills-showcase .skill-category:nth-child(6) {
    grid-column: span 2;
}

.skills-showcase .skill-category:nth-child(5) {
    justify-self: end;
}

.skills-showcase .skill-category:nth-child(6) {
    justify-self: start;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.skill-category:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.skill-category:hover .skill-icon::before {
    left: 100%;
}

.skill-category:hover .skill-icon svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.6));
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(0, 229, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.skill-icon svg {
    width: 40px;
    height: 40px;
    color: #00e5ff;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.skill-category h3 {
    color: #00e5ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.skill-category p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Boutons CTA améliorés */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button.primary {
    background: #00e5ff;
    color: #000;
}

.cta-button.secondary {
    background: transparent;
    color: #00e5ff;
    border: 2px solid #00e5ff;
}

.cta-button.secondary:hover {
    background: #00e5ff;
    color: #000;
}

.motto {
    font-size: 1.8rem;
    color: #00e5ff;
    margin-top: 20px;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
}

/* ==================== */
/* Styles spécifiques à la page Réalisations (realisations.html) */
/* ==================== */
.realisations-container {
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #0f0f0f, #111);
}

.achievement-section {
    padding: 4rem 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    position: relative;
    background: #0f0f0f;
}

.achievement-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.achievement-details {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 20px;
    background: #111;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.5s ease;
}

.achievement-details:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.realization-image {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    margin-right: 30px;
    object-fit: cover;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.realization-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #00e5ff;
    position: relative;
}

.realization-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.realization-text:hover h3::after {
    transform: scaleX(1);
}

.realization-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Particules */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(0, 229, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

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

/* Responsive */
@media (max-width: 768px) {
    .skills-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skills-showcase .skill-category:nth-child(5),
    .skills-showcase .skill-category:nth-child(6) {
        grid-column: 1;
        justify-self: center;
    }
    
    .achievement-details {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .realization-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .realization-text h3 {
        font-size: 1.8rem;
    }
}

/* ==================== */
/* Styles spécifiques à la page À Propos (a-propos.html) */
/* ==================== */
.about-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00e5ff;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(0, 229, 255, 0.3);
    transform: scale(1.1);
}

/* Indicateurs du carousel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #00e5ff;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(0, 229, 255, 0.7);
}

/* Section Compétences */
.skills-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.skills-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #00e5ff;
    font-size: 1.8rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

.skill-item h4 {
    color: #00e5ff;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .skills-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .skill-item {
        padding: 15px;
    }
    
    .skill-item h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .skill-item {
        padding: 12px;
    }
    
    .skill-item h4 {
        font-size: 0.95rem;
    }
}

.about-text {
    max-width: 900px;
    margin: 20px auto;
    text-align: justify;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #00e5ff;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Styles pour les liens */
.about-text a {
    color: #00e5ff;
}

.cta-button {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 15px;
    background-color: #00e5ff;
    color: #000;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button h4 {
    color: #000;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .achievement-details {
        flex-direction: column;
        text-align: center;
    }

    .achievement-details.reverse {
        flex-direction: column;
    }
}

/* ==================== */
/* Styles spécifiques à la page Entreprise (entreprise.html) */
/* ==================== */
.hero {
    position: relative;
    height: -100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    margin-top: 0;
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 0px;
    height: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0, 229, 255, 0.8);
}

/* Section Entreprise */
.entreprise-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.entreprise-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00e5ff;
}

.entreprise-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: -100px;
}

/* Section Services */
.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.service-item {
    width: 100%;
    max-width: 320px;
    background: #111;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

.service-description {
    display: none;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.toggle-button {
    background: #00e5ff;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    font-weight: bold;
}

.toggle-button:hover {
    background: #00bcd4;
}

/* Section Engagement Social */
.social-responsibility {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
}

.social-responsibility p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Témoignages */
.testimonials {
    padding: 80px 20px;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
    color: #00e5ff;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #02363b;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    color: #eee;
}

.testimonial-card h4 {
    margin-top: 15px;
    color: #00e5ff;
}

.testimonial-card a {
    color: #00e5ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-card a:hover {
    color: #00b8d4;
    text-decoration: underline;
}

/* partenaires */
.partenaires {
    background: #0a0a0a;
    padding: 80px 20px;
    text-align: center;
}

.partenaires h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00e5ff;
    text-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
}

.partenaires-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
    gap: 40px;
    align-items: center;
    padding: 20px 0;
}

.logo-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 120px;
    min-height: 100px;
}

.logo-track a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.3);
}

.logo-track img {
    height: 80px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.logo-track a:hover img {
    filter: grayscale(0%) brightness(1.2);
}

/* Animation fluide et sans vide */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Fade In Left Animation */
.fade-in-left {
    opacity: 0;
    transform: translateX(-200px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(200px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .service-list,
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* ==================== */
/* Styles spécifiques à la page Contact */
/* ==================== */
.contact-section {
    padding: 4rem 20px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #000000 ;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-info {
    color: #fff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00e5ff;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    color: #00e5ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #00bcd4;
    text-decoration: underline;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #00e5ff;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #00e5ff;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-item .slogan {
    font-weight: bold;
    color: #00e5ff;
    margin-top: 1rem;
    font-style: italic;
    text-align: right;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
    filter: brightness(1.3) drop-shadow(0 0 5px #00e5ff);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.form-group label i {
    margin-right: 10px;
    color: #00e5ff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.form-group .error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.char-counter span {
    color: #00e5ff;
    font-weight: bold;
}

.loading-spinner {
    margin-left: 10px;
    color: #00e5ff;
}

/* Section réseaux sociaux */
.social-contact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact h3 {
    color: #00e5ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.social-contact > p {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.social-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.social-contact-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.2);
    border-color: #00e5ff;
}

.social-contact-item .social-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-contact-item:hover .social-icon {
    opacity: 1;
    transform: scale(1.05);
}

.social-contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #00e5ff;
}

.social-contact-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #00e5ff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-button i {
    font-size: 1.2rem;
}

.submit-button:hover {
    background: #00bcd4;
    transform: translateY(-2px);
}

/* Animation pour les messages de succès/erreur */
@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.message {
    animation: slideIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .social-links {
        justify-content: center;
    }

    .form-group label {
        justify-content: center;
        font-size: 1rem;
    }

    .char-counter {
        text-align: center;
    }
    
    .social-contact {
        padding: 20px;
    }
    
    .social-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-contact-item {
        padding: 15px;
    }
    
    .social-contact-item .social-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 10px;
    }
    
    .contact-container {
        padding: 15px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Effet de focus sur les sections */
.achievement-section:focus-within {
    outline: none;
    box-shadow: 0 0 0 2px #00e5ff;
    border-radius: 10px;
}

/* Animation de chargement des images */
.realization-image {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Optimisation des performances */
.achievement-section.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
}

/* Ajustement du conteneur principal */
.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.more-realizations {
   background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(0,119,194,0.1) 100%) !important;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4rem 20px;
    margin: 0 auto;
    margin-bottom: 1px;
    max-width: 1000px;
    box-shadow: 0 8px 32px rgba(0,229,255,0.2), 0 0 0 1px rgba(0,229,255,0.3);
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    display: block !important;
    text-align: center;
    border: 1px solid rgba(0,229,255,0.1);
}

.more-realizations p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
}

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

.nav-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-option:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: #00ff88;
}

.nav-option i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.nav-option span {
    font-size: 1.2rem;
    font-weight: 500;
}

.social-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-option span {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem; 
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-links a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(1000%) hue-rotate(120deg);
}

@media (max-width: 768px) {
    .navigation-options {
        grid-template-columns: 1fr;
    }
    
    .more-realizations {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .more-realizations p {
        font-size: 1.5rem;
    }
}

.magazine-link {
    color: #00e5ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.magazine-link:hover {
    color: #00b8d4;
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        padding: 1rem;
    }

    .hero-text {
        grid-column: 1;
        grid-row: 1;
        padding: 1rem;
    }

    .hero-image-container {
        grid-column: 1;
        grid-row: 2;
        margin-top: 2rem;
    }

    .hero-actions {
        grid-column: 1;
        grid-row: 3;
        align-items: center;
        padding: 1rem;
    }

    .hero-image-left {
        max-width: 80%;
        margin: 0 auto;
    }

    /* Correction pour la page entreprise */
    .entreprise-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .service-list {
        width: 100%;
        padding: 0 1rem;
    }

    /* Correction pour la page contact */
    .contact-container {
        width: 100%;
        padding: 1rem;
        margin: 0;
    }

    .contact-info {
        width: 100%;
        padding: 1rem;
    }

    .contact-item {
        width: 100%;
        margin: 1rem 0;
    }

    .contact-form {
        width: 100%;
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
    }

    /* Correction pour la newsletter */
    .newsletter input[type="email"] {
        width: 100%;
        max-width: 300px;
    }
}

/* Correction pour le zoom sur mobile */
@media screen and (max-width: 768px) {
    .entreprise-content,
    .service-list,
    .contact-container,
    .contact-info,
    .contact-form {
        transform: none !important;
        zoom: 1 !important;
        -webkit-text-size-adjust: 100%;
    }
}

/* Styles pour les sections avec animation */
.about-section,
.services-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-section.visible,
.services-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.service-item {
    width: 100%;
    max-width: 320px;
    background: #111;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.2s; }
.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }
.service-item:nth-child(4) { animation-delay: 0.8s; }

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

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .about-content,
    .service-list {
        padding: 1rem;
    }

    .service-item {
        opacity: 1;
        transform: none;
    }

    .service-item.visible {
        animation: fadeInUp 0.6s ease forwards;
    }
}

@media (min-width: 1200px) {
    .service-list {
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
    }
}

/* Styles pour la section more-realizations avec bouton CTA */
.more-realizations {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    margin-top: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
}

.more-realizations p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.more-realizations .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00e5ff 0%, #00b8cc 100%);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    border: 2px solid transparent;
}

.more-realizations .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, #00b8cc 0%, #00e5ff 100%);
    border-color: #00e5ff;
}

@media (max-width: 768px) {
    .more-realizations {
        padding: 2rem 1rem;
        margin-top: 1.5rem;
    }
    
    .more-realizations p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .more-realizations .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* === SAKANA_SMART PAGE WOW EFFECT === */
.sakana-hero {
    background: linear-gradient(135deg, #eaf6ff 0%, #fffbe7 100%);
    padding: 3.5rem 1rem 2.5rem 1rem;
    text-align: center;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 32px rgba(0,229,255,0.13);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.sakana-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00e5ff33 0%, transparent 80%);
    z-index: 0;
    filter: blur(10px);
}
.sakana-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.sakana-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 2px 24px 0 #00e5ff44, 0 0 0 8px #fffbe7;
    animation: logo-pop 1.2s cubic-bezier(.23,1.12,.62,1.01);
}
@keyframes logo-pop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}
.sakana-title {
    color: #0077c2;
    font-size: 2.5rem;
    font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #00e5ff22;
    z-index: 1;
    position: relative;
    animation: fadeInDown 1.2s 0.2s both;
}
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.sakana-section-wave {
    width: 100%;
    height: 60px;
    margin-bottom: -2rem;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0C360 60 1080 0 1440 60V60H0V0Z" fill="%2300e5ff22"/></svg>') repeat-x;
    background-size: cover;
}
.sakana-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.25rem;
    color: #222;
    background: linear-gradient(90deg, #fafdff 80%, #fffbe7 100%);
    border-radius: 18px;
    padding: 1.7rem 2.2rem;
    box-shadow: 0 2px 16px rgba(0,229,255,0.07);
    animation: fadeInUp 1.1s 0.3s both;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.sakana-how-why {
    display: flex;
    gap: 2.2rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
    flex-wrap: wrap;
    animation: fadeInUp 1.1s 0.5s both;
}
.sakana-how, .sakana-why {
    flex: 1 1 350px;
    background: linear-gradient(120deg, #fafdff 80%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
    color: #1a222a;
    text-shadow: 0 1px 6px #fff8  ;
}
.sakana-how::after, .sakana-why::after {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%2300e5ff11"/><circle cx="120" cy="80" r="1.5" fill="%23ffc10711"/><circle cx="250" cy="50" r="2.5" fill="%2300e5ff11"/><circle cx="200" cy="20" r="1.5" fill="%23ffc10711"/></svg>');
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}
.sakana-how::before, .sakana-why::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.72);
    z-index: 0;
    pointer-events: none;
    border-radius: 18px;
}
.sakana-how > *, .sakana-why > * {
    position: relative;
    z-index: 1;
}
.sakana-how h2, .sakana-why h2, .sakana-avantages h2, .sakana-contexte h2, .sakana-conclusion h2 {
    color: #00b8cc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
}
.sakana-img-placeholder {
    width: 100%;
    min-height: 160px;
    background: repeating-linear-gradient(135deg, #e3f3ff 0 20px, #ffe082 20px 40px);
    border: 2px dashed #00b8cc;
    border-radius: 14px;
    margin: 1.2rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b8cc;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.7;
    animation: fadeIn 1.2s 0.7s both;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.7; }
}
.sakana-avantages {
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    background: linear-gradient(120deg, #fffde7 60%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,229,255,0.07);
    padding: 2.2rem 2.2rem 1.7rem 2.2rem;
    animation: fadeInUp 1.1s 0.7s both;
}
.sakana-avantages ul {
    margin: 1.2rem 0 0.5rem 1.2rem;
    padding-left: 1.2rem;
}
.sakana-avantages li {
    margin-bottom: 1.1rem;
    font-size: 1.13rem;
    color: #222;
    position: relative;
    padding-left: 2.2rem;
    line-height: 1.6;
    transition: background 0.3s;
}
.sakana-avantages li::before {
    content: '★';
    position: absolute;
    left: 0.2rem;
    top: 0.1rem;
    font-size: 1.3rem;
    color: #ffc107;
    filter: drop-shadow(0 0 2px #00e5ff);
    transition: color 0.3s;
}
.sakana-avantages li:hover {
    background: #eaf6ff;
    border-radius: 8px;
}
.sakana-contexte, .sakana-conclusion {
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    background: linear-gradient(120deg, #e0f7fa 60%, #fffde7 100%);
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,229,255,0.07);
    padding: 2.2rem 2.2rem 1.7rem 2.2rem;
    color: #222;
    animation: fadeInUp 1.1s 0.9s both;
}
.sakana-conclusion {
    background: linear-gradient(120deg, #fffbe7 80%, #eaf6ff 100%);
}
.sakana-contexte strong, .sakana-conclusion strong {
    color: #ff9800;
}
.sakana-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00e5ff 60%, #ffc107 100%);
    color: #003c5a;
    font-weight: bold;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-size: 1.15rem;
    margin: 1.2rem 0 0 0;
    box-shadow: 0 2px 12px #00e5ff33;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    animation: fadeInUp 1.1s 1.1s both;
}
.sakana-btn:hover {
    transform: scale(1.07) translateY(-2px);
    background: linear-gradient(90deg, #ffc107 0%, #00e5ff 100%);
    box-shadow: 0 6px 24px #ffc10755;
    color: #0077c2;
}
/* Petites particules animées en fond */
.sakana-particles {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.sakana-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5ff 60%, #ffc107 100%);
    opacity: 0.13;
    animation: sakana-pulse 3.5s infinite alternate;
}
@keyframes sakana-pulse {
    0% { transform: scale(1); opacity: 0.13; }
    100% { transform: scale(1.3); opacity: 0.22; }
}
.sakana-hero .sakana-particle:nth-child(1) { width: 60px; height: 60px; left: 10%; top: 20%; animation-delay: 0s; }
.sakana-hero .sakana-particle:nth-child(2) { width: 40px; height: 40px; left: 80%; top: 10%; animation-delay: 1.2s; }
.sakana-hero .sakana-particle:nth-child(3) { width: 30px; height: 30px; left: 60%; top: 60%; animation-delay: 2.1s; }
.sakana-hero .sakana-particle:nth-child(4) { width: 50px; height: 50px; left: 25%; top: 70%; animation-delay: 0.7s; }

@media (max-width: 900px) {
    .sakana-how-why {
        flex-direction: column;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .sakana-hero {
        padding: 2rem 0.5rem 1.2rem 0.5rem;
    }
    .sakana-title {
        font-size: 1.2rem;
    }
    .sakana-intro, .sakana-avantages, .sakana-contexte, .sakana-conclusion {
        padding: 1rem 0.5rem;
    }
    .sakana-how, .sakana-why {
        padding: 1rem 0.5rem;
    }
    .sakana-img-placeholder {
        min-height: 90px;
        font-size: 0.95rem;
    }
}

/* Galerie d'images SAKANA_SMART */
.sakana-gallery {
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
    padding: 0.5rem 0;
    text-align: center;
}
.sakana-gallery-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}
.sakana-gallery-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 16px #00e5ff22;
    background: #fff;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInUp 1.1s forwards;
    animation-delay: 0.2s;
    transition: box-shadow 0.3s, transform 0.3s;
}
.sakana-gallery-img:hover {
    box-shadow: 0 8px 32px #ffc10755, 0 2px 16px #00e5ff44;
    transform: scale(1.07) translateY(-4px);
}
.sakana-gallery-img.slide-in-left {
    animation-name: slideInLeft;
    animation-delay: 0.3s;
}
.sakana-gallery-img.slide-in {
    animation-name: fadeInUp;
    animation-delay: 0.5s;
}
.sakana-gallery-img.slide-in-right {
    animation-name: slideInRight;
    animation-delay: 0.7s;
}
.sakana-gallery-img.slide-in-far {
    animation-name: slideInFar;
    animation-delay: 0.9s;
}
@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-80px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(80px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideInFar {
    0% { opacity: 0; transform: translateY(80px) scale(0.8); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.sakana-gallery-caption {
    color: #00b8cc;
    font-size: 1rem;
    margin-top: 0.7rem;
    opacity: 0.7;
    font-style: italic;
}

.sakana-section-img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 1.2rem auto;
    border-radius: 14px;
    box-shadow: 0 2px 12px #00e5ff33;
    object-fit: cover;
    opacity: 0;
    animation: fadeInUp 1.1s forwards;
    animation-delay: 0.6s;
}

@media (max-width: 900px) {
    .sakana-gallery-row {
        gap: 0.7rem;
    }
    .sakana-gallery-img {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 600px) {
    .sakana-gallery-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .sakana-gallery-img {
        width: 90px;
        height: 90px;
    }
}

/* Amélioration des backgrounds SAKANA_SMART */
.sakana-how, .sakana-why {
    background: linear-gradient(120deg, #fafdff 80%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
    color: #1a222a;
    text-shadow: 0 1px 6px #fff8  ;
}
.sakana-how::after, .sakana-why::after {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%2300e5ff11"/><circle cx="120" cy="80" r="1.5" fill="%23ffc10711"/><circle cx="250" cy="50" r="2.5" fill="%2300e5ff11"/><circle cx="200" cy="20" r="1.5" fill="%23ffc10711"/></svg>');
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}
.sakana-how::before, .sakana-why::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.72);
    z-index: 0;
    pointer-events: none;
    border-radius: 18px;
}
.sakana-how > *, .sakana-why > * {
    position: relative;
    z-index: 1;
}

.sakana-avantages {
    background: linear-gradient(120deg, #fffde7 60%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
}
.sakana-avantages::after {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="60" cy="60" r="2.5" fill="%2300e5ff22"/><circle cx="180" cy="30" r="1.5" fill="%23ffc10733"/><circle cx="270" cy="80" r="2" fill="%2300e5ff22"/><circle cx="100" cy="20" r="1.5" fill="%23ffc10733"/></svg>');
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.sakana-avantages > * {
    position: relative;
    z-index: 1;
}

.sakana-contexte, .sakana-conclusion {
    background: linear-gradient(120deg, #e0f7fa 60%, #fffde7 100%);
    position: relative;
    overflow: hidden;
}
.sakana-contexte::after, .sakana-conclusion::after {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="80" r="2.5" fill="%2300e5ff22"/><circle cx="220" cy="40" r="1.5" fill="%23ffc10733"/><circle cx="150" cy="60" r="2" fill="%2300e5ff22"/><circle cx="80" cy="30" r="1.5" fill="%23ffc10733"/></svg>');
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
}
.sakana-contexte > *, .sakana-conclusion > * {
    position: relative;
    z-index: 1;
}

/* HERO IMMERSIF SAKANA_SMART */
.sakana-hero-immersif {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}
.sakana-hero-bg {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}
.sakana-hero-bg-img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.7) saturate(1.1);
    transform: scale(1.08);
    transition: filter 0.5s;
}
.sakana-hero-overlay {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, #00e5ff33 0%, #fffbe7cc 100%);
    opacity: 0.7;
    z-index: 2;
}
.sakana-hero-foreground {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2.5rem 1rem 2rem 1rem;
    text-align: center;
}
.sakana-hero-logo-card {
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    box-shadow: 0 8px 32px #00e5ff33, 0 0 0 12px #fffbe7cc;
    padding: 1.2rem 2.2rem;
    display: inline-block;
    margin-bottom: 1.2rem;
    animation: logo-pop 1.2s cubic-bezier(.23,1.12,.62,1.01);
}
.sakana-logo.hero-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 2px 24px 0 #00e5ff44;
}
.hero-title {
    color: #0077c2;
    font-size: 2.3rem;
    font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #00e5ff22;
    z-index: 1;
    position: relative;
    animation: fadeInDown 1.2s 0.2s both;
}
.sakana-title-sub {
    display: block;
    font-size: 1.1rem;
    color: #00b8cc;
    font-weight: 400;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
}
.hero-btn {
    margin-top: 1.2rem;
    font-size: 1.15rem;
    animation: fadeInUp 1.1s 0.7s both;
}
@media (max-width: 900px) {
    .sakana-hero-immersif {
        min-height: 45vh;
    }
    .sakana-hero-logo-card {
        padding: 0.7rem 1.2rem;
    }
    .hero-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .sakana-hero-immersif {
        min-height: 32vh;
        padding: 0.5rem 0;
    }
    .sakana-hero-logo-card {
        padding: 0.4rem 0.7rem;
        margin-bottom: 0.7rem;
    }
    .hero-title {
        font-size: 1.05rem;
    }
    .sakana-logo.hero-logo {
        max-width: 90px;
    }
}

/* ==================== */
/* STYLES SAKANA_SMART - SECTIONS MANQUANTES */
/* ==================== */

/* Override du fond noir pour Sakana_Smart */
body:has(.sakana-hero-immersif),
.sakana-hero-immersif ~ * {
    background-color: #ffffff !important;
    color: #1a222a !important;
}

/* Style spécifique pour le main de Sakana_Smart */
.sakana-hero-immersif ~ main,
main:has(.sakana-hero-immersif) {
    background-color: #ffffff !important;
    color: #1a222a !important;
}

/* Override pour toutes les sections Sakana */
[class*="sakana-"] {
    background-color: transparent !important;
}

/* Séparateurs de sections */
.sakana-section-wave {
    height: 60px;
    background: linear-gradient(135deg, #00e5ff22 0%, #fffbe7cc 50%, #00e5ff22 100%);
    position: relative;
    overflow: hidden;
}

.sakana-section-wave::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 Q300,10 600,30 T1200,30 L1200,60 L0,60 Z" fill="%2300e5ff11"/></svg>');
    animation: wave-float 8s ease-in-out infinite;
}

.sakana-section-sep {
    height: 40px;
    background: linear-gradient(90deg, transparent 0%, #00e5ff33 50%, transparent 100%);
    margin: 2rem 0;
    position: relative;
}

.sakana-section-sep::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 2px;
    background: linear-gradient(90deg, #00e5ff, #fffbe7);
    border-radius: 1px;
}

@keyframes wave-float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* Section Intro Glass */
.sakana-intro-glass {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(224,247,250,0.8) 100%) !important;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 8px 32px rgba(0,229,255,0.15), 0 0 0 1px rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    color: #1a222a !important;
}

.sakana-intro-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 200 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1.5" fill="%2300e5ff22"/><circle cx="180" cy="80" r="1" fill="%23ffc10733"/><circle cx="150" cy="30" r="2" fill="%2300e5ff22"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.sakana-intro-glass-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sakana-intro-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sakana-intro-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,229,255,0.2);
}

.sakana-intro-glass p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

/* Section Kit Sakana_Smart */
.sakana-kit-section {
    background: linear-gradient(135deg, #fffde7 0%, #e0f7fa 100%) !important;
    padding: 4rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    color: #1a222a !important;
}

.sakana-kit-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%2300e5ff22"/><circle cx="250" cy="150" r="1.5" fill="%23ffc10733"/><circle cx="200" cy="80" r="2.5" fill="%2300e5ff22"/></svg>');
    opacity: 0.08;
    pointer-events: none;
}

.sakana-kit-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sakana-kit-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.sakana-kit-img:hover {
    transform: translateY(-5px);
}

.sakana-section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sakana-kit-img:hover .sakana-section-img {
    transform: scale(1.05);
}

.sakana-kit-text {
    color: #1a222a;
}

.sakana-kit-text h2 {
    font-size: 2.2rem;
    color: #0077c2;
    margin-bottom: 1.5rem;
    font-family: 'Baloo 2', sans-serif;
    text-shadow: 0 2px 8px rgba(0,229,255,0.2);
}

.sakana-kit-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.sakana-kit-text li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.sakana-kit-text li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Section Projets Ludiques */
.sakana-projets-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #fffde7 100%) !important;
    padding: 4rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    color: #1a222a !important;
}

.sakana-projets-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="2.5" fill="%2300e5ff22"/><circle cx="250" cy="50" r="1.5" fill="%23ffc10733"/><circle cx="150" cy="180" r="2" fill="%2300e5ff22"/></svg>');
    opacity: 0.08;
    pointer-events: none;
}

.sakana-projets-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0077c2;
    margin-bottom: 3rem;
    font-family: 'Baloo 2', sans-serif;
    text-shadow: 0 2px 12px rgba(0,229,255,0.3);
}

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

.sakana-projet-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sakana-projet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #00e5ff, #fffbe7);
}

.sakana-projet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,229,255,0.2);
}

.sakana-projet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.sakana-projet-card:hover .sakana-projet-img {
    transform: scale(1.05);
}

.sakana-projet-card h3 {
    font-size: 1.5rem;
    color: #0077c2;
    margin-bottom: 1rem;
    font-family: 'Baloo 2', sans-serif;
}

.sakana-projet-card ul {
    list-style: none;
    padding: 0;
}

.sakana-projet-card li {
    padding: 0.5rem 0;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.sakana-projet-card li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1rem;
}

/* Section Galerie Carousel */
.sakana-gallery-carousel {
    background: linear-gradient(135deg, #fffde7 0%, #e0f7fa 100%) !important;
    padding: 3rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    color: #1a222a !important;
}

.sakana-gallery-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sakana-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.sakana-gallery-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sakana-gallery-img:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0,229,255,0.3);
}

.sakana-gallery-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #0077c2;
    font-style: italic;
    font-weight: 500;
}

/* Section Impact & Vision Africaine */
.sakana-impact-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #fffde7 100%) !important;
    padding: 4rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    color: #1a222a !important;
}

.sakana-impact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="80" cy="80" r="2" fill="%2300e5ff22"/><circle cx="220" cy="120" r="1.5" fill="%23ffc10733"/><circle cx="180" cy="60" r="2.5" fill="%2300e5ff22"/></svg>');
    opacity: 0.08;
    pointer-events: none;
}

.sakana-impact-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sakana-impact-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.sakana-impact-img:hover {
    transform: translateY(-5px);
}

.sakana-impact-text {
    color: #1a222a;
}

.sakana-impact-text h2 {
    font-size: 2.2rem;
    color: #0077c2;
    margin-bottom: 1.5rem;
    font-family: 'Baloo 2', sans-serif;
    text-shadow: 0 2px 8px rgba(0,229,255,0.2);
}

.sakana-impact-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.sakana-impact-vision {
    font-size: 1.2rem;
    color: #0077c2;
    font-weight: 600;
    font-style: italic;
    padding: 1rem;
    background: rgba(0,229,255,0.1);
    border-radius: 10px;
    border-left: 4px solid #00e5ff;
}

/* Section Conclusion */
.sakana-conclusion {
    background: linear-gradient(135deg, #fffde7 0%, #e0f7fa 100%) !important;
    padding: 4rem 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #1a222a !important;
}

.sakana-conclusion::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="150" cy="100" r="3" fill="%2300e5ff22"/><circle cx="100" cy="50" r="2" fill="%23ffc10733"/><circle cx="200" cy="150" r="2.5" fill="%2300e5ff22"/></svg>');
    opacity: 0.08;
    pointer-events: none;
}

.sakana-conclusion h2 {
    font-size: 2.5rem;
    color: #0077c2;
    margin-bottom: 1.5rem;
    font-family: 'Baloo 2', sans-serif;
    text-shadow: 0 2px 12px rgba(0,229,255,0.3);
}

.sakana-conclusion p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Animations pour les sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
    .sakana-kit-row,
    .sakana-impact-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sakana-projets-grid {
        grid-template-columns: 1fr;
    }
    
    .sakana-intro-glass-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sakana-intro-img {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .sakana-kit-section,
    .sakana-projets-section,
    .sakana-impact-section,
    .sakana-conclusion {
        padding: 2rem 1rem;
    }
    
    .sakana-kit-text h2,
    .sakana-projets-title,
    .sakana-impact-text h2,
    .sakana-conclusion h2 {
        font-size: 1.8rem;
    }
    
    .sakana-gallery-img {
        width: 250px;
        height: 160px;
    }
    
    .sakana-section-img {
        height: 200px;
    }
}

