* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e55a2b;
    --secondary-color: #1e3a8a;
    --accent-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #9ca3af;
    --bg-light: #2d3748;
    --bg-main: #1a202c;
    --white: #ffffff;
    --text-on-dark: #f7fafc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-on-dark);
    background-color: var(--bg-main);
}

/* Navigation */
nav {
    background: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: box-shadow 0.3s ease;
}

nav:hover {
    box-shadow: 0 4px 20px rgba(229, 90, 43, 0.3);
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    color: #e55a2b;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(229, 90, 43, 0.2) 0%, rgba(229, 90, 43, 0.1) 30%, rgba(229, 90, 43, 0.05) 50%, transparent 80%);
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
}

.logo:hover {
    color: #ff8c5a;
}

.logo:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.logo .logo-c {
    font-size: 2.5rem;
    display: inline-block;
}

.logo .logo-rest {
    font-size: 1.8rem;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-on-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e55a2b, #1e3a8a);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(229, 90, 43, 0.2) 0%, rgba(229, 90, 43, 0.1) 30%, rgba(229, 90, 43, 0.05) 50%, transparent 80%);
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    padding: 0.5rem 1rem;
    opacity: 0;
    filter: blur(8px);
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

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

.nav-links a.active::before {
    width: 100%;
    background: linear-gradient(90deg, #e55a2b, #1e3a8a);
    box-shadow: 0 0 10px rgba(229, 90, 43, 0.5);
}

.nav-links a.active::after {
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(ellipse, rgba(229, 90, 43, 0.2) 0%, rgba(229, 90, 43, 0.1) 30%, rgba(229, 90, 43, 0.05) 50%, transparent 80%);
    opacity: 1;
    filter: blur(8px);
}

/* Hero Section */
.hero {
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video.loaded {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7) contrast(1.2);
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #e55a2b 10%, 
        #e66a3a 20%, 
        #e77a4a 30%, 
        #e88a5a 40%, 
        #c97a8f 50%, 
        #9a6ba4 60%, 
        #6b5cb9 70%, 
        #4d4dce 80%, 
        #2e3e9e 90%, 
        var(--secondary-color) 100%);
    z-index: 0;
}

.hero-video {
    display: none;
}

.hero-video.loaded {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.6) 0%, 
        rgba(30, 58, 138, 0.6) 100%);
    z-index: 1;
}


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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-skills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    transition: transform 0.3s, background 0.3s;
}

.skill-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Services Section Creative */
.services-section {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
    padding: 6rem 0;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.services-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.services-bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e55a2b, #ff8c5a);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.services-bg-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    bottom: -50px;
    right: -50px;
    animation-delay: 7s;
}

.services-bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e55a2b, #1e3a8a);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-title {
    background: linear-gradient(135deg, #e55a2b, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.service-card-creative {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(45, 55, 72, 0.8) 0%, 
        rgba(45, 55, 72, 0.6) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(229, 90, 43, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.service-card-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.1) 0%, 
        rgba(30, 58, 138, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card-creative:hover::before {
    opacity: 1;
}

.service-card-creative:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(229, 90, 43, 0.5);
    box-shadow: 0 20px 60px rgba(229, 90, 43, 0.3),
                0 0 40px rgba(30, 58, 138, 0.2);
}

.service-card-1:hover {
    box-shadow: 0 20px 60px rgba(229, 90, 43, 0.4),
                0 0 40px rgba(229, 90, 43, 0.3);
}

.service-card-2:hover {
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.4),
                0 0 40px rgba(30, 58, 138, 0.3);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(229, 90, 43, 0.2) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card-creative:hover .service-card-glow {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    height: 100px;
}

.service-icon-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.2), 
        rgba(30, 58, 138, 0.2));
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    transition: all 0.4s;
}

.service-card-creative:hover .service-icon-bg {
    transform: scale(1.3);
    opacity: 1;
}

.service-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.service-card-creative:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(229, 90, 43, 0.3));
}

.service-card-creative h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s;
    position: relative;
}

.service-card-creative:hover h3 {
    color: #ff8c5a;
}

.service-card-creative p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.service-card-creative:hover p {
    color: var(--text-on-dark);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 90, 43, 0.2);
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
    display: inline-block;
}

.service-card-creative:hover .service-arrow {
    transform: translateX(10px);
    color: #ff8c5a;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* Services Grid - Legacy (keep for other pages) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, 
        var(--bg-light) 0%, 
        rgba(229, 90, 43, 0.05) 20%, 
        rgba(255, 140, 90, 0.08) 35%, 
        rgba(201, 122, 143, 0.1) 50%, 
        rgba(154, 107, 164, 0.12) 65%, 
        rgba(30, 58, 138, 0.15) 80%, 
        var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(229, 90, 43, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, 
        var(--bg-light) 0%, 
        rgba(229, 90, 43, 0.12) 20%, 
        rgba(255, 140, 90, 0.15) 35%, 
        rgba(201, 122, 143, 0.18) 50%, 
        rgba(154, 107, 164, 0.2) 65%, 
        rgba(30, 58, 138, 0.25) 80%, 
        var(--bg-light) 100%);
    border-color: rgba(229, 90, 43, 0.4);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    height: 80px;
}

.service-icon svg {
    width: 80px;
    height: 80px;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-card .btn-process {
    margin-top: auto;
    align-self: flex-start;
}

/* Realisations Grid */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .realisations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.realisation-card {
    background: linear-gradient(135deg, 
        var(--bg-light) 0%, 
        rgba(229, 90, 43, 0.05) 20%, 
        rgba(255, 140, 90, 0.08) 35%, 
        rgba(201, 122, 143, 0.1) 50%, 
        rgba(154, 107, 164, 0.12) 65%, 
        rgba(30, 58, 138, 0.15) 80%, 
        var(--bg-light) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(229, 90, 43, 0.2);
    transition: transform 0.3s, z-index 0.3s;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.realisation-card:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, 
        var(--bg-light) 0%, 
        rgba(229, 90, 43, 0.12) 20%, 
        rgba(255, 140, 90, 0.15) 35%, 
        rgba(201, 122, 143, 0.18) 50%, 
        rgba(154, 107, 164, 0.2) 65%, 
        rgba(30, 58, 138, 0.25) 80%, 
        var(--bg-light) 100%);
    border-color: rgba(229, 90, 43, 0.4);
    z-index: 10;
}

.realisation-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #e55a2b 15%, 
        #e66a3a 30%, 
        #e77a4a 45%, 
        #c97a8f 55%, 
        #9a6ba4 65%, 
        #6b5cb9 75%, 
        #2e3e9e 90%, 
        var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.realisation-content {
    padding: 1.75rem;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(229, 90, 43, 0.03) 30%, 
        rgba(201, 122, 143, 0.05) 50%, 
        rgba(30, 58, 138, 0.03) 70%, 
        transparent 100%);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.realisation-content > p {
    flex: 1 1 auto;
    min-height: 0;
}

.realisation-content-bottom {
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

/* Alignement des cartes dépliées */
.realisation-card.card-expanded {
    align-self: stretch;
}

.realisation-card.card-expanded .realisation-content {
    min-height: fit-content;
}

.realisation-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-dark);
}

.realisation-content p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    position: relative;
}

.realisation-description-short,
.realisation-description-full {
    display: block;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.realisation-description-short {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}

.realisation-description-full {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
}

.realisation-description-short.hidden {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
}

.realisation-description-full.visible {
    opacity: 1;
    max-height: 2000px;
    transform: translateY(0);
}

/* Contact Form */
.contact-section {
    background: var(--bg-light);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-on-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #e55a2b 15%, 
        #e66a3a 30%, 
        #e77a4a 45%, 
        #c97a8f 55%, 
        #9a6ba4 65%, 
        #6b5cb9 75%, 
        #2e3e9e 90%, 
        var(--secondary-color) 100%);
}

/* Footer */
footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(229, 90, 43, 0.2);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #e55a2b 15%, 
        #e66a3a 30%, 
        #e77a4a 45%, 
        #c97a8f 55%, 
        #9a6ba4 65%, 
        #6b5cb9 75%, 
        #2e3e9e 90%, 
        var(--secondary-color) 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* About Us Section */
.about-us-section {
    background: var(--bg-main);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.05) 0%, 
        rgba(229, 90, 43, 0.02) 50%, 
        rgba(30, 58, 138, 0.05) 100%);
    z-index: 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-us-text {
    padding: 2rem;
    width: 100%;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-on-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-us-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    min-width: 60px;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: var(--text-on-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.1) 0%, 
        rgba(30, 58, 138, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(229, 90, 43, 0.2);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    grid-column: 2;
    grid-row: 1 / 3;
}

.visual-card {
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.15) 0%, 
        rgba(30, 58, 138, 0.15) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(229, 90, 43, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.1) 0%, 
        rgba(30, 58, 138, 0.1) 100%);
    transform: rotate(45deg);
    transition: transform 0.5s;
}

.visual-card:hover::before {
    transform: rotate(45deg) translate(20%, 20%);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 90, 43, 0.3);
    border-color: var(--primary-color);
}

.visual-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card .card-icon-img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.visual-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-on-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

.visual-card-1 {
    animation: float 3s ease-in-out infinite;
}

.visual-card-2 {
    animation: float 3s ease-in-out infinite 0.5s;
}

.visual-card-3 {
    animation: float 3s ease-in-out infinite 1s;
}

.visual-card-4 {
    animation: float 3s ease-in-out infinite 1.5s;
}

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

/* Process Section */
.process-section {
    background: #2a2a2a;
    padding: 5rem 2rem;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%, 
        rgba(229, 90, 43, 0.6) 25%, 
        rgba(30, 58, 138, 0.6) 75%, 
        var(--secondary-color) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-marker {
    margin-left: 2rem;
}

.process-icon {
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.timeline-icon {
    width: 75px;
    height: 75px;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.timeline-icon-large {
    width: 85px;
    height: 85px;
}

.timeline-item:hover .process-icon,
.timeline-item:hover .timeline-icon {
    opacity: 1;
    transform: scale(1.05);
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #3d3d3d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-dark);
    font-weight: 600;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-dark);
    font-weight: 600;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.process-reassurance {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin: 2rem 0 1.5rem 0;
}

.process-cta {
    margin-top: 2rem;
}

.btn-process {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #e55a2b 10%, 
        #e66a3a 20%, 
        #e77a4a 30%, 
        #e88a5a 40%, 
        #c97a8f 50%, 
        #9a6ba4 60%, 
        #6b5cb9 70%, 
        #4d4dce 80%, 
        #2e3e9e 90%, 
        var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-process:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */

@media (max-width: 1024px) and (min-width: 769px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-us-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        grid-column: 1;
        grid-row: auto;
        margin-top: 1.5rem;
    }

    .visual-card {
        min-height: 150px;
        padding: 1.75rem;
    }

    .about-us-text {
        padding: 1.5rem;
    }

    .about-us-stats {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-links a:hover {
        transform: translateY(0);
    }


    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-video {
        opacity: 0.25;
    }

    .hero-content .hero-skills {
        gap: 0.75rem;
    }

    .skill-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-us-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-us-text {
        padding: 1.5rem;
    }

    .lead-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-us-features {
        margin-bottom: 2rem;
    }

    .feature-item {
        margin-bottom: 1.5rem;
    }

    .feature-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .about-us-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-us-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        grid-column: 1;
        grid-row: auto;
        margin-top: 1rem;
    }
    
    .visual-card {
        width: 100%;
        min-height: 140px;
        padding: 1.5rem;
    }

    .visual-card .card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

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

    .services-section {
        padding: 4rem 0;
    }

    .services-grid-creative {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card-creative {
        padding: 2rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
        margin: 0 !important;
    }

    .timeline-content {
        margin-left: 0;
    }

    .process-section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .timeline {
        padding: 0 1rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .process-icon {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .about-us-text {
        padding: 1rem;
    }

    .lead-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-us-features {
        margin-bottom: 1.5rem;
    }

    .feature-item {
        margin-bottom: 1.25rem;
        gap: 1rem;
    }

    .feature-number {
        font-size: 1.8rem;
        min-width: 45px;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .about-us-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .visual-card {
        min-height: 120px;
        padding: 1.25rem;
    }

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

    .stat-item {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-grid-creative {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .service-card-creative {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .service-icon-wrapper {
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .service-icon svg {
        width: 60px;
        height: 60px;
    }

    .service-card-creative h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card-creative p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .services-cta {
        margin-top: 2.5rem;
    }
}

/* Service Detail Pages */
.service-hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3;
}

.hero-pc {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    animation: float-pc 6s ease-in-out infinite;
}

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

.code-lines {
    position: absolute;
    top: 20%;
    left: 10%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e55a2b;
    opacity: 0.4;
    animation: code-typing 4s ease-in-out infinite;
}

.code-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: fade-in-code 0.5s ease-in forwards;
    animation-delay: var(--delay);
}

@keyframes fade-in-code {
    to {
        opacity: 0.4;
    }
}

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

.service-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e55a2b, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 5rem 0;
}

.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
    padding: 2rem 0;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 6rem 0;
    padding: 2rem 0;
}

.service-feature-card {
    background: linear-gradient(135deg, 
        rgba(45, 55, 72, 0.8) 0%, 
        rgba(45, 55, 72, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(229, 90, 43, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 90, 43, 0.5);
    box-shadow: 0 10px 30px rgba(229, 90, 43, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.service-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-benefits {
    margin: 5rem 0;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.benefit-item {
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.1) 0%, 
        rgba(30, 58, 138, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(229, 90, 43, 0.2);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-process {
    margin: 6rem 0;
    padding: 2rem 0;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step:nth-child(1),
.process-step:nth-child(2),
.process-step:nth-child(3) {
    grid-column: span 2;
}

.process-step:nth-child(4) {
    grid-column: 2 / 4;
}

.process-step:nth-child(5) {
    grid-column: 4 / 6;
}

.process-step {
    background: linear-gradient(135deg, 
        rgba(45, 55, 72, 0.8) 0%, 
        rgba(45, 55, 72, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(229, 90, 43, 0.2);
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 90, 43, 0.5);
    box-shadow: 0 10px 30px rgba(229, 90, 43, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e55a2b, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

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

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.1) 0%, 
        rgba(30, 58, 138, 0.1) 100%);
    border-radius: 20px;
    margin-top: 6rem;
    border: 1px solid rgba(229, 90, 43, 0.2);
}

.service-cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
}

/* Responsive Service Pages */
@media (max-width: 768px) {
    .service-hero {
        min-height: 400px;
        padding: 4rem 0;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-pc {
        width: 300px;
        height: 225px;
        bottom: 5%;
    }

    .code-lines {
        font-size: 12px;
        top: 15%;
        left: 5%;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .service-intro p {
        font-size: 1.1rem;
    }

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

    .service-feature-card {
        padding: 2rem;
    }

    .service-process h2,
    .service-benefits h2 {
        font-size: 2rem;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-section {
        padding: 3rem 1.5rem;
    }

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

/* Réalisations Preview Section */
.realisations-preview-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

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

.realisations-preview-header .section-title {
    background: linear-gradient(135deg, #e55a2b, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.realisations-preview-header .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.realisations-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .realisations-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.realisation-preview-card {
    background: linear-gradient(135deg, 
        rgba(45, 55, 72, 0.8) 0%, 
        rgba(45, 55, 72, 0.6) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(229, 90, 43, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.realisation-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 90, 43, 0.5);
    box-shadow: 0 20px 40px rgba(229, 90, 43, 0.3);
}

.realisation-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.realisation-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realisation-placeholder svg {
    width: 100%;
    height: 100%;
}

.realisation-preview-content {
    padding: 2rem;
}

.realisation-preview-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.realisation-preview-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.realisation-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
}

.tag {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.2), 
        rgba(30, 58, 138, 0.2));
    border: 1px solid rgba(229, 90, 43, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-on-dark);
    transition: all 0.3s;
}

.realisation-preview-card:hover .tag {
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.3), 
        rgba(30, 58, 138, 0.3));
    border-color: rgba(229, 90, 43, 0.5);
}

.realisations-preview-cta {
    text-align: center;
}

/* Responsive Réalisations Preview */
@media (max-width: 768px) {
    .realisations-preview-section {
        padding: 4rem 0;
    }

    .realisations-preview-header .section-title {
        font-size: 2rem;
    }

    .realisations-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .realisation-preview-image {
        height: 180px;
    }

    .realisation-preview-content {
        padding: 1.5rem;
    }
}

.realisation-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.realisation-link:hover {
    color: #ff8c5a;
}

.realisation-more-link {
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    cursor: pointer;
}

.realisation-more-link:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

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

/* Styles pour les filtres de réalisations */
.filter-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid rgba(229, 90, 43, 0.2);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.filter-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.filter-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tag {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: rgba(229, 90, 43, 0.1);
    border: 2px solid rgba(229, 90, 43, 0.3);
    border-radius: 25px;
    transition: all 0.3s;
}

.filter-tag:hover {
    background: rgba(229, 90, 43, 0.2);
    border-color: rgba(229, 90, 43, 0.5);
}

.filter-tag input[type="checkbox"] {
    display: none;
}

.filter-tag span {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tag input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.filter-tag:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.3), 
        rgba(229, 90, 43, 0.5));
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(229, 90, 43, 0.4);
}

.btn-clear-filters {
    padding: 0.6rem 1rem;
    min-width: 120px;
    max-width: 120px;
    background: rgba(30, 58, 138, 0.3);
    border: 2px solid rgba(30, 58, 138, 0.5);
    color: var(--text-on-dark);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s;
    white-space: nowrap;
    text-align: center;
}

.btn-clear-filters:hover {
    background: rgba(30, 58, 138, 0.5);
    border-color: rgba(30, 58, 138, 0.7);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(229, 90, 43, 0.2);
    border: 2px solid rgba(229, 90, 43, 0.4);
    color: var(--text-on-dark);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(229, 90, 43, 0.4);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    background: rgba(229, 90, 43, 0.1);
    border: 2px solid rgba(229, 90, 43, 0.3);
    color: var(--text-on-dark);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    background: rgba(229, 90, 43, 0.2);
    border-color: rgba(229, 90, 43, 0.5);
}

.pagination-number.active {
    background: linear-gradient(135deg, 
        rgba(229, 90, 43, 0.4), 
        rgba(229, 90, 43, 0.6));
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 10px rgba(229, 90, 43, 0.4);
}

.pagination-ellipsis {
    color: var(--text-light);
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .pagination {
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .pagination-number {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-tags {
        gap: 0.75rem;
    }
    
    .filter-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

.realisation-image a {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
}

.realisation-image a:hover {
    opacity: 0.9;
}

.realisation-detail-image a {
    display: block;
    transition: opacity 0.3s;
}

.realisation-detail-image a:hover {
    opacity: 0.9;
}

.realisation-preview-image a {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
}

.realisation-preview-image a:hover {
    opacity: 0.9;
}

/* Page détail réalisation */
.realisation-detail-section {
    padding: 4rem 0;
    min-height: 70vh;
}

.realisation-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.realisation-detail-back {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.back-link:hover {
    color: #ff8c5a;
}

.loading-message,
.error-message {
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.error-message p {
    margin-bottom: 1rem;
}

.realisation-detail-content-wrapper {
    animation: fadeIn 0.5s ease-in;
}

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

.realisation-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.realisation-detail-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.realisation-detail-image-wrapper {
    margin-bottom: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #e55a2b 15%, 
        #e66a3a 30%, 
        #e77a4a 45%, 
        #c97a8f 55%, 
        #9a6ba4 65%, 
        #6b5cb9 75%, 
        #2e3e9e 90%, 
        var(--secondary-color) 100%);
}

.realisation-detail-image {
    width: 100%;
}

.realisation-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.realisation-detail-description-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.realisation-detail-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 3rem;
    text-align: justify;
}

.realisation-detail-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(229, 90, 43, 0.2);
}

.realisation-detail-link .btn-process {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .realisation-detail-section {
        padding: 2rem 0;
    }

    .realisation-detail-title {
        font-size: 2rem;
    }

    .realisation-detail-description {
        font-size: 1rem;
    }

    .realisation-detail-image-wrapper {
        margin-bottom: 2rem;
    }
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 3rem;
}

/* Footer */
footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(229, 90, 43, 0.2);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    padding: 0;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-links li {
    position: relative;
    margin: 0;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-on-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    white-space: nowrap;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e55a2b, #1e3a8a);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 90, 43, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .footer-links li {
        width: 100%;
        text-align: center;
    }

    .footer-links a {
        width: 100%;
        text-align: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    padding: 2rem;
    background: var(--bg-main);
    border: 1px solid rgba(229, 90, 43, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-info-item:hover {
    border-color: rgba(229, 90, 43, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 90, 43, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form-wrapper {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(229, 90, 43, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    color: var(--text-on-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 2px solid rgba(229, 90, 43, 0.3);
    border-radius: 8px;
    color: var(--text-on-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 90, 43, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-process {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 6rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 2rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    transition: color 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    color: #1a202c;
}

.faq-question[aria-expanded="true"] {
    color: #1a202c;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 2rem;
}

.faq-icon {
    font-size: 2rem;
    color: #e55a2b;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 0;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 0 2rem 0;
}

.faq-answer p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.5rem 0;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.8rem;
    }
}
