/* =============================================
   EURO GRUE - RENTOREX DESIGN EXACT
   ============================================= */

/* =============================================
   VARIABLES
   ============================================= */
:root {
    /* Couleurs Euro Grue */
    --primary: #1b9dd9;
    --primary-hover: #1688bd;
    --secondary: #274f9e;
    --dark-blue: #0a1e3e;
    --light: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --text-dark: #1a1a1a;

    /* Typographie */
    --font-primary: 'Roboto Slab', serif;
    --font-heading: 'Teko', sans-serif;

    /* Autres */
    --radius: 16px;
    --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--light);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 157, 217, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--dark-blue);
    color: white;
    border-color: var(--dark-blue);
}

.btn-secondary-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background: var(--secondary);
    color: var(--light);
}

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-title-white {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 20px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: var(--dark-blue);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    padding-bottom: 50px;
}

/* Background parallax layer */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(27, 157, 217, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39, 79, 158, 0.15) 0%, transparent 50%);
    z-index: 0;
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
}

/* Triangle 1 - with parallax */
.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-bottom: 300px solid rgba(27, 157, 217, 0.08);
    transform: rotate(15deg) translateY(var(--parallax-y, 0px));
    z-index: 0;
    will-change: transform;
}

/* Triangle 2 - separate element for parallax */
.hero-background-triangle {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 0;
    height: 0;
    border-right: 250px solid transparent;
    border-top: 350px solid rgba(39, 79, 158, 0.08);
    transform: rotate(-20deg);
    z-index: 0;
    will-change: transform;
}

/* Header */
.header {
    padding: 24px 0;
    position: relative;
    z-index: 10000;
}

/* Fix dropdown clipping on internal pages */
.internal-header,
.zones-hero {
    overflow: visible !important;
}

.header-content,
.hero-wrapper {
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Logo mobile centré - caché en desktop */
.logo-mobile-center {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-mobile-center img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav > a,
.nav-item {
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav > a:hover,
.nav-item:hover > a {
    color: var(--primary);
}

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-item > a::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0;
    padding: 12px 0;
    z-index: 1000;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--dark-blue);
    font-size: 15px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary);
    padding-left: 30px;
}

/* Mega Menu Base Styles */
.dropdown-mega {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 30px;
    min-width: 850px;
    z-index: 10001;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Wrapper pour maintenir le hover entre le nav et le dropdown */
.nav-item.mega-menu {
    position: relative;
}

.nav-item.mega-menu::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 10px;
    background: transparent;
    z-index: 998;
    display: none;
}

.nav-item.mega-menu:hover::before {
    display: block;
}

.nav-item.mega-menu:hover .dropdown-mega,
.dropdown-mega:hover {
    display: flex;
    opacity: 1;
    visibility: visible;
    gap: 40px;
}

/* Ajouter un petit délai avant de fermer pour une meilleure UX */
.nav-item.mega-menu .dropdown-mega {
    transition: opacity 0.25s ease 0.1s, visibility 0.25s ease 0.1s;
}

.nav-item.mega-menu:hover .dropdown-mega {
    transition-delay: 0s;
}

.mega-column {
    flex: 1;
}

.mega-column h4 {
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    padding: 4px 0;
}

.mega-column ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* Mega Menu Zones - Optimisé SEO */
.zones-mega {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 35px 40px;
    min-width: 900px;
    background: white;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    z-index: 9999;
}

.nav-item.mega-menu:hover .zones-mega {
    display: grid;
}

.zones-mega .dept-title {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    text-transform: none;
    letter-spacing: 0;
}

.zones-mega .zone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zones-mega .zone-list li {
    margin-bottom: 8px;
}

.zones-mega .zone-list li a {
    color: var(--gray);
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: all 0.2s ease;
}

.zones-mega .zone-list li a:hover {
    color: var(--primary);
    text-decoration: underline;
    padding-left: 8px;
}

.zones-mega .zone-list li.all-link {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.zones-mega .zone-list li.all-link a {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

.zones-mega .zone-list li.all-link a:hover {
    color: var(--secondary);
}

/* =============================================
   MOBILE MENU
   ============================================= */

/* Burger Menu Button - Styled as Tab/Onglet de Classeur */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 55px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, #1688bd 100%);
    border: none;
    cursor: pointer;
    padding: 0 0 0 8px;
    z-index: 999999;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    left: calc(100vw - 55px);
    top: 20px;
    border-radius: 16px 0 0 16px;
    box-shadow: -3px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Effet d'onglet avec découpe en haut */
.burger-menu::before {
    content: '';
    position: absolute;
    right: 0;
    top: -12px;
    width: 16px;
    height: 16px;
    background: transparent;
    border-bottom-right-radius: 12px;
    box-shadow: 4px 4px 0 0 var(--primary);
}

/* Effet d'onglet avec découpe en bas */
.burger-menu::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -12px;
    width: 16px;
    height: 16px;
    background: transparent;
    border-top-right-radius: 12px;
    box-shadow: 4px -4px 0 0 #1688bd;
}

.burger-menu span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.burger-menu:hover {
    left: calc(100vw - 60px);
    box-shadow: -5px 6px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.burger-menu.active {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a8a 100%);
    left: calc(100vw - 55px);
}

.burger-menu.active::before {
    box-shadow: 4px 4px 0 0 var(--secondary);
}

.burger-menu.active::after {
    box-shadow: 4px -4px 0 0 #1e3a8a;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay - Full Screen */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

/* Mobile Menu Header - Blanc avec logo centré */
.mobile-menu-header {
    background: white;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.mobile-logo-full {
    height: 60px;
    width: auto;
    max-width: 70%;
}

/* Bouton de fermeture du menu mobile */
.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--dark-blue);
    font-size: 36px;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    background: #f0f0f0;
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-menu-close span {
    line-height: 1;
    font-weight: 300;
}

/* Mobile Menu Blue Section */
.mobile-menu-blue {
    flex: 1;
    background: linear-gradient(180deg, var(--secondary) 0%, #1a3a7d 100%);
    overflow-y: auto;
}

/* Menu Item / Lien Simple */
.mobile-menu-simple-link {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
}

.mobile-menu-simple-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-simple-link[data-active="true"] {
    background: rgba(27, 157, 217, 0.2);
}

/* Menu Item avec dropdown */
.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-button {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 24px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: left;
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-button.active {
    background: rgba(27, 157, 217, 0.15);
}

/* Icône ronde blanche */
.mobile-icon-circle {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-icon-circle img {
    width: 60px;
    height: 60px;
}

.mobile-icon-circle svg {
    color: var(--secondary);
}

/* Texte menu */
.mobile-menu-text {
    flex: 1;
    margin-left: 20px;
    color: white;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Flèche dropdown */
.mobile-arrow {
    color: white;
    font-size: 16px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mobile-menu-button.active .mobile-arrow {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-submenu a {
    display: block;
    padding: 14px 30px 14px 120px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.mobile-submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 125px;
    color: white;
}

/* Zones - Nested */
.mobile-submenu-zones {
    background: rgba(0, 0, 0, 0.2);
}

.mobile-zone-dept {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-zone-dept-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 30px 14px 120px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background 0.2s ease;
}

.mobile-zone-dept-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-zone-dept-btn span {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-zone-dept-btn.active span {
    transform: rotate(180deg);
}

.mobile-zone-cities {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-zone-cities.active {
    max-height: 600px;
}

.mobile-zone-cities a {
    display: block;
    padding: 12px 30px 12px 150px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.mobile-zone-cities a:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 155px;
    color: white;
}

.mobile-zone-cities a.zone-link-all {
    color: var(--primary);
    font-weight: 600;
    background: rgba(27, 157, 217, 0.1);
}

.mobile-zone-cities a.zone-link-all:hover {
    background: rgba(27, 157, 217, 0.2);
}

/* CTA Devis */
.mobile-menu-cta {
    padding: 30px;
    background: linear-gradient(180deg, #1a3a7d 0%, var(--dark-blue) 100%);
}

.mobile-menu-cta .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    text-align: center;
    justify-content: center;
}

/* Hero Content */
.hero-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 5%;
    bottom: -300px;
    width: 55%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 100;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.7));
    position: relative;
    z-index: 100;
}

/* =============================================
   SECTION 1: ÉQUIPEMENTS
   ============================================= */
.equipments-section {
    padding: 400px 0 100px 0;
    background: var(--light);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.equipment-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.equipment-card {
    background: var(--light);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.equipment-image {
    background: var(--gray-light);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.equipment-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.equipment-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.equipment-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.equipment-info p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
    flex: 1;
}

.btn-equipment {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
}

/* =============================================
   SECTION 2: DÉCOUVERTE
   ============================================= */
.discover-section {
    padding: 100px 0;
    background: var(--dark-blue);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.discover-content {
    color: var(--light);
}

.discover-content .section-label {
    color: var(--light);
}

.discover-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.discover-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

/* =============================================
   SECTION 3: CATÉGORIES
   ============================================= */
.categories-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--light);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-image-wrapper {
    background: var(--gray-light);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.category-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.category-info {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.category-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    background: var(--secondary);
    color: var(--light);
    transform: rotate(45deg);
}

/* =============================================
   SECTION 4: CHOISISSEZ-NOUS
   ============================================= */
.choose-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.choose-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Titre Les EURO+ en évidence */
.europlus-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.choose-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 20px;
}

.choose-showcase {
    position: relative;
    min-height: 900px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-box {
    position: absolute;
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    max-width: 320px;
    z-index: 10;
}

.choose-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.choose-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-image img {
    max-width: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}

/* Layout 6 boîtes pour Les EURO+ - Disposition organique autour de l'image */
.choose-showcase-6 .choose-box-1 {
    top: 50px;
    left: 0;
}

.choose-showcase-6 .choose-box-2 {
    top: 180px;
    left: 80px;
}

.choose-showcase-6 .choose-box-3 {
    top: 50px;
    right: 0;
}

.choose-showcase-6 .choose-box-4 {
    top: 180px;
    right: 80px;
}

.choose-showcase-6 .choose-box-5 {
    bottom: 50px;
    left: 40px;
}

.choose-showcase-6 .choose-box-6 {
    bottom: 50px;
    right: 40px;
}

.choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.choose-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.choose-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

.choose-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Layout simple Euro+ en ligne avec monogramme */
.europlus-section {
    position: relative;
    overflow: hidden;
}

.europlus-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('assets/icons/monogramme-eurogrue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(1653%) hue-rotate(173deg) brightness(95%) contrast(91%);
    z-index: 0;
    pointer-events: none;
}

.europlus-section .container {
    position: relative;
    z-index: 1;
}

.choose-grid-simple {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.choose-card-simple {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.choose-card-simple h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.choose-card-simple p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    flex-grow: 1;
}

/* Card highlight - Différenciation Eurogrue */
.choose-card-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 6px 25px rgba(27, 157, 217, 0.2);
    position: relative;
}

.choose-card-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(27, 157, 217, 0.3);
    border-color: var(--secondary);
}

.choose-card-highlight h3 {
    color: var(--primary);
}

/* =============================================
   SECTION 6: BLOG
   ============================================= */
.blog-section {
    padding: 100px 0;
    background: var(--light);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.blog-header p {
    font-size: 15px;
    color: var(--gray);
    margin-top: 12px;
}

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

.blog-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-hover);
}

/* =============================================
   SECTION 7: TÉMOIGNAGE + CTA
   ============================================= */
.testimonial-cta-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonial-box {
    background: var(--light);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.stars {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author div {
    text-align: left;
}

.testimonial-slides {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* CTA Form Section */
.cta-form-section {
    background: var(--dark-blue);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-form-content {
    padding: 60px;
    color: var(--light);
}

.cta-form-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
}

.cta-form-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
}

.cta-form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-form-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
}

.cta-form-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* =============================================
   FOOTER - Version compacte 6 colonnes
   ============================================= */
.footer {
    background: var(--dark-blue);
    color: var(--light);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.footer-column p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
}

/* Footer Zones - Format ultra compact */
.footer-zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-zones .footer-zone-group {
    margin-bottom: 8px;
}

.footer-zones .footer-zone-group strong {
    display: block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-zones .footer-zone-group a {
    font-size: 11px;
    margin-bottom: 3px;
    padding-left: 10px;
    position: relative;
}

.footer-zones .footer-zone-group a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
}

.footer-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.footer-form .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
}

.footer-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin: 0 auto 10px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    /* CONTAINER */
    .container {
        padding: 0 40px;
    }

    /* MEGA-MENU RESPONSIVE TABLET */
    .zones-mega {
        grid-template-columns: 1fr;
        min-width: 90vw;
        gap: 30px;
        padding: 30px;
    }

    /* HERO SECTION */
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 0 180px 0;
    }

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

    .hero-title {
        font-size: clamp(40px, 7vw, 60px);
    }

    .hero-subtitle {
        margin: 0 auto 32px;
        max-width: 500px;
    }

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

    .hero-image {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 75%;
    }

    /* SECTIONS */
    .equipments-section {
        padding: 80px 0;
    }

    .discover-section {
        padding: 80px 0;
    }

    .categories-section {
        padding: 80px 0;
    }

    .choose-section {
        padding: 80px 0;
    }

    .blog-section {
        padding: 80px 0;
    }

    .testimonial-cta-section {
        padding: 80px 0;
    }

    /* EQUIPMENT CARDS */
    .equipment-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* DISCOVER */
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .discover-image img {
        max-width: 60%;
    }

    /* CATEGORIES */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* CHOOSE SECTION */
    .choose-showcase {
        min-height: 700px;
    }

    .choose-image img {
        max-width: 500px;
    }

    .choose-box {
        max-width: 280px;
        padding: 30px 20px;
    }

    /* Layout simple responsive */
    .choose-grid-simple {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .choose-card-simple {
        padding: 30px 20px;
        min-height: 260px;
    }

    .choose-showcase-6 .choose-box-1 {
        top: 30px;
        left: 10px;
    }

    .choose-showcase-6 .choose-box-2 {
        top: 140px;
        left: 40px;
    }

    .choose-showcase-6 .choose-box-3 {
        top: 30px;
        right: 10px;
    }

    .choose-showcase-6 .choose-box-4 {
        top: 140px;
        right: 40px;
    }

    .choose-showcase-6 .choose-box-5 {
        bottom: 30px;
        left: 20px;
    }

    .choose-showcase-6 .choose-box-6 {
        bottom: 30px;
        right: 20px;
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* CTA FORM */
    .cta-form-section {
        grid-template-columns: 1fr;
    }

    .cta-form-image {
        min-height: 250px;
    }

    .cta-form-image img {
        max-width: 40%;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .footer-column h4 {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    /* CONTAINER */
    .container {
        padding: 0 20px;
    }

    /* HEADER MOBILE */
    .header {
        padding: 70px 0; /* Augmente l'espace en haut et en bas */
    }

    .logo {
        display: none; /* Cache le logo desktop à gauche */
    }

    .logo-mobile-center {
        display: block; /* Affiche le monogramme centré */
    }

    /* NAVIGATION */
    .nav {
        display: none;
    }

    /* Show burger menu on mobile */
    .burger-menu {
        display: flex !important;
    }

    .btn-desktop {
        display: none;
    }

    .header-content .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* HERO SECTION */
    .hero-section {
        min-height: 50vh;
        padding-bottom: 20px;
    }

    .hero-wrapper {
        padding: 20px 0 40px 0;
        gap: 20px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-image {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .hero-image img {
        max-width: 85%;
    }

    /* Hide background triangles on mobile for cleaner look */
    .hero-section::after,
    .hero-background-triangle {
        display: none;
    }

    /* SECTIONS SPACING */
    .equipments-section {
        padding: 40px 0;
    }

    .discover-section {
        padding: 40px 0;
    }

    .categories-section {
        padding: 40px 0;
    }

    .choose-section {
        padding: 40px 0;
    }

    .blog-section {
        padding: 40px 0;
    }

    .testimonial-cta-section {
        padding: 40px 0;
    }

    /* SECTION HEADERS */
    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 16px;
    }

    .section-title-white {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 16px;
    }

    /* ACCORDÉON ZONES MOBILE */
    .nav-item.mega-menu .dropdown-mega {
        position: static;
        transform: none;
        display: none;
        min-width: 100%;
        padding: 0;
        box-shadow: none;
        background: #f8f9fa;
    }

    .nav-item.mega-menu .dropdown-mega.mobile-open {
        display: block !important;
    }

    .zones-mega {
        display: block !important;
        grid-template-columns: 1fr;
        min-width: 100%;
        padding: 0;
        box-shadow: none;
    }

    .zones-mega .mega-column {
        border-bottom: 1px solid #e5e7eb;
    }

    .zones-mega .dept-title {
        padding: 16px 20px;
        margin: 0;
        cursor: pointer;
        background: white;
        border-bottom: 2px solid var(--primary);
        position: relative;
        user-select: none;
    }

    .zones-mega .dept-title::after {
        content: '▼';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .zones-mega .dept-title.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .zones-mega .zone-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background: white;
    }

    .zones-mega .zone-list.open {
        max-height: 500px;
    }

    .zones-mega .zone-list li {
        margin: 0;
    }

    .zones-mega .zone-list li a {
        padding: 12px 20px;
        border-bottom: 1px solid #f3f4f6;
    }

    .zones-mega .zone-list li.all-link {
        margin: 0;
        padding: 0;
        border-top: none;
        background: #f8f9fa;
    }

    .zones-mega .zone-list li.all-link a {
        padding: 14px 20px;
    }

    /* EQUIPMENT CARDS */
    .equipment-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-card {
        border-radius: 12px;
    }

    .equipment-image {
        min-height: 180px;
        padding: 30px 15px;
    }

    .equipment-info {
        padding: 20px;
    }

    .equipment-info h3 {
        font-size: 18px;
    }

    /* DISCOVER SECTION */
    .discover-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* CATEGORIES */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .categories-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .category-card {
        border-radius: 12px;
    }

    .category-image-wrapper {
        min-height: 150px;
        padding: 30px 15px;
    }

    .category-info {
        padding: 16px 20px;
    }

    .category-info h3 {
        font-size: 16px;
    }

    /* CHOOSE SECTION - Optimized for mobile */
    .choose-header {
        margin-bottom: 40px;
    }

    .europlus-title {
        font-size: 40px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .choose-description {
        font-size: 15px;
        margin-top: 16px;
    }

    .choose-showcase {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 20px;
        margin-bottom: 40px;
    }

    .choose-box {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .choose-showcase-6 .choose-box-1,
    .choose-showcase-6 .choose-box-2,
    .choose-showcase-6 .choose-box-3,
    .choose-showcase-6 .choose-box-4,
    .choose-showcase-6 .choose-box-5,
    .choose-showcase-6 .choose-box-6 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .choose-box h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .choose-box p {
        font-size: 13px;
    }

    .choose-image {
        order: -1; /* Put image first on mobile */
        padding: 20px 0;
    }

    .choose-image img {
        max-width: 70%;
    }

    /* Layout simple mobile */
    .europlus-section::before {
        width: 400px;
        height: 400px;
    }

    .choose-grid-simple {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 40px 0;
    }

    .choose-card-simple {
        padding: 30px 20px;
        min-height: auto;
    }

    .choose-card-simple h3 {
        font-size: 16px;
    }

    .choose-card-simple p {
        font-size: 13px;
    }

    .choose-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .choose-buttons a {
        width: 100%;
        text-align: center;
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .blog-header p {
        font-size: 14px;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-card h3 {
        font-size: 20px;
    }

    .blog-card p {
        font-size: 13px;
    }

    /* TESTIMONIAL */
    .testimonial-box {
        padding: 40px 24px;
        border-radius: 12px;
        margin-bottom: 40px;
    }

    .testimonial-text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .stars {
        font-size: 28px;
    }

    /* CTA FORM */
    .cta-form-section {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .cta-form-content {
        padding: 40px 24px;
    }

    .cta-form-content h2 {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 16px;
    }

    .cta-form-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .cta-form {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }

    .cta-form input {
        width: 100%;
        padding: 14px 16px;
    }

    .cta-form button {
        width: 100%;
        padding: 14px 24px;
    }

    .cta-form-image {
        padding: 30px 20px;
        min-height: 200px;
    }

    .cta-form-image img {
        max-width: 60%;
    }

    /* FOOTER */
    .footer {
        padding: 40px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
        margin-bottom: 25px;
    }

    /* Colonne 1 : Eurogrue en pleine largeur */
    .footer-column:nth-child(1) {
        grid-column: 1 / -1;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 11px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 10px;
        line-height: 1.5;
    }

    .footer-logo img {
        height: 30px;
        margin-bottom: 10px;
    }

    /* ============================================= */
    /* CATALOGUE / NOS-GRUES.PHP */
    /* ============================================= */
    .catalog-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .filters-sidebar {
        position: static !important;
        max-height: none !important;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .product-specs-compact {
        grid-template-columns: 1fr !important;
    }

    /* ============================================= */
    /* PAGES PRODUITS / GRUE-TEMPLATE.PHP */
    /* ============================================= */
    .quick-specs-grid {
        grid-template-columns: 1fr !important;
    }

    .quick-spec-item {
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb;
    }

    .quick-spec-item:last-child {
        border-bottom: none;
    }

    .product-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* ============================================= */
    /* COMPARATEUR.PHP */
    /* ============================================= */
    .stepper {
        flex-direction: column !important;
        gap: 10px;
    }

    .step {
        max-width: 100%;
        flex: 1;
    }

    .form-card {
        padding: 30px 20px !important;
    }

    .models-grid {
        grid-template-columns: 1fr !important;
    }

    /* ============================================= */
    /* PAGES VILLES */
    /* ============================================= */
    .hero-city {
        min-height: 40vh !important;
        padding: 40px 0 !important;
    }

    .local-intro {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* ============================================= */
    /* OPTIMISATIONS GLOBALES MOBILE */
    /* ============================================= */
    .discover-grid {
        gap: 30px;
    }

    .europlus-title {
        font-size: 32px !important;
    }

    .discover-image img {
        max-width: 100%;
    }
}

/* =============================================
   EXTRA SMALL DEVICES (< 480px)
   ============================================= */
@media (max-width: 480px) {
    /* CONTAINER */
    .container {
        padding: 0 16px;
    }

    /* HERO */
    .hero-wrapper {
        padding: 24px 0 50px 0;
    }

    .hero-title {
        font-size: clamp(28px, 10vw, 40px);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-image img {
        max-width: 95%;
    }

    /* SECTIONS SPACING */
    .equipments-section,
    .discover-section,
    .categories-section,
    .choose-section,
    .blog-section,
    .testimonial-cta-section {
        padding: 50px 0;
    }

    /* SECTION HEADERS */
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 32px);
    }

    .section-title-white {
        font-size: clamp(24px, 8vw, 32px);
    }

    /* BUTTONS */
    .btn-primary,
    .btn-secondary,
    .btn-secondary-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* CARDS */
    .equipment-cards,
    .categories-grid {
        gap: 16px;
    }

    .equipment-card,
    .category-card {
        border-radius: 10px;
    }

    .equipment-image {
        min-height: 160px;
        padding: 25px 12px;
    }

    .equipment-info {
        padding: 16px;
    }

    .equipment-info h3 {
        font-size: 17px;
    }

    .category-image-wrapper {
        min-height: 140px;
        padding: 25px 12px;
    }

    .category-info {
        padding: 14px 16px;
    }

    .category-info h3 {
        font-size: 15px;
    }

    /* CHOOSE */
    .choose-box {
        padding: 24px 16px;
    }

    .choose-box h3 {
        font-size: 15px;
    }

    .choose-box p {
        font-size: 12px;
    }

    .choose-image img {
        max-width: 80%;
    }

    /* BLOG */
    .blog-card h3 {
        font-size: 18px;
    }

    .blog-content {
        padding: 20px;
    }

    /* TESTIMONIAL */
    .testimonial-box {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .stars {
        font-size: 24px;
    }

    /* CTA */
    .cta-form-content {
        padding: 30px 20px;
    }

    .cta-form-content h2 {
        font-size: clamp(22px, 7vw, 28px);
    }

    .cta-form-content p {
        font-size: 14px;
    }

    /* FOOTER */
    .footer {
        padding: 35px 0 20px;
    }

    .footer-content {
        gap: 20px 12px;
        margin-bottom: 20px;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .footer-bottom p {
        font-size: 9px;
    }

    .footer-logo img {
        height: 25px;
    }
}
