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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Anek Bangla", sans-serif;
    color: #FFFFFF;
}

/* Intro Splash Screen */
.intro-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.intro-splash-logo {
    width: 120px;
    height: auto;
    animation: logoZoomIn 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

/* Logo zooms from very far, then fades out as it gets huge */
@keyframes logoZoomIn {
    0% {
        transform: scale(0.01);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: scale(6);
    }
    100% {
        transform: scale(50);
        opacity: 0;
    }
}

/* Mobile: smaller logo, adjusted scale for smaller viewport */
@media (max-width: 768px) {
    .intro-splash-logo {
        width: 80px;
        animation: logoZoomInMobile 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes logoZoomInMobile {
        0% {
            transform: scale(0.01);
            opacity: 0;
        }
        8% {
            opacity: 1;
        }
        70% {
            opacity: 1;
            transform: scale(4);
        }
        100% {
            transform: scale(25);
            opacity: 0;
        }
    }
}

/* Dark hold after logo disappears, then fade to reveal site */
.intro-splash.splash-done {
    animation: splashFadeOut 0.5s ease-out 0.15s forwards;
}

@keyframes splashFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* France Map Section */
.france-map-scroll-wrapper {
    height: 350vh;
    position: relative;
    background: #0a0a0a;
    margin-top: -4rem;
}

.france-map-section {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-animated-text {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.5px #ffffff;
    color: #ffffff;
    line-height: 1.4;
}

.map-text-left {
    left: 2%;
    top: 30%;
    transform: translateY(-50%);
}

.map-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.map-text-right {
    right: 3%;
    top: 30%;
    transform: translateY(-50%);
    text-align: right;
}

.map-text-line2-left {
    top: 65%;
    font-size: 1.3rem;
}

.map-text-line2-right {
    top: 65%;
    font-size: 1.3rem;
}

.france-map-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.france-map {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.map-overlay-text {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.map-overlay-text .map-text-line-1 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.map-overlay-text .map-text-line-2 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
    margin-top: 0.5rem;
}

.map-mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .france-map-scroll-wrapper {
        display: none;
    }

    .france-map-container {
        max-width: 320px;
    }

    .map-overlay-text .map-text-line-1 {
        font-size: 1.6rem;
    }

    .map-overlay-text .map-text-line-2 {
        font-size: 1rem;
    }
}

/* Top Bar */
.top-bar {
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.top-bar-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.top-bar-socials a:hover {
    border-color: #CE0F05;
    color: #CE0F05;
}

/* Desktop Navbar */
.desktop-nav {
    display: none;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.desktop-nav-logo {
    width: 90px;
    height: auto;
    animation: logoGlowBeat 2.4s ease-in-out infinite;
}

/* Brand block (logo + text) */
.brand-block {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-family: 'BankGothic', 'Bank Gothic', 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-title .bw { color: #ffffff; }
.brand-title .br { color: #CE0F05; }

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
    text-transform: none;
}

.brand-block-mobile {
    margin-left: 1rem;
}

.brand-block-mobile .brand-title {
    font-size: 1.15rem;
    letter-spacing: 1.5px;
}

.brand-block-mobile .brand-tagline {
    font-size: 0.55rem;
    margin-top: 0.25rem;
}

@media (max-width: 480px) {
    .brand-block-mobile .brand-title { font-size: 1rem; letter-spacing: 1px; }
    .brand-block-mobile .brand-tagline { font-size: 0.5rem; }
}

.desktop-nav-logo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@keyframes logoGlowBeat {
    0%, 100% {
        filter: drop-shadow(0 0 0px rgba(206, 15, 5, 0));
    }
    14% {
        filter: drop-shadow(0 0 10px rgba(206, 15, 5, 0.6));
    }
    28% {
        filter: drop-shadow(0 0 0px rgba(206, 15, 5, 0));
    }
    42% {
        filter: drop-shadow(0 0 6px rgba(206, 15, 5, 0.4));
    }
    56% {
        filter: drop-shadow(0 0 0px rgba(206, 15, 5, 0));
    }
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav-links a:hover {
    color: #CE0F05;
}

.desktop-nav-dropdown {
    position: relative;
}

.desktop-nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.desktop-nav-dropdown .dropdown-arrow {
    transition: transform 0.3s ease;
}

.desktop-nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.desktop-nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.8rem;
    min-width: 200px;
    flex-direction: column;
}

.desktop-nav-dropdown:hover .desktop-nav-submenu {
    display: flex;
}

.desktop-nav-submenu-inner {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.desktop-nav-submenu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
    white-space: nowrap;
    letter-spacing: 0;
    font-weight: 500;
}

.desktop-nav-submenu a:hover {
    background-color: rgba(206, 15, 5, 0.15);
}

.desktop-nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background-color: #CE0F05;
    border: 2px solid #CE0F05;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.desktop-nav-cta:hover {
    background-color: #a80d04;
    border-color: #a80d04;
}

@media (min-width: 769px) {
    .top-bar {
        display: block;
    }
    .desktop-nav {
        display: block;
    }
    .logo,
    .brand-block-mobile {
        display: none;
    }
}

/* Logo (mobile only) */
.logo {
    width: 120px;
    height: auto;
    animation: logoGlowBeat 2.4s ease-in-out infinite;
}

.brand-block-mobile {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 100;
    gap: 0.75rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: fixed;
    top: 1.8rem;
    right: 1.5rem;
    z-index: 200;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    width: 36px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 360px;
    height: 100vh;
    background-color: #0a0a0a;
    z-index: 150;
    transition: right 0.35s ease;
    padding: 3rem 2rem 2rem;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-logo {
    width: 100px;
    height: auto;
    margin-bottom: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
}

.mobile-nav-dropdown.open .mobile-nav-submenu {
    display: flex;
}

.mobile-nav-submenu a {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s ease;
}

.mobile-nav-submenu a:hover {
    color: #CE0F05;
}

.mobile-contact {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
}

.mobile-contact-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-contact-item div {
    display: flex;
    flex-direction: column;
}

.mobile-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.15rem;
}

.mobile-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 140;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .mobile-menu-overlay {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #000000;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.65);
}

/* Hero Content - Two Column Layout */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    padding-left: 1rem;
}

.hero-selling-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-selling-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-selling-points li svg {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-block;
    background-color: #CE0F05;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border: 2px solid #CE0F05;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #a80d04;
    border-color: #a80d04;
}

/* Hero Services Bar */
.hero-services-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(220, 220, 220, 0.85);
    border-radius: 10px;
    padding: 0.4rem 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
    width: fit-content;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.hero-service-item:last-child {
    border-right: none;
}

.hero-service-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-service-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2a3a;
    white-space: nowrap;
}

/* Hero Form */
.hero-right {
    flex: 0 0 480px;
}

.hero-form-card {
    background-color: rgba(220, 220, 220, 0.85);
    color: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
}

.hero-form-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: #e8e8f0;
    font-family: "Anek Bangla", sans-serif;
    font-size: 0.95rem;
    color: #333;
    resize: vertical;
}

.form-group textarea::placeholder {
    color: #999;
}

.form-hidden-fields {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.form-hidden-fields.visible {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: #e8e8f0;
    font-family: "Anek Bangla", sans-serif;
    font-size: 0.95rem;
    color: #333;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.btn-form {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #CE0F05;
    border-radius: 50px;
    background-color: #CE0F05;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-form:hover {
    background-color: #a80d04;
    border-color: #a80d04;
}

/* Partners Scroll */
.hero-partners {
    background-color: #0a0a0a;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-partners-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.logo-scroll-container {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 5rem;
    align-items: center;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.hero-partner-logo {
    height: 70px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-partner-logo:hover {
    opacity: 1;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* ===== STATS COUNTER SECTION — Shared ===== */
.stats-section {
    background: #0a0a0a;
    padding: 1rem 2rem 5rem;
    text-align: center;
    margin-top: -7rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 5rem 2rem;
        margin-top: 0;
    }
}

.stats-header {
    margin-bottom: 3.5rem;
}

.stats-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #CE0F05;
    display: block;
    margin-bottom: 0.8rem;
}

.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Glass Cards ===== */
.stats-option-c .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #CE0F05;
    border-radius: 10px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.stats-option-c .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

/* ===== Stats Responsive ===== */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2.4rem;
    }
    .stats-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .stats-section {
        padding: 2.5rem 1rem;
    }
    .stats-header {
        margin-bottom: 2rem;
    }
    .stats-title {
        font-size: 1.3rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.6rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .stats-option-c .stat-card {
        padding: 1.2rem 0.8rem;
    }
}

/* About Section */
.about-section {
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/red-lines-background.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}


.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.about-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(206, 15, 5, 0.6);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    padding-top: 2rem;
}

.about-accent-bar {
    width: 60px;
    height: 4px;
    background-color: #CE0F05;
    margin-bottom: 2rem;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.btn-about {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #ffffff;
    color: #0a0a0a;
}

/* Services Section */
.services-section {
    background-color: #0a0a0a;
    padding: 3rem 5% 0;
    text-align: center;
}

.services-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #CE0F05;
    text-transform: uppercase;
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.5rem 0 3rem 0;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
    gap: 1.2rem;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 220px;
    background: #1a1a1a;
    cursor: pointer;
}

.service-card-large {
    grid-row: 1 / 3;
    min-height: 460px;
}

.service-card-wide {
    grid-column: 2 / 4;
}

.service-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.service-card:hover > img {
    filter: brightness(0.5);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-card-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: invert(1);
}

.service-card-overlay span {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.service-card-overlay::before {
    content: '';
    width: 3px;
    height: 24px;
    background: #CE0F05;
    border-radius: 2px;
}

/* Certifications Section */
.certifications-section {
    background-color: #0a0a0a;
    padding: 0 5% 6rem;
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.certifications-left {
    flex: 1;
    max-width: 400px;
}

.certifications-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.certifications-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 0.5rem 0 1.5rem 0;
}

.certifications-left p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.certifications-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.certification-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background-image: url('images/icone-certificat-securite-lyon.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    filter: invert(1);
    pointer-events: none;
}

.certification-card:hover {
    box-shadow: 0 4px 20px rgba(206, 15, 5, 0.1);
    border-color: rgba(206, 15, 5, 0.3);
}

.certification-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.2rem;
}

.certification-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.certification-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Before / After Comparison */
.before-after-section {
    background-color: #0a0a0a;
    padding: 4rem 5%;
}

.before-after-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.before-after-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #CE0F05;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.before-after-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
}

.before-after-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.before-after-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
}

.before-after-compare {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.ba-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.ba-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.ba-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    background: #CE0F05;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Solutions Section */
.solutions-section {
    background-color: #0a0a0a;
    padding: 0;
}

.solutions-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.solutions-image {
    flex: 0 0 50%;
    position: relative;
    height: 600px;
    overflow: hidden;
    padding: 2rem;
}

.solutions-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 8px 8px 0 rgba(206, 15, 5, 0.6);
}

.solution-hotspot {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(206, 15, 5, 0.8);
    background: rgba(206, 15, 5, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    animation: hotspot-pulse 2s ease-in-out infinite;
}

@keyframes hotspot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(206, 15, 5, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(206, 15, 5, 0); }
}

.solution-hotspot img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: invert(1);
}

.solution-hotspot:hover {
    background: rgba(206, 15, 5, 0.4);
    border-color: #CE0F05;
    transform: translate(-50%, -50%) scale(1.1);
}

.solutions-text {
    flex: 1;
    padding: 0 4rem;
}

.solutions-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.solutions-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.solutions-cta-text {
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 0.5rem;
}

.solution-panel {
    display: none;
    flex-direction: column;
    justify-content: center;
}

.solution-panel.active {
    display: flex;
}

.panel-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(1);
    margin-bottom: 1rem;
}

.solution-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.solution-points li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-hotspot.active {
    background: rgba(206, 15, 5, 0.5);
    border-color: #CE0F05;
}

.btn-solutions {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 1rem;
}

.btn-solutions:hover {
    background-color: #CE0F05;
    border-color: #CE0F05;
    color: #ffffff;
}

/* Brands Section */
.brands-section {
    background-color: #0a0a0a;
    padding: 0 5% 6rem;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.brands-text {
    flex: 0 0 40%;
}

.brands-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #CE0F05;
    text-transform: uppercase;
}

.brands-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.5rem 0 1.5rem 0;
}

.brands-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.brands-scroll {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    height: 500px;
    overflow: hidden;
    margin-top: -5rem;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.brands-col {
    flex: 1;
    overflow: hidden;
}

.brands-col-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brands-col-up .brands-col-inner {
    animation: scrollUp 20s linear infinite;
}

.brands-col-down .brands-col-inner {
    animation: scrollDown 20s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-33.33%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-33.33%); }
    100% { transform: translateY(0); }
}

.brand-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

/* Contact (inside footer) */
.contact-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
}

.contact-image {
    flex: 0 0 42%;
    min-height: 480px;
    border-radius: 16px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-wrapper {
    flex: 1;
    padding: 4rem 0 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: #CE0F05;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.5rem 0 2.5rem 0;
}

.contact-form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
}

.contact-form-row input {
    flex: 1;
}

#contactForm input,
#contactForm textarea,
#contactForm select {
    width: 100%;
    padding: 0.9rem 0.5rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#contactForm select {
    appearance: none;
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem 1rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CE0F05' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

#contactForm select:hover {
    border-color: rgba(206, 15, 5, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
}

#contactForm select:focus {
    border-color: #CE0F05;
    background-color: rgba(255, 255, 255, 0.08);
}

#contactForm select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
    outline: none;
    border-bottom-color: #CE0F05;
}

#contactForm textarea {
    margin-top: 1rem;
    margin-bottom: 2rem;
    resize: vertical;
    min-height: 100px;
}

.btn-contact {
    display: block;
    width: 100%;
    background-color: #CE0F05;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid #CE0F05;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-contact:hover {
    background-color: #a80d04;
    border-color: #a80d04;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 6rem 5% 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-phone,
.footer-email {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: #CE0F05;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #CE0F05;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .certifications-section {
        margin-top: -2rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-selling-points li {
        text-align: left;
    }

    .hero-right {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

    .logo {
        width: 70px;
    }
    .brand-block-mobile {
        top: 1rem;
        left: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 7rem 1.5rem 2rem;
    }

    .hero-video {
        display: none;
    }

    .hero-services-bar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    .hero-service-item {
        border-right: none;
        padding: 0.4rem 0.8rem;
    }

    .about-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-section {
        padding: 4rem 5%;
        background-image: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-card-large {
        grid-row: auto;
        min-height: 280px;
    }

    .service-card-wide {
        grid-column: auto;
    }

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

    .certifications-section {
        padding-top: 4rem;
    }

    .certifications-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .certifications-left {
        max-width: 100%;
    }

    .certifications-title {
        font-size: 1.8rem;
    }

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

    .before-after-title {
        font-size: 1.6rem;
    }

    .before-after-compare {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ba-card img {
        height: 300px;
    }

    .solutions-container {
        flex-direction: column;
    }

    .solutions-image {
        position: relative;
        top: auto;
        height: 450px;
        flex: none;
        padding: 1rem;
    }

    .solutions-image > img {
        object-position: center 40%;
    }

    .solution-panel {
        padding: 2rem 0;
    }

    .solution-hotspot {
        width: 60px;
        height: 60px;
    }

    .solution-hotspot img {
        width: 32px;
        height: 32px;
    }

    .solutions-text {
        padding: 3rem 5%;
    }

    .solutions-text h2 {
        font-size: 1.8rem;
    }

    .brands-section {
        padding: 4rem 5%;
    }

    .brands-container {
        flex-direction: column;
        gap: 2rem;
    }

    .brands-text {
        flex: none;
        text-align: center;
        order: -1;
    }

    .brands-title {
        font-size: 1.6rem;
    }

    .brands-scroll {
        flex: none;
        height: 300px;
        max-height: 300px;
        width: 100%;
        gap: 1rem;
        overflow: hidden;
        margin-top: 0;
    }

    .brand-logo {
        height: 60px;
        padding: 0.7rem 1rem;
        border-radius: 8px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-image {
        flex: none;
        min-height: 280px;
    }

    .contact-form-wrapper {
        padding: 2.5rem 0;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-copyright {
        margin-top: 1rem;
    }
}

/* Réalisations Gallery */
.realisations-section {
    background: #0a0a0a;
    padding: 6rem 5%;
}

.realisations-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.realisations-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #CE0F05;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.realisations-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.realisations-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.realisations-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}

.realisation-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.realisation-large {
    grid-column: span 2;
    grid-row: span 2;
}

.realisation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.realisation-card:hover img {
    transform: scale(1.06);
}

.realisation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.35) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s ease;
}

.realisation-tag {
    display: inline-block;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    background: #CE0F05;
    padding: 0.35rem 0.7rem;
    border-radius: 3px;
    margin-bottom: 0.7rem;
}

.realisation-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.realisation-large h3 {
    font-size: 1.4rem;
}

@media (max-width: 900px) {
    .realisations-section {
        padding: 4rem 5%;
    }
    .realisations-title {
        font-size: 1.5rem;
    }
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 0.7rem;
    }
    .realisation-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 260px;
    }
    .realisation-card h3 {
        font-size: 0.95rem;
    }
    .realisation-large h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) {
    .realisations-grid {
        grid-template-columns: 1fr;
    }
    .realisation-large {
        grid-column: span 1;
    }
}

/* Override: Réalisations infinite carousel */
.realisations-carousel {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.realisations-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: realisationsScroll 50s linear infinite;
}

.realisations-track:hover {
    animation-play-state: paused;
}

.realisations-track img {
    height: 280px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

@keyframes realisationsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .realisations-track img {
        height: 180px;
    }
}

/* Hide old gallery grid classes (no longer used) */
.realisations-grid { display: none; }

/* Réalisations lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100001;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
    animation: lightboxFade 0.25s ease-out;
}

@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: #CE0F05;
    border-color: #CE0F05;
}

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

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

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

.faq-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #CE0F05;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.faq-question svg {
    flex-shrink: 0;
    stroke: #CE0F05;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 900px) {
    .faq-section {
        padding: 4rem 5%;
    }
    .faq-title {
        font-size: 1.5rem;
    }
    .faq-question h3 {
        font-size: 0.95rem;
    }
}
