/* Google Fonts are now used for Kanit */

/* 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';
    font-size: 17px;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.logo {
    width: 450px;
}

/* 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: 1640px;
    margin: 0 auto;
    padding: 0 20px;
    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.055), rgba(0, 0, 0, 0.3)),
        url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Removed background-attachment: fixed so it scrolls naturally */
    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: transparent !important;
    padding: 80px 60px 40px;
    /* Increased top padding to push text down */
    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: 56px;
    font-weight: 900;
    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: #f7f5f0;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
    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: 18px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

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

/* Values Section */
.values {
    padding: 120px 0;
    background-color: #edebe4;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
    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;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

/* 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 {
    transform: translateY(-14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    transition-duration: 0.25s;
}

/* ============================================
   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: #f7f5f0;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
    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: 16px;
    }

    .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: 'Kanit', 'Segoe UI', sans-serif;
    background-color: #f7f5f0;
    color: #333;
}

.services-section {
    padding: 80px 20px;
    background-color: #f0ede6;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
}

.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: 100%;
    margin: 0 auto;
}

/* Carte de service */
.service-card {
    background: #ffffff;
    border: 1px solid #e2ddd6;
    border-radius: 16px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

/* En-tête : icône + titre côte à côte */
.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    flex-shrink: 0;
}

.icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

/* Description */
.card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin: 0;
    padding-top: 6px;
    border-top: 1px solid #ece8e1;
}

/* 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: 100%;
    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: #e9e5dc;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
}

.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;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 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 {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* 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: #edebe4;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
}

.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: rgba(247, 245, 240, 0.85);
    backdrop-filter: blur(4px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px 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: #f7f5f0;
    background-image: url('images/cardboard-texture.jpg');
    background-size: cover;
    background-position: center;
}

.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 #d8d4cc;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #f2efe8;
}

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

.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: rgba(238, 235, 227, 0.8);
    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: 14px;
    height: 14px;
    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 hover state for interactive elements */
.cursor.hover .cursor-dot {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
}

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

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

    .cursor {
        display: none;
    }
}


/* =====================================================
   PARALLAX & EFFETS DYNAMIQUES — bgfstudio
===================================================== */

/* --- Navigation : logo image --- */
.logo img {
    height: 44px;
    width: auto;
    display: block;
}

/* --- Hero : sous-titre --- */
.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 35px;
    letter-spacing: 0.3px;
}

/* --- Hero : titre plus grand pour 4 lignes --- */
.hero-title {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* --- Hero : logo image avec parallax via CSS var --- */
.hero-logo {
    transform: translateY(calc(-50% + var(--parallax-offset, 0px)));
    will-change: transform;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.65));
}

/* --- Hero : formes flottantes décoratives --- */
.hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 8%;
    left: 12%;
    animation: shapePulse 9s ease-in-out infinite;
}

.shape-2 {
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    bottom: 18%;
    left: 36%;
    animation: shapePulse 12s ease-in-out infinite 2.5s;
}

.shape-3 {
    width: 95px;
    height: 95px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    top: 28%;
    right: 47%;
    animation: shapeFloat3 7s ease-in-out infinite;
}

.shape-4 {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    top: 20%;
    left: 57%;
    animation: shapeFloat4 5.5s ease-in-out infinite 1.8s;
}

@keyframes shapePulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes shapeFloat3 {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-18px) rotate(45deg);
    }
}

@keyframes shapeFloat4 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- Marquee strip --- */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    background: #050505;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 5;
}

.marquee-inner {
    display: inline-flex;
    align-items: center;
    animation: marqueeScroll 38s linear infinite;
    will-change: transform;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 26px;
    font-family: 'Kanit', sans-serif;
    white-space: nowrap;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.15);
    font-size: 9px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

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

/* Second marquee (direction inversée) */
.marquee-strip-alt .marquee-inner {
    animation-direction: reverse;
    animation-duration: 32s;
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.05s;
}

.reveal-delay-2 {
    transition-delay: 0.18s;
}

.reveal-delay-3 {
    transition-delay: 0.31s;
}

.reveal-delay-4 {
    transition-delay: 0.44s;
}

/* --- Mission : nouvelle mise en page citation --- */
.mission {
    padding: 120px 0;
    overflow: hidden;
}

.mission-eyebrow {
    font-size: 11px;
    letter-spacing: 6px;
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 600;
    text-align: center;
}

.mission-quote {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-style: italic;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    will-change: transform;
    border: none;
}

/* --- About : grande accroche dans colonne texte --- */
.about-big-title {
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0 0 28px 0;
}

.about-big-subtitle {
    font-size: 18px;
    color: #555;
    font-weight: 300;
    line-height: 1.9;
    margin: 0;
}

/* --- Animation variants supplémentaires --- */

/* Slide depuis la gauche */
.reveal-left {
    opacity: 0;
    transform: translateX(-55px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide depuis la droite */
.reveal-right {
    opacity: 0;
    transform: translateX(55px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale apparition */
.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Delays partagés avec tous les variants */
.reveal-left.reveal-delay-1,
.reveal-right.reveal-delay-1,
.reveal-scale.reveal-delay-1 {
    transition-delay: 0.05s;
}

.reveal-left.reveal-delay-2,
.reveal-right.reveal-delay-2,
.reveal-scale.reveal-delay-2 {
    transition-delay: 0.18s;
}

.reveal-left.reveal-delay-3,
.reveal-right.reveal-delay-3,
.reveal-scale.reveal-delay-3 {
    transition-delay: 0.31s;
}

.reveal-left.reveal-delay-4,
.reveal-right.reveal-delay-4,
.reveal-scale.reveal-delay-4 {
    transition-delay: 0.44s;
}

/* --- About image : parallax --- */
.about-image {
    overflow: hidden;
}

.about-parallax-img {
    width: 100%;
    height: 118%;
    max-height: none;
    object-fit: cover;
    margin-top: -9%;
    will-change: transform;
    transition: none;
}

/* --- Footer : logo image --- */
.footer-logo img {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

/* --- Responsive : ajustements --- */
@media (max-width: 968px) {
    .hero-title {
        font-size: 28px;
    }

    .mission-quote {
        font-size: clamp(26px, 6vw, 48px);
    }

    .shape-1 {
        width: 260px;
        height: 260px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .mission-quote {
        font-size: clamp(22px, 7vw, 36px);
        letter-spacing: 0;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4 {
        display: none;
    }

    .marquee-item {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 0 18px;
    }
}

/* =============================================
   AUGMENTATION GLOBALE DES TAILLES DE TEXTE
   ============================================= */

/* Base */
body {
    font-size: 19px;
}

/* Navigation */
.nav-menu a {
    font-size: 17px;
}

/* About */
.about-text p {
    font-size: 20px;
}

.about-big-subtitle {
    font-size: 20px;
}

/* Service cards */
.card-header h3 {
    font-size: 21px;
}

.card-desc {
    font-size: 17px;
}

/* Values */
.value-card h3 {
    font-size: 22px;
}

.value-card p {
    font-size: 16px;
}

/* Process */
.process-step h3 {
    font-size: 22px;
}

.process-step p {
    font-size: 16px;
}

/* Mission */
.mission-text {
    font-size: 26px;
}

/* Stats */
.stat-label {
    font-size: 14px;
}

/* Testimonials */
.testimonials-header p {
    font-size: 19px;
}

.testimonial-text {
    font-size: 17px;
}

.testimonial-author strong {
    font-size: 17px;
}

.testimonial-author span {
    font-size: 15px;
}

/* Contact */
.contact-header p {
    font-size: 19px;
}

.form-group label {
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 16px;
}

.faq-item h3 {
    font-size: 18px;
}

.faq-item p {
    font-size: 16px;
}

.info-item h3 {
    font-size: 20px;
}

.info-item p {
    font-size: 16px;
}

/* Portfolio */
.portfolio-header p {
    font-size: 18px;
}

.filter-btn {
    font-size: 16px;
}

/* Section subtitles */
.section-subtitle {
    font-size: 20px;
}

/* Footer */
.footer-description {
    font-size: 16px;
}

.footer-links a {
    font-size: 16px;
}

.contact-item {
    font-size: 16px;
}

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

.footer-column h3 {
    font-size: 20px;
}

/* Footer layout and design */
.footer {
    padding: 80px 0 30px;
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

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

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

.footer-links a {
    color: var(--gray-lighter);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-lighter);
}

.contact-item i {
    color: var(--white);
    margin-top: 4px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--gray);
    background: transparent;
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--gray-lighter);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-lighter);
}

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

.social-links a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gray-lighter);
}

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

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

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

/* Buttons */
.btn {
    font-size: 18px;
}

.btn-submit {
    font-size: 18px;
}

/* =============================================
   AMÉLIORATIONS BGF STUDIO — PACK COMPLET
   ============================================= */

/* --- 1. LOGO AGRANDI (header + footer) --- */
.logo img {
    height: 80px !important;
    width: auto;
}

.footer-logo img {
    height: 80px !important;
    width: auto;
    margin-bottom: 18px;
}

/* --- 2. ABOUT SECTION REDESIGN --- */
.about {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--black);
}

.about-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.about-bg-slide.active {
    opacity: 1;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
    max-width: 1640px;
    width: 100%;
}

.about-content {
    display: flex;
    justify-content: flex-end;
    /* Align right */
    align-items: center;
    width: 100%;
}

.about-text-wrapper {
    max-width: 600px;
    text-align: left;
}

.about-eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.about-big-title {
    color: #fff !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    margin-bottom: 30px;
}

.about-big-subtitle {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
}

@media (max-width: 968px) {
    .about-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
    }

    .about-content {
        justify-content: center;
        text-align: center;
    }

    .about-text-wrapper {
        text-align: center;
    }
}

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

.about-badge {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-content {
    grid-template-columns: 1fr !important;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    gap: 0 !important;
}

.about-big-title {
    color: #fff !important;
}

.about-big-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* --- 3. NOS VALEURS — titre en gras --- */
.values .section-title {
    font-weight: 900 !important;
    font-size: 34px !important;
    letter-spacing: 1px;
}

/* --- 4. NOTRE MISSION — eyebrow visible --- */
.mission-eyebrow {
    color: rgba(0, 0, 0, 0.78) !important;
    font-size: 14px !important;
    letter-spacing: 5px !important;
    font-weight: 700 !important;
}

/* --- 5. MISSION SLIDER --- */
.mission-slider {
    position: relative;
    min-height: 160px;
    overflow: hidden;
}

.mission-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.mission-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mission-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.mission-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.mission-dot.active {
    background-color: #000;
    transform: scale(1.3);
}

/* --- 6. SERVICES — cartes agrandies --- */
.service-card {
    padding: 40px 36px !important;
}

.icon img {
    width: 96px !important;
    height: 96px !important;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
}

/* --- 7. HERO CTA — enlever le rectangle noir --- */
.hero-cta {
    /* margin-top: 100px; */
    background-color: transparent !important;
    padding: 40px 60px 10px;
}

.hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 0, 0, 0.6);
}

/* --- 8. HERO MOBILE — bgmobil.png, masquer le texte --- */
@media (max-width: 640px) {
    .hero {
        /* margin-top: 100px; */
        background-image: url('images/bgmobil.png') !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .hero-cta-wrapper {
        display: none !important;
    }
}

/* --- 9. PORTFOLIO LIGHTBOX MODAL --- */
.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.portfolio-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: none;
    border: 2px solid #fff;
    color: #fff;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background-color: #fff;
    color: #000;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    color: #fff;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: #fff;
    color: #000;
}

.modal-content {
    position: relative;
    z-index: 9001;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: scale(0.88);
    transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.portfolio-modal.open .modal-content {
    transform: scale(1);
}

#modal-img {
    max-width: 80vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    filter: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-caption {
    text-align: center;
    color: #fff;
}

.modal-caption h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-caption p {
    font-size: 14px;
    color: #bbb;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Curseur pointeur sur portfolio items pour indiquer le clic */
.portfolio-item {
    cursor: pointer !important;
}

/* --- 10. FOOTER — meilleur alignement --- */
.footer-column h3 {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* SECTION TITLES - BOLD, UPPERCASE, LARGER */
.section-title,
.about-big-title,
.mission-title,
.stats-title,
.process-title,
.testimonials-header h2,
.contact-header h2,
.cta-content h2 {
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.about-big-title,
.mission-title,
.stats-title,
.process-title,
.testimonials-header h2,
.contact-header h2,
.cta-content h2 {
    font-size: 48px !important;
}

@media (max-width: 768px) {

    .section-title,
    .about-big-title,
    .mission-title,
    .stats-title,
    .process-title,
    .testimonials-header h2,
    .contact-header h2,
    .cta-content h2 {
        font-size: 32px !important;
    }
}

/* --- VALUE ICON — images des icônes blanches (si SVG noir) --- */
.value-icon img {
    filter: brightness(0) invert(1);
    width: 110px;
    height: 110px;
    object-fit: contain;
}

/* --- STATS SECTION FULL WIDTH --- */
.stats-section .stats-full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

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

/* --- CTA Section Background - MacBook --- */
.cta-section {
    background-image: url('images/macbook.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}