/* CSS Reset & Variables aligned with CGA blue/orange/navy theme */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f3f4f6;
    --bg-dark: #0b1a30;
    --bg-dark-green: #071120;
    --brand-green: #0b57a4;
    --brand-light-green: #0f6fc4;
    --brand-lime: #f26522;
    --text-dark: #1f2937;
    --text-light: #f9fafb;
    --text-gray: #6b7280;
    --glass-bg-dark: rgba(11, 26, 48, 0.75);
    --glass-border-dark: rgba(255, 255, 255, 0.1);
    --font-sans: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================
   Header & Navigation (Modern Premium Redesign)
   ========================================== */

/* Top Header Bar */
.top-header {
    background-color: #ffffff;
    padding: 8px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f3f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1010;
}

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

.top-header-logo {
    display: flex;
    align-items: center;
}

.top-header-logo img {
    height: 115px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-header-logo:hover img {
    transform: scale(1.05);
}

/* Contact Info Boxes */
.contact-info-boxes {
    display: flex;
    gap: 35px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-2px);
}

/* Interactive circular icon border with modern transitions */
.icon-border {
    border: 2px solid rgba(11, 87, 164, 0.12); /* Soft blue border */
    background-color: rgba(11, 87, 164, 0.03); /* Soft blue background */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Pseudo element for smooth background color expansion on hover */
.icon-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-lime, #f26522); /* Orange CGA */
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.icon-border svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-green, #0b57a4);
    z-index: 2;
    transition: fill 0.3s ease, transform 0.3s ease;
}

/* Hover effects */
.contact-info-box:hover .icon-border {
    border-color: var(--brand-lime, #f26522);
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.35); /* Orange drop shadow */
}

.contact-info-box:hover .icon-border::after {
    transform: scale(1);
}

.contact-info-box:hover .icon-border svg {
    fill: #ffffff; /* White fill on hover */
    transform: scale(1.1);
}

.box-text {
    display: flex;
    flex-direction: column;
}

.box-title {
    font-weight: 700;
    color: #1a202c;
    font-size: 14.5px;
    line-height: 1.2;
    margin-bottom: 3px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.contact-info-box:hover .box-title {
    color: var(--brand-lime, #f26522); /* Highlight text with orange on hover */
}

.box-desc {
    color: var(--text-gray, #6b7280);
    font-size: 12px;
    font-weight: 400;
}

/* ==========================================
   Navigation Bar
   ========================================== */
.navbar {
    background: linear-gradient(90deg, var(--brand-green, #0b57a4) 0%, var(--brand-light-green, #0f6fc4) 100%); /* Royal blue gradient */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(11, 87, 164, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;
    height: 56px;
}

/* Menu Toggle Button for Mobile */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link {
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover & Active Nav Link style */
.nav-item.active .nav-link,
.nav-item:hover > .nav-link {
    background-color: var(--bg-dark, #0b1a30) !important; /* Navy Blue background */
    color: #ffffff;
}

/* Decorative top indicator line on active / hover item */
.nav-item.active .nav-link::before,
.nav-item:hover > .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-lime, #f26522); /* Orange indicator */
}

/* Dropdown styling (Premium Glassmorphism) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 26, 48, 0.96); /* Glassmorphic dark navy bg */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 3px solid var(--brand-lime, #f26522); /* Orange top border */
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    padding: 10px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.35s;
    z-index: 1050;
    margin: 0;
    list-style: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
}

.dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown-item:last-child .dropdown-link {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(242, 101, 34, 0.08); /* Soft orange bg */
    color: var(--brand-lime, #f26522); /* Orange text */
    padding-left: 28px; /* Micro-slide animation */
}

/* Submenu caret arrow */
.submenu-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.dropdown-link:hover .submenu-arrow {
    color: var(--brand-lime, #f26522);
    transform: translateX(3px);
}

/* Sub-dropdown menus (Premium Glassmorphism) */
.navbar .nav-links .dropdown-menu .dropdown-item .sub-dropdown-menu,
.sub-dropdown-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    background: rgba(11, 26, 48, 0.98) !important; /* High opacity dark navy */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-left: 3px solid var(--brand-lime, #f26522) !important; /* Orange left border */
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 10px 10px 10px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    padding: 8px 0 !important;
    min-width: 240px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px); /* Slides OUT from parent menu */
    transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.35s;
    margin: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

.navbar .nav-links .dropdown-menu .dropdown-item .sub-dropdown-menu li,
.sub-dropdown-menu li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar .nav-links .dropdown-menu .dropdown-item:hover .sub-dropdown-menu,
.dropdown-item:hover .sub-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Sub-dropdown links */
.navbar .nav-links .dropdown-menu .dropdown-item .sub-dropdown-menu li .sub-dropdown-link,
.sub-dropdown-link {
    display: block !important;
    padding: 10px 24px !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Solid bright white-grey text */
    font-size: 13.5px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.navbar .nav-links .dropdown-menu .dropdown-item .sub-dropdown-menu li:last-child .sub-dropdown-link:last-child {
    border-bottom: none !important;
}

.navbar .nav-links .dropdown-menu .dropdown-item .sub-dropdown-menu li .sub-dropdown-link:hover,
.sub-dropdown-link:hover {
    background: rgba(242, 101, 34, 0.08) !important;
    color: var(--brand-lime, #f26522) !important;
    padding-left: 28px !important;
}

/* Social Media Icons */
.nav-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-social-icons a svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.nav-social-icons a:hover {
    background-color: var(--brand-lime, #f26522); /* Orange on hover */
    border-color: var(--brand-lime, #f26522);
    box-shadow: 0 6px 15px rgba(242, 101, 34, 0.4);
    transform: translateY(-3px);
}

.nav-social-icons a:hover svg {
    transform: scale(1.15);
}

/* Ensure desktop menu doesn't break if JS script modified it */
@media (min-width: 993px) {
    #nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        background-color: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        border: none !important;
    }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .top-header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-info-boxes {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .navbar-container {
        height: 50px;
    }
    
    .nav-links {
        display: none; /* Controlled by JS toggle */
    }
    
    .nav-item {
        width: 100%;
        display: block;
    }
    
    .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: space-between;
    }
    
    .nav-item.active .nav-link::before,
    .nav-item:hover > .nav-link::before {
        height: 100%;
        width: 3px;
        top: 0;
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: none;
    }
    
    .nav-item:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding-left: 35px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .sub-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: none;
    }
    
    .dropdown-item:hover .sub-dropdown-menu {
        display: block;
    }
    
    .sub-dropdown-menu .sub-dropdown-link {
        padding-left: 50px;
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .nav-social-icons {
        display: none; /* Hide in main bar on mobile or customize */
    }
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
    background-color: #050a12;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.45) 0%, rgba(7, 13, 25, 0.85) 100%);
}

.slide-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    line-height: 1.15;
}

.slide-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-lime, #f26522) 0%, #d95214 100%);
    color: #ffffff;
    padding: 15px 38px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.6);
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 13px 36px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #071220;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Jagged Brush Transition */
.brush-transition {
    display: none !important;
}

.brush-transition svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--brand-green);
}

/* SECTION 1: Green Background - Solutions Métal & Alu Complètes */
.green-section {
    background: linear-gradient(135deg, #050a12 0%, #082142 50%, #0a386b 100%);
    color: #ffffff;
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

.green-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.green-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .green-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.green-text-box h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.75px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-text-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.65;
}

.green-text-box .btn-secondary {
    background-color: var(--brand-lime, #f26522);
    color: #ffffff;
    border: none;
    padding: 15px 38px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(242, 101, 34, 0.35);
}

.green-text-box .btn-secondary:hover {
    background-color: #d95214;
    transform: translateY(-2.5px);
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.45);
}

.green-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 576px) {
    .green-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.dark-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dark-glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-lime, #f26522);
    box-shadow: 0 15px 35px rgba(242, 101, 34, 0.25);
}

.dark-glass-icon {
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.15);
    border: 1px solid rgba(242, 101, 34, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-lime, #f26522);
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.dark-glass-card:hover .dark-glass-icon {
    background-color: var(--brand-lime, #f26522);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(242, 101, 34, 0.45);
    border-color: var(--brand-lime, #f26522);
}

.dark-glass-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.dark-glass-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* SECTION 2: White Background - A propos de nous */
.section-white {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 90px 20px;
}

.about-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-row {
        grid-template-columns: 1fr;
    }
}

.about-img-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-subtitle {
    color: var(--brand-lime);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
}

.about-desc {
    color: var(--text-gray);
    font-size: 16px;
}

.about-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
}

@media (max-width: 480px) {
    .about-icons-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-icon-item {
    text-align: center;
}

.about-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand-green);
    margin: 0 auto 10px;
    transition: var(--transition-smooth);
}

.about-icon-item:hover .about-icon-circle {
    background-color: var(--brand-green);
    color: #fff;
    transform: scale(1.1);
}

.about-icon-label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

/* SECTION 3: Introduction Overlay Section */
.intro-section {
    background-color: #f9fafb;
    padding: 100px 20px;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .intro-container {
        grid-template-columns: 1fr;
    }
}

.intro-card {
    background: #ffffff;
    border-left: 5px solid var(--brand-green);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 0 12px 12px 0;
}

@media (max-width: 576px) {
    .intro-card {
        padding: 30px;
    }
}

.intro-card h3 {
    color: var(--brand-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.intro-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
}

.intro-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.intro-checklist {
    list-style: none;
    margin-bottom: 35px;
}

.intro-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.intro-checklist li::before {
    content: '✓';
    color: var(--brand-lime);
    font-weight: bold;
}

.intro-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* SECTION 4: Banner Technique & Elégance */
.banner-green {
    background: linear-gradient(135deg, #05162e 0%, #0b57a4 50%, #0c335e 100%);
    color: #ffffff;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-green::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.banner-text h2 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.banner-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.banner-info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-lime, #f26522);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.12);
}

.banner-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-lime, #f26522);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-info-item:hover .banner-info-icon {
    background: var(--brand-lime, #f26522);
    color: #ffffff;
    border-color: var(--brand-lime, #f26522);
    transform: scale(1.05);
}

.banner-info-icon svg {
    width: 18px;
    height: 18px;
}

.banner-info-text {
    display: flex;
    flex-direction: column;
}

.banner-info-label {
    font-size: 10.5px;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.8px;
}

.banner-info-value {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-top: 1px;
}

/* SECTION 5: Projets de Construction - Grille 9 réalisations */
.projects-section {
    background-color: #ffffff;
    padding: 90px 20px;
}

.projects-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-subtitle {
    color: var(--brand-lime);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.projects-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
}

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

@media (max-width: 900px) {
    .projects-grid-9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid-9 {
        grid-template-columns: 1fr;
    }
}

.project-item-box {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.project-item-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-item-box:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 13, 25, 0.88);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.project-item-box:hover .project-overlay {
    opacity: 1;
}

.project-overlay-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

/* SECTION 6: Testimonials */
.testimonials-section {
    background-color: #f3f4f6;
    padding: 90px 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--brand-green);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

.testimonials-text-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .testimonials-text-side {
        padding: 30px;
    }
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 80px;
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-lime);
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 13px;
    color: var(--brand-lime);
}

.testimonials-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

/* SECTION 7: Counters / Stats */
.counters-section {
    background: linear-gradient(135deg, #071220 0%, #0c1c30 100%);
    color: #ffffff;
    padding: 90px 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(242, 101, 34, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.counters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .counters-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counters-container {
        grid-template-columns: 1fr;
    }
}

.counter-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

.counter-item:hover {
    border-color: var(--brand-lime, #f26522);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(242, 101, 34, 0.12);
}

.counter-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(242, 101, 34, 0.15);
}

.counter-item:hover class="counter-icon-wrapper" {
    background: var(--brand-lime, #f26522);
    transform: scale(1.1);
    border-color: transparent;
}

.counter-item:hover .counter-icon-wrapper {
    background: var(--brand-lime, #f26522);
    transform: scale(1.1);
    border-color: transparent;
}

.counter-icon-wrapper svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-lime, #f26522);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.counter-item:hover .counter-icon-wrapper svg {
    stroke: #ffffff;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.counter-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.counter-item:hover .counter-label {
    color: var(--brand-lime, #f26522);
}


/* SECTION 8: Pourquoi choisir Metaporte - Caractéristiques circulaires */
.features-section {
    background-color: #ffffff;
    padding: 90px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

.features-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-side.left {
    text-align: right;
}

@media (max-width: 992px) {
    .features-side.left {
        text-align: left;
    }
}

.feature-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.features-side.left .feature-block {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .features-side.left .feature-block {
        flex-direction: row;
    }
}

.feature-icon-box {
    width: 55px;
    height: 55px;
    background-color: rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 14px;
    color: var(--text-gray);
}

.features-center-img {
    text-align: center;
}

.features-center-img img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 10px solid #f3f4f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* SECTION 9: Accordions + Contact Form */
.faq-contact-section {
    background-color: #f9fafb;
    padding: 90px 20px;
}

.faq-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-contact-container {
        grid-template-columns: 1fr;
    }
}

/* Accordion design matching screenshot */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-header {
    padding: 22px 25px;
    font-weight: 700;
    font-size: 15.5px;
    color: #0f172a;
    background-color: #ffffff;
}

.accordion-header:hover {
    background-color: #f8fafc;
}

.accordion-icon {
    color: var(--brand-green);
}

.accordion-item.active {
    border-color: var(--brand-green);
    box-shadow: 0 10px 25px rgba(11, 87, 164, 0.08);
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid #f1f5f9;
}

.accordion-content {
    background-color: #ffffff;
}

.accordion-item.active .accordion-content {
    padding: 22px 25px;
}

/* Contact form card matching screenshot */
.contact-form-card {
    background: linear-gradient(135deg, #0b1a30 0%, #071120 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: #ffffff;
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 30px 20px;
    }
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 30px;
}

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

.form-input, .form-textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--brand-lime);
    background-color: rgba(255,255,255,0.08);
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-lime) 0%, #d95214 100%);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.55);
}

/* SECTION 10: Newsletter banner */
/* SECTION 10: Newsletter banner */
.newsletter-banner {
    background: linear-gradient(135deg, #072d5c 0%, #0b57a4 60%, #0f6fc4 100%);
    color: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.newsletter-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(242, 101, 34, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    flex: 1;
    min-width: 280px;
}

.newsletter-text h3 {
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.newsletter-form:focus-within {
    border-color: var(--brand-lime);
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.25);
}

.newsletter-input {
    width: 100% !important;
    height: 100% !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 60px 0 16px !important;
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-sizing: border-box !important;
    display: block !important;
    line-height: 44px !important;
    outline: none !important;
    box-shadow: none !important;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.btn-newsletter {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(135deg, var(--brand-lime) 0%, #d95214 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-radius: 0 10px 10px 0 !important;
    box-shadow: none !important;
}

.btn-newsletter:hover {
    opacity: 0.95 !important;
    transform: none !important;
}

.btn-newsletter svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.btn-newsletter:hover svg {
    transform: translate(2px, -2px);
}

/* Footer Section */
.footer {
    background-color: #ffffff;
    color: #475569;
    padding: 35px 20px 0px;
    border-top: 4px solid var(--brand-lime, #f26522);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.7fr 0.9fr;
    gap: 40px;
    margin-bottom: 30px;
}

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

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

.footer-column h3 {
    font-size: 15px;
    font-weight: 800;
    color: #0b57a4;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background-color: var(--brand-lime, #f26522);
    border-radius: 2px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 85px;
    display: block;
    margin: 0;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-contact-item:hover {
    color: var(--brand-lime, #f26522);
}
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand-lime, #f26522);
    fill: none;
    stroke-width: 2.5;
    margin-top: 0;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.footer-contact-item:hover svg {
    transform: scale(1.15);
}
.footer-contact-val {
    font-weight: 600;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links li {
    margin: 0;
}
.footer-links a {
    color: #475569;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '→';
    font-size: 12px;
    font-weight: 900;
    color: var(--brand-lime, #f26522);
    transition: transform 0.25s ease;
}
.footer-links a:hover {
    color: var(--brand-lime, #f26522);
    padding-left: 0;
}
.footer-links a:hover::before {
    transform: translateX(4px);
}

/* Gallery */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.footer-gallery-img {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-gallery-img:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    border-color: var(--brand-lime, #f26522);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
}

/* Responsive Menu Button */
.menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .top-header-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.45) 0%, rgba(7, 13, 25, 0.88) 100%);
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-size: 1.35rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.section-tag {
    display: inline-block;
    border: 1.5px solid var(--brand-lime);
    color: var(--brand-lime);
    padding: 6px 18px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.intro-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.intro-list li {
    display: flex;
    gap: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.intro-list li::before {
    content: '-';
    color: var(--brand-lime);
    font-weight: 900;
    margin-right: 5px;
}

.about-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .about-cards-row {
        grid-template-columns: 1fr;
    }
}

.about-vision-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 4px solid transparent;
    transition: var(--transition-smooth);
}

.about-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-vision-card.featured {
    border-top-color: var(--brand-lime);
}

.about-card-icon-circle {
    width: 65px;
    height: 65px;
    background-color: var(--brand-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.about-card-icon-circle svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.method-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .method-row {
        grid-template-columns: 1fr;
    }
}

.method-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.method-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
}

.method-card:hover .method-card-img {
    transform: scale(1.08);
}

.method-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.method-card-overlay-box {
    position: relative;
    z-index: 3;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid transparent;
}

.method-card.featured .method-card-overlay-box {
    border-top-color: var(--brand-lime);
}

.method-card-overlay-box h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.method-card-overlay-box p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.split-images-section {
    max-width: 1200px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .split-images-section {
        grid-template-columns: 1fr;
    }
}

.split-img-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-img-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-img-right img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    margin-left: 5px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: rgba(0,0,0,0.5);
}

/* Shop & Products Archive redesign styles */
.shop-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
    }
}

.shop-catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.shop-result-count {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.shop-sort-select {
    padding: 8px 15px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    font-family: inherit;
    color: var(--text-dark);
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

.shop-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 87, 164, 0.08);
    border-color: rgba(11, 87, 164, 0.2);
}

.shop-card-img-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
    background-color: #f3f4f6;
    border: 1px solid #f3f4f6;
}

.shop-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.shop-card:hover .shop-card-img {
    transform: scale(1.05);
}

.shop-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card-btn {
    display: inline-block;
    background-color: var(--brand-lime);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
}

.shop-card-btn:hover {
    background-color: var(--brand-green);
    color: #ffffff;
}

.contact-info-card-details p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Floating Vertical Social Sidebar (Fixed on right side) */
.floating-social-bar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

.floating-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 2px 5px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #475569;
    border: 1px solid rgba(229, 237, 248, 0.5);
}

.floating-social-link:hover {
    background-color: #0b57a4; /* Blue brand color */
    color: #ffffff;
    transform: translateX(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(11, 87, 164, 0.3);
    border-color: #0b57a4;
}

.floating-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.floating-social-link:hover svg {
    transform: rotate(4deg);
}

/* Hide floating bar on very small devices if needed, or adjust spacing */
@media (max-width: 640px) {
    .floating-social-bar {
        right: 10px;
        gap: 6px;
    }
    .floating-social-link {
        width: 36px;
        height: 36px;
    }
    .floating-social-link svg {
        width: 15px;
        height: 15px;
    }
}


.widget-search-input:focus {
    border-color: var(--brand-lime);
}

.widget-search-btn {
    background-color: var(--brand-lime);
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
}

.widget-search-btn:hover {
    background-color: var(--brand-green);
}

.widget-search-btn svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.widget-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.widget-category-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.widget-category-img-box {
    aspect-ratio: 1.1;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f3f4f6;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
}

.widget-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.widget-category-card:hover .widget-category-img {
    transform: scale(1.05);
}

.widget-category-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    transition: var(--transition-smooth);
}

.widget-category-card:hover .widget-category-name {
    color: var(--brand-lime);
}

.widget-category-count {
    color: var(--brand-lime);
    font-weight: 700;
}

.recent-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-product-item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
}

.recent-product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-product-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f3f4f6;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.recent-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.recent-product-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    transition: var(--transition-smooth);
}

.recent-product-title:hover {
    color: var(--brand-lime);
}

.recent-product-meta {
    font-size: 11px;
    color: var(--text-gray);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

/* Product Detail Page Specific Styles */
.detail-breadcrumb-bar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 20px;
}

.detail-breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-breadcrumbs {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.detail-breadcrumbs a {
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.detail-breadcrumbs a:hover {
    color: var(--brand-lime);
}

.detail-category-badge {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid var(--brand-lime);
    color: var(--brand-light-green);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
    margin: 60px 0;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-detail-img-wrapper {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.product-detail-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.product-detail-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--brand-lime);
    padding-bottom: 10px;
    display: inline-block;
}

.product-detail-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-detail-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.detail-specs-table-box {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.detail-specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.detail-specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.detail-specs-table tr:last-child {
    border-bottom: none;
}

.detail-specs-label {
    padding: 15px 20px;
    font-weight: 700;
    color: #111827;
    width: 35%;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
}

.detail-specs-value {
    padding: 15px 20px;
    color: var(--text-gray);
}

.cta-quote-box {
    background-color: var(--bg-dark);
    border-left: 4px solid var(--brand-lime);
    padding: 35px;
    border-radius: 0 8px 8px 0;
    color: #ffffff;
}

.cta-quote-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-quote-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.cta-quote-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 25px;
    font-size: 13px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-whatsapp-quote:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.btn-whatsapp-quote svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.btn-email-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-light-green);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 25px;
    font-size: 13px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(15, 111, 196, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-email-quote:hover {
    background-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 111, 196, 0.45);
    color: #ffffff;
}

/* Contact Page Specific Styles */
.contact-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-info-section p.contact-intro {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card-item {
    background-color: #ffffff;
    border: 1px solid #e5edf8;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(11, 87, 164, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 87, 164, 0.08);
    border-color: #0b57a4;
}

.contact-info-circle-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(11, 87, 164, 0.05);
    border: 1px solid rgba(11, 87, 164, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0b57a4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card-item:hover .contact-info-circle-icon {
    background-color: #0b57a4;
    color: #ffffff;
    transform: scale(1.05);
    border-color: #0b57a4;
}

.contact-info-circle-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card-details h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0b57a4;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card-details p {
    color: #1e293b;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* ── Section Partenaires / Marques ── */
.partners-section {
    background: #ffffff;
    padding: 30px 0 15px 0;
    border-top: 1px solid #e5edf8;
    border-bottom: 1px solid #e5edf8;
    overflow: hidden;
    margin: 0;
}
.partners-header {
    text-align: center;
    margin-bottom: 15px;
}
.partners-subtitle {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-lime, #f26522);
    margin-bottom: 6px;
}
.partners-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}
.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}
.partners-slider::before, .partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.partners-track {
    display: flex;
    width: max-content;
    animation: scrollPartner 35s linear infinite;
}
.partners-track:hover {
    animation-play-state: paused;
}
.partner-logo-item {
    width: 180px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    flex-shrink: 0;
}
.partner-logo-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

@keyframes scrollPartner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* Réduction des espaces blancs des sections adjacentes sur la home */
.projects-section {
    padding-bottom: 30px !important;
}
.testimonials-section {
    padding-top: 40px !important;
}




/* ── Premium File Uploader ── */
.premium-file-uploader {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-file-uploader:hover {
    border-color: #4f46e5;
    background: #f1f5f9;
}

.premium-file-uploader svg {
    width: 32px;
    height: 32px;
    stroke: #64748b;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.premium-file-uploader:hover svg {
    stroke: #4f46e5;
    transform: translateY(-2px);
}

.uploader-title {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.uploader-title span {
    color: #4f46e5;
    text-decoration: underline;
}

.uploader-subtitle {
    font-size: 11px;
    color: #94a3b8;
}

/* Preview Grid for Multiple Images */
.uploader-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.uploader-preview-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.uploader-preview-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-file-name {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}
