@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
/* --- Global Overrides & Grid setup for Product Page --- */
:root {
    --primary-blue: #032b53;
    --accent-red: #e21a22;
    --light-border: #e2e8f0;
    --text-slate: #475569;
}

/* --- Global Configuration & Core Variables --- */
:root {
    --primary-blue: #0A3663;
    --accent-red: #E30013;
    --text-dark: #1E293B;
    --text-muted: #475569;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Top Header Info Bar --- */
.top-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

body {
    background-color: #ffffff;
}

/* --- Application globale de la police --- */
body, input, select, button, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* --- Réduction de 20% sur la Sidebar (Catégories) --- */
.catalog-sidebar {
    flex: 0 0 256px !important; /* 320px * 0.8 */
    width: 256px !important;
}

.category-card, .support-card {
    padding: 19px; /* 24px * 0.8 */
}

.category-summary h3 {
    font-size: 11px !important; /* 14px * 0.8 */
}

.sub-category-list li {
    font-size: 10.5px !important; /* 13px * 0.8 */
    gap: 11px;
}

/* --- Réduction de 20% sur la Section Produits --- */
.product-card-horizontal {
    grid-template-columns: 208px 1fr 224px !important; /* Réduction des largeurs de colonnes */
}

.product-gallery-column {
    padding: 19px !important;
}

.main-product-image {
    height: 144px !important; /* 180px * 0.8 */
}

.thumb-box {
    width: 40px !important; /* 50px * 0.8 */
    height: 40px !important;
}

.product-info-column {
    padding: 22px !important; /* 28px * 0.8 */
}

.product-title {
    font-size: 17.5px !important; /* 22px * 0.8 */
}

.product-description {
    font-size: 11px !important; /* 13.5px * 0.8 */
}

.technical-specs-list li {
    font-size: 11px !important;
}

.product-action-column {
    padding: 22px !important;
}

.btn-quote-submit {
    height: 35px !important; /* 44px * 0.8 */
    font-size: 10px !important;
}

.pdf-download-link {
    font-size: 10.5px !important;
    padding: 8px 11px !important;
}

/* Ajustements de précision pour le rendu des titres avec Inter */
.hero-text-left h1 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px; /* Inter est magnifique avec un léger resserrement sur les gros titres */
}

.category-summary h3,
.support-text h3,
.btn-support-contact {
    font-family: 'Inter', sans-serif;
}

/* --- Hero Banner Section --- */
/* --- Hero Section with Reduced Height & Side Spacing --- */
.product-hero-bg {
    position: relative;
    padding: 40px 0; /* Reduced padding for a smaller section height */
    min-height: 320px; /* Lowered minimum height to keep it compact */
    display: flex;
    align-items: center;
    background-color: #032b53;
}

/* Dark overlay gradient to protect text legibility */
.product-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 43, 83, 0.8) 0%, rgba(3, 43, 83, 0.4) 70%, transparent 100%);
    z-index: 1;
}

.hero-bg-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-left {
    max-width: 520px;
    padding-left: 35px; /* Added elegant padding on the side to push the text inward */
    margin-right: auto;  /* Ensures it stays perfectly locked to the left side */
}

.hero-text-left .hero-tag-red {
    font-size: 11px;
    font-weight: 700;
    color: #e21a22;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.hero-text-left h1 {
    font-size: 30px; /* Slightly scaled down to match the compact height */
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text-left p {
    font-size: 13.5px;
    color: #f1f5f9;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero-explore {
    display: inline-block;
    background-color: #e21a22;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(226, 26, 34, 0.2);
}

.btn-hero-explore:hover {
    background-color: #b81218;
    transform: translateY(-2px);
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
    .product-hero-bg {
        padding: 45px 0;
        min-height: auto;
    }
    .product-hero-bg::before {
        width: 100%;
        background: rgba(3, 43, 83, 0.8);
    }
    .hero-text-left {
        max-width: 100%;
        text-align: center;
        padding-left: 20px;  /* Balanced side padding for tablet */
        padding-right: 20px;
    }
    .hero-text-left h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .hero-text-left {
        padding-left: 15px;  /* Sleek, smaller padding for mobile phones */
        padding-right: 15px;
    }
}
/* --- Wrapper de positionnement --- */
.hero-wrapper {
    position: relative;
    margin-bottom: 50px; 
}

.product-hero-bg {
    position: relative;
    padding: 60px 0 90px 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-color: #032b53;
}

/* --- Barre centrée de largeur moyenne (Exact Match image_e9a4fa.png) --- */
.search-overlap-container.search-medium-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    
    /* Positionnement absolu centré sur la ligne */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 20;
    
    /* Largeur moyenne contrôlée */
    width: 100%;
    max-width: 850px; 
    padding: 0 20px;
    box-sizing: border-box;
}

/* Bloc Recherche principal */
.search-input-group {
    display: flex;
    flex: 1; /* Prend l'espace disponible dans la limite des 850px */
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.search-input-group input {
    width: 100%;
    padding: 8px 12px;
    border: none;
    outline: none;
    font-size: 13.5px;
    color: #334155;
}

/* Bouton loupe bleu roi */
.search-submit-btn {
    background-color: #1e4f9f;
    color: #ffffff;
    border: none;
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.search-submit-btn:hover {
    background-color: #153a75;
}

/* Bloc de tri à droite */
.sort-dropdown-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px; /* Hauteur harmonisée avec le bloc recherche */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sort-dropdown-group label {
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    margin-right: 4px;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sort-dropdown-group select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    color: #032b53;
    cursor: pointer;
    padding-right: 20px;
    appearance: none;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: #032b53;
    position: absolute;
    right: 2px;
    pointer-events: none;
}

/* --- Sécurité Mobile --- */
@media (max-width: 768px) {
    .search-overlap-container.search-medium-center {
        position: relative;
        transform: none;
        left: 0;
        margin-top: 25px;
        padding: 0 15px;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-wrapper {
        margin-bottom: 20px;
    }
}

/* --- Sidebar & Cards Containers --- */
.catalog-sidebar {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Alignement Côte à Côte (Sidebar + Produits) --- */
.catalog-layout.container {
    display: flex;
    align-items: flex-start; /* Aligne les deux blocs par le haut */
    gap: 30px;               /* Espace de séparation luxueux entre la sidebar et les produits */
    margin-top: 50px;        /* Laisse de la place pour la barre de recherche qui dépasse */
    margin-bottom: 60px;
}

/* Fixe la largeur de la sidebar pour qu'elle ne s'écrase pas */
.catalog-sidebar {
    flex: 0 0 320px;         /* Largeur stricte de 320px comme prévu */
    width: 320px;
}

/* Permet à la liste de produits de prendre tout l'espace restant à droite */
.product-catalog-section {
    flex: 1;                 
    width: 100%;
}

/* --- Sécurité Responsif (Tablettes et Mobiles) --- */
@media (max-width: 992px) {
    .catalog-layout.container {
        flex-direction: column; /* Aligne verticalement sur petit écran */
        align-items: center;
        gap: 40px;
    }
    
    .catalog-sidebar, 
    .product-catalog-section {
        max-width: 100%;
        width: 100%;
    }
}

/* La carte avec l'ombre légère demandée pour casser le blanc uniforme */
.category-card, .support-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(3, 43, 83, 0.03), 0 2px 4px rgba(0, 0, 0, 0.01); /* Ombre très subtile */
    padding: 24px;
}

/* --- Category Header Tag --- */
.category-header {
    margin-bottom: 25px;
}

.category-title-tag {
    font-size: 11px;
    font-weight: 800;
    color: #032b53;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-title-tag .red-line {
    width: 16px;
    height: 2px;
    background-color: #e21a22;
    display: block;
}

/* --- Accordion Native Logic (<details>) --- */
.category-item {
    width: 100%;
}

.category-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Enlève la flèche par défaut du navigateur */
    cursor: pointer;
    user-select: none;
}

.category-summary::-webkit-details-marker {
    display: none; /* Sécurité additionnelle pour Safari */
}

.summary-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-right: 10px;
}

.category-icon {
    font-size: 18px;
    color: #032b53;
    margin-top: 2px;
}

.category-summary h3 {
    font-size: 14px;
    font-weight: 700;
    color: #032b53;
    line-height: 1.4;
    margin: 0;
}

/* Flèche animée */
.toggle-arrow {
    font-size: 11px;
    color: #032b53;
    transition: transform 0.25s ease;
    transform: rotate(180deg); /* Fermé par défaut pointé vers le bas */
}

/* Quand l'accordéon est ouvert, la flèche tourne vers le haut */
.category-item[open] .toggle-arrow {
    transform: rotate(0deg);
}

/* --- Sous-catégories (Listes à puces bleues) --- */
.sub-category-list {
    list-style: none;
    padding-left: 32px;
    margin: 15px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sub-category-list li {
    position: relative;
    font-size: 13px;
    line-height: 1.4;
}

/* La petite puce carrée/ronde personnalisée avant le texte */
.sub-category-list li::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 7px;
    width: 3px;
    height: 3px;
    background-color: #1e4f9f;
    border-radius: 50%;
}

.sub-category-list li a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.15s ease;
}

.sub-category-list li a:hover {
    color: #e21a22; /* Passage au rouge sur le survol pour le dynamisme */
}

.category-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 20px 0;
}

/* --- Bloc d'aide du bas (Exact Match) --- */
.support-card {
    padding: 20px;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.support-icon {
    font-size: 26px;
    color: #1e4f9f;
}

.support-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #032b53;
    margin: 0 0 2px 0;
}

.support-text p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.btn-support-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    color: #1e4f9f;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-support-contact:hover {
    background-color: #f8fafc;
    border-color: #1e4f9f;
}


/* --- Section Conteneur --- */
.product-catalog-section {
    width: 100%;
    margin-bottom: 30px;
}

/* --- Carte Produit Horizontale --- */
.product-card-horizontal {
    display: grid;
    grid-template-columns: 260px 1fr 280px; /* 3 colonnes distinctes comme la maquette */
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(3, 43, 83, 0.03), 0 2px 4px rgba(0, 0, 0, 0.01); /* Ombre subtile globale */
    overflow: hidden;
}

/* --- Colonne 1 : Galerie --- */
.product-gallery-column {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #f1f5f9;
}

.main-product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.main-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.thumb-box {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: border-color 0.15s;
}

.thumb-box.active, .thumb-box:hover {
    border-color: #1e4f9f;
}

.thumb-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Colonne 2 : Infos --- */
.product-info-column {
    padding: 28px;
    border-right: 1px solid #f1f5f9;
}

.product-category-tag {
    font-size: 11px;
    font-weight: 700;
    color: #1e4f9f;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #032b53;
    margin: 0 0 6px 0;
}

.product-meta-lines {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
}

.meta-divider {
    color: #cbd5e1;
}

.product-description {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

/* Infos techniques nettoyées (Points ronds discrets à la place des icônes) */
.technical-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.technical-specs-list li {
    position: relative;
    padding-left: 16px;
    font-size: 13.5px;
    color: #334155;
}

.technical-specs-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #64748b; /* Point gris neutre et pro */
    border-radius: 50%;
}

.spec-label {
    font-weight: 500;
    color: #64748b;
}

/* --- Colonne 3 : Actions --- */
.product-action-column {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fafbfc; /* Fond très légèrement grisé pour décoller le bloc action */
}

.action-block {
    margin-bottom: 20px;
}

.block-section-title {
    font-size: 11px;
    font-weight: 800;
    color: #1e4f9f;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 12px;
}

/* Lien PDF style image */
.pdf-download-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pdf-download-link:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.pdf-icon {
    font-size: 16px;
    color: #e21a22; /* Icône PDF rouge réglementaire */
}

/* Liste des applications */
.applications-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.applications-bullet-list li {
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.applications-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 3px;
    height: 3px;
    background-color: #032b53;
    border-radius: 50%;
}

/* Bouton Demande de devis - Clair, Rouge et Premium */
.btn-quote-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 44px;
    background-color: #e21a22; /* Rouge vif pour attirer l'action */
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(226, 26, 34, 0.15);
}

.btn-quote-submit:hover {
    background-color: #b81218;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(226, 26, 34, 0.25);
}

/* --- Adaptabilité Mobile / Tablette --- */
@media (max-width: 992px) {
    .product-card-horizontal {
        grid-template-columns: 1fr; /* Passage en bloc vertical sur mobile */
    }
    .product-gallery-column, .product-info-column {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .product-action-column {
        background-color: #ffffff;
    }
}

/* --- Pagination Elements --- */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-border);
}

.pages-indicator {
    font-size: 12px;
    color: var(--text-slate);
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pag-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-border);
    text-decoration: none;
    font-size: 12px;
    color: var(--text-slate);
    border-radius: 4px;
}

.pag-btn.active {
    background-color: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.pag-dots {
    color: var(--text-slate);
    padding: 0 4px;
}




@media (max-width: 768px) {
    /* Réduction globale de l'espace des cartes */
    .expertise-grid {
        gap: 12px; /* Espacement plus serré */
        padding: 0 15px;
    }

    .feature-card {
        padding: 16px; /* Réduction du padding interne de 20% */
        border-radius: 6px;
    }

    /* Réduction de 20% de la taille des éléments internes */
    .feature-card i {
        font-size: 1.2rem; /* Réduit pour éviter qu'elle ne prenne trop de place */
        margin-bottom: 8px;
    }

    .feature-card h3 {
        font-size: 0.85rem; /* Titre réduit de 20% */
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 0.75rem; /* Texte réduit de 20% pour plus de clarté */
        line-height: 1.2;
    }

    .feature-card .red-line {
        width: 20px; /* Barre rouge réduite proportionnellement */
        margin-bottom: 8px;
    }
}
/* --- Optimisation Mobile --- */
@media (max-width: 768px) {
    /* 1. Force toutes les sections à prendre 100% de la largeur */
    .expertise-container, 
    .engagement-container, 
    .values-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }

    /* 2. Hero Section : Empiler le contenu */
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image-wrapper {
        clip-path: none; /* Supprime le découpage sur mobile */
        height: 250px;
        width: 100%;
    }

    /* 3. Expertise : Passer en 1 colonne */
    .expertise-container {
        flex-direction: column;
    }
    .expertise-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        width: 100%;
    }

    /* 4. Engagement : Empiler le contenu */
    .engagement-container {
        flex-direction: column;
        padding: 20px;
        background-image: none; /* Plus lisible sans image de fond sur mobile */
    }
    .engagement-badges {
        flex-direction: column;
        gap: 15px;
    }

    /* 5. Values : Cartes en 1 colonne */
    .values-container {
        flex-direction: column;
        align-items: center;
    }
    .value-card {
        width: 90%; /* Occupe presque toute la largeur */
    }

    /* 6. Contact Section : Empiler les colonnes */
    .luxury-contact-container {
        display: flex;
        flex-direction: column;
    }
    .contact-map-column {
        height: 300px; /* Fixe une hauteur pour la map sur mobile */
        margin-top: 20px;
    }
}



@media (max-width: 768px) {
    /* 1. Passer la carte en mode vertical complet */
    .product-card-horizontal {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
        padding: 15px;
        box-sizing: border-box;
    }

    /* 2. S'assurer que les colonnes prennent toute la largeur */
    .product-gallery-column, 
    .product-info-column, 
    .product-action-column {
        width: 100% !important;
        flex: none;
        padding: 0;
        margin-bottom: 15px;
    }

    /* 3. Réduire la taille de l'image pour éviter qu'elle soit trop grande */
    .main-product-image img {
        max-height: 200px;
        object-fit: contain;
    }

    /* 4. Réduire les polices de 20% comme demandé */
    .product-title {
        font-size: 1.2rem !important;
    }

    .product-description, 
    .technical-specs-list, 
    .applications-bullet-list {
        font-size: 0.8rem !important;
    }

    /* 5. Adapter les boutons et blocs */
    .btn-quote-submit {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }

    .action-block {
        margin-bottom: 10px;
    }
}

/* --- Optimisation Mobile --- */
@media (max-width: 768px) {
    /* 1. Force toutes les sections à prendre 100% de la largeur */
    .expertise-container, 
    .engagement-container, 
    .values-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }

    /* 2. Hero Section : Empiler le contenu */
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image-wrapper {
        clip-path: none; /* Supprime le découpage sur mobile */
        height: 250px;
        width: 100%;
    }

    /* 3. Expertise : Passer en 1 colonne */
    .expertise-container {
        flex-direction: column;
    }
    .expertise-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        width: 100%;
    }

    /* 4. Engagement : Empiler le contenu */
    .engagement-container {
        flex-direction: column;
        padding: 20px;
        background-image: none; /* Plus lisible sans image de fond sur mobile */
    }
    .engagement-badges {
        flex-direction: column;
        gap: 15px;
    }

    /* 5. Values : Cartes en 1 colonne */
    .values-container {
        flex-direction: column;
        align-items: center;
    }
    .value-card {
        width: 90%; /* Occupe presque toute la largeur */
    }

    /* 6. Contact Section : Empiler les colonnes */
    .luxury-contact-container {
        display: flex;
        flex-direction: column;
    }
    .contact-map-column {
        height: 300px; /* Fixe une hauteur pour la map sur mobile */
        margin-top: 20px;
    }
}