/* Kanit Font */
@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit-Regular.woff2') format('woff2'),
        url('fonts/Kanit-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit-Light.woff2') format('woff2'),
        url('fonts/Kanit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit-Medium.woff2') format('woff2'),
        url('fonts/Kanit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit-SemiBold.woff2') format('woff2'),
        url('fonts/Kanit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit-Bold.woff2') format('woff2'),
        url('fonts/Kanit-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit-Black.woff2') format('woff2'),
        url('fonts/Kanit-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #1a1a1a;
    --gray: #333333;
    --gray-light: #666666;
    --gray-lighter: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit';
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
/* ============================================
   HEADER NAVIGATION
============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.logo p {
    font-size: 11px;
    color: var(--white);
    font-style: italic;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Grand logo BGF à gauche */
.hero-logo {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 450px;
    opacity: 0.95;
    animation: fadeInLeft 1.2s ease;
}

.hero-logo svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Wrapper CTA en bas à droite */
.hero-cta-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    animation: fadeInRight 1.2s ease;
}

.hero-cta {
    background-color: var(--black);
    padding: 60px 80px;
    text-align: center;
    min-width: 500px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--white);
    text-transform: uppercase;
}

.btn-discover {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-discover:hover {
    color: var(--black);
}

.btn-discover:hover::before {
    left: 0;
}

/* ============================================
   ANIMATIONS
============================================ */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px);
    }

    to {
        opacity: 0.95;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 1200px) {
    .hero-logo {
        width: 350px;
        left: -30px;
    }

    .hero-cta {
        padding: 50px 60px;
        min-width: 450px;
    }

    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-logo {
        width: 280px;
        left: -20px;
    }

    .hero-cta {
        padding: 40px 50px;
        min-width: 380px;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .hero {
        background-attachment: scroll;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-logo {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 220px;
        margin: 0 auto;
        padding-top: 100px;
    }

    .hero-cta-wrapper {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .hero-cta {
        padding: 40px 30px;
        min-width: auto;
        width: 100%;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .btn-discover {
        padding: 10px 30px;
        font-size: 12px;
    }
}



/* Global Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--white);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-lighter);
    margin-top: 20px;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background-color: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 14px;
    color: var(--gray-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.about-badge {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin-bottom: 60px;
    border-radius: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-text p:first-child {
    font-weight: 600;
    color: var(--black);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values {
    padding: 120px 0;
    background-color: #f0f0f0;
    position: relative;
}

.values .container {
    position: relative;
    z-index: 2;
}

.values .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.values .section-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px;
}

.value-card {
    background-color: #0a0a0a;
    background-image: url('images/texture-dark.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 5px #00000099;
    cursor: pointer;

    /* 3D Properties */
    transform-style: preserve-3d;
    transform: rotate3d(0);
    transition-duration: 300ms;
    transition-property: transform, box-shadow;
    transition-timing-function: ease-out;
}

/* Glow effect qui suit la souris */
.value-card .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
    pointer-events: none;
    z-index: 1;
}

/* Contenu de la card au-dessus du glow */
.value-icon,
.value-card h3,
.value-card p {
    position: relative;
    z-index: 2;
}

.value-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
}

.value-card:hover {
    transition-duration: 150ms;
    box-shadow: 0 5px 20px 5px #00000044;
}

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

@media (max-width: 968px) {
    .values {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .values .section-title {
        font-size: 28px;
    }

    .value-card {
        padding: 40px 25px;
    }
}

@media (max-width: 640px) {
    .values {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values .section-title {
        font-size: 24px;
    }

    .value-card {
        padding: 35px 20px;
    }

    .value-card:hover {
        transform: translateY(-8px);
    }
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.mission-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--gray-dark);
    border: 1px solid var(--gray);
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-lighter);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--gray-dark);
    border-top: 1px solid var(--gray);
}

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

.footer-logo img {
    height: 35px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 12px;
    color: var(--gray-lighter);
    letter-spacing: 2px;
}

.footer-copyright p {
    font-size: 12px;
    color: var(--gray-lighter);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }

    .hero-cta {
        margin: 0 auto;
        text-align: center;
        padding: 15px;
        max-width: 90%;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .btn-discover {
        padding: 15px 35px;
    }

    .section-title {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-card {
        padding: 40px 30px;
    }

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

    .about-badge {
        font-size: 12px;
        padding: 10px 25px;
        margin-bottom: 40px;
    }

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

    .about-text p {
        font-size: 15px;
    }

    .mission-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .mission-text {
        font-size: 18px;
        padding: 0 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 15px 50px;
        min-height: 100vh;
    }

    .hero-cta {
        margin: 0 auto;
        text-align: center;
        padding: 10px;
        max-width: 95%;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .btn-discover {
        padding: 12px 25px;
        width: 100%;
        max-width: 250px;
    }

    .mission-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .mission-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* styles.css */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.services-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
}

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

/* Titre de la section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 50px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Grille des services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Carte de service */
.service-card {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #f8f8f8 40%,
            #e0e0e0 70%,
            #4a4a4a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Contenu de la carte */
.card-content {
    padding: 40px 30px 30px;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon {
    margin-bottom: 20px;
    color: #000;
}

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

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

/* Pied de carte */
.card-footer {
    background: linear-gradient(to bottom,
            rgba(74, 74, 74, 0.9) 0%,
            rgba(40, 40, 40, 1) 100%);
    padding: 20px 25px;
    text-align: center;
}

.card-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section {
        padding: 50px 15px;
    }

    .section-title h2 {
        font-size: 20px;
        padding: 10px 40px;
    }
}



/* ============================================
   SECTION PROCESSUS CRÉATIF
============================================ */

.process-section {
    background-color: #0a0a0a;
    background-image: url('images/texture-dark.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Effet lumineux central */
.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 30%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Overlay sombre pour contraste */
.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    color: #fff;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Bordure en bas des titres */
.process-step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #fff;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    font-weight: 300;
    margin-top: 15px;
}

/* ============================================
   SECTION CTA - UN PROJET EN TÊTE
============================================ */

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600') center/cover;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cta-content p {
    color: #f0f0f0;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #fff;
    color: #000;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* ============================================
   SECTION PORTFOLIO
============================================ */

.portfolio-section {
    padding: 80px 20px;
    background-color: #e8e8e8;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 50px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.portfolio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.portfolio-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.portfolio-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Filtres Portfolio */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: #c0c0c0;
    color: #333;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Grille Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: #666;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* Ratio 1:1 */
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

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

.overlay-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay-content p {
    color: #ddd;
    font-size: 14px;
    font-weight: 400;
}

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

@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

    .portfolio-header h3 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-title {
        font-size: 26px;
    }

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

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* styles.css */

/* ============================================
   SECTION STATISTIQUES
============================================ */

.stats-section {
    padding: 80px 20px;
    /* background-color: #0a0a0a; */

}

/* Effet lumineux central */
.stats-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 30%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Overlay sombre pour contraste */
/* .stats-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
} */

.stats-section .container {
    position: relative;
    z-index: 1;
    perspective: 1500px;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    background-image: url('images/texture-dark.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 1px 5px #00000099;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;

    /* 3D Properties */
    transform-style: preserve-3d;
    transform: rotate3d(0);
    transition-duration: 300ms;
    transition-property: transform, box-shadow;
    transition-timing-function: ease-out;
}

/* Glow effect qui suit la souris */
.stats-container .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
    background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
    pointer-events: none;
    z-index: 0;
}

.stats-container:hover {
    transition-duration: 150ms;
    box-shadow: 0 5px 20px 5px #00000044;
}

/* Contenu au-dessus du glow */
.stats-title,
.stats-grid {
    position: relative;
    z-index: 1;
}

.stats-title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: #bbb;
    line-height: 1.4;
}

/* ============================================
   SECTION TÉMOIGNAGES
============================================ */

.testimonials-section {
    padding: 80px 20px;
    background-color: #f0f0f0;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonials-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.testimonials-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.testimonial-author span {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* ============================================
   SECTION CONTACT & FAQ
============================================ */

.contact-section {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.contact-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Formulaire de contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

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

.btn-submit {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #000;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.btn-questions {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-questions:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .stats-container {
        padding: 40px 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .stats-container {
        padding: 40px 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 11px;
    }

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

    .testimonials-header h2,
    .contact-header h2 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btn-submit {
        width: 100%;
    }
}

/* styles.css - Footer */

/* ============================================
   FOOTER
============================================ */

.footer {
    background-color: #0a0a0a;
    background-image: url('images/texture-dark.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px 30px;
}

/* Effet lumineux central */
.footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 30%,
            rgba(255, 255, 255, 0.02) 50%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Overlay sombre pour contraste */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contenu principal du footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Logo et À propos */
.footer-about {
    max-width: 350px;
}

.footer-logo h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 30px;
}

/* Coordonnées */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #ddd;
    font-size: 14px;
}

.contact-item i {
    color: #fff;
    font-size: 16px;
    width: 20px;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

/* Colonnes de liens */
.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-text {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Bas du footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom-left p {
    color: #999;
    font-size: 12px;
    margin: 5px 0;
}

.footer-bottom-left strong {
    color: #fff;
}

.powered-by {
    font-size: 11px !important;
    color: #777 !important;
}

/* Réseaux sociaux */
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-text {
    font-size: 14px;
    color: #ddd;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

/* Bouton Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

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

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 60px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   CUSTOM CURSOR
============================================ */

body {
    cursor: none;
}

a, button, .portfolio-item, .value-card, .service-card, .stat-item, .hamburger {
    cursor: none;
}

.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, transform 0.15s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

/* Cursor hover state for interactive elements */
.cursor.hover .cursor-dot {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
}

.cursor.hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: #ffffff;
    border-width: 3px;
}

/* Cursor states for different sections */
.cursor.hero-cursor .cursor-dot {
    background-color: #ffffff;
}

.cursor.hero-cursor .cursor-outline {
    border-color: #ffffff;
}

.cursor.about-cursor .cursor-dot {
    background-color: #000000;
}

.cursor.about-cursor .cursor-outline {
    border-color: #000000;
}

.cursor.values-cursor .cursor-dot {
    background-color: #ffffff;
}

.cursor.values-cursor .cursor-outline {
    border-color: #ffffff;
}

.cursor.services-cursor .cursor-dot {
    background-color: #000000;
}

.cursor.services-cursor .cursor-outline {
    border-color: #000000;
}

.cursor.portfolio-cursor .cursor-dot {
    background-color: #ffffff;
}

.cursor.portfolio-cursor .cursor-outline {
    border-color: #ffffff;
}

.cursor.stats-cursor .cursor-dot {
    background-color: #000000;
}

.cursor.stats-cursor .cursor-outline {
    border-color: #000000;
}

.cursor.contact-cursor .cursor-dot {
    background-color: #ffffff;
}

.cursor.contact-cursor .cursor-outline {
    border-color: #ffffff;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor {
        display: none;
    }
}