/* --- Global Configuration & Core Variables --- */
:root {
    --primary-blue: #0A3663;
    --accent-red: #E30013;
    --text-dark: #1E293B;
    --text-muted: #475569;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Top Header Info Bar --- */
.top-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.social-lang {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--accent-red);
}

/* Language Switcher Elements */
.lang-switcher {
    position: relative;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid #CBD5E1;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 120px;
}

.lang-dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.8rem;
}

.lang-dropdown a:hover, .lang-dropdown a.active {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-weight: bold;
}

.lang-dropdown.show {
    display: block;
}

/* --- Main Site Navigation --- */
.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid #F1F5F9;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

/* Fixed Logo configuration to fit neatly inside the 70px header */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.logo-img {
    height: 130px; /* Fixed overflow issue */
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0 !important;
    padding-top: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    height: 100%;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0; 
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.2s ease-in-out;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.cta-btn {
    background-color: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    padding: 10px 20px; 
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(227, 0, 19, 0.15);
    transition: transform 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: #c20010;
    transform: translateY(-1px);
}

.nav-cart {
    text-decoration: none;
    color: var(--primary-blue);
    position: relative;
    font-size: 1.2rem;
    padding: 10px;
    margin-right: 15px;
    transition: color 0.2s;
}

.nav-cart:hover {
    color: var(--accent-red);
}

/* ==========================================================================
   MOBILE NAVIGATION SIDEBAR
   ========================================================================== */

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-blue);
    cursor: pointer;
    margin-left: 15px;
}

.mobile-logo { height: 42px; width: auto; }

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 25, 45, 0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
}
.mobile-nav-backdrop.active { opacity: 1; visibility: visible; }

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: right .4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 25px rgba(0,0,0,0.12);
    overflow-y: auto;
}
.mobile-nav-overlay.active { right: 0; }

.mobile-nav-content { padding: 22px 22px 30px; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #F1F5F9;
}

.close-mobile-nav {
    border: none;
    background: #F8FAFC;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.95rem;
    color: #0A3663;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links { list-style: none; margin: 6px 0 22px; }
.mobile-nav-links li { margin: 0; }

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0A3663;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    padding: 13px 12px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all .25s ease;
}

.mobile-link-icon { width: 20px; text-align: center; color: #0A3663; font-size: 0.85rem; flex-shrink: 0; }
.mobile-link-text { flex-grow: 1; }
.mobile-link-chevron { font-size: 0.7rem; color: #CBD5E1; }

.mobile-link.active { background: #FDEEEF; color: #E30013; border-left-color: #E30013; }
.mobile-link.active .mobile-link-icon { color: #E30013; }
.mobile-link:hover { background: #F8FAFC; }

.mobile-lang-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 18px;
}
.mobile-lang-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0A3663;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lang-options { display: flex; gap: 6px; }
.lang-options button {
    border: 1px solid #CBD5E1;
    background: #ffffff;
    color: #0A3663;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 5px;
    cursor: pointer;
}
.lang-options button.active { background: #0A3663; border-color: #0A3663; color: #ffffff; }

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #E30013;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    margin-bottom: 22px;
    box-shadow: 0 6px 14px rgba(227,0,19,0.25);
}

.mobile-contact-box { border: 1px solid #E2E8F0; border-radius: 8px; padding: 14px; margin-bottom: 20px; }
.mobile-contact-box p { display: flex; align-items: center; gap: 10px; margin: 8px 0; font-size: 0.78rem; color: #475569; }
.mobile-contact-icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: #F8FAFC; color: #0A3663;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; flex-shrink: 0;
}

.mobile-social { display: flex; align-items: center; gap: 12px; font-size: 0.7rem; font-weight: 700; color: #64748B; letter-spacing: 0.5px; }
.mobile-social a {
    background: #0A3663; color: #ffffff;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; text-decoration: none;
}
.mobile-social a:hover { background: #E30013; }

@media (max-width: 768px) {
    .burger-menu { display: block; }
    .nav-links { display: none; }
    .top-bar { display: none; }
}

/* Badge du compteur */
#quote-count {
    position: absolute;
    top: 2px;
    right: -5px;
    background-color: var(--accent-red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white); /* Effet de découpe propre */
}

/* --- Hero Section Layout System --- */
.hero-section {
    min-height:1400px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 60px 20px 110px 20px;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 1.1fr; 
    gap: 15px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

/* Color changing animation for "détection de gaz" text */
.hero-title span {
    animation: infiniteTextColor 6s ease-in-out infinite alternate;
}

@keyframes infiniteTextColor {
    0% {
        color: #1A538C; /* Modern Blue variant */
    }
    100% {
        color: var(--accent-red); /* Premium Red */
    }
}

.hero-title-line {
    width: 40px;
    height: 2px;
    background-color: var(--accent-red);
    margin-bottom: 18px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    gap: 10px;
}

.btn {
    text-decoration: none;
    font-family: var(--font-heading);
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #051F3B;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid #CBD5E1;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

/* --- Center Column: Product Image & Red Blur Background --- */
.hero-product-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 3;
    position: relative;
}

/* Ambient Red Blur Aura Behind Products */
.hero-product-center::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 0, 19, 0.22) 0%, rgba(227, 0, 19, 0.05) 55%, transparent 100%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    transform: translateY(90px);
    pointer-events: none;
    animation: luxuryGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes luxuryGlowPulse {
    0% {
        transform: translateY(80px) scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: translateY(65px) scale(1.15);
        opacity: 1;
    }
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    max-height: 270px; 
    object-fit: contain;
    transform: scale(1.4) translateY(90px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    margin-right: 10px;
	margin-left: -40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 20px;
        background-image: url('path_to_your_industrial_bg.jpg');
        background-size: cover;
        flex-direction: column;
        text-align: left;
    }

    .hero-container {
        grid-template-columns: 1fr; /* Stack everything */
        gap: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-product-img {
        transform: scale(1) translateY(0); /* Remove desktop scaling */
        margin: 20px auto;
        max-height: 250px;
        order: 2; /* Put image after text */
    }

    .hero-track-wrapper {
        display: none; /* Hide complex features on mobile to save space */
    }

    .hero-description {
        max-width: 100%;
    }
}

/* --- Right Column: Luxury Features Track --- */
.hero-track-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    justify-self: end;
    padding-left: 25px;
}

.vertical-track-line {
    position: absolute;
    left: 35px;
    top: 15px;
    bottom: 15px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(10,54,99,0) 0%, rgba(10,54,99,0.1) 15%, rgba(10,54,99,0.1) 85%, rgba(10,54,99,0) 100%);
    z-index: 1;
}

.track-node-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 14px rgba(10, 54, 99, 0.02);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    /* Combines entry animation and constant floating animation smoothly */
    animation: luxuryReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, 
               luxuryFloat 5s ease-in-out infinite alternate;
}

/* Staggered entrance delays and staggered floating sync offsets */
.track-node-row:nth-child(2) { animation-delay: 0.12s, 0s; }
.track-node-row:nth-child(3) { animation-delay: 0.24s, 0.4s; }
.track-node-row:nth-child(4) { animation-delay: 0.36s, 0.8s; }
.track-node-row:nth-child(5) { animation-delay: 0.48s, 1.2s; }

@keyframes luxuryReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Continuous ultra-slow minimal micro-floating effect */
@keyframes luxuryFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-4px);
    }
}

.track-node-row:hover {
    transform: translateY(-2px) !important; /* Smooth override over active floating loop values */
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(10, 54, 99, 0.12);
    box-shadow: 0 8px 24px rgba(10, 54, 99, 0.06);
}

.track-point {
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.track-point::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(10, 54, 99, 0.15);
    transition: all 0.4s ease;
}

.track-node-row:hover .track-point {
    background: var(--primary-blue);
    box-shadow: 0 0 12px rgba(10, 54, 99, 0.25);
}

.track-point i {
    font-size: 0.78rem;
    color: var(--white);
}

.track-meta {
    max-width: 300px;
    text-align: left;
}

.track-meta h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1px;
    letter-spacing: 0.1px;
}

.track-meta p {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.4;
}


/* --- Statistics Horizontal Timeline: Alive Light Mode --- */
.stats-timeline-alive {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 35px 24px 85px 24px; /* Perfectly optimized compact top spacing */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #ffffff;
    overflow: hidden;
}

/* The Live Red Ambient Blur: Fills space beautifully without heavy boxes */
.ambient-red-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 350px;
    background: radial-gradient(circle, rgba(227, 0, 19, 0.05) 0%, rgba(227, 0, 19, 0.01) 50%, transparent 100%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* High-vibrancy high-visibility corporate red line */
.timeline-line-alive {
    position: absolute;
    top: 62px; /* Centered with the 54px node buttons */
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(227, 0, 19, 0.02) 0%,
        rgba(227, 0, 19, 0.25) 20%,
        rgba(227, 0, 19, 0.25) 80%,
        rgba(227, 0, 19, 0.02) 100%
    );
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    animation: extendTrackLine 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.timeline-item-alive {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    animation: revealItemNode 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(var(--i) * 0.15s);
}

/* Compact, premium active node buttons */
.circle-alive {
    width: 54px; /* Reduced to sit perfectly on the fine edge of luxury */
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(227, 0, 19, 0.15); /* Soft red border ring */
    box-shadow: 0 10px 25px rgba(227, 0, 19, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.circle-alive i {
    font-size: 18px;
    color: #E30013; /* Alive brand red icon standard */
    transition: transform 0.3s ease;
}

/* Powerful high-contrast hover interaction loop */
.timeline-item-alive:hover {
    transform: translateY(-4px) !important;
}

.timeline-item-alive:hover .circle-alive {
    background: #E30013;
    border-color: #E30013;
    box-shadow: 0 15px 30px rgba(227, 0, 19, 0.25);
}

.timeline-item-alive:hover .circle-alive i {
    color: #ffffff;
    transform: scale(1.05);
}

/* Clean, crisp typography layout scales */
.meta-alive {
    padding: 0 5px;
}

.timeline-item-alive h2.num-large {
    font-size: 34px; /* Elegant mid-scale layout font sizing */
    color: #0A3663; /* Contrasts beautifully under the subtle red tracking focus */
    margin-bottom: 4px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.timeline-item-alive h2.num-text {
    font-size: 26px;
    color: #0A3663;
    margin-bottom: 4px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.timeline-item-alive span {
    color: #516279;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

/* --- Animation Frames --- */
@keyframes extendTrackLine {
    to { transform: scaleX(1); }
}

@keyframes revealItemNode {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .stats-timeline-alive {
        flex-wrap: wrap;
        gap: 40px 0;
        padding: 20px 24px 50px;
    }
    .timeline-line-alive, .ambient-red-glow {
        display: none;
    }
    .timeline-item-alive {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .timeline-item-alive {
        width: 100%;
    }
}

























/* Container Layout Setup */
.sectors-section-container {
    max-width: 1440px;
    margin: 55px auto;
    padding: 40px 40px 0px 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    font-family: sans-serif;
}

/* Left Typography Styling */
.sectors-left-panel {
    width: 30%;
    flex-shrink: 0;
}

.secteurs-badge {
    color: #E30013;
    font-weight: 700;
    font-size: 12px; /* Slightly refined down */
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.secteurs-badge::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: #E30013;
}

.sectors-left-panel h2 {
    color: #0A3663;
    font-size: 32px; /* Reduced from 36px for an elegant editorial header */
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 20px;
}

.sectors-left-panel p {
    color: #64748B;
    font-size: 14px; /* Reduced from 15px for higher micro-readability */
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-link {
    color: #0A3663;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px; /* Refined down */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(10, 54, 99, 0.2);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #E30013;
    border-color: #E30013;
}

/* --- Right Side: Elastic Flex Expansion Grid Mechanics --- */
.sectors-flex-accordion {
    width: 70%;
    display: flex;
    height: 500px; 
    gap: 12px;
}

.sector-card {
    flex: 1; 
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    transition: flex 0.65s cubic-bezier(0.25, 1, 0.3, 1), transform 0.4s ease;
}

/* The Magic Trigger: Squeezes everyone else down instantly */
.sector-card:hover {
    flex: 3.5; 
}

.sector-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sector-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 54, 99, 0.9) 0%,
        rgba(10, 54, 99, 0.25) 60%,
        transparent 100%
    );
    z-index: 2;
}

/* Overlay Contents Alignment */
.sector-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 10px; /* Slightly tighter internal safety padding */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Round Floating Icon Badges */
.sector-icon-circle {
    width: 46px; /* Scaled down perfectly from 52px for a luxury feel */
    height: 46px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.sector-icon-circle i {
    color: #0A3663;
    font-size: 16px; /* Sharper internal vector dimensions */
    transition: transform 0.4s ease;
}

.sector-overlay-content h3 {
    color: #ffffff;
    font-size: 13.5px; /* Perfect sweet-spot reduction from 15px to prevent breaking lines */
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.1px;
    white-space: nowrap; 
}

/* Micro interaction zoom modifications on expansion */
.sector-card:hover .sector-image img {
    transform: scale(1.08);
}

.sector-card:hover .sector-icon-circle {
    background-color: #E30013;
    transform: translateY(-4px);
}

.sector-card:hover .sector-icon-circle i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive Adaptive Viewports for Smaller Screens */
@media (max-width: 1200px) {
    .sectors-section-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
    }
    .sectors-left-panel, .sectors-flex-accordion {
        width: 100%;
    }
    .sectors-flex-accordion {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .sectors-flex-accordion {
        flex-direction: column;
        height: auto;
    }
    .sector-card {
        width: 100%;
        height: 120px;
        flex: none !important;
    }
    .sector-card:hover {
        height: 180px;
    }
    .sector-overlay-content {
        flex-direction: row;
        gap: 15px;
        justify-content: flex-start;
        padding: 0 20px;
        height: 100%;
        align-items: center;
    }
    .sector-icon-circle {
        margin-bottom: 0;
    }
}
















/* --- Partners Infinite Horizontal Ticker Section --- */
.partners-section {
    background-color: #ffffff;
    padding: 55px 0;
    width: 100%;
    overflow: hidden; 
    position: relative;
}

.partners-title {
    text-align: center;
    margin-bottom: 35px;
}

.partners-title span {
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #64748B; 
    letter-spacing: 2px;
}

.partners-ticker-wrap {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.partners-ticker {
    display: flex;
    gap: 5px; /* PULLS GROUPS CLOSER TOGETHER */
    width: max-content;
}

.ticker-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px; /* PULLS INDIVIDUAL LOGOS VERY CLOSE TO EACH OTHER */
    min-width: 100%;
    animation: infiniteHorizontalScroll 16s linear infinite; /* Sped up slightly since the distance is shorter */
}

/* Base bounding box for standard compact logos (MSA, RKI) */
.partner-logo {
    width: 110px;   
    height: 55px;   
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CUSTOM BIGGER SIZE FIX FOR HONEYWELL & OLDHAM */
.partner-logo.logo-wide {
    width: 180px; /* Makes these two specific logos prominently larger */
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    filter: none; 
}

/* --- Smooth Interaction Loop --- */
.partners-ticker-wrap:hover .ticker-group {
    animation-play-state: paused;
}

.partner-logo:hover {
    transform: scale(1.06); 
}

/* --- Infinite Animation Keyframes --- */
@keyframes infiniteHorizontalScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 35px)); /* Updated to match the new close gap */
    }
}

















/* ==========================================================================
   SECTION À PROPOS - MODE SOMBRE (ÉQUILIBRE ET CONTRASTE)
   ========================================================================== */
.about-dark-divider {
    background-color: #061F3B; /* Bleu nuit ultra-profond (plus premium que le noir pur) */
    padding: 70px 0; /* Section courte et compacte */
    position: relative;
    overflow: hidden;
}

.about-dark-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Équilibre parfait gauche/droite */
    gap: 60px;
    align-items: center;
}

/* --- CÔTÉ GAUCHE : VISUEL COMPACT --- */
.about-dark-visual{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 340px;      /* instead of 520px */
}

.about-dark-visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.about-dark-visual:hover img{
    transform: scale(1.04);
}

.visual-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(
        to top,
        rgba(7,19,31,.72) 0%,
        rgba(7,19,31,.30) 45%,
        transparent 100%
    );
}

.visual-tag{
    width: fit-content;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.visual-overlay h3{
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.visual-overlay p{
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    line-height: 1.6;
    max-width: 280px;
}

.badge-year {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 11px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CÔTÉ DROIT : TEXTE --- */
.about-dark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-mini-tag {
    color: #E30013;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.about-dark-content h2 {
    color: #ffffff;
    font-size: 24px; /* Taille élégante, pas trop agressive */
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.about-dark-content p {
    color: #94A3B8; /* Gris clair pour une excellente lisibilité sur fond sombre */
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.about-dark-footer {
    display: flex;
    align-items: center;
}

.about-dark-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.about-dark-link i {
    font-size: 9px;
    color: #E30013;
    transition: transform 0.2s ease;
}

.about-dark-link:hover {
    color: #E30013;
}

.about-dark-link:hover i {
    transform: translateX(4px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-dark-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-dark-visual {
        height: 180px;
    }
}





.section-separator{
    border-bottom:1px solid #E2E8F0;
    padding-bottom:80px;
    margin-bottom:80px;
}














/* ==========================================================================
   GLOBAL STRUCTURE
   ========================================================================== */
.expertise-section {
    background-color: #FAFAFA;
    padding: 90px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}

.expertise-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- EN-TÊTE RÉALIGNÉ AVEC LIGNE --- */
.expertise-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 40px;
}

.header-text-block {
    max-width: 500px;
}

.section-badge {
    color: #E30013;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.header-text-block h2 {
    color: #0A3663;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 15px 0;
}

.header-text-block h2 .text-red {
    color: #E30013;
}

.header-text-block p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}
/* Grille de Statistiques */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 680px;
    flex-grow: 1;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #E2E8F0;
}

.stat-icon{
    position: relative;
    display: inline-block;
}

/* Red blur behind icon */
.stat-icon::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:34px;
    height:34px;
    background:#E30013;
    border-radius:50%;
    filter:blur(14px);
    opacity:.12;
    transform:translate(-50%,-50%);
    animation:redGlow 3s ease-in-out infinite;
}

.stat-icon i {
    position:relative;
    color:#E30013;
    font-size:20px;
    margin-bottom:12px;
    display:inline-block;
    animation:floatIcon 3s ease-in-out infinite;
}

.stat-number {
    display:block;
    color:#0A3663;
    font-size:22px;
    font-weight:800;
    margin-bottom:4px;
}

.stat-label {
    display:block;
    color:#64748B;
    font-size:12px;
    font-weight:500;
}

/* Different timing for each icon */
.stat-item:nth-child(2) .stat-icon i,
.stat-item:nth-child(2) .stat-icon::before{
    animation-delay:.4s;
}

.stat-item:nth-child(3) .stat-icon i,
.stat-item:nth-child(3) .stat-icon::before{
    animation-delay:.8s;
}

.stat-item:nth-child(4) .stat-icon i,
.stat-item:nth-child(4) .stat-icon::before{
    animation-delay:1.2s;
}

/* Animations */

@keyframes floatIcon{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-4px);
    }
}

@keyframes redGlow{
    0%,100%{
        transform:translate(-50%,-50%) scale(.9);
        opacity:.10;
    }
    50%{
        transform:translate(-50%,-50%) scale(1.3);
        opacity:.22;
    }
}
@media (max-width: 768px) {
    /* Afficher en 1 colonne verticale */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Espace confortable entre chaque item */
        max-width: 100%;
    }

    /* Supprimer les séparateurs verticaux */
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    /* Optionnel : ajouter une bordure inférieure entre chaque item si tu veux garder une séparation */
    .stat-item:not(:last-child) {
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 20px;
    }
}
/* ==========================================================================
   NOUVELLE MISE EN PAGE : 2 COLONNES ASYMÉTRIQUES ÉQUILIBRÉES
   ========================================================================== */
.expertise-creative-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center; /* Aligne verticalement la galerie compacte avec les cartes */
}

/* --- COLONNE GAUCHE : MULTI-IMAGES PLUS COMPACTE --- */
.dynamic-gallery-frame {
    position: sticky;
    top: 40px;
}

.image-stack-wrapper {
    position: relative;
    width: 100%;
    height: 380px; /* Hauteur réduite pour éviter l'effet "trop grand" */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 54, 99, 0.06);
    background-color: #0A3663;
}

.stack-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.stack-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.gallery-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 31, 59, 0.3) 0%, transparent 60%);
    z-index: 3;
    pointer-events: none;
}

.gallery-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 700;
    color: #0A3663;
    letter-spacing: 1px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-dot {
    width: 5px;
    height: 5px;
    background-color: #E30013;
    border-radius: 50%;
    display: inline-block;
}

/* --- COLONNE DROITE : TRACK DE CARTES COMPACTES & RAFFINÉES --- */
.services-interactive-track {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espacement plus serré */
}

.creative-service-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #EEF2F6;
    padding: 16px 20px; /* Padding réduit pour des cartes plus petites et denses */
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.creative-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #0A3663;
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.card-number {
    font-size: 13px;
    font-weight: 700;
    color: #94A3B8;
    width: 30px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* --- BOÎTIER ICÔNE LUMINEUX (SHINING CIRCLE) --- */
.card-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%; /* Transformation en cercle parfait pour le rayonnement */
    background: radial-gradient(circle, #0A3663 0%, #051b30 100%); /* Fond bleu profond brillant */
    border: 1px solid rgba(10, 54, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 10px rgba(10, 54, 99, 0.2); /* Halo bleu au repos */
    transition: all 0.3s ease;
}

.card-icon-box i {
    color: #ffffff; /* Icône blanche pour trancher sur le cercle sombre */
    font-size: 14px;
    z-index: 2;
    transition: all 0.3s ease;
}

.card-main-content {
    flex-grow: 1;
    padding-right: 15px;
}

.card-main-content h3 {
    color: #0A3663;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 3px 0;
    transition: color 0.3s ease;
}

.card-main-content p {
    color: #64748B;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.card-action-trigger {
    color: #CBD5E1;
    font-size: 12px;
    transform: translateX(-6px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* --- HOVER EFFETS : NÉON FLOU ROUGE & SHINING ICON --- */
.creative-service-card:hover {
    border-color: rgba(227, 0, 19, 0.2);
    /* Effet Blur Rouge Autour de la carte (Red Neon Glow) */
    box-shadow: 0 10px 25px rgba(227, 0, 19, 0.08), 0 0 15px rgba(227, 0, 19, 0.04);
    transform: translateX(4px);
}

.creative-service-card:hover::before {
    transform: scaleY(1);
    background-color: #E30013;
}

.creative-service-card:hover .card-number {
    color: #E30013;
}

/* Le cercle de l'icône devient rougeoyant et brillant au survol */
.creative-service-card:hover .card-icon-box {
    background: radial-gradient(circle, #E30013 0%, #90000a 100%); /* Mutation en rouge écarlate */
    border-color: rgba(227, 0, 19, 0.4);
    box-shadow: 0 0 15px rgba(227, 0, 19, 0.6); /* Éclat / Brillance technologique */
}

.creative-service-card:hover .card-main-content h3 {
    color: #E30013;
}

.creative-service-card:hover .card-action-trigger {
    transform: translateX(0);
    opacity: 1;
    color: #E30013;
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
@media (max-width: 1024px) {
    .expertise-creative-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .image-stack-wrapper {
        height: 320px;
    }
    .dynamic-gallery-frame {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .creative-service-card {
        padding: 14px 16px;
    }
    .card-icon-box {
        margin-right: 12px;
    }
}

























/* --- Global Products Section Container --- */
.products-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.products-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* --- Left Column Sidebar Controls --- */
.products-left-panel {
    width: 28%;
    position: sticky;
    top: 40px; /* Keeps information clean during tracking scroll */
    flex-shrink: 0;
}

.products-badge {
    color: #E30013;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.products-badge::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background-color: #E30013;
}

.products-left-panel h2 {
    color: #0A3663;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0 0 20px 0;
}

.products-left-panel h2 .text-red {
    color: #E30013;
}

.products-left-panel p {
    color: #64748B;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Button UI styling exactly like image_e03f94.jpg */
.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #0A3663;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-dark i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-primary-dark:hover {
    background-color: #E30013;
    box-shadow: 0 10px 25px rgba(227, 0, 19, 0.2);
}

.btn-primary-dark:hover i {
    transform: translateX(4px);
}

/* --- Right Column: The 3-Card Grid Framework --- */
.products-grid {
    width: 72%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Premium Unified Card Architecture --- */
.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 54, 99, 0.04);
    border: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hidden flat colored accent line on bottom card face */
.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 54, 99, 0.08);
}

.product-card:hover::after {
    background-color: #E30013; /* Dynamic color pop on frame active */
}

/* Grey Top Image Section Frame */
.card-image-wrapper {
    background-color: #F8FAFC;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.card-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Absolute Badges on Top Corners */
.product-tag-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #E30013;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.2px;
}

/* --- Card Info Content Body --- */
.card-body-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-name {
    color: #E30013;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.card-body-content h3 {
    color: #0A3663;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.product-description {
    color: #64748B;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 25px 0;
    min-height: 60px; /* Aligns card rows neatly regardless of word count differences */
}

/* --- Technical Specifications Matrix Row --- */
.tech-specs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    padding: 15px 0;
    margin-bottom: 25px;
    text-align: center;
}

/* Center spec layout block separated by light clean borders */
.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spec-item:not(:last-child) {
    border-right: 1px solid #F1F5F9;
}

.spec-item i {
    color: #0A3663;
    font-size: 14px;
    opacity: 0.8;
}

.spec-item span {
    color: #64748B;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Bottom Actions Red Arrow Trigger Links */
.card-action-link {
    margin-top: auto;
    color: #0A3663;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.card-action-link i {
    color: #E30013;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.product-card:hover .card-action-link {
    color: #E30013;
}

.product-card:hover .card-action-link i {
    transform: translateX(4px);
}

/* --- Fluid Adaptive Responsive Breakpoints --- */
@media (max-width: 1200px) {
    .products-container {
        flex-direction: column;
        gap: 40px;
    }
    .products-left-panel, .products-grid {
        width: 100%;
    }
    .products-left-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Drop to 2 columns on medium viewports */
    }
}

@media (max-width: 640px) {
    .products-section {
        padding: 60px 20px;
    }
    .products-left-panel h2 {
        font-size: 28px;
    }
    .products-grid {
        grid-template-columns: 1fr; /* Stack vertically cleanly on mobile */
    }
    .card-image-wrapper {
        height: 200px;
    }
}

















/* ==========================================================================
   SECTION CONTACT & MAP - COMPACT DARK LUXURY
   ========================================================================== */
.luxury-contact-section {
    background-color: #071625; 
    padding: 65px 0; /* Réduit de 100px à 65px pour aplatir la section */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.luxury-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px;
    align-items: center;
}

/* --- COLONNE INFOS RESSERRÉE --- */
.contact-header-block {
    margin-bottom: 25px; /* Moins d'espace sous le titre */
}

.contact-badge {
    color: #E30013;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.contact-badge .badge-dot {
    width: 5px;
    height: 5px;
    background-color: #E30013;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #E30013;
}

.contact-header-block h2 {
    color: #ffffff;
    font-size: 30px; /* Légèrement plus petit pour l'équilibre */
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0 0 10px 0;
}

.contact-header-block h2 .text-red {
    color: #E30013;
}

.contact-header-block p {
    color: #94A3B8;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
    max-width: 440px;
}

/* --- LISTE DES DÉTAILS PLUS DENSE --- */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Rapproche les éléments de contact */
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 6px 0; /* Moins de padding vertical */
    transition: all 0.3s ease;
}

.detail-icon-frame {
    width: 38px; /* Taille réduite de l'icône */
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle, #0A3663 0%, #061f39 100%);
    border: 1px solid rgba(10, 54, 99, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(10, 54, 99, 0.2);
    transition: all 0.3s ease;
}

.detail-icon-frame i {
    color: #ffffff;
    font-size: 12px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-text span {
    color: #64748B;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-text strong {
    color: #E2E8F0;
    font-size: 13.5px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-detail-item:hover .detail-icon-frame {
    background: radial-gradient(circle, #E30013 0%, #90000a 100%);
    border-color: rgba(227, 0, 19, 0.4);
    box-shadow: 0 0 12px rgba(227, 0, 19, 0.5);
}

.contact-detail-item:hover .detail-text strong {
    color: #E30013;
}

/* --- BOUTON DEVIS COMPACT --- */
.luxury-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 11px 22px; /* Plus fin */
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.luxury-contact-btn i {
    color: #E30013;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.luxury-contact-btn:hover {
    border-color: #E30013;
    background-color: rgba(227, 0, 19, 0.03);
    box-shadow: 0 0 15px rgba(227, 0, 19, 0.1);
}

.luxury-contact-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   CADRE DE LA CARTE HORIZONTAL & COURT
   ========================================================================== */
.contact-map-column {
    position: relative;
}

.map-wrapper-frame {
    position: relative;
    width: 100%;
    height: 280px; /* Raccourci de 400px à 280px pour un effet bandeau très moderne */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.map-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(227, 0, 19, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.map-wrapper-frame iframe {
    position: relative;
    z-index: 3;
    filter: invert(90%) hue-rotate(180deg) grayscale(45%) contrast(110%);
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.map-wrapper-frame:hover iframe {
    opacity: 0.95;
    filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(110%);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .luxury-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-wrapper-frame {
        height: 260px;
    }
}




















/* ==========================================================================
   BOUTON WHATSAPP FIXE DE HAUTE PRÉCISION
   ========================================================================== */
.whatsapp-fixed-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25D366; /* Couleur officielle WhatsApp */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999; /* Toujours au-dessus de tout */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

/* Onde lumineuse animée (Pulse Efect) */
.whatsapp-pulse-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    opacity: 0.35;
    animation: whatsappPulse 2s infinite ease-out;
}

.whatsapp-fixed-trigger:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #20ba5a; /* Légèrement plus sombre au survol */
    box-shadow: 0 8px 25px rgba(32, 186, 90, 0.5);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.35;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   FOOTER MINIMALISTE & COMPACT (DARK THEME)
   ========================================================================== */
.luxury-footer {
    background-color: #040e18; /* Encore un ton plus sombre que la section contact */
    padding: 60px 0 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #94A3B8;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo & Bio */
.footer-brand-col {
    max-width: 360px;
}

.footer-logo{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.footer-logo img{
    height:120px;
    width:auto;
    display:block;
    transition:transform .3s ease;
}

.footer-logo img:hover{
    transform:scale(1.03);
}

.brand-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Titres de colonnes */
.footer-links-col h4 {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

/* Listes de navigation */
.footer-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-navigation a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease;
}

.footer-navigation a:hover {
    color: #E30013;
}

/* --- BARRE DE COPYRIGHT INFÉRIEURE --- */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    font-size: 12px;
    color: #64748B;
}

.footer-bottom-bar p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.05);
    font-size: 10px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .whatsapp-fixed-trigger {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}