/* =========================================
   1. RESET & VARIABLES GLOBALES
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #0F172A; 
    --secondary-color: #F8FAFC; 
    --text-main: #334155; 
    --text-light: #FFFFFF;
    --accent-green: #059669; 
    --accent-green-hover: #047857;
    --accent-orange: #EA580C; 
    --card-bg: #FFFFFF;
    --border-color: #E2E8F0;
    --bg-light: #F1F5F9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
    --transition: all 0.3s ease-in-out;
}

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    color: var(--text-main); line-height: 1.65; background-color: var(--secondary-color); 
    scroll-behavior: smooth; overflow-x: hidden; 
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Conteneur élargi pour un affichage parfait en Full-HD */
.container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }

/* =========================================
   2. BOUTONS
========================================= */
.btn-primary, .btn-light {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-primary { background-color: var(--accent-green); color: var(--text-light) !important; border: none; box-shadow: var(--shadow-md); }
.btn-primary:hover { background-color: var(--accent-green-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-light { background-color: var(--text-light); color: var(--primary-color); border: 1px solid var(--border-color); }
.btn-light:hover { border-color: var(--accent-green); color: var(--accent-green); }

/* Bouton spécifique pour la liste d'attente (Orange) */
.btn-submit[style*="background-color: var(--accent-orange)"],
.btn-primary[style*="background-color: var(--accent-orange)"] {
    background-color: var(--accent-orange) !important;
}

/* =========================================
   3. EN-TÊTE & NAVIGATION
========================================= */
.navbar { background-color: rgba(255, 255, 255, 0.98); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--border-color); backdrop-filter: blur(10px); }
.navbar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo { font-size: 1.4rem; font-weight: 900; color: var(--primary-color); display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--accent-green); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.nav-links a:hover, .nav-links a.active { color: var(--accent-green); }

/* =========================================
   4. TYPOGRAPHIE & SECTIONS
========================================= */
.section-padding { padding: clamp(4rem, 8vw, 6rem) 0; }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--card-bg); }

.section-title { text-align: center; font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; color: var(--primary-color); margin-bottom: 1rem; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: #64748B; max-width: 800px; margin: 0 auto 3rem auto; line-height: 1.6; }

/* =========================================
   5. HERO SECTIONS (Format large 16:9)
========================================= */
.hero, .services-hero, .contact-hero, .boutique-hero { 
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(5rem, 10vw, 8rem) 5%; 
    text-align: center; 
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat; 
}

.hero { background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1597872200969-2b65d56bd16b?auto=format&fit=crop&w=1920&q=80'); border-bottom: 4px solid var(--accent-green); }
.services-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80'); border-bottom: 4px solid var(--accent-green); }
.boutique-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1555680202-c86f0e12f086?auto=format&fit=crop&w=1920&q=80'); border-bottom: 4px solid var(--accent-green); }
.contact-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1516841273335-e39b37888115?auto=format&fit=crop&w=1920&q=80'); border-bottom: 4px solid var(--accent-orange); }

.hero h1, .services-hero h1, .contact-hero h1, .boutique-hero h1 { color: #ffffff !important; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; margin-bottom: 1.5rem; }
.hero p, .services-hero p, .contact-hero p, .boutique-hero p { color: #cbd5e1 !important; font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 900px; margin: 0 auto 2.5rem auto; line-height: 1.6; }

/* =========================================
   6. GRILLES GLOBALES
========================================= */
.grid-2, .grid-3, .process-horizontal-grid, .footer-grid, .services-detail-grid, .tarifs-grid, .contact-layout, .form-grid {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .process-horizontal-grid { grid-template-columns: repeat(4, 1fr); }
    .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: flex-start; }
    .form-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* =========================================
   7. CARTES & DESIGN ELEMENTS
========================================= */
.card, .process-step, .detail-box { background: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.card:hover, .process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-green); }
.card-icon { width: 48px; height: 48px; color: var(--accent-green); margin-bottom: 1.5rem; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--primary-color); }
.card p { font-size: 0.95rem; color: var(--text-main); }

.process-step { align-items: center; text-align: center; }
.step-number { background: var(--accent-green); color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 1.5rem; }
.step-icon { width: 45px; height: 45px; color: var(--accent-green); margin-bottom: 1rem; }

/* =========================================
   8. AJOUT : STYLES PAGE CONTACT-PAUSE
========================================= */
.pause-banner {
    background: rgba(239, 108, 0, 0.08);
    border-left: 5px solid var(--accent-orange);
    padding: 2.5rem;
    border-radius: 0 16px 16px 0;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
}

.direct-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .direct-contact-wrapper { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

.direct-contact-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.direct-contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   9. FORMULAIRES & SIDEBAR
========================================= */
.form-container { background: white; padding: clamp(2rem, 5vw, 3rem); border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--primary-color); font-size: 0.95rem; }
input, select, textarea {
    width: 100%; padding: 14px; border: 1px solid #E2E8F0; border-radius: 8px;
    background: #F8FAFC; font-family: inherit; font-size: 1rem; transition: var(--transition);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent-green); background: white; box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1); }
.details-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.detail-box h3 { display: flex; align-items: center; gap: 10px; color: var(--primary-color); margin-bottom: 1.5rem; font-size: 1.2rem; }

/* =========================================
   10. FOOTER
========================================= */
.footer { background-color: var(--primary-color); color: #94A3B8; padding: 4rem 0 2rem 0; font-size: 0.9rem; border-top: 4px solid var(--accent-green); }
.footer h4 { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-divider { border: none; border-top: 1px solid #1E293B; margin: 2rem 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--text-light); }

/* =========================================
   11. MOBILE SPECIFICS
========================================= */
@media (max-width: 768px) {
    .navbar { position: relative; padding: 0.5rem 0; } 
    .navbar-content { flex-direction: column; text-align: center; }
    .nav-links { flex-direction: column; gap: 1rem; padding: 1rem 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero, .services-hero, .contact-hero, .boutique-hero { min-height: auto; padding: 4rem 5%; }
    .pause-banner { border-radius: 8px; }
}
