/* ==========================================================================
   VARIABLES (Charte graphique BTP)
   ========================================================================== */
:root {
    --primary-color: #1a1a1a;    
    --secondary-color: #f59226;  
    --secondary-hover: #e07d15;  
    --accent-color: #c1eaae;     
    
    --text-main: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #EBECEF;         
    --bg-white: #F8F9FA;         
    
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* MODIFIÉ : Espacements beaucoup plus petits sur TÉLÉPHONE */
    --spacing-sm: 0.8rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
}

/* ==========================================================================
   RESET, BASE & FOND BRIQUE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-family: var(--font-stack); }

body { 
    font-family: var(--font-stack); 
    color: var(--text-main); 
    line-height: 1.5; /* Légèrement réduit pour gagner de la place */
    font-size: 15px; /* Un poil plus petit sur mobile */
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; 
    
    background-color: var(--bg-white);
    background-image: 
        linear-gradient(to right, rgba(248, 249, 250, 0.4) 0%, rgba(248, 249, 250, 0.95) 15%, rgba(248, 249, 250, 1) 50%, rgba(248, 249, 250, 0.95) 85%, rgba(248, 249, 250, 0.4) 100%),
        url("data:image/svg+xml,%3Csvg width='105' height='110' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%231a1a1a' fill-opacity='0.05'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: scroll; 
}

a, button, input, textarea, select { font-family: inherit; color: inherit; }

img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* MODIFIÉ : Tailles de titres réduites sur téléphone */
h1, h2, h3 { color: var(--primary-color); line-height: 1.2; margin-bottom: var(--spacing-sm); }
h1 { font-size: 1.8rem; font-weight: 800; }
h2 { font-size: 1.5rem; font-weight: 700; margin-top: var(--spacing-md); }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; }
p { margin-bottom: var(--spacing-sm); }

.bg-light-section { background-color: var(--bg-light); border-radius: 24px; position: relative; z-index: 2; }
.mt-2 { margin-top: var(--spacing-md); }
.center-action { text-align: center; }
.title-green { color: #38a169 !important; margin-top: 0 !important; margin-bottom: 0 !important; }

/* ==========================================================================
   ANIMATIONS "SMOOTH" 
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
footer.reveal { transform: translateY(0); transition: opacity 0.8s ease; }

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn-primary, .btn-secondary { display: inline-block; padding: 10px 20px; font-size: 0.95rem; border-radius: 6px; text-decoration: none !important; font-weight: 600; text-align: center; transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; cursor: pointer; border: none; }
.btn-primary, .btn-primary:visited, .btn-primary:link { background-color: var(--secondary-color); color: #fff; }
.btn-primary:hover { background-color: var(--secondary-hover); transform: translateY(-2px); color: #fff; }
.btn-secondary, .btn-secondary:visited, .btn-secondary:link { background-color: var(--bg-white); color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: #fff; }
.btn-full { width: 100%; }

section { padding: var(--spacing-lg) 15px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ==========================================================================
   HEADER & MENU MOBILE DESIGN
   ========================================================================== */
header { background-color: var(--bg-white); border-bottom: 1px solid #E2E8F0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; max-width: 1200px; margin: 0 auto; }
.logo-link { display: block; z-index: 900; position: relative; } 
.logo-header { max-height: 45px; width: auto; object-fit: contain; border-radius: 0; }
.nav-desktop { display: none; }
nav a, nav a:visited, nav a:link { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 1.1rem; transition: color 0.3s ease; padding: 5px 10px; }
nav a:hover { color: var(--secondary-color); }

/* Modification du burger */
.burger-menu { display: flex; flex-direction: column; justify-content: space-between; width: 25px; height: 18px; background: transparent; border: none; cursor: pointer; z-index: 1001; position: relative; }
.burger-menu .bar { width: 100%; height: 3px; background-color: var(--primary-color); border-radius: 10px; transition: all 0.3s ease; }
.burger-menu.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background-color: var(--primary-color); }
.burger-menu.active .bar:nth-child(2) { opacity: 0; }
.burger-menu.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background-color: var(--primary-color); }

/* Menu Mobile Blanc et Centré */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: var(--bg-white); padding: 80px 20px 30px 20px; display: flex; flex-direction: column; align-items: center; transition: right 0.3s ease; z-index: 1000; overflow-y: auto; }
.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 20px; padding: 0; width: 100%; }
.mobile-nav a, .mobile-nav a:visited { color: var(--text-main); font-size: 1.5rem; font-weight: 800; text-decoration: none; transition: color 0.3s; display: block; text-align: center; }
.mobile-nav a:hover { color: var(--secondary-color); }

.mobile-menu-contact { margin-top: auto; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; width: 80%; border-top: 2px solid #E2E8F0; text-align: center; }
.mobile-menu-contact p { margin: 0; font-size: 1.1rem; }
.mobile-menu-contact a, .mobile-menu-contact a:visited { font-size: 1rem; color: var(--text-light); font-weight: 600; display: block; margin-top: 5px; }
.mobile-menu-contact a:hover { color: var(--secondary-color); }

/* ==========================================================================
   HERO SECTION (AVEC LOGO)
   ========================================================================== */
#hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: var(--spacing-md); padding-bottom: 0; }
.hero-content { max-width: 900px; margin: 0 auto; width: 100%; }

.hero-logo-container { margin-bottom: 1rem; display: flex; justify-content: center; width: 100%; }
.hero-main-logo { width: 50%; max-width: 220px; height: auto; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.08)); border-radius: 0; }

.hero-subtitle { font-size: 1rem; color: var(--text-light); margin-bottom: 1.5rem; background: rgba(248, 249, 250, 0.8); display: inline-block; padding: 5px 10px; border-radius: 8px; }

.hero-contact-info { display: flex; flex-direction: column; gap: 8px; margin: 0 auto 1.5rem auto; padding: 15px; background-color: var(--bg-white); border: 1px solid #E2E8F0; border-top: 4px solid var(--secondary-color); border-radius: 12px; box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.05); }
.contact-item { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.95rem; }
.contact-item span { display: flex; align-items: center; font-size: 1.1rem; }
.contact-item a, .contact-item a:visited { color: var(--primary-color); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--secondary-color); }

.hero-image { width: 100%; margin-top: 1rem; }
/* Image d'accueil moins haute sur téléphone */
.hero-image img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px 12px 0 0; box-shadow: 0 -5px 20px rgba(0,0,0,0.05); }

/* ==========================================================================
   QUI SOMMES-NOUS
   ========================================================================== */
.about-full-width { max-width: 100%; background-color: #ffffff; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04); padding: var(--spacing-md) 15px; margin: var(--spacing-md) 0; border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; position: relative; z-index: 5; }
.about-layout { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--spacing-sm); }
.lead-text { font-size: 1.1rem; font-weight: 600; color: var(--secondary-color); margin-bottom: var(--spacing-sm); }
.about-quote { margin-top: var(--spacing-sm); padding: 15px; background-color: var(--accent-color); border-left: 4px solid var(--primary-color); border-radius: 8px; font-style: italic; font-weight: 600; font-size: 0.95rem; }
.about-quote p { margin: 0; }
.about-visuals { display: flex; flex-direction: column; align-items: center; width: 100%; margin-top: 15px; }
.about-images { display: flex; gap: 10px; justify-content: center; width: 100%; }
.about-logo { max-width: 120px; margin-top: 20px; opacity: 0.8; border-radius: 0; }
.team-member { flex: 1; max-width: 150px; text-align: center; margin: 0; display: flex; flex-direction: column; }
.team-img-wrapper { width: 100%; aspect-ratio: 1/1; overflow: hidden; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); border: 3px solid #EBECEF; margin-bottom: 10px; background-color: var(--bg-white); }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.team-member:hover img { transform: scale(1.05); }
.team-name { display: block; font-size: 1rem; font-weight: 800; color: var(--primary-color); }
.team-role { display: block; font-size: 0.75rem; color: var(--secondary-color); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: 2px; }

/* ==========================================================================
   SERVICES (Grille Mobile 2 colonnes)
   ========================================================================== */
.section-header-center { text-align: center; max-width: 800px; margin: 0 auto var(--spacing-md) auto; }
.services-grid-premium { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.service-badge { background: var(--bg-white); padding: 15px 10px; border-radius: 10px; border: 1px solid #E2E8F0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03); transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.service-badge:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); border-color: var(--accent-color); }
/* Textes centrés sous l'icône sur mobile pour gagner de la place */
.service-badge h3 { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; font-size: 0.95rem; margin-bottom: 5px; }
.service-badge p { font-size: 0.8rem; text-align: center; margin: 0; line-height: 1.3;}

/* ==========================================================================
   APERÇU CHANTIERS (Slider glissant horizontal sur mobile)
   ========================================================================== */
.section-header-between { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--spacing-md); align-items: center; }

.preview-grid { 
    display: flex; 
    overflow-x: auto; 
    gap: 15px; 
    padding-bottom: 15px; /* Laisse la place au scroll */
    scroll-snap-type: x mandatory; 
    -ms-overflow-style: none; /* Cache la barre sur IE */
    scrollbar-width: none; /* Cache la barre sur Firefox */
}
/* Cache la barre de défilement sur Chrome/Safari */
.preview-grid::-webkit-scrollbar { display: none; }

.portfolio-card-preview { 
    flex: 0 0 85%; /* La carte prend 85% de l'écran sur mobile */
    scroll-snap-align: center; /* Se cale au milieu lors du glissement */
    background: var(--bg-white); 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
    border: 1px solid #E2E8F0; 
    cursor: pointer; 
    transition: transform 0.3s ease; 
}
.portfolio-card-preview .image-wrapper { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-card-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.portfolio-card-preview:hover img { transform: scale(1.05); }
.portfolio-card-preview .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 26, 26, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.portfolio-card-preview:hover .overlay { opacity: 1; }
.portfolio-info { padding: 15px; border-top: 3px solid var(--secondary-color); }
.portfolio-info h3 { margin-bottom: 3px; font-size: 1.1rem; }
.portfolio-date { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* Styles Portfolio annexes (realisations.html) */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.portfolio-card { background: var(--bg-white); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #E2E8F0; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.portfolio-card .image-wrapper { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-card .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 26, 26, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.portfolio-card:hover .overlay { opacity: 1; }
.view-text { color: #fff; font-weight: bold; font-size: 1rem; border: 2px solid #fff; padding: 8px 15px; border-radius: 6px; }
.pagination-container { display: flex; justify-content: center; gap: 5px; margin-top: var(--spacing-md); }
.page-btn { padding: 8px 12px; border: 1px solid #CBD5E1; background: var(--bg-white); color: var(--primary-color); font-weight: bold; border-radius: 4px; cursor: pointer; transition: all 0.3s ease; }
.page-btn:hover, .page-btn.active { background: var(--secondary-color); color: #fff; border-color: var(--secondary-color); }

/* ==========================================================================
   CTA FINAL 
   ========================================================================== */
.cta-box { background: linear-gradient(135deg, var(--primary-color) 0%, #3a3a3a 100%); color: #fff; padding: 2rem 1.5rem; border-radius: 12px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -10%; width: 300px; height: 300px; background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%); opacity: 0.15; }
.cta-text { z-index: 1; }
.cta-text h2 { color: #fff; font-size: 1.5rem; margin-bottom: 5px; }
.cta-text p { font-size: 0.95rem; color: #d1d5db; max-width: 600px; margin: 0 auto; }
.cta-action { display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245, 146, 38, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(245, 146, 38, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 146, 38, 0); } }

/* ==========================================================================
   PAGE CONTACT
   ========================================================================== */
.page-header { text-align: center; background-color: var(--bg-white); padding: var(--spacing-md) 15px; border-radius: 8px; margin-bottom: var(--spacing-md); box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.contact-layout { display: flex; flex-direction: column; gap: 15px; }
.contact-info h2 { margin-bottom: 10px; font-size: 1.3rem; }
.info-block { margin-bottom: 10px; background-color: var(--bg-white); padding: 15px; border-radius: 8px; border-left: 4px solid var(--accent-color); box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.info-block h3 { margin-bottom: 3px; font-size: 1rem; }
.contact-link { color: var(--secondary-color); font-weight: 600; text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.text-small { font-size: 0.85rem; color: var(--text-light); margin-top: 3px; }
.contact-form-container { background-color: var(--bg-white); padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); border-top: 4px solid var(--secondary-color); }
.form-btp { max-width: 100%; margin: 0; }
.form-group { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
form { display: flex; flex-direction: column; gap: 10px; }
label { font-weight: 600; color: var(--primary-color); font-size: 0.9rem; }
input, textarea, select { width: 100%; padding: 10px; border: 1px solid #CBD5E1; border-radius: 4px; font-family: inherit; font-size: 0.95rem; background-color: var(--bg-white); transition: border-color 0.3s, box-shadow 0.3s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(245, 146, 38, 0.2); }
.rgpd-text { font-size: 0.75rem; color: var(--text-light); line-height: 1.3; margin-top: 5px; margin-bottom: 15px; }

/* ==========================================================================
   FENÊTRE MODALE
   ========================================================================== */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal.show { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-white); width: 95%; max-width: 900px; border-radius: 8px; padding: 15px; position: relative; max-height: 85vh; display: flex; flex-direction: column; }
.close-modal { position: absolute; top: -35px; right: 0; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
.modal-header { text-align: center; margin-bottom: 10px; }
.modal-header h3 { margin: 0; font-size: 1.2rem; }
.modal-date { color: var(--text-light); margin-top: 2px; font-size: 0.85rem;}
.modal-gallery { position: relative; flex-grow: 1; display: flex; align-items: center; justify-content: center; background: var(--bg-light); border-radius: 6px; overflow: hidden; min-height: 250px; }
.modal-gallery img { max-height: 50vh; width: auto; max-width: 100%; object-fit: contain; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(26, 26, 26, 0.8); color: #fff; border: none; font-size: 1.2rem; padding: 8px 12px; cursor: pointer; border-radius: 50%; transition: background 0.3s ease; }
.gallery-nav:hover { background: var(--secondary-color); }
#prev-btn { left: 5px; }
#next-btn { right: 5px; }
.image-counter { text-align: center; margin-top: 10px; font-weight: bold; font-size: 0.9rem; color: var(--text-light); }

/* ==========================================================================
   FOOTER COMPACT MOBILE (Grille 2 colonnes)
   ========================================================================== */
footer { background-color: var(--primary-color); color: #fff; padding: var(--spacing-md) 15px; margin-top: var(--spacing-lg); text-align: left; }
.footer-infos { 
    display: grid; 
    grid-template-columns: 1fr 1fr; /* 2 colonnes sur mobile */
    gap: 15px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* Le bloc Horaires (3ème enfant) passe en dessous sur toute la largeur */
.footer-infos > div:nth-child(3) {
    grid-column: span 2;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-infos h3 { color: var(--accent-color); margin-bottom: 5px; font-size: 1.1rem; }
.footer-infos p, .footer-infos address { font-size: 0.85rem; margin-bottom: 3px; line-height: 1.4; font-style: normal; }
.footer-infos a, .footer-infos a:visited { color: var(--bg-light); text-decoration: none; transition: color 0.3s ease; }
.footer-infos a:hover { color: var(--secondary-color); text-decoration: underline; }
.footer-infos ul { list-style: none; padding: 0; }
.footer-infos li { font-size: 0.85rem; margin-bottom: 5px; }
.footer-copyright { text-align: center; margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #a0a0a0; font-size: 0.8rem; }

.hidden-mobile { display: none; }
.visible-mobile { display: block; }

/* ==========================================================================
   MEDIA QUERIES (Tablettes & Desktop - On restaure les grandes tailles)
   ========================================================================== */
@media (min-width: 768px) {
    /* On restaure les grands espacements pour la version PC */
    :root {
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
    }

    body { font-size: 16px; line-height: 1.6; }
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.25rem; margin-bottom: 1rem; }
    
    .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 1rem; }

    .burger-menu { display: none; }
    .mobile-nav { display: none; }
    .nav-desktop { display: block; }
    
    .header-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 15px 30px; gap: 50px; }
    .nav-left { justify-self: end; }  
    .logo-link { justify-self: center; }
    .nav-right { justify-self: start; } 
    .logo-header { max-height: 85px; } 

    #hero { padding: var(--spacing-lg) 2rem 0 2rem; }
    .hero-main-logo { max-width: 450px; }
    .hero-subtitle { font-size: 1.25rem; max-width: 700px; margin: 0 auto 3rem auto; }
    .hero-contact-info { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 25px 40px; max-width: 1000px; }
    .contact-item { font-size: 1.05rem; }
    .contact-item span { font-size: 1.2rem; }
    
    .hero-image img { height: 550px; border-radius: 24px 24px 0 0; }

    .about-full-width { padding: var(--spacing-lg) 40px; }
    .about-layout { flex-direction: row; align-items: center; }
    .about-text { flex: 1; padding-right: 40px; } 
    .about-visuals { flex: 1; justify-content: center; margin-top: 0; }
    .team-member { max-width: 220px; }
    .team-img-wrapper { border-width: 4px; border-radius: 16px; margin-bottom: 15px; }
    .team-name { font-size: 1.2rem; }

    /* Grille PC parfaite en 3 colonnes pour tes 6 services */
    .services-grid-premium { grid-template-columns: repeat(3, 1fr); gap: 20px;}
    .service-badge { padding: 25px; border-radius: 12px; }
    .service-badge h3 { flex-direction: row; text-align: left; font-size: 1.2rem; margin-bottom: 10px; }
    .service-badge p { text-align: left; font-size: 1rem; }

    .section-header-between { flex-direction: row; justify-content: space-between; align-items: center; }
    
    /* PC : On désactive le slider pour remettre une belle grille 3 colonnes */
    .preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow-x: visible; }

    .hidden-mobile { display: inline-block; }
    .visible-mobile { display: none; }

    .cta-box { flex-direction: row; text-align: left; justify-content: space-between; padding: 4rem; border-radius: 20px; }
    .cta-text { flex: 1; padding-right: 2rem; }
    .cta-text h2 { font-size: 2rem; margin-bottom: 10px; }
    .cta-text p { font-size: 1.1rem; }
    .cta-action { flex-shrink: 0; }

    .contact-layout { flex-direction: row; align-items: flex-start; gap: var(--spacing-lg); }
    .contact-info { flex: 1; }
    .info-block { padding: 20px; margin-bottom: var(--spacing-md); }
    .info-block h3 { font-size: 1.1rem; }
    .contact-form-container { flex: 1; padding: 30px; border-radius: 12px; }
    .form-group { gap: 5px; margin-bottom: 15px; }
    label { font-size: 1rem; }
    input, textarea, select { padding: 12px; font-size: 1rem; border-radius: 6px; }

    /* Footer PC = Alignement horizontal */
    footer { padding: var(--spacing-lg) var(--spacing-sm); text-align: left; }
    .footer-infos { 
        display: flex; /* Retour en flexbox classique pour le PC */
        flex-direction: row; 
        justify-content: space-between; 
        gap: var(--spacing-md); 
    }
    /* On annule le passage en dessous du bloc Horaires pour le PC */
    .footer-infos > div:nth-child(3) {
        grid-column: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    .footer-infos h3 { font-size: 1.25rem; margin-bottom: 10px; }
    .footer-infos p, .footer-infos address, .footer-infos li { font-size: 1rem; margin-bottom: 5px; }
    .footer-copyright { font-size: 1rem; margin-top: var(--spacing-lg); padding-top: var(--spacing-sm); }
}