
/* ==========================================================================
   CSS CUSTOM VARIABLES & GLOBAL RESET
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-red: hsl(356, 78%, 49%);
    --primary-red-hover: hsl(356, 78%, 42%);
    --primary-red-light: hsl(356, 78%, 96%);
    --primary-red-glow: hsla(356, 78%, 49%, 0.15);
    --text-dark: hsl(215, 28%, 17%);
    --text-light: hsl(215, 16%, 47%);
    --bg-warm: hsl(40, 20%, 97%);
    --bg-white: hsl(0, 0%, 100%);
    --bg-card: hsl(0, 0%, 100%);
    --border-color: hsl(215, 20%, 90%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-subtle: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 12px 36px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 24px 48px rgba(223, 27, 40, 0.12);
}

/* Disable Hello Elementor default styling (pink borders, pink backgrounds, white hover/focus text) on generic buttons and input buttons */
button:not(.interlinks-btn-primary):not(.interlinks-btn-secondary):not(.wpcf7-submit):not(.elementor-button),
input[type="button"]:not(.elementor-button),
input[type="submit"]:not(.wpcf7-submit):not(.elementor-button),
[type="button"]:not(.elementor-button),
[type="submit"]:not(.wpcf7-submit):not(.elementor-button) {
    background-color: transparent;
    border: none;
    color: inherit;
    padding: 0;
}

button:not(.interlinks-btn-primary):not(.interlinks-btn-secondary):not(.wpcf7-submit):not(.elementor-button):focus,
button:not(.interlinks-btn-primary):not(.interlinks-btn-secondary):not(.wpcf7-submit):not(.elementor-button):hover,
button:not(.interlinks-btn-primary):not(.interlinks-btn-secondary):not(.wpcf7-submit):not(.elementor-button):active,
input[type="button"]:not(.elementor-button):focus,
input[type="button"]:not(.elementor-button):hover,
input[type="button"]:not(.elementor-button):active,
input[type="submit"]:not(.wpcf7-submit):not(.elementor-button):focus,
input[type="submit"]:not(.wpcf7-submit):not(.elementor-button):hover,
input[type="submit"]:not(.wpcf7-submit):not(.elementor-button):active,
[type="button"]:not(.elementor-button):focus,
[type="button"]:not(.elementor-button):hover,
[type="button"]:not(.elementor-button):active,
[type="submit"]:not(.wpcf7-submit):not(.elementor-button):focus,
[type="submit"]:not(.wpcf7-submit):not(.elementor-button):hover,
[type="submit"]:not(.wpcf7-submit):not(.elementor-button):active {
    background-color: transparent;
    color: inherit;
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

/* ==========================================================================
   GLOBAL CLASSES & ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cinematicMainImage {
    from {
        opacity: 0;
        transform: scale(0.9) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes cinematicFloatRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 50px) scale(0.92) rotate(3deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 40px) scale(1) rotate(0deg);
    }
}

@keyframes cinematicFloatLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 80px) scale(0.92) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 60px) scale(1) rotate(0deg);
    }
}

.animate-on-load {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.hero-image-wrapper.animate-on-load {
    animation: cinematicMainImage 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.floating-card-top-right.animate-on-load {
    animation: cinematicFloatRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.floating-chat-bubble.animate-on-load {
    animation: cinematicFloatLeft 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

span.squiggly {
    position: relative;
    display: inline-block;
}

span.squiggly::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' fill='none' stroke='%23df1b28' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 0% 100%; /* Start at 0 width */
    background-repeat: no-repeat;
    transition: background-size 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.title-highlight-active span.squiggly::after,
.revealed span.squiggly::after {
    background-size: 100% 100%;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background-color: hsla(356, 78%, 49%, 0.06);
    color: var(--primary-red);
    border: 1px solid hsla(356, 78%, 49%, 0.12);
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: normal;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-title span.accent {
    color: var(--primary-red);
}

.section-description {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto;
}

/* Base Buttons */
.interlinks-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-red);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(223, 27, 40, 0.2);
}

.interlinks-btn-primary:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 27, 40, 0.35);
}

.interlinks-btn-primary i {
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.interlinks-btn-primary:hover i {
    transform: translateX(4px);
}

.interlinks-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-dark) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 2px solid var(--text-dark);
    cursor: pointer;
}

.interlinks-btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white) !important;
    transform: translateY(-3px);
}

/* Offset body content to prevent fixed header overlap */
body {
    padding-top: 125px; /* Taller double-deck header offset */
}

@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}

/* ==========================================================================
   MODERN GLASSMORPHIC DOUBLE-DECK HEADER
   ========================================================================== */
.header-main-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85); /* Sand background with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease;
}

.header-main-wrapper.header-scrolled {
    background: rgba(250, 249, 246, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Header Container Alignment */
.header-container {
    max-width: 1440px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Top Contact & Extra Bar */
.header-top-bar {
    max-height: 45px;
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.header-main-wrapper.header-scrolled .header-top-bar {
    max-height: 0;
    height: 0;
    opacity: 0;
    border-bottom-width: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.header-top-container {
    max-width: 1440px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-contact-item {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-contact-item i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.top-contact-item:hover {
    color: var(--primary-red);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-socials .social-icon-link {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none !important;
}

.top-socials .social-icon-link:hover {
    color: var(--primary-red);
    transform: translateY(-1px);
}

.top-language-selector {
    display: flex;
    align-items: center;
}

/* WPML styling helpers */
.top-language-selector select,
.top-language-selector .wpml-ls-legacy-dropdown {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px 6px;
}

.top-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 1.5px solid var(--primary-red);
    box-shadow: 0 3px 8px rgba(223, 27, 40, 0.15);
}

.top-cta-btn:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-1.5px);
    box-shadow: 0 6px 15px rgba(223, 27, 40, 0.25);
}

/* Main Site Header Bar */
.site-header {
    width: 100%;
    height: 80px;
    background: transparent;
    border: none;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-main-wrapper.header-scrolled .site-header {
    height: 70px;
}

/* Logo & Branding */
.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img {
    max-height: 48px;
    width: auto;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-main-wrapper.header-scrolled .site-branding img {
    max-height: 40px;
}

.site-branding .site-title a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none !important;
    letter-spacing: -0.5px;
}

.site-branding .site-title a span {
    color: var(--primary-red);
}

/* Navigation Links */
.site-navigation {
    display: flex;
    align-items: center;
}

ul.site-navigation-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
}

ul.site-navigation-menu li {
    position: relative;
}

ul.site-navigation-menu a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none !important;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

/* Underline slide animation */
ul.site-navigation-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

ul.site-navigation-menu a:hover {
    color: var(--primary-red);
}

ul.site-navigation-menu a:hover::after {
    width: 100%;
}

/* Current page active state link */
ul.site-navigation-menu li.current-menu-item a,
ul.site-navigation-menu li.current-menu-ancestor a {
    color: var(--primary-red);
}

ul.site-navigation-menu li.current-menu-item a::after {
    width: 100%;
}

/* Header Actions (Search & Burger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-toggle {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    cursor: pointer;
    padding: 6px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-search-toggle:hover {
    color: var(--primary-red);
    transform: scale(1.08);
}

.mobile-menu-extras {
    display: none;
}

/* Mobile Toggle Hamburger Icon */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger transition to close X */
.mobile-menu-open .mobile-menu-toggle .toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-open .mobile-menu-toggle .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .mobile-menu-toggle .toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Header Overrides */
@media (max-width: 991px) {
    .header-top-bar {
        display: none !important;
    }
    
    .header-main-wrapper {
        background: rgba(250, 249, 246, 0.98);
    }
    
    .site-header {
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        overflow-y: auto;
        z-index: 999;
        transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-bottom: 0px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .site-navigation.mobile-nav-active {
        height: calc(100vh - 70px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    ul.site-navigation-menu {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        gap: 24px;
        padding: 40px 0 20px;
    }
    
    ul.site-navigation-menu a {
        font-size: 1.2rem;
    }
    
    /* Mobile Menu Extras */
    .mobile-menu-extras {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        padding: 20px 0 60px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 20px;
    }
    
    .mobile-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-red);
        color: var(--bg-white) !important;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.95rem;
        padding: 12px 36px;
        border-radius: 50px;
        text-decoration: none !important;
        width: 80%;
        max-width: 280px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(223, 27, 40, 0.2);
    }
    
    .mobile-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-contacts a {
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: var(--text-light);
        text-decoration: none !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-contacts a i {
        color: var(--primary-red);
    }
    
    .mobile-socials {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .mobile-socials a {
        color: var(--text-light);
        font-size: 1.1rem;
        text-decoration: none !important;
    }
}

/* ==========================================================================
   REDESIGNED HERO SECTION (COSMIC CREAM & BRAND RED SYSTEM)
   ========================================================================== */
.interlinks-hero-redesign {
    position: relative;
    padding: 100px 24px 60px;
    background-color: var(--bg-warm);
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    font-family: var(--font-body);
}

.hero-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

/* Left Text Column */
.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-tag-item {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background-color: hsla(356, 78%, 49%, 0.06);
    color: var(--primary-red);
    border: 1px solid hsla(356, 78%, 49%, 0.12);
    transition: var(--transition-smooth);
}

.hero-tag-item:hover {
    background-color: var(--primary-red);
    color: var(--bg-white);
    border-color: var(--primary-red);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-headline span.accent {
    color: var(--primary-red);
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 580px;
}

/* CTA & Trust indicator */
.hero-cta-container {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(223, 27, 40, 0.2);
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-red);
    cursor: pointer;
}

.hero-cta-button:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(223, 27, 40, 0.35);
}

.hero-trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.1rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-subtle);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(223, 27, 40, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(223, 27, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(223, 27, 40, 0); }
}

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

.trust-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-number {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Right Image Column */
.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 10px;
    transform: perspective(1000px);
    transform-style: preserve-3d;
}

.hero-main-img {
    width: 100%;
    aspect-ratio: 1.05 / 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 6px solid var(--bg-white);
    transition: var(--transition-smooth);
}

/* Floating Card Top-Right */
.floating-card-top-right {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    width: 210px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    z-index: 3;
    transform: translateZ(40px); /* 3D depth */
    transition: var(--transition-smooth);
}

.badge-solidaire {
    display: inline-block;
    background-color: #ecfdf5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.float-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.float-card-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-light);
}

/* Floating Chat Bubble Bottom-Left */
.floating-chat-bubble {
    position: absolute;
    bottom: -15px;
    left: -40px;
    background-color: var(--bg-white);
    border-radius: 50px;
    padding: 10px 18px 10px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    z-index: 3;
    transform: translateZ(60px); /* 3D depth */
    transition: var(--transition-smooth);
}

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.chat-sender {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.chat-msg {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.chat-send-btn {
    width: 32px;
    height: 32px;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-send-btn:hover {
    background-color: var(--primary-red);
    color: var(--bg-white);
}

/* ==========================================================================
   HERO BOTTOM AREA (FEATURE CARDS)
   ========================================================================== */
.hero-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
}

/* Bottom Left Card (Image + Text info) */
.bottom-card-left {
    background-color: #f0f4f1; /* Soft neutral-green backdrop */
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
}

.bottom-card-left:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-left-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-left-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-left-content {
    display: flex;
    flex-direction: column;
}

.card-left-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-left-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* Bottom Right Card (Solid brand block) */
.bottom-card-right {
    background-color: var(--primary-red);
    border-radius: 24px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 24px rgba(223, 27, 40, 0.15);
}

.bottom-card-right:hover {
    transform: translateY(-5px);
    background-color: var(--primary-red-hover);
    box-shadow: 0 15px 32px rgba(223, 27, 40, 0.25);
}

.card-right-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-right-btn-wrap {
    display: inline-block;
}

.card-right-btn {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
}

.card-right-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 320px;
}

.card-right-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.bottom-card-right:hover .card-right-arrow-btn {
    background-color: var(--bg-white);
    color: var(--primary-red);
    transform: scale(1.08);
}

/* ==========================================================================
   SERVICES SECTION (INFINITE MARQUEE SLIDER Redesign)
   ========================================================================== */
.interlinks-services {
    padding: 80px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

/* Outer wrapper */
.services-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.services-slider-wrap.reveal-on-scroll {
    transition-delay: 0.25s;
}

/* Scrolling Track */
.services-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollServices 50s linear infinite;
    padding: 10px 0;
}

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

/* Keyframes for seamless looping scroll */
@keyframes scrollServices {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Service Card Premium Base */
.service-card-premium {
    width: 420px;
    flex-shrink: 0;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: #faf9f6; /* Uniform soft default color */
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    color: var(--text-dark);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.8s ease, 
                background-color 0.8s ease,
                color 0.8s ease;
}

/* Hover width expansion and transition to brand red */
.service-card-premium:hover {
    width: 540px;
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #ffffff !important;
    box-shadow: 0 24px 48px rgba(223, 27, 40, 0.15), var(--shadow-medium);
}

/* Custom dimensions for Card 2 (Inclusion) which contains more text */
.service-card-premium.service-card-inclusion {
    width: 480px;
}

.service-card-premium.service-card-inclusion:hover {
    width: 620px;
}

/* Card specific overrides - uniform default colors */
.service-card-sante,
.service-card-inclusion,
.service-card-developpement,
.service-card-plaidoyer {
    background-color: #faf9f6;
    border: 1px solid var(--border-color);
}

/* Custom text details inside service cards */
.service-card-title-premium {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.8s ease;
}

.service-card-premium:hover .service-card-title-premium {
    color: #ffffff !important;
}

.service-card-desc-premium {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.8s ease;
}

.service-card-premium:hover .service-card-desc-premium {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Interactive Glassmorphic "Nos Actions" Box */
.service-actions-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 3px solid var(--primary-red);
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.6s ease, 
                border-color 0.6s ease,
                border-left-color 0.6s ease,
                box-shadow 0.6s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-actions-premium:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Specific left border actions and overrides (Default State) */
.service-card-sante .service-actions-premium {
    border-left-color: var(--primary-red);
}

.service-card-inclusion .service-actions-premium {
    border-left-color: var(--primary-red);
}

.service-card-developpement .service-actions-premium {
    border-left-color: #d97706; /* Orange accent */
}
.service-card-developpement .service-actions-premium:hover {
    border-left-color: #b45309;
}

.service-card-plaidoyer .service-actions-premium {
    border-left-color: #2563eb; /* Blue accent */
}
.service-card-plaidoyer .service-actions-premium:hover {
    border-left-color: #1d4ed8;
}

/* Glassmorphic Actions when the parent Card is hovered (Turns Red) */
.service-card-premium:hover .service-actions-premium {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    border-left-color: #ffffff !important;
    box-shadow: none !important;
}

.service-card-premium:hover .actions-label-premium {
    color: #ffffff !important;
}

.service-card-premium:hover .actions-text-premium {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Track Hover Depth-of-Field Blur Focus Effect */
.services-slider-track:hover .service-card-premium {
    opacity: 0.65; /* Dim other cards */
}

.services-slider-track .service-card-premium:hover {
    opacity: 1; /* Focus hovered card */
}

.actions-label-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
    transition: color 0.8s ease;
}

.actions-text-premium {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-light);
    margin: 0;
    transition: color 0.8s ease;
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: color 0.8s ease, transform 0.8s ease;
    margin-top: auto;
}

.service-card-premium:hover .service-link-premium {
    color: #ffffff !important;
}

.service-link-premium:hover {
    transform: translateX(3px);
}

.inclusion-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inclusion-btn-wrap {
    display: inline-block;
    margin-top: 10px;
}

.inclusion-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(223, 27, 40, 0.15);
    transition: background-color 0.6s ease, color 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

.service-card-premium:hover .inclusion-btn {
    background-color: #ffffff !important;
    color: var(--primary-red) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.service-card-premium:hover .inclusion-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.inclusion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 27, 40, 0.25);
}

/* ==========================================================================
   ABOUT US SECTION (Modernized Overlap & Glassmorphic Redesign)
   ========================================================================== */
.interlinks-about {
    padding: 120px 0;
    background-color: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

/* Background blur blobs */
.about-blob-shapeabout {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.about-blob-1 {
    width: 350px;
    height: 350px;
    background-color: hsla(356, 78%, 49%, 0.12);
    top: 10%;
    left: -100px;
}

.about-blob-2 {
    width: 400px;
    height: 400px;
    background-color: hsla(215, 28%, 17%, 0.04);
    bottom: 5%;
    right: -150px;
}

/* Grid layout wrapper */
.about-grid-wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Media Column styling */
.about-left-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-media-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding-bottom: 40px; /* Space for frosted card overlap */
}

/* Poster wrapper breaks standard grid boundaries */
.about-poster-wrapper {
    position: relative;
    width: 92%;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background-color: var(--bg-white);
    transform: translateY(-10px);
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-poster-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 0.72 / 1;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulse Play Icon Overlays */
.about-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.play-button-pulse {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.play-icon-inner {
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.15rem;
    padding-left: 3px; /* Center-align the play triangle */
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(223, 27, 40, 0.2);
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.25, 0, 0, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Tooltip info panel slide-up */
.about-video-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.about-poster-wrapper:hover .about-video-tooltip {
    transform: translateY(0);
    opacity: 1;
}

.tooltip-text {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.tooltip-text i {
    color: var(--primary-red);
    font-size: 0.95rem;
}

/* Interactions when poster is hovered */
.about-poster-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-poster-wrapper:hover .about-poster-img {
    transform: scale(1.04);
}

.about-poster-wrapper:hover .play-icon-inner {
    background: var(--primary-red);
    color: var(--bg-white);
    transform: scale(1.05);
}

/* Overlapping Frosted Glass Card */
.about-frosted-card {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 260px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.6s ease,
                box-shadow 0.6s ease;
}

.about-media-container:hover .about-frosted-card {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.frosted-card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.frosted-card-icon-glow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: hsla(356, 78%, 49%, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.frosted-card-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
}

/* Right Content Column styling */
.about-right-col {
    display: flex;
    align-items: center;
}

.about-text-content {
    max-width: 560px;
}

.about-text-content .section-tag {
    margin-bottom: 16px;
}

.about-text-content .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: left;
}

.about-lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-story {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 36px;
}

.about-btn-wrap {
    display: inline-block;
}

.about-story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-red);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(223, 27, 40, 0.15);
}

.about-story-btn .arrow-slide {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-btn:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(223, 27, 40, 0.3);
}

.about-story-btn:hover .arrow-slide {
    transform: translateX(6px); /* Arrow slides right */
}

/* Responsive constraints for About section */
@media (max-width: 991px) {
    .interlinks-about {
        padding: 80px 20px;
    }
    
    .about-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-left-col {
        order: 1; /* Poster on bottom on small screens */
    }
    
    .about-media-container {
        margin: 0 auto;
        padding-bottom: 20px;
    }
    
    .about-poster-wrapper {
        width: 100%;
        margin: 0;
    }
    
    .about-frosted-card {
        left: 5%;
        bottom: 0px;
        width: 240px;
        padding: 20px;
    }
    
    .about-text-content {
        margin: 0 auto;
    }
    
    .about-text-content .section-title {
        text-align: center;
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .about-text-content .section-title {
        font-size: 2.2rem;
    }
    
    .about-frosted-card {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
        backdrop-filter: none;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-subtle);
    }
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */
.interlinks-projects {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.project-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.project-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-red);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.project-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-desc {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.project-btn i {
    margin-left: 6px;
    transition: var(--transition-smooth);
    color: var(--primary-red);
}

.project-card:hover .project-btn {
    color: var(--primary-red);
}

.project-card:hover .project-btn i {
    transform: translateX(4px);
}

/* ==========================================================================
   PARTNERS SECTION (INFINITE SCROLL)
   ========================================================================== */
.interlinks-partners {
    padding: 60px 0;
    background-color: var(--bg-warm);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
}

/* CSS Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding-left: 100%;
    box-sizing: content-box;
}

.ticker {
    display: inline-flex;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    animation: ticker 25s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    flex-shrink: 0;
}

.ticker-item img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.ticker-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
    /* Redesigned Hero Section */
    .interlinks-hero-redesign {
        padding: 60px 20px 40px;
    }

    .hero-top-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        margin-bottom: 50px;
    }

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

    .hero-tags {
        justify-content: center;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-container {
        justify-content: center;
        gap: 20px;
    }

    /* Right column images */
    .hero-right {
        order: -1; /* Place image on top on mobile/tablet */
    }

    .hero-image-wrapper {
        max-width: 380px;
    }

    .floating-card-top-right {
        right: -15px;
        top: 15px;
        width: 170px;
        padding: 15px;
    }

    .floating-chat-bubble {
        left: -15px;
        bottom: -10px;
        width: 280px;
        padding: 8px 14px 8px 8px;
    }

    /* Bottom area cards */
    .hero-bottom-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 50px;
    }

    /* Services Mobile Overrides (Disable Auto-Slider and make it scrollable horizontally) */
    .marquee-duplicate {
        display: none !important;
    }
    
    .services-slider-wrap {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 20px 20px 40px !important;
        overflow-y: hidden !important;
    }
    
    .services-slider-wrap::-webkit-scrollbar {
        display: none !important;
    }
    
    .services-slider-track {
        animation: none !important;
        transform: none !important;
        flex-direction: row !important;
        width: max-content !important;
        gap: 20px !important;
        padding: 10px 20px !important;
    }
    
    .service-card-premium {
        width: 330px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        transition: none !important;
    }
    
    /* Disable hover color transformations on mobile/tablet (keep light colors) */
    .service-card-premium:hover {
        width: 330px !important;
        background-color: #faf9f6 !important;
        border-color: var(--border-color) !important;
        color: var(--text-dark) !important;
        box-shadow: var(--shadow-subtle) !important;
    }
    
    .service-card-premium.service-card-inclusion {
        width: 330px !important;
    }
    
    .service-card-premium.service-card-inclusion:hover {
        width: 330px !important;
        background-color: #faf9f6 !important;
        border-color: var(--border-color) !important;
        color: var(--text-dark) !important;
        box-shadow: var(--shadow-subtle) !important;
    }
    
    .service-card-premium:hover .service-card-title-premium {
        color: var(--text-dark) !important;
    }
    
    .service-card-premium:hover .service-card-desc-premium {
        color: var(--text-light) !important;
    }
    
    .service-card-premium:hover .service-link-premium {
        color: var(--primary-red) !important;
    }
    
    .service-card-premium:hover .service-actions-premium {
        background: rgba(255, 255, 255, 0.7) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
        border-left: 3px solid var(--primary-red) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    }
    
    .service-card-sante:hover .service-actions-premium {
        border-left-color: var(--primary-red) !important;
    }
    .service-card-inclusion:hover .service-actions-premium {
        border-left-color: var(--primary-red) !important;
    }
    .service-card-developpement:hover .service-actions-premium {
        border-left-color: #d97706 !important;
    }
    .service-card-plaidoyer:hover .service-actions-premium {
        border-left-color: #2563eb !important;
    }
    
    .service-card-premium:hover .actions-label-premium {
        color: var(--text-dark) !important;
    }
    
    .service-card-premium:hover .actions-text-premium {
        color: var(--text-light) !important;
    }
    
    .service-card-premium:hover .inclusion-btn {
        background-color: var(--primary-red) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(223, 27, 40, 0.15) !important;
    }
}

@media (max-width: 767px) {
    /* Redesigned Hero Section */
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-cta-container {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .hero-cta-button {
        width: 100%;
    }

    .hero-trust-indicator {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .floating-card-top-right {
        right: -10px;
        width: 150px;
        padding: 12px;
    }

    .float-card-title {
        font-size: 1.4rem;
    }

    .floating-chat-bubble {
        left: -10px;
        width: 250px;
    }

    /* Bottom Cards */
    .bottom-card-left {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .card-left-img-wrap {
        width: 100px;
        height: 100px;
    }

    .bottom-card-right {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 20px;
    }

    .card-right-text {
        margin: 0 auto;
    }

    .card-right-btn-wrap {
        text-align: center;
    }

    /* Reduce card padding on small mobile to prevent text squishing */
    .service-card-premium {
        padding: 32px 24px !important;
    }
}

/* ==========================================================================
   FLOATING INTERACTIVE SCROLL WHEEL NAVIGATOR
   ========================================================================== */
.scroll-wheel-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 380px;
    z-index: 999;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-wheel-wrapper.is-collapsed {
    transform: translateY(-50%) translateX(250px);
}

.scroll-wheel-pointer {
    position: absolute;
    right: 210px !important; /* Move left to clear the active dot's outer edge (which is at 204px) */
    top: 50%;
    transform: translateY(-50%);
    width: 20px !important; /* Sleek, shorter needle */
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red));
    border-radius: 2px;
    z-index: 1001;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(223, 27, 40, 0.4);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-wheel-pointer::before {
    content: '';
    position: absolute;
    right: -2px; /* Sits exactly at the tip of the needle */
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-red);
}

.scroll-wheel-wrapper.is-collapsed .scroll-wheel-pointer {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

.scroll-wheel-nav {
    position: absolute;
    right: -190px; /* Sits exactly half off-screen */
    top: 50%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 999;
    pointer-events: none;
    transform: translateY(-50%) rotate(calc(var(--wheel-rotation, 0) * 1deg));
    transition: none; /* Smooth manual scroll tracking without transition delay */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(223, 27, 40, 0.08);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03), inset 0 0 20px rgba(0, 0, 0, 0.02);
}

/* Enable transition only when clicking a dot wrap to slide smoothly */
.scroll-wheel-nav.is-animating {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-wheel-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px dashed rgba(223, 27, 40, 0.15);
    background: radial-gradient(circle, transparent 68%, rgba(223, 27, 40, 0.02) 100%);
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(223, 27, 40, 0.03);
}

/* Concentric mechanical track ring */
.scroll-wheel-ring::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

/* Modern Stacked Info Panel (Dynamic Section Name Only) */
.scroll-wheel-info-panel {
    position: absolute;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1002 !important;
    pointer-events: none !important;
    width: 130px !important;
    text-align: center !important;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-wheel-section-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    pointer-events: none !important;
}

.scroll-wheel-section-title .section-name {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    white-space: normal !important;
    font-family: var(--font-heading) !important;
    display: block !important;
    line-height: 1.35 !important;
}

.scroll-wheel-wrapper.is-collapsed .scroll-wheel-info-panel {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

/* Vertical Glassmorphic Collapse Toggle Tab */
.scroll-wheel-collapse-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 60px;
    border-radius: 8px 0 0 8px; /* Rounded only on the left side */
    background: rgba(250, 249, 246, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-right: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto; /* Clickable! */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.03);
    z-index: 1003;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-wheel-collapse-btn:hover {
    background: rgba(250, 249, 246, 0.9);
    color: var(--primary-red);
    width: 24px; /* Expand slightly on hover */
    box-shadow: -6px 0 20px rgba(223, 27, 40, 0.1);
}

.scroll-wheel-wrapper.is-collapsed .scroll-wheel-collapse-btn {
    /* Shifts left to stay exactly at right: 0 on screen when wrapper moves right 250px */
    transform: translateY(-50%) translateX(-250px);
    background: rgba(250, 249, 246, 0.95);
    color: var(--primary-red);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.scroll-wheel-wrapper.is-collapsed .scroll-wheel-collapse-btn i {
    transform: rotate(180deg);
}

.scroll-nav-dot-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Translate elements radially based on item angle and countered by parent rotation */
    transform: translate(-50%, -50%) 
               rotate(calc(var(--item-angle) * 1deg)) 
               translate(-190px) 
               rotate(calc((var(--item-angle) + var(--wheel-rotation, 0)) * -1deg));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-nav-dot {
    width: 12px;
    height: 12px;
    background-color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease, 
                box-shadow 0.4s ease,
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-subtle);
    z-index: 2;
    overflow: hidden;
}

.scroll-nav-dot span {
    font-size: 0px;
    opacity: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
    display: inline-block !important;
    transform: rotate(90deg) !important;
    transition: font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s ease,
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-nav-dot-wrap:hover .scroll-nav-dot {
    width: 24px;
    height: 24px;
    background-color: var(--primary-red);
}

.scroll-nav-dot-wrap:hover .scroll-nav-dot span {
    font-size: 10px;
    opacity: 0.9;
    transform: rotate(90deg) !important;
}

.scroll-nav-dot-wrap.active .scroll-nav-dot {
    width: 28px;
    height: 28px;
    background-color: var(--primary-red);
    box-shadow: 0 0 0 6px rgba(223, 27, 40, 0.12), 0 0 15px var(--primary-red);
}

.scroll-nav-dot-wrap.active .scroll-nav-dot span {
    font-size: 11px;
    opacity: 1;
    transform: rotate(90deg) !important;
}

/* Hide scroll wheel navigation on mobile/tablet viewports */
@media (max-width: 991px) {
    .scroll-wheel-wrapper {
        display: none !important;
    }
}

/* ==========================================================================
   PROJECTS COMPONENT & PAGES STYLING (CPT AND SHORTCODES)
   ========================================================================== */

/* Layout Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Card base */
.project-card-premium {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(223, 27, 40, 0.06), var(--shadow-medium);
    border-color: rgba(223, 27, 40, 0.15);
}

/* Image wrapper */
.project-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--bg-warm);
}

.project-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-premium:hover .project-card-image-wrap img {
    transform: scale(1.05);
}

/* Date Badge */
.project-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(223, 27, 40, 0.2);
    z-index: 2;
}

/* Card Content */
.project-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.project-card-title a {
    color: var(--text-dark);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.project-card-title a:hover {
    color: var(--primary-red);
}

.project-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Partners tag list */
.project-card-partners {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.partners-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.partners-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.partner-tag-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important; /* Fully rounded pill */
    background-color: var(--bg-warm) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--border-color) !important;
    line-height: 1 !important;
}

.partner-logo-mini {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.partner-name-mini {
    display: inline-block !important;
}

/* Card Link */
.project-card-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.project-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.project-card-link:hover {
    color: var(--primary-red-hover);
}

.project-card-link:hover i {
    transform: translateX(4px);
}

/* Overview CTA button */
.projects-view-all-container {
    text-align: center;
    margin-top: 20px;
}

.projects-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-red) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-red);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.projects-view-all-btn:hover {
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
    box-shadow: 0 6px 15px rgba(223, 27, 40, 0.15);
    transform: translateY(-2px);
}

/* Archive Pagination styles */
.projects-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.projects-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.projects-pagination ul li a,
.projects-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    text-decoration: none !important;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.projects-pagination ul li span.current {
    background-color: var(--primary-red);
    color: var(--bg-white);
    border-color: var(--primary-red);
}

.projects-pagination ul li a:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ==========================================================================
   SINGLE PROJECT PAGE SPECIFIC STYLES (RE-DESIGNED SPLIT LAYOUT)
   ========================================================================== */
@keyframes floatBackground {
    0% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
    50% {
        transform: translate(-3%, 2%) scale(1.15) rotate(2deg);
    }
    100% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
}

@keyframes fadeInUpSplit {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRightSplit {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.single-project-hero-split {
    position: relative;
    background-color: var(--bg-warm, #faf9f6);
    padding: 150px 0 80px;
    border-bottom: 1px solid var(--border-color, #eaeaea);
    overflow: hidden;
    clip-path: inset(0); /* Create viewport clipping mask to safely constrain fixed parallax child */
}

.project-hero-split-bg {
    position: fixed; /* Fixed position anchors background relative to viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(80px) saturate(2); /* Veeeery blurred image */
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.project-hero-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(250, 249, 246, 0.75) 0%, rgba(250, 249, 246, 0.96) 100%);
    pointer-events: none;
    z-index: 2;
}

.project-hero-split-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.project-hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.project-hero-split-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-category-badge-split {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red, #df1b28);
    background-color: rgba(223, 27, 40, 0.05);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(223, 27, 40, 0.1);
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeInUpSplit 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.1s;
}

.project-title-split {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark, #111111);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    animation: fadeInUpSplit 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.25s;
}

.project-date-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light, #666666);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #eaeaea);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-subtle, 0 2px 8px rgba(0,0,0,0.02));
    animation: fadeInUpSplit 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.4s;
}

.project-date-badge i {
    color: var(--primary-red, #df1b28);
}

.project-hero-split-right {
    display: flex;
    justify-content: center;
}

.project-featured-image-wrapper-split {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInRightSplit 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.4s;
}

.project-featured-image-wrapper-split:hover {
    transform: translateY(-4px);
}

.project-featured-image-split {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}

/* Content Area split */
.single-project-content-area-split {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.project-content-split-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.project-content-split-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: start;
}

/* Left Column styling */
.project-main-column-split {
    font-family: var(--font-body);
}

.project-description-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color, #eaeaea);
    box-shadow: var(--shadow-subtle, 0 4px 20px rgba(0,0,0,0.02));
}

.description-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 850;
    color: var(--text-dark, #111111);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid var(--primary-red);
    padding-left: 14px;
    line-height: 1;
}

.project-rich-text-split {
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--text-dark, #2b2b2b);
}

.project-rich-text-split p {
    margin-bottom: 20px;
}

.project-rich-text-split p:last-child {
    margin-bottom: 0;
}

/* Right Column: Sidebar Card */
.project-sidebar-column-split {
    position: sticky;
    top: 110px;
}

.project-sidebar-card-split {
    background-color: var(--bg-warm, #faf9f6);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid var(--border-color, #eaeaea);
    box-shadow: var(--shadow-subtle);
}

.sidebar-title-split {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 850;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-desc-split {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 24px;
}

.sidebar-btn-wrap-split {
    margin-bottom: 24px;
}

.sidebar-btn-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(223, 27, 40, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.sidebar-btn-split:hover {
    background-color: var(--primary-red-hover);
    box-shadow: 0 8px 25px rgba(223, 27, 40, 0.3);
    transform: translateY(-2px);
}

.sidebar-divider-split {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 24px 0;
}

.sidebar-contacts-split {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-contacts-label-split {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 750;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.sidebar-contact-link-split {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-weight: 600;
}

.sidebar-contact-link-split i {
    color: var(--primary-red);
    font-size: 0.95rem;
}

.sidebar-contact-link-split:hover {
    color: var(--primary-red);
}

/* Partners split row styling */
.project-hero-partners-split {
    margin-top: 30px;
    width: 100%;
    animation: fadeInUpSplit 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.55s;
}

.hero-partners-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 750;
    color: var(--text-light, #666666);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.project-partners-list-new {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partner-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: var(--shadow-subtle, 0 2px 8px rgba(0,0,0,0.02));
}

.partner-pill-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-red);
}

.partner-logo-container-pill {
    width: 110px;
    height: 52px;
    border-radius: 26px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-subtle);
    transition: border-color 0.3s ease;
    padding: 6px;
}

.partner-pill-item:hover .partner-logo-container-pill {
    border-color: var(--primary-red);
}

.partner-logo-container-pill img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.partner-fallback-pill {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.partner-name-pill {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--text-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 991px) {
    .project-hero-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .project-category-badge-split {
        align-self: center;
    }

    .project-title-split {
        font-size: 2.5rem;
    }

    .project-hero-split-left {
        align-items: center;
    }

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

    .project-sidebar-column-split {
        position: static;
    }
}

@media (max-width: 767px) {
    .single-project-hero-split {
        padding: 120px 0 60px;
    }

    .project-title-split {
        font-size: 2rem;
    }

    .project-featured-image-wrapper-split {
        border-radius: 18px;
        border: 4px solid #ffffff;
    }

    .project-rich-text-split {
        font-size: 1rem;
        line-height: 1.75;
    }

    .partner-pill-item {
        padding: 4px 12px 4px 4px;
        gap: 8px;
    }

    .partner-logo-container-pill {
        width: 80px;
        height: 38px;
        border-radius: 19px;
        padding: 4px;
    }

    .partner-name-pill {
        font-size: 0.8rem;
    }

    .project-sidebar-card-split {
        padding: 24px;
        border-radius: 20px;
    }
}

/* Project Navigation footer */
.project-navigation-section {
    background-color: var(--bg-warm, #faf9f6);
    padding: 60px 0;
    border-top: 1px solid var(--border-color, #eaeaea);
}

.project-navigation-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.project-nav-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.project-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-subtle, 0 2px 8px rgba(0,0,0,0.02));
}

.project-nav-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-red);
}

.prev-link {
    justify-content: flex-start;
    text-align: left;
}

.next-link {
    justify-content: flex-end;
    text-align: right;
}

.nav-arrow {
    font-size: 1.1rem;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.prev-link:hover .nav-arrow {
    transform: translateX(-4px);
    color: var(--primary-red);
}

.next-link:hover .nav-arrow {
    transform: translateX(4px);
    color: var(--primary-red);
}

.nav-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 2px solid #ffffff;
    box-shadow: var(--shadow-subtle);
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.project-nav-link:hover .nav-thumb {
    transform: scale(1.05);
}

.nav-text-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 750;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.project-nav-link:hover .nav-title {
    color: var(--primary-red);
}

.project-nav-empty {
    visibility: hidden;
}

@media (max-width: 767px) {
    .project-nav-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================================================================
   HOMEPAGE PROJECTS OVERVIEW [projects_overview] REDESIGN
   ========================================================================== */
.projects-overview-wrapper {
    width: 90% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 10px 0;
}

.projects-overview-wrapper .project-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 30px !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    padding: 15px 5px 30px 5px !important;
    grid-template-columns: none !important; /* Override standard grid */
}

/* Custom Scrollbar for modern touch */
.projects-overview-wrapper .project-grid::-webkit-scrollbar {
    height: 6px;
}
.projects-overview-wrapper .project-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}
.projects-overview-wrapper .project-grid::-webkit-scrollbar-thumb {
    background: rgba(223, 27, 40, 0.25);
    border-radius: 10px;
    transition: background 0.3s ease;
}
.projects-overview-wrapper .project-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Cards sizing in Overview: exactly two visible at once on desktop */
.projects-overview-wrapper .project-grid .project-card-premium {
    flex: 0 0 calc(50% - 15px) !important;
    scroll-snap-align: start !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
}

/* Initially hide badge on cards in overview */
.projects-overview-wrapper .project-grid .project-card-premium .project-card-badge {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Initially hide partners and CTA link on cards in overview */
.projects-overview-wrapper .project-grid .project-card-premium .project-card-partners {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border-top: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-overview-wrapper .project-grid .project-card-premium .project-card-link {
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Reveals */
.projects-overview-wrapper .project-grid .project-card-premium:hover .project-card-badge {
    opacity: 1;
    transform: translateY(0);
}

.projects-overview-wrapper .project-grid .project-card-premium:hover .project-card-partners {
    opacity: 1;
    max-height: 200px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.projects-overview-wrapper .project-grid .project-card-premium:hover .project-card-link {
    opacity: 1;
    max-height: 50px;
    margin-top: auto;
}

/* Mobile responsive slider behavior */
@media (max-width: 991px) {
    .projects-overview-wrapper .project-grid .project-card-premium {
        flex: 0 0 calc(70% - 15px) !important;
    }
}

@media (max-width: 767px) {
    .projects-overview-wrapper {
        width: 95% !important;
    }
    .projects-overview-wrapper .project-grid {
        gap: 15px !important;
    }
    .projects-overview-wrapper .project-grid .project-card-premium {
        flex: 0 0 85% !important;
    }
    
    /* Keep hover elements visible or always visible on mobile, since touch has no hover */
    .projects-overview-wrapper .project-grid .project-card-premium .project-card-badge {
        opacity: 1;
        transform: none;
    }
    .projects-overview-wrapper .project-grid .project-card-premium .project-card-partners {
        opacity: 1;
        max-height: none;
        margin-top: 15px;
        margin-bottom: 20px;
        padding-top: 15px;
        border-top: 1px dashed rgba(0, 0, 0, 0.06);
    }
    .projects-overview-wrapper .project-grid .project-card-premium .project-card-link {
        opacity: 1;
        max-height: none;
        margin-top: auto;
    }
}

/* ==========================================================================
   HOMEPAGE PARTNERS DISPLAY [partners_display] REDESIGN
   ========================================================================== */
.partners-display-wrapper {
    width: 90% !important;
    max-width: 1440px !important;
    margin: 80px auto !important;
    padding: 20px 0;
}

.partners-split-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr; /* 38% for text on left, 62% for slider on right */
    gap: 60px;
    align-items: center;
}

.partners-split-left {
    width: 100%;
}

.partners-split-right {
    min-width: 0; /* Prevents grid column overflow */
    width: 100%;
}

.section-header-split {
    max-width: 460px;
}

.section-header-split .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.section-title-split {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-split span.accent {
    color: var(--primary-red);
}

.section-description-split {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.65;
}

.partners-ticker-wrap {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between rows */
    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-row {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.partners-ticker-track {
    display: flex;
    width: max-content;
    gap: 24px;
}

/* RTL Track Anim - Slower 55s */
.ticker-track-rtl {
    animation: scrollPartnersRTL 55s linear infinite;
}

/* LTR Track Anim - Slower 55s */
.ticker-track-ltr {
    animation: scrollPartnersLTR 55s linear infinite;
}

.partners-ticker-wrap:hover .partners-ticker-track {
    animation-play-state: paused;
}

/* Partner Ticker Card */
.partner-ticker-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color, #eaeaea);
    padding: 8px 24px 8px 8px;
    border-radius: 40px;
    box-shadow: var(--shadow-subtle, 0 2px 8px rgba(0,0,0,0.02));
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
    cursor: pointer;
}

.partner-ticker-logo-wrap {
    width: 100px;
    height: 48px;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #eaeaea);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.partner-ticker-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.65);
    transition: all 0.4s ease;
}

.partner-ticker-fallback {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.partner-ticker-info {
    display: flex;
    flex-direction: column;
}

.partner-ticker-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 750;
    color: var(--text-dark);
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Hover States */
.partner-ticker-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(223, 27, 40, 0.05), var(--shadow-medium);
    border-color: var(--primary-red);
}

.partner-ticker-card:hover .partner-ticker-logo-wrap {
    border-color: var(--primary-red);
}

.partner-ticker-card:hover .partner-ticker-logo-wrap img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.04);
}

.partner-ticker-card:hover .partner-ticker-name {
    color: var(--primary-red);
}

/* Keyframes for RTL */
@keyframes scrollPartnersRTL {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

/* Keyframes for LTR */
@keyframes scrollPartnersLTR {
    0% {
        transform: translate3d(-25%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Stack for Tablet Viewports */
@media (max-width: 991px) {
    .partners-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partners-split-left {
        text-align: center;
    }
    .section-header-split {
        max-width: 650px;
        margin: 0 auto;
    }
    .section-title-split {
        font-size: 2.2rem;
    }
}

/* Mobile Adjustments for Ticker */
@media (max-width: 767px) {
    .partners-display-wrapper {
        width: 95% !important;
        margin: 40px auto !important;
    }
    .partners-ticker-track {
        gap: 15px;
    }
    .ticker-track-rtl {
        animation: scrollPartnersRTL 35s linear infinite;
    }
    .ticker-track-ltr {
        animation: scrollPartnersLTR 35s linear infinite;
    }
    .partner-ticker-card {
        padding: 6px 16px 6px 6px;
        gap: 10px;
    }
    .partner-ticker-logo-wrap {
        width: 80px;
        height: 38px;
        border-radius: 19px;
        padding: 4px;
    }
    .partner-ticker-name {
        font-size: 0.8rem;
    }
    .partner-ticker-logo-wrap img {
        filter: grayscale(0) opacity(1);
    }
}

/* ==========================================================================
   MODERN DARK FOOTER STYLING
   ========================================================================== */
.site-footer-premium {
    background-color: #232827; /* Rich deep slate background */
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer-premium .footer-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.site-footer-premium .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns for balanced spacing */
    gap: 60px;
    padding-bottom: 50px;
}

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

/* Brand Column */
.site-footer-premium .brand-col .footer-logo {
    max-height: 55px;
    width: auto;
    margin-bottom: 24px;
    display: inline-block;
}

.site-footer-premium .brand-col .footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 330px;
}

.site-footer-premium .footer-cta-wrap {
    margin-top: 24px;
}

.site-footer-premium .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(223, 27, 40, 0.25);
    transition: all 0.3s ease;
    border: 1.5px solid var(--primary-red);
    cursor: pointer;
}

.site-footer-premium .footer-cta-btn:hover {
    background-color: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px);
}

.site-footer-premium .footer-cta-btn i {
    font-size: 0.85rem;
}

/* Titles */
.site-footer-premium .footer-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

/* Links Column */
.site-footer-premium .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px; /* 2 columns with breathing room */
}

.site-footer-premium .footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.site-footer-premium .footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-red);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer-premium .footer-links-list a:hover {
    color: var(--primary-red);
}

.site-footer-premium .footer-links-list a:hover::after {
    width: 100%;
}

/* Contact Column */
.site-footer-premium .footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased spacing */
}

.site-footer-premium .footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer-premium .footer-contact-info li i {
    color: rgba(255, 255, 255, 0.45); /* Softer accent gray-white color instead of harsh red */
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.site-footer-premium .footer-contact-info li:hover i {
    color: var(--primary-red); /* Lights up in primary red on hover */
}

.site-footer-premium .footer-contact-info a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.site-footer-premium .footer-contact-info a:hover {
    color: #ffffff;
}

/* Social icons block */
.site-footer-premium .footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 24px; /* Space under Faire un Don button */
}

.site-footer-premium .footer-socials .social-icon {
    width: auto;
    height: auto;
    background: none; /* Ditch circular background blocks */
    border-radius: 0;
    color: rgba(255, 255, 255, 0.5); /* Monochromatic gray */
    font-size: 1.4rem; /* Larger font size since no circle background */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.site-footer-premium .footer-socials .social-icon:hover {
    transform: translateY(-3px);
}

.site-footer-premium .footer-socials .social-icon.facebook:hover {
    color: #1877F2; /* Facebook official color on hover */
    background: none;
    box-shadow: none;
}

.site-footer-premium .footer-socials .social-icon.linkedin:hover {
    color: #0A66C2; /* LinkedIn official color on hover */
    background: none;
    box-shadow: none;
}

/* Bottom Bar */
.site-footer-premium .footer-bottom {
    background-color: rgba(0, 0, 0, 0.15); /* Darker backing */
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Transparent separator line */
}

.site-footer-premium .footer-bottom-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer-premium .copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.site-footer-premium .footer-brand-red {
    color: var(--primary-red);
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .site-footer-premium .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .site-footer-premium .brand-col {
        grid-column: span 2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 24px;
        margin-bottom: 10px;
    }
    .site-footer-premium .brand-col .footer-brand-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .site-footer-premium {
        padding: 60px 0 0;
    }
    .site-footer-premium .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }
    .site-footer-premium .brand-col {
        grid-column: span 1;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .site-footer-premium .brand-col .footer-brand-desc {
        max-width: 100%;
    }
}

/* ==========================================================================
   MODERN PROJECTS ARCHIVE PAGE
   ========================================================================== */
.site-main-archive {
    padding-top: 0px; /* Aligned with fixed header offset */
    background-color: var(--bg-warm);
    min-height: 80vh;
}

/* Archive Hero Section */
.archive-hero-section {
    background-color: #232827; /* Matching rich deep slate footer/header bg */
    color: #ffffff;
    padding: 100px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.archive-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background-color: rgba(223, 27, 40, 0.1);
    color: var(--primary-red);
    border: 1px solid rgba(223, 27, 40, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.archive-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.archive-title span.accent {
    color: var(--primary-red);
}

.archive-description {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

/* Archive Filters Bar */
.archive-filters-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 24px;
    position: sticky;
    top: 80px; /* Locks below fixed header */
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: top 0.4s ease;
}

.header-scrolled + .site-main-archive .archive-filters-section,
.header-main-wrapper.header-scrolled + .site-main-archive .archive-filters-section {
    top: 70px; /* Compensate for shrunk header height */
}

.filters-container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

#projects-filter-form {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 250px;
    flex: 1;
    max-width: 350px;
    position: relative;
}

.filter-group label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    background-color: var(--bg-warm);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 14px 45px 14px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-group select:hover,
.filter-group select:focus {
    border-color: var(--primary-red);
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(223, 27, 40, 0.05);
}

/* Custom Chevron Down Icon using SVG URL */
.filter-group::after {
    content: '';
    position: absolute;
    right: 22px;
    bottom: 18px;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23df1b28' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.filter-group:focus-within::after {
    transform: rotate(180deg);
}

/* Archive Grid Area */
.archive-grid-section {
    padding: 60px 24px 100px;
}

.archive-grid-section .grid-container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

.projects-archive-grid-wrap {
    position: relative;
    min-height: 400px;
}

/* AJAX Loading State overlay */
.archive-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 249, 246, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: var(--border-radius-md);
}

.projects-archive-grid-wrap.is-loading .archive-loading-overlay {
    opacity: 1;
    pointer-events: auto;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(223, 27, 40, 0.1);
    border-left-color: var(--primary-red);
    border-radius: 50%;
    animation: spinSpinner 0.8s linear infinite;
}

@keyframes spinSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.projects-archive-grid-wrap.is-loading .project-grid {
    opacity: 0.4;
    transform: translateY(10px);
}

.projects-archive-grid-wrap .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Specific Project Card badging */
.project-card-category-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-red);
    background-color: var(--primary-red-light);
    border: 1px solid var(--primary-red-glow);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Archive Pagination */
.projects-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.projects-pagination ul.page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
}

.projects-pagination ul.page-numbers li {
    margin: 0;
}

.projects-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.projects-pagination a.page-numbers:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 27, 40, 0.08);
}

.projects-pagination span.page-numbers.current {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(223, 27, 40, 0.25);
}

/* Empty filter results state */
.no-projects-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--border-color);
}

.no-projects-found p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Archive Layout */
@media (max-width: 1199px) {
    .projects-archive-grid-wrap .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .archive-filters-section {
        position: relative;
        top: 0 !important;
        padding: 24px 16px;
    }
    #projects-filter-form {
        gap: 20px;
    }
    .filter-group {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .archive-hero-section {
        padding: 80px 16px 60px;
    }
    .archive-title {
        font-size: 2.5rem;
    }
    .archive-description {
        font-size: 0.95rem;
    }
    .archive-grid-section {
        padding: 40px 16px 60px;
    }
    .projects-archive-grid-wrap .project-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .projects-pagination .page-numbers {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES (RE-DESIGNED)
   ========================================================================== */
.about-hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.85);
    z-index: 1;
    transform: scale(1.05); /* Avoid white edges from blur */
    will-change: transform;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 34, 46, 0.4) 0%, rgba(25, 34, 46, 0.2) 100%);
    z-index: 2;
}

.about-hero-container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
}

.about-hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    max-width: 720px;
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background-color: hsla(356, 78%, 49%, 0.08);
    color: var(--primary-red);
    border: 1px solid hsla(356, 78%, 49%, 0.15);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-hero-title span.accent {
    color: var(--primary-red);
}

.about-hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* 1. Vision & Mission: Editorial Split-Scroll Layout */
.about-editorial-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
}

.about-editorial-section.mission-section {
    padding-top: 0; /* Align closer to the vision scroll track */
}

.editorial-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.editorial-left {
    width: 40%;
    position: sticky;
    top: 150px; /* Lock beneath enqueued child theme header offsets */
    align-self: start;
    height: auto;
}

.editorial-right {
    width: 60%;
}

.editorial-sticky-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.0;
    color: var(--text-dark);
    margin: 0;
}

.editorial-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0 0 50px 0;
}

.editorial-image-wrap {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 40px;
    aspect-ratio: 16 / 10;
}

.editorial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-image-wrap:hover .editorial-image {
    transform: scale(1.03);
}

/* 2. Comment nous agissons: The Bento Box Grid */
.about-approach-section {
    padding: 100px 0;
    background-color: var(--bg-warm);
}

.about-approach-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

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

.bento-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Bento grid coordinates setup */
.bento-light-grey {
    grid-column: span 2;
    background-color: #eff3f2; /* Light grey/mint */
    color: var(--text-dark);
}

.bento-dark-charcoal {
    grid-column: span 1;
    grid-row: span 2;
    background-color: #232827; /* Dark charcoal */
    color: var(--bg-white);
    justify-content: flex-start;
}

.bento-dark-charcoal .bento-content {
    margin-top: auto;
}

.bento-white {
    grid-column: span 2;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* Bento number tag decoration */
.bento-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.bento-dark-charcoal .bento-num {
    color: var(--bg-white);
    opacity: 0.12;
}

.bento-light-grey .bento-num,
.bento-white .bento-num {
    color: var(--primary-red);
    opacity: 0.2;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bento-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.bento-light-grey .bento-desc,
.bento-white .bento-desc {
    color: var(--text-light);
}

.bento-dark-charcoal .bento-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Bento Hovers */
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.bento-card:hover .bento-num {
    opacity: 0.8;
    transform: scale(1.1);
}

.bento-dark-charcoal:hover {
    box-shadow: 0 24px 48px rgba(35, 40, 39, 0.25);
}

.bento-white:hover {
    border-color: rgba(223, 27, 40, 0.2);
}

/* 3. Les Chiffres (Stats): Infinite scrolling marquee */
.about-stats-marquee-section {
    background-color: #232827; /* Dark charcoal */
    padding: 70px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-marquee-track {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.stats-marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scrollStatsMarquee 28s linear infinite;
    padding-right: 50px;
}

@keyframes scrollStatsMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.stats-marquee-item {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.stats-marquee-item .number {
    color: var(--primary-red);
    font-size: 3.2rem;
    font-weight: 900;
}

.stats-marquee-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.5rem;
    font-weight: 300;
}

/* CTA Section overrides */
.about-cta-section {
    padding: 80px 0 100px;
    background-color: var(--bg-white);
}

.about-cta-container {
    background-color: #e1251b; /* Solid Red */
    border-radius: var(--border-radius-lg);
    padding: 80px 60px;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 24px 50px rgba(225, 37, 27, 0.25);
    position: relative;
    overflow: hidden;
}

.about-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-cta-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    color: #e1251b !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 2px solid var(--bg-white);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-btn-primary:hover {
    background-color: transparent;
    color: var(--bg-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 2px solid var(--bg-white);
    cursor: pointer;
}

.about-btn-secondary:hover {
    background-color: var(--bg-white);
    color: #e1251b !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Media Queries for Re-Designed About Us Page */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .about-hero-card {
        padding: 40px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .editorial-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .editorial-left {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .editorial-sticky-title {
        font-size: 4rem;
        line-height: 1.0;
    }
    
    .editorial-right {
        width: 100%;
    }
    
    .editorial-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .about-bento-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    
    .bento-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: auto;
        padding: 40px 30px;
    }
    
    .bento-num {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .bento-title {
        font-size: 1.5rem;
    }
    
    .bento-desc {
        font-size: 1rem;
    }
    
    .stats-marquee-item {
        font-size: 1.8rem;
    }
    
    .stats-marquee-item .number {
        font-size: 2.3rem;
    }
    
    .stats-marquee-sep {
        font-size: 1.8rem;
    }
    
    .about-cta-container {
        padding: 60px 40px;
    }
    
    .about-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 60px 0;
    }
    
    .about-hero-card {
        padding: 30px 20px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-desc {
        font-size: 0.95rem;
    }
    
    .editorial-sticky-title {
        font-size: 2.8rem;
        line-height: 1.0;
    }
    
    .about-cta-container {
        padding: 40px 20px;
    }
    
    .about-cta-title {
        font-size: 1.8rem;
    }
    
    .about-cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   NOS POLES D'INTERVENTION PAGE STYLES
   ========================================================================== */
.poles-hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.poles-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.9);
    z-index: 1;
    transform: scale(1.05);
    will-change: transform;
}

.poles-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 34, 46, 0.2) 0%, rgba(25, 34, 46, 0.05) 100%);
    z-index: 2;
}

.poles-hero-container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
}

.poles-hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    max-width: 720px;
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.poles-hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background-color: hsla(356, 78%, 49%, 0.08);
    color: var(--primary-red);
    border: 1px solid hsla(356, 78%, 49%, 0.15);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poles-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.poles-hero-title span.accent {
    color: var(--primary-red);
}

.poles-hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* Core Split Content Layout */
.poles-page-content-section {
    padding: 60px 0 100px;
    background-color: var(--bg-white);
}

.poles-page-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.poles-sidebar-nav {
    width: 30%;
    position: sticky;
    top: 150px; /* Account for double-deck header offset */
    align-self: start;
    z-index: 10;
}

.poles-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.poles-sidebar-menu .sidebar-menu-item {
    padding-left: 25px;
    position: relative;
    margin-left: -2px; /* Overlap the border line */
    transition: var(--transition-smooth);
}

.poles-sidebar-menu .sidebar-menu-item a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none !important;
    transition: var(--transition-smooth);
    display: block;
}

.poles-sidebar-menu .sidebar-menu-item .num {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.6;
    margin-right: 8px;
    font-family: var(--font-body);
}

.poles-sidebar-menu .sidebar-menu-item:hover a {
    color: var(--text-dark);
}

.poles-sidebar-menu .sidebar-menu-item.active {
    border-left: 3px solid var(--primary-red);
    padding-left: 24px;
}

.poles-sidebar-menu .sidebar-menu-item.active a {
    color: var(--primary-red);
    font-weight: 700;
}

/* Scroll Area Blocks */
.poles-content-scroll {
    width: 70%;
}

.pole-content-block {
    padding-bottom: 100px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 100px;
    scroll-margin-top: 160px; /* Accounts for header offsets during anchor snap */
}

.pole-content-block:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.pole-block-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    background-color: hsla(356, 78%, 49%, 0.06);
    color: var(--primary-red);
    border: 1px solid hsla(356, 78%, 49%, 0.1);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pole-block-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.15;
}

.pole-challenge-response {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 45px;
}

.challenge-box, .response-box {
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.challenge-box {
    background-color: #eff3f2;
    border: 1px solid rgba(0,0,0,0.01);
}

.response-box {
    background-color: var(--primary-red-light);
    border: 1px solid rgba(223, 27, 40, 0.05);
}

.box-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.challenge-box .box-label {
    color: var(--text-light);
}

.response-box .box-label {
    color: var(--primary-red);
}

.challenge-box p, .response-box p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.response-box p {
    font-weight: 500;
}

/* Feature Item boxes */
.pole-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.feature-item {
    background-color: var(--bg-warm);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

.pole-text-details {
    font-family: var(--font-body);
    font-size: 1.10rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 45px;
}

.pole-image-wrap {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 40px;
    aspect-ratio: 16 / 10;
}

.pole-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pole-image-wrap:hover .pole-image {
    transform: scale(1.02);
}

/* CTA Section Styles */
.poles-cta-section {
    padding: 80px 0 100px;
    background-color: var(--bg-white);
}

.poles-cta-container {
    background-color: #e1251b; /* Brand Red */
    border-radius: var(--border-radius-lg);
    padding: 80px 60px;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 24px 50px rgba(225, 37, 27, 0.25);
    position: relative;
    overflow: hidden;
}

.poles-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.poles-cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.poles-cta-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.poles-cta-buttons {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.poles-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    color: #e1251b !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    border: 2px solid var(--bg-white);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.poles-btn-primary:hover {
    background-color: transparent;
    color: var(--bg-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsiveness for Poles Section */
@media (max-width: 991px) {
    .poles-hero-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .poles-hero-card {
        padding: 40px;
    }
    
    .poles-hero-title {
        font-size: 2.5rem;
    }
    
    .poles-page-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .poles-sidebar-nav {
        width: 100%;
        position: sticky;
        top: 70px;
        z-index: 100;
        background-color: var(--bg-white);
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 20px;
    }
    
    .poles-sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        border-left: none;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 12px;
        scrollbar-width: none; /* Firefox */
    }
    
    .poles-sidebar-menu::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    
    .poles-sidebar-menu .sidebar-menu-item {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        white-space: nowrap;
    }
    
    .poles-sidebar-menu .sidebar-menu-item a {
        font-size: 1rem;
    }
    
    .poles-sidebar-menu .sidebar-menu-item.active {
        border-left: none;
        border-bottom: 3px solid var(--primary-red);
        padding-left: 0;
        margin-bottom: -15px;
        padding-bottom: 12px;
    }
    
    .poles-content-scroll {
        width: 100%;
    }
    
    .pole-content-block {
        padding-bottom: 60px;
        margin-bottom: 60px;
        scroll-margin-top: 140px;
    }
    
    .pole-block-title {
        font-size: 2.2rem;
    }
    
    .pole-challenge-response {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pole-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .poles-cta-container {
        padding: 60px 40px;
    }
    
    .poles-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .poles-hero-section {
        padding: 60px 0;
    }
    
    .poles-hero-card {
        padding: 30px 20px;
    }
    
    .poles-hero-title {
        font-size: 2rem;
    }
    
    .poles-hero-desc {
        font-size: 0.95rem;
    }
    
    .pole-block-title {
        font-size: 1.8rem;
    }
    
    .poles-cta-container {
        padding: 40px 20px;
    }
    
    .poles-cta-title {
        font-size: 1.8rem;
    }
    
    .poles-cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   CONTACT PAGE REDESIGN
   ========================================================================== */
.contact-hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(225, 37, 27, 0.08), transparent 45%),
                radial-gradient(circle at 20% 80%, rgba(31, 44, 56, 0.04), transparent 50%),
                #faf9f6;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-hero-card {
    max-width: 800px;
}

.contact-hero-tag {
    display: inline-block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-red, #e1251b);
    margin-bottom: 12px;
}

.contact-hero-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 20px 0;
    line-height: 1.15;
}

.contact-hero-desc {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--text-light, #64748b);
    margin: 0;
    max-width: 650px;
}

/* Draw Accent Underline Animation */
.contact-hero-title .accent-underline {
    position: relative;
    display: inline-block;
    color: var(--primary-red, #e1251b);
}

.contact-hero-title .accent-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 10px;
    background-color: var(--primary-red-glow, rgba(225, 37, 27, 0.12));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawContactUnderline 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

@keyframes drawContactUnderline {
    to {
        transform: scaleX(1);
    }
}

/* Split Section & Container: 60/40 Edge-to-Edge */
.contact-split-section {
    width: 100%;
    background-color: var(--bg-white, #ffffff);
}

.contact-split-container {
    display: flex;
    min-height: calc(100vh - 120px);
    width: 100%;
}

/* Left Column - Map (60% width) */
.contact-left-col {
    flex: 0 0 60%;
    width: 60%;
    position: relative;
    min-height: 600px;
    background-color: #e5e7eb;
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Grayscale Map Filter */
.contact-google-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    filter: grayscale(1) contrast(1.05) brightness(0.95);
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
}

.contact-google-map:hover {
    filter: grayscale(0.7) contrast(1.02) brightness(0.98);
}

/* Floating Frosted Glass Card with dynamic interactive hover */
.contact-info-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-md, 16px);
    padding: 35px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    z-index: 10;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
}

.contact-info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(225, 37, 27, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-card-block {
    margin-bottom: 25px;
}

.info-card-block:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-red, #e1251b);
    margin-bottom: 6px;
}

.info-text {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark, #1f2c38);
    margin: 0;
    font-weight: 400;
}

.info-text a {
    color: var(--text-dark, #1f2c38);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.info-text a:hover {
    color: var(--primary-red, #e1251b);
    border-bottom: 1px solid var(--primary-red, #e1251b);
}

/* Right Column - Contact Form (40% width) */
.contact-right-col {
    flex: 0 0 40%;
    width: 40%;
    background-color: var(--bg-white, #ffffff);
    padding: 80px 5%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.contact-form-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-subtitle {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark, #1f2c38);
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-form-intro {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light, #64748b);
    margin-bottom: 40px;
}

/* CF7 Custom Form Styles */
.cf7-custom-form .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.cf7-custom-form label {
    display: block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark, #1f2c38);
    margin-bottom: 8px;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
}

/* Label interaction: color shifts red on focus-within */
.cf7-custom-form .form-group:focus-within label {
    color: var(--primary-red, #e1251b);
    transform: translateX(4px);
}

/* Ensure CF7 span wrappers are full-width block elements to prevent clipping/overflow */
.cf7-custom-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cf7-custom-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    background-color: #f5f5f5;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    border-radius: var(--border-radius-sm, 8px);
    padding: 14px 18px;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark, #1f2c38);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.cf7-custom-form textarea.wpcf7-form-control {
    min-height: 120px;
    resize: vertical;
}

/* Focus interaction: brand red bottom border */
.cf7-custom-form .wpcf7-form-control:not(.wpcf7-submit):focus {
    background-color: #ffffff;
    border-bottom: 2px solid var(--primary-red, #e1251b);
    box-shadow: 0 4px 12px rgba(225, 37, 27, 0.03);
    outline: none;
}

/* CF7 error styling */
.wpcf7-not-valid-tip {
    font-size: 0.85rem;
    color: var(--primary-red, #e1251b);
    margin-top: 5px;
    font-family: var(--font-body), 'Inter', sans-serif;
}

/* Submit button: wide, pill-shaped red button with chevron arrow effect */
.cf7-custom-form .form-submit-wrap {
    margin-top: 30px;
}

.cf7-custom-form .wpcf7-submit {
    display: inline-block;
    width: 100%;
    background-color: var(--primary-red, #e1251b);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
    box-shadow: 0 4px 14px rgba(225, 37, 27, 0.2);
}

.cf7-custom-form .wpcf7-submit:hover {
    background-color: var(--primary-red-hover, #c71e16);
    box-shadow: 0 8px 25px rgba(225, 37, 27, 0.4);
    transform: translateY(-2px);
}

.cf7-custom-form .wpcf7-submit:active {
    transform: translateY(0);
}

/* CF7 Native alert overrides */
.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: var(--border-radius-sm, 8px) !important;
    font-family: var(--font-body), 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background-color: #f0fdf4 !important;
    color: #166534 !important;
    border-left: 4px solid #15803d !important;
}

.wpcf7-validation-errors, .wpcf7-acceptance-missing {
    background-color: #fef2f2 !important;
    color: #991b1b !important;
    border-left: 4px solid #b91c1c !important;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .contact-hero-title {
        font-size: 3.5rem;
    }
    .contact-right-col {
        padding: 80px 4%;
    }
}

@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-split-container {
        min-height: auto;
    }
    
    .contact-right-col {
        padding: 60px 4%;
    }
}

@media (max-width: 991px) {
    .contact-split-container {
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .contact-left-col {
        width: 100%;
        min-height: 450px;
        height: 450px;
        box-sizing: border-box;
        flex: 0 0 100%;
    }
    
    .contact-google-map {
        min-height: 450px;
        width: 100%;
    }
    
    .contact-right-col {
        width: 100%;
        padding: 60px 30px;
        box-sizing: border-box;
        flex: 0 0 100%;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info-card {
        bottom: 30px;
        left: 30px;
        right: 30px;
        max-width: none;
        padding: 25px;
    }
    
    .info-card-block {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 80px 0 50px 0;
    }
    
    .contact-hero-container {
        padding: 0 20px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-desc {
        font-size: 1.05rem;
    }
    
    .contact-form-subtitle {
        font-size: 1.8rem;
    }
    
    .contact-left-col {
        min-height: 400px;
        height: 400px;
    }
    
    .contact-google-map {
        min-height: 400px;
    }
    
    .contact-info-card {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--border-color, #e2e8f0);
        background: var(--bg-warm, #f8f9fa);
        padding: 30px 20px;
    }
}

/* ==========================================================================
   VOLUNTEER FORM SPECIFIC STYLES
   ========================================================================== */
.cf7-custom-form.volunteer-form .form-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.cf7-custom-form.volunteer-form .form-row .form-group {
    flex: 1;
}

/* Custom tooltip styling */
.cf7-custom-form .help-tooltip {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-light, #64748b);
    cursor: help;
    margin-left: 4px;
}

/* Modern Pill styling for CF7 checkboxes */
.cf7-custom-form .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.cf7-custom-form .wpcf7-list-item {
    display: inline-block;
    margin: 0 !important;
}

.cf7-custom-form .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark, #1f2c38);
    background-color: #f5f5f5;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
    box-sizing: border-box;
    user-select: none;
    margin: 0 !important;
}

.cf7-custom-form .wpcf7-list-item label:hover {
    background-color: #ebebeb;
    transform: translateY(-1px);
}

/* Checkbox inputs */
.cf7-custom-form .wpcf7-list-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-light, #64748b);
    border-radius: 4px;
    background-color: #ffffff;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    margin: 0 !important;
}

/* Checked State checkbox pill style changes */
.cf7-custom-form .wpcf7-list-item input[type="checkbox"]:checked {
    background-color: var(--primary-red, #e1251b);
    border-color: var(--primary-red, #e1251b);
}

.cf7-custom-form .wpcf7-list-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cf7-custom-form .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label {
    color: var(--primary-red, #e1251b);
    font-weight: 600;
}

.cf7-custom-form .wpcf7-list-item label:has(input[type="checkbox"]:checked) {
    background-color: var(--primary-red-light, #fef2f2);
    border-color: rgba(225, 37, 27, 0.15);
}

@media (max-width: 768px) {
    .cf7-custom-form.volunteer-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================================================
   S'IMPLIQUER PAGE REDESIGN
   ========================================================================== */
.simpliquer-hero-section {
    position: relative;
    padding: 140px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(225, 37, 27, 0.04), transparent 40%),
                #faf9f6;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.simpliquer-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.simpliquer-hero-card {
    max-width: 900px;
}

.simpliquer-hero-tag {
    display: inline-block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-red, #e1251b);
    margin-bottom: 16px;
}

.simpliquer-hero-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 24px 0;
    line-height: 1.15;
}

.simpliquer-hero-desc {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light, #64748b);
    margin: 0;
    max-width: 800px;
}

/* Split Section & Container: 50/50 asymmetry */
.simpliquer-piliers-section {
    width: 100%;
    background-color: var(--bg-white, #ffffff);
}

.simpliquer-piliers-container {
    display: flex;
    width: 100%;
}

.simpliquer-col {
    flex: 1;
    padding: 120px 8%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
}

.simpliquer-left-col {
    background-color: #faf9f6;
    border-right: 1px solid var(--border-color, #e2e8f0);
}

.simpliquer-right-col {
    background-color: #ffffff;
}

.simpliquer-col-content {
    max-width: 520px;
    width: 100%;
}

.simpliquer-col-tag {
    display: inline-block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-red, #e1251b);
    margin-bottom: 12px;
}

.simpliquer-col-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 16px 0;
}

.simpliquer-col-subtitle {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.simpliquer-col-text {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-light, #64748b);
    margin-bottom: 40px;
}

/* Button styles */
.simpliquer-btn {
    display: inline-block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
    box-sizing: border-box;
    border: none;
}

.simpliquer-btn.btn-primary {
    background-color: var(--primary-red, #e1251b);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(225, 37, 27, 0.2);
}

.simpliquer-btn.btn-primary:hover {
    background-color: var(--primary-red-hover, #c71e16);
    box-shadow: 0 8px 25px rgba(225, 37, 27, 0.35);
    transform: translateY(-2px);
}

.simpliquer-btn.btn-outline {
    background-color: transparent;
    color: var(--text-dark, #1f2c38);
    border: 2px solid var(--text-dark, #1f2c38);
}

.simpliquer-btn.btn-outline:hover {
    background-color: var(--text-dark, #1f2c38);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 44, 56, 0.15);
}

/* Modal Overlay Backdrop */
.simpliquer-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 44, 56, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.simpliquer-modal-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Container */
.simpliquer-modal {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 20px) scale(0.95);
    width: 90%;
    max-width: 680px;
    max-height: calc(100vh - 160px);
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(31, 44, 56, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    box-sizing: border-box;
    padding: 0;
}

.simpliquer-modal.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.simpliquer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 35px;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    background-color: #ffffff;
    flex-shrink: 0;
}

.simpliquer-modal-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark, #1f2c38);
    margin: 0;
}

.simpliquer-modal-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-light, #64748b);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    margin: 0;
}

.simpliquer-modal-close:hover {
    color: var(--primary-red, #e1251b);
    transform: scale(1.1);
}

.simpliquer-modal-body {
    padding: 35px;
    overflow-y: auto;
    flex-grow: 1;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(225, 37, 27, 0.2) transparent;
}

.simpliquer-modal-body::-webkit-scrollbar {
    width: 6px;
}

.simpliquer-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.simpliquer-modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(225, 37, 27, 0.2);
    border-radius: 20px;
}

.simpliquer-modal-body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-red, #e1251b);
}

/* Impact CTA Section */
.simpliquer-cta-section {
    width: 100%;
    background-color: var(--primary-red, #e1251b);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.simpliquer-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.simpliquer-cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.simpliquer-cta-tag {
    display: inline-block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.simpliquer-cta-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.simpliquer-cta-text {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.simpliquer-btn.btn-white {
    background-color: #ffffff;
    color: var(--primary-red, #e1251b);
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.simpliquer-btn.btn-white:hover {
    background-color: #faf9f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* S'impliquer Responsive Breakpoints */
@media (max-width: 1024px) {
    .simpliquer-col {
        padding: 80px 5%;
    }
    
    .simpliquer-col-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .simpliquer-hero-title {
        font-size: 3rem;
    }
    
    .simpliquer-piliers-container {
        flex-direction: column;
    }
    
    .simpliquer-left-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color, #e2e8f0);
    }
    
    .simpliquer-col {
        padding: 80px 40px;
    }
    
    .simpliquer-modal {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 768px) {
    .simpliquer-hero-section {
        padding: 100px 0 60px 0;
    }
    
    .simpliquer-hero-title {
        font-size: 2.5rem;
    }
    
    .simpliquer-col-title {
        font-size: 2.2rem;
    }
    
    .simpliquer-col-subtitle {
        font-size: 1.2rem;
    }
    
    .simpliquer-col-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .simpliquer-cta-section {
        padding: 80px 0;
    }
    
    .simpliquer-cta-title {
        font-size: 2.2rem;
    }
    
    .simpliquer-cta-text {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   FULL-SCREEN SEARCH OVERLAY STYLES
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 44, 56, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.search-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
}

.search-overlay-close:hover {
    color: var(--primary-red, #e1251b);
    transform: rotate(90deg);
}

.search-overlay-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-overlay-form {
    width: 100%;
}

.search-form-tag {
    display: block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-red, #e1251b);
    margin-bottom: 24px;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.search-input-wrap:focus-within {
    border-bottom: 3px solid var(--primary-red, #e1251b);
}

.search-overlay .search-field {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    padding: 0;
    box-sizing: border-box;
}

.search-overlay .search-field::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.search-submit-btn {
    background: none;
    border: none;
    outline: none;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-submit-btn:hover {
    color: var(--primary-red, #e1251b);
    transform: translateX(5px);
}

.search-instruction {
    display: block;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

body.search-overlay-open {
    overflow: hidden;
}

/* ==========================================================================
   SEARCH RESULTS PAGE STYLES
   ========================================================================== */
.site-main-search {
    background-color: #fcfbf8;
    min-height: 80vh;
}

/* Hero gradient block override */
.search-hero-section {
    background: radial-gradient(circle at 80% 20%, rgba(225, 37, 27, 0.07), transparent 45%),
                radial-gradient(circle at 20% 80%, rgba(31, 44, 56, 0.03), transparent 50%),
                #faf9f6;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

/* Results Grid Section */
.search-grid-section {
    padding: 80px 0;
}

.search-results-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Search Card */
.search-result-card {
    background-color: var(--bg-white, #ffffff);
    border-radius: var(--border-radius-md, 16px);
    padding: 35px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: var(--shadow-subtle, 0 4px 24px rgba(0, 0, 0, 0.04));
    transition: var(--transition-smooth, all 0.5s cubic-bezier(0.16, 1, 0.3, 1));
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium, 0 12px 36px rgba(0, 0, 0, 0.08));
    border-color: rgba(225, 37, 27, 0.15);
}

.search-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.search-type-badge {
    display: inline-block;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 50px;
}

/* Badge variants */
.project-badge {
    background-color: var(--primary-red-light, #fef2f2);
    color: var(--primary-red, #e1251b);
}

.post-badge {
    background-color: #f0fdf4;
    color: #166534;
}

.page-badge {
    background-color: #f1f5f9;
    color: #475569;
}

.search-card-date {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light, #64748b);
}

.search-card-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.search-card-title a {
    color: var(--text-dark, #1f2c38);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.search-card-title a:hover {
    color: var(--primary-red, #e1251b);
}

.search-card-excerpt {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light, #64748b);
    margin-bottom: 24px;
    flex-grow: 1;
}

.search-card-link {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red, #e1251b);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.search-card-link i {
    transition: transform 0.3s ease;
}

.search-card-link:hover {
    color: var(--primary-red-hover, #c71e16);
}

.search-card-link:hover i {
    transform: translateX(4px);
}

/* No Results Section */
.search-no-results-section {
    padding: 100px 0;
}

.no-results-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.no-results-box {
    background-color: var(--bg-white, #ffffff);
    border-radius: var(--border-radius-md, 16px);
    padding: 60px 40px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: var(--shadow-subtle, 0 4px 24px rgba(0, 0, 0, 0.04));
    text-align: center;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--primary-red, #e1251b);
    margin-bottom: 24px;
    background-color: var(--primary-red-light, #fef2f2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.no-results-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 12px 0;
}

.no-results-text {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light, #64748b);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Inline search form */
.inline-search-form .search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.inline-search-form .search-form label {
    flex-grow: 1;
}

.inline-search-form .search-field {
    width: 100%;
    background-color: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 50px 0 0 50px;
    padding: 14px 24px;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.inline-search-form .search-field:focus {
    background-color: #ffffff;
    border-color: var(--primary-red, #e1251b);
    box-shadow: 0 4px 12px rgba(225, 37, 27, 0.04);
}

.inline-search-form .search-submit {
    background-color: var(--primary-red, #e1251b);
    color: #ffffff;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 14px 28px;
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.inline-search-form .search-submit:hover,
.inline-search-form .search-submit:focus,
.inline-search-form .search-submit:active {
    background-color: var(--primary-red-hover, #c71e16) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(225, 37, 27, 0.2) !important;
}

/* Popular links */
.popular-links-box {
    border-top: 1px solid var(--border-color, #e2e8f0);
    padding-top: 40px;
}

.popular-links-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark, #1f2c38);
    margin: 0 0 20px 0;
}

.popular-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.popular-link-item {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark, #1f2c38);
    text-decoration: none;
    background-color: #faf9f6;
    border: 1px solid var(--border-color, #e2e8f0);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.popular-link-item:hover {
    background-color: #ffffff;
    border-color: var(--primary-red, #e1251b);
    color: var(--primary-red, #e1251b);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle, 0 4px 24px rgba(0, 0, 0, 0.04));
}

/* Search results pagination */
#search-pagination {
    margin-top: 40px;
}

/* Responsive grid */
@media (max-width: 991px) {
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .search-overlay .search-field {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .search-overlay .search-field {
        font-size: 1.8rem;
    }
    .search-overlay-close {
        top: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   BUTTON STATE OVERRIDES (PREVENTS DEFAULT HELLO ELEMENTOR PINK/WHITE FOCUS)
   ========================================================================== */
.header-search-toggle,
.mobile-menu-toggle,
.scroll-wheel-collapse-btn,
#scroll-wheel-collapse,
.search-overlay-close,
#search-close,
.search-submit-btn {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.header-search-toggle {
    color: var(--text-dark, #1f2c38) !important;
}
.header-search-toggle:hover,
.header-search-toggle:focus,
.header-search-toggle:active {
    color: var(--primary-red, #e1251b) !important;
    background: transparent !important;
    background-color: transparent !important;
}

.mobile-menu-toggle {
    color: var(--text-dark, #1f2c38) !important;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus,
.mobile-menu-toggle:active {
    color: var(--primary-red, #e1251b) !important;
    background: transparent !important;
    background-color: transparent !important;
}
.mobile-menu-toggle:hover .toggle-bar,
.mobile-menu-toggle:focus .toggle-bar {
    background-color: var(--primary-red, #e1251b) !important;
}

.search-overlay-close {
    background: transparent !important;
    background-color: transparent !important;
}
.search-overlay-close:hover,
.search-overlay-close:focus,
.search-overlay-close:active {
    color: var(--primary-red, #e1251b) !important;
    background: transparent !important;
    background-color: transparent !important;
}

.search-submit-btn {
    background: transparent !important;
    background-color: transparent !important;
}
.search-submit-btn:hover,
.search-submit-btn:focus,
.search-submit-btn:active {
    color: var(--primary-red, #e1251b) !important;
    background: transparent !important;
    background-color: transparent !important;
}

#scroll-wheel-collapse {
    background: transparent !important;
    background-color: transparent !important;
}
#scroll-wheel-collapse:hover,
#scroll-wheel-collapse:focus,
#scroll-wheel-collapse:active {
    color: var(--primary-red, #e1251b) !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Font-display swap overrides for FontAwesome webfonts (removes LCP rendering delay) */
@font-face {
	font-family: 'Font Awesome 6 Free';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
	font-family: 'Font Awesome 6 Brands';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/* ==========================================================================
   SINGLE PROJECT IMAGE GALLERY SLIDER (FULL-WIDTH)
   ========================================================================== */
.project-gallery-fullwidth-section {
	background-color: var(--bg-warm, #faf9f6);
	padding: 60px 0 80px;
	border-top: 1px solid var(--border-color, #eaeaea);
	border-bottom: 1px solid var(--border-color, #eaeaea);
	overflow: hidden;
	width: 100%;
}

.project-gallery-fullwidth-container {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	position: relative;
}

.gallery-fullwidth-title {
	font-family: var(--font-heading), 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--text-dark, #111111);
	margin: 0 0 30px;
	letter-spacing: -0.5px;
	position: relative;
	display: inline-block;
	padding-bottom: 8px;
}

.gallery-fullwidth-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background-color: var(--primary-red, #df1b28);
	border-radius: 2px;
}

.project-gallery-slider-wrapper {
	position: relative;
}

.project-gallery-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 10px 0 20px;
	-webkit-overflow-scrolling: touch;
}

/* Hide Scrollbars */
.project-gallery-slider::-webkit-scrollbar {
	display: none;
}
.project-gallery-slider {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.project-gallery-item {
	flex: 0 0 460px; /* Big slider images */
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	display: block;
	scroll-snap-align: start;
	box-shadow: 0 10px 20px -8px rgba(15, 23, 42, 0.08);
	background: #f1f5f9;
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
	cursor: pointer;
}

.project-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(2px);
}

.gallery-item-overlay i {
	color: #ffffff;
	font-size: 24px;
	transform: scale(0.8);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Navigation Slider Buttons */
.slider-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: #0f172a;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
	transition: all 0.2s ease;
	z-index: 10;
}

.slider-nav-btn:hover {
	background: #ffffff;
	color: var(--primary-red, #df1b28);
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.slider-nav-btn.prev-btn {
	left: -24px;
}

.slider-nav-btn.next-btn {
	right: -24px;
}

/* Hover States */
.project-gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.18);
}

.project-gallery-item:hover img {
	transform: scale(1.04);
}

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

.project-gallery-item:hover .gallery-item-overlay i {
	transform: scale(1);
}

/* ==========================================================================
   NATIVE LIGHTBOX MODAL OVERLAY
   ========================================================================== */
.project-lightbox-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(15, 23, 42, 0.95);
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	backdrop-filter: blur(8px);
	transition: opacity 0.3s ease;
}

.lightbox-content-container {
	position: relative;
	max-width: 90%;
	max-height: 85%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	animation: zoomInLightbox 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1) both;
}

@keyframes zoomInLightbox {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.lightbox-content-container img {
	max-width: 100%;
	max-height: 75vh;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	border: 3px solid rgba(255, 255, 255, 0.1);
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 40px;
	color: #ffffff;
	font-size: 44px;
	font-weight: 300;
	cursor: pointer;
	transition: color 0.2s, transform 0.2s;
	z-index: 1000000;
	user-select: none;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-close:hover {
	color: var(--primary-red, #df1b28);
	transform: scale(1.1);
}

.lightbox-caption {
	color: #e2e8f0;
	margin-top: 15px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Outfit', sans-serif;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.project-gallery-item {
		flex: 0 0 380px;
	}
	.slider-nav-btn.prev-btn {
		left: -12px;
	}
	.slider-nav-btn.next-btn {
		right: -12px;
	}
}

@media (max-width: 768px) {
	.lightbox-close {
		top: 15px;
		right: 15px;
		font-size: 36px;
	}
	.project-gallery-item {
		flex: 0 0 320px;
	}
}

@media (max-width: 576px) {
	.project-gallery-item {
		flex: 0 0 82%;
		aspect-ratio: 16 / 11;
	}
	.slider-nav-btn {
		display: none; /* Swipe natively on mobile */
	}
	.project-gallery-fullwidth-section {
		padding: 40px 0;
	}
}
