@charset "UTF-8";
/* CSS Document */

/* ==========================================================================
   VARIABLES, ARCHITECTURE & CONFIGURATION COMPOSANTS (INSPIRÉ BOOTSTRAP)
   ========================================================================== */
:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --secondary: #1e293b;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --success: #16a34a;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--gray-100);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================================================
   STRUCTURES & GRILLES (GRID / FLEX / UTILITIES)
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1250px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    /*! margin-right: -0.75rem; */
    /*! margin-left: -0.75rem; */
    max-width: 1200px;
    justify-content: center;
}

.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 0.75rem; }
.col-md-6 { padding: 0 0.75rem; }
.col-md-4 { padding: 0 0.75rem; }

@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 31.333%; max-width: 31.333%; }
}

.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

/* Marges & Paddings */
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.g-3 { gap: 1rem; }
.g-4 { gap: 1.5rem; }

/* Typographie */
.h1, .h2, .h3, h1, h2, h3 { font-weight: 700; color: var(--dark); line-height: 1.2; }
.h1, h1 { font-size: 2.5rem; }
.h2, h2 { font-size: 2rem; }
.h3, h3 { font-size: 1.4rem; }
.text-muted { color: var(--gray-600); }
.text-white { color: var(--white) !important; }

/* ==========================================================================
   COMPOSANTS COMPLÈTS (HEADER, NAV, FOOTER, CARDS, BUTTONS)
   ========================================================================== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--dark);
    color: var(--white);
    font-size: 0.875rem;
}

.navbar {
    padding: 1rem 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Boutons Appel Obligatoires */
.btn-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white) !important;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 1.15rem;
    text-transform: uppercase;
}

.btn-emergency:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-emergency-bar {
    display: none;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    font-weight: bold;
    padding: 0.8rem;
    font-size: 1.2rem;
}

/* Menu Burger */
.burger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--dark);
}

/* Cartes Prestations (9 thèmes) */
.card-service {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fee2e2;
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('image01.png') center center/cover no-repeat;
    padding: 6rem 0;
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Responsive Tablettes / Smartphones */
@media (max-width: 992px) {
    .burger-menu { display: block; }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }
    .nav-menu.active { display: flex; }
    .top-bar { display: none !important; }
}

@media (max-width: 768px) {
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.6rem; }
    .hero-section { padding: 4rem 0; }
    .mobile-emergency-bar { display: block !important; }
    .header-desktop-btn { display: none !important; }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}