/* ===================================================
   HERSAND — Main Stylesheet
   =================================================== */

/* --- Variables --- */
:root {
    --color-navy:       #1B3060;
    --color-navy-dark:  #122045;
    --color-navy-light: #2a4a8a;
    --color-green:      #25D366;
    --color-green-dark: #1ebe59;
    --color-white:      #ffffff;
    --color-gray-50:    #f8f9fa;
    --color-gray-100:   #f1f3f5;
    --color-gray-200:   #e9ecef;
    --color-gray-300:   #dee2e6;
    --color-gray-500:   #adb5bd;
    --color-gray-600:   #000000;
    --color-gray-700:   #212529;
    --color-gray-800:   #000000;
    --color-gray-900:   #212529;
    --color-red:        #e74c3c;
    --color-hero-bg:    #f7f7f7;

    --font-main:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

    --transition: 0.22s ease;
    --header-h: 88px;
    --topbar-h: 38px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--color-gray-900);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Titres : Plus Jakarta Sans, noir */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #000;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================================
   TOPBAR
   =================================================== */
.topbar {
    background: var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-200);
    height: var(--topbar-h);
    font-size: 12.5px;
    color: var(--color-gray-700);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.topbar-contact { display: flex; align-items: center; gap: 16px; }
.topbar-sep { color: var(--color-gray-300); font-size: 13px; }
.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--color-gray-700);
    transition: color var(--transition);
}
.topbar-link:hover { color: var(--color-navy); }

#nav-lang-dropdown {
    display: none;
}

/* ── Dropdown langue compact ── */
.lang-dropdown {
    position: relative;
    display: block;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-300);
    background: transparent;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.lang-toggle:hover {
    border-color: var(--color-navy);
    color: var(--color-navy);
}
.lang-chevron {
    transition: transform var(--transition);
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 80px;
    z-index: 200;
    overflow: hidden;
    padding: 4px 0;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-option {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: background var(--transition);
}
.lang-option:hover { background: var(--color-gray-100); color: var(--color-navy); }

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #f7f7f7;
    height: var(--header-h);
    border-bottom: none;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* Main nav - default desktop style */
.main-nav { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-navy);
    background: var(--color-hero-bg);
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Quote button in nav - hidden on desktop */
.nav-quote-btn { display: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-navy);
    color: var(--color-white);
    border: 2px solid var(--color-navy);
}
.btn-primary:hover {
    background: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(27,48,96,.3);
}

/* ── Glow devis ── */
@keyframes btn-glow-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(27,48,96,.55), 0 4px 14px rgba(27,48,96,.25); }
    50%  { box-shadow: 0 0 18px 6px rgba(27,48,96,.3), 0 4px 14px rgba(27,48,96,.2); }
    100% { box-shadow: 0 0 0 0 rgba(27,48,96,.55), 0 4px 14px rgba(27,48,96,.25); }
}
.btn-glow {
    animation: btn-glow-pulse 2.4s ease-in-out infinite;
    position: relative;
}
.btn-glow:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,48,96,.5);
}
.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}
.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-1px);
}
.btn-white {
    background: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-white);
}
.btn-white:hover {
    background: var(--color-gray-100);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-dark {
    background: var(--color-gray-900);
    color: var(--color-white);
    border: 2px solid var(--color-gray-900);
}
.btn-dark:hover {
    background: #111;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-whatsapp {
    display: flex;
    align-items: center;
    margin-right: 20px;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-green);
    color: var(--color-white);
    transition: all var(--transition);
    flex-shrink: 0;
}
.btn-whatsapp:hover {
    background: var(--color-green-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Close button in offcanvas menu */
.nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
    z-index: 10;
}
.nav-close:hover {
    color: var(--color-navy-dark);
n.nav-lang-selector { display: none; }
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 100;
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
    background: var(--color-hero-bg);
    padding: 64px 0;
    text-align: center;
}
.page-hero .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 12px;
}
.page-hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 16px;
}
.page-hero p {
    font-size: 17px;
    color: var(--color-gray-600);
    max-width: 560px;
    margin: 0 auto;
}

/* ===================================================
   HOME HERO
   =================================================== */
.home-hero {
    background: #f7f7f7;
    padding: 40px 0 40px;
    overflow: hidden;
    position: relative;
}
.home-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-content { max-width: 560px; }
.hero-content h1 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 16px;
    color: var(--color-gray-700);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 60px rgba(27,48,96,.15));
}
/* ── Vidéo hero ── */
.hero-video {
    width: 100%;
    max-width: 640px;
    object-fit: cover;
    display: block;
}

/* ===================================================
   CATEGORIES BAR
   =================================================== */
.categories-bar {
    padding: 40px 0;
    background: #f7f7f7;
}
.categories-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-item img {
    width: 72px;
    height: 72px;
    padding: 16px;
    object-fit: contain;
}
.category-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .category-item {
        padding: 20px;
        gap: 14px;
    }
    .category-item img {
        width: 64px;
        height: 64px;
        padding: 14px;
    }
    .category-item span:last-child {
        font-size: 13px;
    }
}

/* ===================================================
   SECTION COMMON
   =================================================== */
.section { padding: 80px 0; }
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 12px;
    text-align: center;
}
.section-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}
.section-title.left { text-align: left; }

/* ===================================================
   PRODUCTS SECTION (Home)
   =================================================== */
.products-section { background-color: transparent;
    background-image: linear-gradient(180deg, #fff 50%, #c7e0ff 0%); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--color-gray-200);
}
.product-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-gray-200), var(--color-gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-gray-500);
}
.product-card-body { padding: 20px; }
.product-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.product-card-body p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.5;
}
.products-cta { text-align: center; }

/* Slider nav (home products) */
.slider-wrapper { position: relative; }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition);
    color: var(--color-navy);
}
.slider-nav:hover { background: var(--color-navy); color: var(--color-white); }
.slider-nav.prev { left: -20px; }
.slider-nav.next { right: -20px; }

/* ===================================================
   MARQUEE
   =================================================== */
.marquee-section {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}
.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 80s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 0 60px;
    font-size: 65px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #c7e0ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    opacity: 1;
}
.marquee-item svg { flex-shrink: 0; color: #c7e0ff; opacity: 1; max-height: 110px; }
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================================
   PROCESS SECTION (Home)
   =================================================== */
.process-section { background: var(--color-white); }
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 80px;
    align-items: start;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 24px;
    grid-column: 1;
    grid-row: 1;
}
.process-step {
    display: block;
    cursor: pointer;
    transition: all var(--transition);
    padding: 12px 0;
    border: none;
    position: relative;
}
.process-step-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
}
.process-step-num {
    font-size: 25px;
    font-weight: 300;
    color: var(--color-gray-400);
    min-width: 20px;
    transition: color var(--transition);
}
.process-step-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: all var(--transition);
    line-height: 1.35;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}
.process-step.active .process-step-num { color: var(--color-navy); font-weight: 700; }
.process-step.active .process-step-title {
    color: var(--color-navy);
    font-weight: 700;
    border-bottom-color: var(--color-navy);
}
.process-step:hover .process-step-title {
    color: var(--color-navy);
}

/* ── Contenu au centre ── */
.process-content {
    position: relative;
    min-height: 320px;
    grid-column: 2;
    grid-row: 1;
}
.process-content-item {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.3s ease;
}
.process-content-item.active { display: flex; }
.process-content-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
}
.process-content-item p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.7;
}
.process-content-item .btn {
    width: fit-content;
    margin-top: 8px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.process-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.process-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.process-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--color-hero-bg), var(--color-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--color-gray-400);
}
.process-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* ===================================================
   WHY US SECTION
   =================================================== */
.why-section { background: white; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.why-card {
    background: transparent;
    border-radius: 0;
    padding: 32px 24px;
    text-align: center;
    box-shadow: none;
    transition: all var(--transition);
    border-right: 1px solid var(--color-gray-200);
}
.why-card:last-child {
    border-right: none;
}
.why-card:hover {
    transform: none;
    box-shadow: none;
}
.why-icon {
    width: 80px;
    height: 80px;
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}
.why-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-800);
    line-height: 1.6;
}

/* ===================================================
   MAP SECTION
   =================================================== */
.map-section {
    background: var(--color-white);
    padding: 80px 0;
    text-align: left;
}
.map-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 12px;
}
.map-section p {
    font-size: 16px;
    color: var(--color-gray-600);
    margin-bottom: 18px;
}
.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.map-container img { width: 100%; border-radius: var(--radius-lg); }
.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-hero-bg), #d8e4f0);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

/* ===================================================
   NEWS (actualités)
   =================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-hero-bg), var(--color-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-gray-400);
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.news-card-body h2, .news-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card-body p {
    font-size: 14px;
    color: var(--color-gray-600);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.6;
}
.news-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.news-read-more:hover { gap: 10px; }

/* Article page */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    padding: 60px 0;
}
.article-body img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 32px; }
.article-body h1 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.article-content {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.8;
}
.article-content p { margin-bottom: 16px; }
.article-content h2, .article-content h3 {
    font-weight: 700;
    color: var(--color-navy);
    margin: 28px 0 12px;
}
.article-sidebar {
    position: sticky;
    top: calc(var(--topbar-h) + var(--header-h) + 24px);
}
.sidebar-card {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.sidebar-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}
.sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-200);
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--color-gray-200);
    flex-shrink: 0;
}
.sidebar-news-text h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.4;
    margin-bottom: 4px;
}
.sidebar-news-text span { font-size: 11px; color: var(--color-gray-500); }

/* ===================================================
   ACTUALITÉS — AMÉLIORATIONS
   =================================================== */
.page-hero-sub {
    font-size: 16px;
    color: var(--color-gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* Article à la une */
.news-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.news-featured-img-link { display: block; height: 380px; overflow: hidden; }
.news-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-featured-img-link:hover .news-featured-img { transform: scale(1.03); }
.news-featured-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--color-hero-bg), var(--color-gray-200));
}
.news-featured-body {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.news-tag {
    display: inline-block;
    background: var(--color-navy);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    width: fit-content;
}
.news-featured-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    line-height: 1.25;
    color: #000;
}
.news-featured-excerpt {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.7;
}
.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
    letter-spacing: .3px;
}

/* Séparateur section */
.news-section-sep {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    color: var(--color-gray-400);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.news-section-sep::before,
.news-section-sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-gray-200);
}

/* Lien image card */
.news-card-img-link { display: block; overflow: hidden; }
.news-card-img-link img {
    transition: transform 0.4s ease;
}
.news-card-img-link:hover img { transform: scale(1.04); }
.news-card-body h3 a {
    color: inherit;
    transition: color var(--transition);
}
.news-card-body h3 a:hover { color: var(--color-navy); }

/* État vide */
.news-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--color-gray-500);
}
.news-empty-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-empty p {
    font-size: 17px;
    color: var(--color-gray-500);
}

/* CTA bande en bas */
.news-cta-band {
    background: var(--color-navy);
    padding: 48px 0;
    margin-top: 0;
}
.news-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.news-cta-inner h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}
.news-cta-inner p {
    font-size: 15px;
    color: rgba(255,255,255,.7);
}
.btn-white {
    background: white;
    color: var(--color-navy);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-white:hover {
    background: var(--color-hero-bg);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .news-featured { grid-template-columns: 1fr; }
    .news-featured-img-link { height: 260px; }
    .news-featured-body { padding: 24px; }
    .news-cta-inner { flex-direction: column; text-align: center; }
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 60px 0 80px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-gray-900);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(27,48,96,.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.contact-info-card {
    background: var(--color-navy);
    border-radius: var(--radius-xl);
    padding: 36px;
    color: var(--color-white);
    height: fit-content;
}
.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-text p:first-child {
    font-size: 12px;
    font-weight: 600;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.contact-info-text p:last-child { font-size: 14px; }
.contact-info-text a { color: inherit; }
.contact-info-text a:hover { text-decoration: underline; }

/* Nouvelles classes contact */
.contact-form-col {}
.contact-info-col {}

.contact-section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item-simple {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon-simple {
    width: 44px;
    height: 44px;
    background: #dce7f5;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-navy);
}

.contact-info-item-simple p:first-child {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item-simple p:last-child {
    font-size: 15px;
    color: var(--color-gray-800);
    font-weight: 500;
}

.contact-info-item-simple a {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item-simple a:hover {
    text-decoration: underline;
}

.contact-info-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.form-notice {
    font-size: 12px;
    color: var(--color-gray-400);
}
.form-required { color: var(--color-red); }
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-lg { padding: 14px 32px; font-size: 15px; }
.contact-info-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 8px 0;
}
.contact-info-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    background: rgba(255,255,255,.12);
    color: white;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: var(--radius-md);
    padding: 13px;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition);
}
.contact-info-cta:hover {
    background: white;
    color: var(--color-navy);
    border-color: white;
}
.contact-opening-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    justify-content: center;
}

.contact-depots-section {
    padding: 60px 0;
    background: white;
}

.depots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.depot-card {
    display: flex;
    flex-direction: column;
}

.depot-header {
    margin-bottom: 24px;
}

.depot-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-500);
    display: block;
    margin-bottom: 8px;
}

.depot-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0;
}

.depot-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.depot-map iframe {
    width: 100% !important;
    height: 100% !important;
}

.depot-info {
    padding: 16px;
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.depot-info p {
    font-size: 14px;
    color: var(--color-gray-700);
    margin: 0;
    line-height: 1.6;
}

.depot-info strong {
    font-weight: 700;
    color: var(--color-navy);
}

.contact-products-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #eef3ff 100%);
    padding: 60px 0;
}

.contact-products-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-products-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--color-navy);
}

.contact-products-card p {
    font-size: 15px;
    color: var(--color-gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===================================================
   CONFIGURATEUR DE DEVIS
   =================================================== */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    padding: 40px 0 80px;
}
.quote-steps { display: flex; flex-direction: column; gap: 32px; }
.quote-step-block h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

/* Radio cards */
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-card {
    position: relative;
    cursor: pointer;
}
.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio-card-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all var(--transition);
    min-width: 140px;
}
.radio-card-label .radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.radio-card-label .radio-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-navy);
    display: none;
}
.radio-card input:checked + .radio-card-label {
    border-color: var(--color-navy);
    background: rgba(27,48,96,.04);
    color: var(--color-navy);
}
.radio-card input:checked + .radio-card-label .radio-dot {
    border-color: var(--color-navy);
}
.radio-card input:checked + .radio-card-label .radio-dot::after {
    display: block;
}
.radio-card:hover .radio-card-label {
    border-color: var(--color-navy-light);
}
.radio-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Quality cards */
.quality-group { display: flex; gap: 12px; }
.quality-card {
    position: relative;
    cursor: pointer;
}
.quality-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.quality-card-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all var(--transition);
    min-width: 160px;
}
.quality-card input:checked + .quality-card-label {
    border-color: var(--color-navy);
    background: rgba(27,48,96,.04);
    color: var(--color-navy);
}
.quality-card .radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.quality-card .radio-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-navy);
    display: none;
}
.quality-card input:checked + .quality-card-label .radio-dot {
    border-color: var(--color-navy);
}
.quality-card input:checked + .quality-card-label .radio-dot::after {
    display: block;
}

/* Product search */
.search-box {
    position: relative;
    margin-bottom: 16px;
}
.search-box input {
    width: 100%;
    padding: 13px 48px 13px 18px;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 14px;
    outline: none;
    background: var(--color-white);
    color: var(--color-gray-900);
    transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--color-navy); }
.search-box svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    pointer-events: none;
}

/* Category filters */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.filter-tab {
    padding: 7px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-200);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-700);
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--color-navy); color: var(--color-navy); }
.filter-tab.active {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}

/* Product grid (configurateur) */
.products-configurator {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.prod-card {
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 14px;
    background: var(--color-white);
    transition: border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prod-card.has-qty { border-color: var(--color-navy); background: rgba(27,48,96,.03); }
.prod-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.prod-card-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 6px;
}
.prod-card-name svg { color: var(--color-gray-400); flex-shrink: 0; }
.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
}
.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gray-300);
    background: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-navy);
    transition: all var(--transition);
    flex-shrink: 0;
}
.qty-btn:hover { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.qty-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    min-width: 28px;
    text-align: center;
}
.prod-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prod-weight { font-size: 12px; color: var(--color-gray-500); }
.minmax-btns { display: flex; gap: 6px; }
.btn-min, .btn-max {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.btn-min {
    background: var(--color-gray-200);
    color: var(--color-gray-700);
}
.btn-min:hover { background: var(--color-gray-300); }
.btn-max {
    background: var(--color-gray-900);
    color: var(--color-white);
}
.btn-max:hover { background: #111; }

/* Quote Sidebar */
.quote-sidebar {
    position: sticky;
    top: calc(var(--topbar-h) + var(--header-h) + 24px);
}
.quote-cart {
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
}
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cart-clear-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-red);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-red);
    background: #fff5f5;
    cursor: pointer;
    transition: all var(--transition);
}
.cart-clear-btn:hover { background: var(--color-red); color: white; }
.cart-container-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 4px;
}
.cart-balls-count {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-navy);
    text-align: center;
    line-height: 1;
}
.cart-balls-count span { font-size: 16px; font-weight: 400; color: var(--color-gray-500); }
.cart-progress-bar {
    height: 6px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 16px 0;
}
.cart-progress-fill {
    height: 100%;
    background: var(--color-navy);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}
.cart-progress-fill.full { background: var(--color-red); }
.cart-help {
    font-size: 13px;
    color: var(--color-gray-500);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}
.cart-items { margin-bottom: 20px; display: none; }
.cart-items.has-items { display: block; }
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid var(--color-gray-100);
    color: var(--color-gray-700);
}
.cart-item:last-child { border-bottom: none; }
.cart-item span:last-child {
    font-weight: 700;
    color: var(--color-navy);
}

/* Quote form */
.quote-form-block {
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin-top: 32px;
    display: none;
}
.quote-form-block.visible { display: block; }
.quote-form-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===================================================
   ADMIN
   =================================================== */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}
.admin-sidebar {
    background: var(--color-navy);
    padding: 24px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.admin-logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 16px;
}
.admin-logo span {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 2px;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    transition: all var(--transition);
}
.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(255,255,255,.1);
    color: var(--color-white);
}
.admin-content {
    padding: 32px;
    background: var(--color-gray-50);
}
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.admin-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
}
.admin-table {
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-collapse: collapse;
}
.admin-table th {
    background: var(--color-gray-50);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-gray-200);
}
.admin-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--color-gray-50); }
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}
.badge-success { background: #d4edda; color: #155724; }
.badge-danger   { background: #f8d7da; color: #721c24; }
.badge-info     { background: #d1ecf1; color: #0c5460; }
.action-btns { display: flex; gap: 6px; }
.btn-action {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-action.edit { border-color: var(--color-navy); color: var(--color-navy); background: transparent; }
.btn-action.edit:hover { background: var(--color-navy); color: white; }
.btn-action.delete { border-color: var(--color-red); color: var(--color-red); background: transparent; }
.btn-action.delete:hover { background: var(--color-red); color: white; }
.btn-action.toggle { border-color: var(--color-green-dark); color: var(--color-green-dark); background: transparent; }
.btn-action.toggle:hover { background: var(--color-green-dark); color: white; }

.admin-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.admin-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-gray-200);
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-navy);
}
.stat-card .stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy);
}
.stat-card .stat-label {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-top: 4px;
}

/* Admin login */
.login-page {
    min-height: 100vh;
    background: var(--color-hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.login-card .logo-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 6px;
}
.login-card .logo-tagline { font-size: 11px; color: var(--color-gray-500); letter-spacing: 1px; display: block; margin-bottom: 32px; }
.login-card h2 { font-size: 20px; font-weight: 700; color: var(--color-navy); margin-bottom: 24px; }

/* ===================================================
   STATIC CONTENT PAGES
   =================================================== */
.content-page { padding: 60px 0 80px; }
.content-page h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 32px;
}
.content-page h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 28px 0 12px;
}
.content-page p {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}
.content-page ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.content-page ul li {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 4px;
}

/* ===================================================
   404
   =================================================== */
.page-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.page-404 .error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--color-gray-200);
    line-height: 1;
    margin-bottom: 0;
}
.page-404 h1 { font-size: 28px; font-weight: 700; color: var(--color-navy); margin-bottom: 16px; }
.page-404 p { font-size: 16px; color: var(--color-gray-600); margin-bottom: 32px; }

/* ===================================================
   HOME — SLIDER PRODUITS
   =================================================== */
.home-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 52px;
}
.home-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.home-product-card {
    flex: 0 0 calc(25% - 18px);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.home-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.home-product-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.home-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.home-product-card:hover .home-product-img-wrap img {
    transform: scale(1.04);
}
.home-product-body {
    padding: 18px 20px 22px;
}
.home-product-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.home-product-body p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.5;
}
.home-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.home-slider-wrapper .slider-nav.prev { left: 0; }
.home-slider-wrapper .slider-nav.next { right: 0; }

/* ===================================================
   HOME — CATEGORIES BAR (icônes SVG)
   =================================================== */
.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: #f7f7f7;
    border-radius: 50%;
    color: #1b3060;
}

/* ===================================================
   HOME — PROCESS STEPS (rework)
   =================================================== */
.process-step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    padding: 20px 0;
}
.process-detail {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 20px 44px;
}
.process-step.active .process-detail { display: flex; }
.process-step.active .process-step-title { color: var(--color-navy); font-weight: 700; }
.process-step.active .process-step-num  { color: var(--color-navy); font-weight: 700; }

/* Image processus */
.process-image-block {
    position: relative;
    grid-column: 3;
    grid-row: 1;
}
.process-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 460px;
}
.process-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.process-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #8CB7D8;
    color: #000;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: auto;
    max-width: 90%;
}

/* ===================================================
   HOME — MAP SECTION (carte monde)
   =================================================== */
.map-section {
    background: var(--color-white);
    padding: 0;
}
.map-image-wrap {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.map-bg-img {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    display: block;
    height: auto;
}

/* ===================================================
   HOME — FOOTER (sous la carte)
   =================================================== */
.site-footer-home {
    background: var(--color-white);
}

/* Grille 3 colonnes */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.5fr;
    gap: 60px;
    padding: 52px 24px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Col 1 : marque ── */
.footer-col--brand { display: flex; flex-direction: column; gap: 0; }
.footer-brand-logo {
    border-bottom: none;
}
.footer-brand-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
}
.footer-brand-desc {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 22px;
}
.footer-follow {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-follow-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
    white-space: nowrap;
}
.footer-social-row { display: flex; gap: 10px; }
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--color-navy);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.footer-social-btn:hover {
    background: var(--color-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27,48,96,.3);
}

/* ── Col 2 : liens ── */
.footer-col-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 20px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list li a {
    font-size: 14px;
    color: var(--color-gray-600);
    transition: color var(--transition);
}
.footer-nav-list li a:hover { color: var(--color-navy); }

/* ── Col 3 : contact ── */
.footer-depots-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.footer-depots-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--color-gray-600);
    line-height: 1.5;
}
.footer-depots-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-navy);
}
.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 18px;
}
.footer-email-row { margin-bottom: 22px; }
.footer-contact-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 6px;
    letter-spacing: .3px;
}
.footer-contact-val {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: var(--color-gray-700);
}
.footer-contact-val svg { flex-shrink: 0; color: var(--color-navy); }
.footer-contact-val a {
    color: var(--color-gray-800);
    transition: color var(--transition);
}
.footer-contact-val a:hover { color: var(--color-navy); }
.footer-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
}

/* ── Barre de bas de page ── */
.footer-bottom-bar {
    border-top: 1px solid var(--color-gray-200);
    padding: 16px 0;
    text-align: center;
}
.footer-bottom-bar p {
    font-size: 13px;
    color: var(--color-gray-500);
}
.footer-bottom-bar a {
    color: var(--color-gray-700);
    font-weight: 600;
    text-decoration: underline;
}
.footer-bottom-bar a:hover { color: var(--color-navy); }

/* ===================================================
   HOME — WHY CARDS (icônes SVG)
   =================================================== */
.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--color-hero-bg);
    border-radius: 50%;
    margin: 0 auto 16px;
}

/* ===================================================
   RESPONSIVE HOME
   =================================================== */
@media (max-width: 1100px) {
    .home-product-card { flex: 0 0 calc(33.33% - 16px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col--contact { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .why-card {
        border-right: none;
        padding: 28px 16px;
    }

    .home-product-card { flex: 0 0 calc(50% - 12px); }
    .home-slider-wrapper { padding: 0 44px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px 32px; }
    .footer-col--contact { grid-column: unset; }
    .footer-col--brand { align-items: center; text-align: center; }
    .footer-brand-logo img { margin: 0 auto 18px; }
    .process-img-wrap { height: 280px; }
}
@media (max-width: 480px) {
    .home-product-card { flex: 0 0 100%; }
    .home-slider-wrapper { padding: 0 40px; }
    .footer-contact-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   PAGE PROCESSUS — TIMELINE
   =================================================== */

.process-page-intro {
    background: #f7f7f7;
    padding: 72px 0 48px;
    text-align: center;
}
.process-page-intro h1 {
    font-size: clamp(26px, 3.4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #000;
    max-width: 660px;
    margin: 8px auto 20px;
}
.process-page-lead {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Timeline wrapper ── */
.process-timeline-section { background: var(--color-gray-50); }
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

/* Ligne verticale centrale */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gray-300) 5%, var(--color-gray-300) 95%, transparent);
    z-index: 0;
}

/* ── Rangée (3 colonnes : card | node | spacer ou spacer | node | card) ── */
.timeline-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

/* Nœud central (cercle numéroté) */
.timeline-node {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.timeline-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px var(--color-gray-50), 0 0 0 7px var(--color-gray-300);
    flex-shrink: 0;
}

/* Spacer (côté vide) */
.timeline-spacer { /* vide intentionnellement */ }

/* ── Carte ── */
.timeline-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: stretch;
    transition: box-shadow var(--transition), transform var(--transition);
}
.timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.timeline-card-img {
    width: 110px;
    flex-shrink: 0;
    overflow: hidden;
}
.timeline-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.timeline-card:hover .timeline-card-img img { transform: scale(1.05); }
.timeline-card-body {
    padding: 18px 20px;
    flex: 1;
}
.timeline-card-body h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.25;
}
.timeline-card-body p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ── Alignement des cartes ── */
.row-left .timeline-card  { margin-right: 24px; }
.row-right .timeline-card { margin-left: 24px; }

/* ── Responsive timeline ── */
@media (max-width: 700px) {
    .process-timeline { max-width: 100%; }
    .timeline-line { left: 26px; }
    .timeline-row {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto;
    }
    .timeline-row .timeline-spacer { display: none; }
    .row-left  { grid-template-areas: "node card"; }
    .row-right { grid-template-areas: "node card"; }
    .row-left  .timeline-node,
    .row-right .timeline-node { grid-area: node; }
    .row-left  .timeline-card,
    .row-right .timeline-card { grid-area: card; margin: 0; }
    .timeline-card-img { width: 80px; }
}

/* ===================================================
   PAGE NOS PRODUITS
   =================================================== */

/* ── Hero vidéo ── */
.products-hero {
    background: var(--color-hero-bg);
    padding: 56px 0 0;
    text-align: center;
}
.products-hero h1 {
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    max-width: 600px;
    margin: 0 auto 40px;
}
.products-hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    padding-bottom: 20px;
    margin: 0 auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    line-height: 0;
}
.products-hero-video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.products-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(238,242,248,0) 60%, var(--color-hero-bg) 100%);
    pointer-events: none;
}

/* ── Grille produits 4×2 ── */
.products-grid-section { background: var(--color-gray-50); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.product-card-full {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card-full:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card-full:hover .product-card-img img { transform: scale(1.04); }
.product-card-body {
    padding: 16px 18px 22px;
}
.product-card-body h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 7px;
}
.product-card-body p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products-hero-video { height: 260px; }
    .products-hero-video-wrap { max-width: 100%; border-radius: 0; }
}
@media (max-width: 420px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   PAGE A-PROPOS
   =================================================== */

/* ── Hero ── */
.about-hero {
    background: #f7f7f7;
    padding: 72px 0 64px;
    overflow: hidden;
}
.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-hero-content h1 {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    margin-top: 10px;
}
.about-hero-desc {
    font-size: 14.5px;
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 28px;
}
.about-sep {
    border: none;
    border-top: 1px solid var(--color-gray-200);
    margin: 28px 0 20px;
}
.about-stats-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 16px;
}
.about-stats-scroll {
    overflow: visible;
    padding: 16px 0;
    width: 100%;
}
.about-stats-track {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
}
.about-stat {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-200);
}
.about-stat:last-of-type { border-bottom: none; }
.about-stat-num {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #000;
    line-height: 1;
}
.about-stat-label {
    font-size: 11.5px;
    color: var(--color-gray-500);
    margin-top: 5px;
    line-height: 1.3;
}
.about-stats-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--color-gray-700);
}
.about-stats-arrow:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: white;
}

/* Image hero droite */
.about-hero-visual { position: relative; width: 100%; }
.about-hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 100%;
    height: 480px;
}
.about-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--color-navy);
    color: #fff;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

/* ── Section international ── */
.about-intl .container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.about-intl-images {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}
.about-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-400);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: baseline;
}
.about-intl-imgs-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    position: relative;
    align-items: flex-start;
}
.about-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}
.about-img-small {
    width: 44%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 8px solid white;
    margin-top: -100px;
    z-index: 10;
    margin-left: -30px;
}
.about-intl-content h2 {
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}
.about-intl-content p {
    font-size: 14.5px;
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 6px;
}
.about-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 28px;
}
.about-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-gray-700);
}
.about-bullet-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-navy);
    flex-shrink: 0;
}

/* ── Mission ── */
.about-mission {
    background: #c7e0ff;
}
.about-mission .container {
    max-width: 740px;
    text-align: center;
}
.about-mission h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-mission-text {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── Delaisy Kargo ── */
.about-delaisy .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-delaisy-content h2 {
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    margin-top: 10px;
}
.about-delaisy-content p {
    font-size: 14.5px;
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 28px;
}
.about-delaisy-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

 .nav-lang-selector {
        display: block;} 

/* ── Responsive a-propos ── */
@media (max-width: 960px) {
    .about-hero .container,
    .about-intl .container,
    .about-delaisy .container { grid-template-columns: 1fr; }
    .about-hero-img-wrap { height: 300px; }
    .about-delaisy-img { height: 260px; }
    .about-intl-images { flex-direction: row; gap: 0; align-items: flex-start; }
    .about-intl-imgs-stack { display: flex; flex-direction: column; align-items: flex-start; }
    .about-img-main { height: 320px; width: 100%; }
    .about-img-small { width: 50%; height: 160px; margin-top: -50px; margin-left: 0; z-index: 10; }
    .about-vertical-text { display: none; }
}
@media (max-width: 600px) {
    /* Centre les textes */
    .about-hero-content { text-align: center; }
    .about-hero-content h1 { text-align: center; }
    .about-hero-desc { text-align: center; }
    .about-hero-content .btn { justify-self: center; width: fit-content; margin: 0 auto; display: inline-block; }

    .about-intl-content { text-align: center; }
    .about-intl-content h2 { text-align: center; }
    .about-intl-content p { text-align: center; }
    .about-intl-content .btn { justify-self: center; width: fit-content; margin: 0 auto; display: inline-block; }

    .about-mission { text-align: center; }
    .about-mission h2 { text-align: center; }
    .about-mission-text { text-align: center; }
    .about-mission .btn { justify-self: center; width: fit-content; margin: 0 auto; display: inline-block; }

    .about-delaisy-content { text-align: center; }
    .about-delaisy-content h2 { text-align: center; }
    .about-delaisy-content p { text-align: center; }
    .about-delaisy-content .btn { justify-self: center; width: fit-content; margin: 0 auto; display: inline-block; }

    .about-stats-row { flex-wrap: wrap; gap: 16px; }
    .about-stat { border-right: none; padding-right: 0; margin-right: 0; }
    .about-stats-arrow { margin-left: 0; }
}

/* ===================================================
   RTL SUPPORT
   =================================================== */
.rtl { direction: rtl; }
.rtl .topbar-contact { flex-direction: row-reverse; }
.rtl .nav-list { flex-direction: row-reverse; }
.rtl .hero-actions { flex-direction: row-reverse; }
.rtl .slider-nav.prev { left: auto; right: -20px; }
.rtl .slider-nav.next { right: auto; left: -20px; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout { gap: 40px; }
    .products-configurator { grid-template-columns: repeat(2, 1fr); }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .home-hero .container { grid-template-columns: 1fr; }
    .hero-image { display: none; }

    /* Process mobile */
    .process-layout {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .process-steps {
        border-left: none;
        border-bottom: 2px solid var(--color-navy);
        padding-left: 0;
        padding-bottom: 16px;
        flex-direction: row;
        gap: 32px;
        overflow-x: auto;
        grid-column: auto;
        grid-row: auto;
    }
    .process-step {
        flex-shrink: 0;
        padding: 0 0 12px 0;
        min-width: fit-content;
    }
    .process-step-title {
        font-size: 12px;
    }
    .process-content {
        grid-column: auto;
        grid-row: auto;
    }
    .process-content-item h3 {
        font-size: 22px;
    }
    .process-image-block {
        grid-column: auto;
        grid-row: auto;
    }
    .process-img-wrap {
        height: 340px;
    }

    .contact-layout { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .quote-layout { grid-template-columns: 1fr; }
    .quote-sidebar { position: relative; top: auto; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { height: auto; position: relative; }
}

@media (max-width: 768px) {
    :root { --topbar-h: 0px; }
    .topbar { display: none; }

    .header-inner { gap: 8px; }
    .main-nav { flex: unset !important; }

    /* Mobile nav - offcanvas */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 320px;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 101;
        padding: 16px 0;
        overflow-y: auto;
        flex: unset;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .nav-overlay { display: none; }
    .nav-overlay.open { display: block; }

    .header-actions { gap: 0; }
    .hamburger { display: flex; }
    .nav-close { display: flex; }
    .nav-list { flex-direction: column; align-items: stretch; padding: 60px 16px 100px 16px; gap: 8px; }
    .nav-link { padding: 18px 16px; font-size: 16px; font-weight: 500; }

    /* Quote button in mobile menu */
    .nav-quote-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        bottom: 80px;
        left: 16px;
        right: 16px;
        padding: 12px 16px;
        width: calc(100% - 32px);
        z-index: 10;
        background: var(--color-primary);
        color: white;
        border-radius: var(--radius-sm);
        font-weight: 600;
        text-decoration: none;
        justify-content: center;
        transition: all var(--transition);
    }
    .nav-quote-btn:hover {
        background: var(--color-primary-dark);
    }

    /* Language selector in mobile menu - show on mobile */
    .nav-lang-selector {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid var(--color-gray-200);
        padding: 16px;
        z-index: 9;
    }
    .nav-lang-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 10px;
        background: var(--color-gray-100);
        border-radius: var(--radius-sm);
        font-size: 14px;
        font-weight: 600;
        color: var(--color-navy);
        cursor: pointer;
        transition: all var(--transition);
    }
    .nav-lang-toggle:hover {
        background: var(--color-gray-200);
    }
    .nav-lang-menu {
        display: none;
        position: absolute;
        bottom: 60px;
        left: 16px;
        right: 16px;
        background: var(--color-white);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
        list-style: none;
        margin: 0;
        padding: 4px 0;
    }
    .nav-lang-selector.open .nav-lang-menu {
        display: block;
    }
    .nav-lang-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        font-size: 14px;
        color: var(--color-gray-700);
        transition: background var(--transition);
    }
    .nav-lang-option:hover {
        background: var(--color-gray-100);
        color: var(--color-navy);
    }
    .btn-whatsapp { display: flex; }
    .header-actions .btn { display: none; }

    .products-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .products-configurator { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .radio-group { flex-direction: column; }
    .category-item { min-width: 130px; gap: 10px; }
    .cat-icon { width: 48px; height: 48px; border-radius: 10px; }
    .cat-icon svg { width: 22px; height: 22px; }
    .marquee-item { font-size: 20px; }

    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-info-image { min-height: 280px; }

    .contact-section-title { font-size: 24px; }

    .depots-grid { grid-template-columns: 1fr; gap: 32px; }
    .depot-map { height: 250px; }

    .contact-products-section { padding: 48px 0; }
    .contact-products-card h2 { font-size: 22px; }
    .contact-products-card p { font-size: 14px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .home-hero { padding: 48px 0; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .products-configurator { grid-template-columns: 1fr; }
    .admin-content { padding: 16px; }
    .login-card { padding: 32px 24px; }
}
