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

:root {
    --primary: #c0392b;
    --primary-dark: #a93226;
    --secondary: #2c3e50;
    --secondary-dark: #1a252f;
    --accent: #e67e22;
    --accent-dark: #d35400;
    --bg: #f8f9fa;
    --bg-white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 70px;
}

.header .logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}
.header .logo a span { color: var(--primary); }

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

.nav-links a {
    color: var(--secondary);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: rgba(192,57,43,0.06); }

.nav-links .btn-urgence {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
}
.nav-links .btn-urgence:hover { background: var(--primary-dark); }

.header-logo-img {
    height: 40px;
    width: auto;
    margin-left: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,126,34,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; text-align: center; }

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 130px;
}
.hero-stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-stat .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192,57,43,0.3);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.hero .btn-outline,
.section-dark .btn-outline,
.urgence-banner .btn-outline {
    color: #fff;
    border-color: #fff;
}
.hero .btn-outline:hover,
.section-dark .btn-outline:hover,
.urgence-banner .btn-outline:hover {
    background: #fff;
    color: var(--secondary);
}

/* ===== SECTIONS ===== */
section { padding: 70px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
}
.section-dark .section-title h2 { color: #fff; }
.section-dark .section-title p { color: rgba(255,255,255,0.8); }

/* ===== FEATURES / AVANTAGES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}
.feature-icon.yellow { background: rgba(241,196,15,0.15); color: #f1c40f; }
.feature-icon.blue { background: rgba(52,152,219,0.15); color: #3498db; }
.feature-icon.green { background: rgba(46,204,113,0.15); color: #2ecc71; }
.feature-icon.red { background: rgba(192,57,43,0.15); color: var(--primary); }

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 12px; flex-grow: 1; }

.service-card .price {
    display: inline-block;
    background: rgba(192,57,43,0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.service-card .service-link:hover { color: var(--primary-dark); }

/* ===== WHY CHOOSE ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.reason-card {
    padding: 25px;
}
.reason-card .reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 10px;
}
.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.section-dark .reason-card h3 { color: #fff; }
.section-dark .reason-card p { color: rgba(255,255,255,0.8); }

/* ===== PROCESS ===== */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 25px 15px;
    position: relative;
}
.process-step .step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(192,57,43,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.6rem;
    color: var(--primary);
}
.process-step .step-number {
    position: absolute;
    top: 15px;
    right: calc(50% - 45px);
    background: var(--primary);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step h3 { font-size: 1rem; color: var(--secondary); margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* ===== ZONES / AREAS ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.area-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.area-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.area-card .area-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.area-card .area-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.areas-link-all {
    text-align: center;
    margin-top: 30px;
}

/* ===== FORM ===== */
.form-section { background: var(--bg); }

.form-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow: visible;
}

.form-group {
    position: relative;
    overflow: visible;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary);
    font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    flex-shrink: 0;
}
.form-checkbox label {
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--text-light);
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 25px;
}

.form-submit .btn {
    min-width: 250px;
    padding: 16px 40px;
    font-size: 1.05rem;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ===== AUTOCOMPLETE ===== */
.autocomplete-wrapper {
    position: relative;
    overflow: visible;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: none;
}
.autocomplete-results.active { display: block; }

.autocomplete-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover,
.autocomplete-item.selected {
    background: rgba(192,57,43,0.08);
    color: var(--primary);
}
.autocomplete-item .canton-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.testimonial-card .stars {
    color: #f1c40f;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.testimonial-card .quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.testimonial-card .author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}
.testimonial-card .location {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-item.active .faq-question::after { content: '-'; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-content {
    padding: 0 25px 18px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== URGENCE BANNER ===== */
.urgence-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}
.urgence-banner h2 { font-size: 1.8rem; margin-bottom: 15px; }
.urgence-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 20px; }
.urgence-banner .btn-accent { font-size: 1.1rem; padding: 16px 40px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--bg-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.88rem;
}
.breadcrumb-list a { color: var(--text-light); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .separator { color: var(--text-muted); margin: 0 3px; }
.breadcrumb-list .current { color: var(--primary); font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer ul li { margin-bottom: 8px; }
.footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    transition: var(--transition);
}
.footer ul li a:hover { color: #fff; padding-left: 5px; }

.footer p { font-size: 0.92rem; line-height: 1.7; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin: 0 10px; }
.footer-bottom a:hover { color: #fff; }

/* ===== ZONES INTERVENTION PAGE ===== */
.canton-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.canton-section h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}
.canton-section .canton-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.canton-section .villes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.canton-section .villes-list a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(192,57,43,0.06);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}
.canton-section .villes-list a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== SERVICE PAGE ===== */
.service-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.service-hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
.service-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

.service-content { padding: 60px 0; }
.service-content h2 { font-size: 1.6rem; color: var(--secondary); margin-bottom: 20px; }
.service-content p { margin-bottom: 15px; color: var(--text-light); line-height: 1.8; }
.service-content ul { margin: 15px 0 25px 0; }
.service-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}
.service-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.tarif-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}
.tarif-card:hover { border-color: var(--primary); }
.tarif-card h3 { font-size: 1rem; color: var(--secondary); margin-bottom: 10px; }
.tarif-card .tarif-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}
.tarif-card .tarif-unit { font-size: 0.85rem; color: var(--text-muted); }

/* ===== CANTON PAGE ===== */
.canton-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.canton-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.canton-hero p { font-size: 1.1rem; opacity: 0.9; }

.canton-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 700px;
}
.canton-info-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.canton-info-card .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}
.canton-info-card .label { font-size: 0.9rem; opacity: 0.9; }

.communes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}
.communes-grid a {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(192,57,43,0.06);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(192,57,43,0.15);
}
.communes-grid a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192,57,43,0.2);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}
.legal-content h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
}
.legal-content h2 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 30px 0 15px;
}
.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-content {
    text-align: center;
    padding: 100px 20px;
}
.confirmation-content .check-icon {
    width: 80px;
    height: 80px;
    background: rgba(46,204,113,0.15);
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}
.confirmation-content h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.confirmation-content p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 30px; }

/* ===== 404 PAGE ===== */
.error-content {
    text-align: center;
    padding: 100px 20px;
}
.error-content .error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}
.error-content h1 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 15px; }
.error-content p { color: var(--text-light); margin-bottom: 30px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        gap: 5px;
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 15px; width: 100%; }

    .header-logo-img { height: 30px; }

    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 1.8rem; }
    .hero .subtitle { font-size: 1rem; }
    .hero-stats { gap: 10px; }
    .hero-stat { min-width: 100px; padding: 10px 12px; }
    .hero-stat .number { font-size: 1.3rem; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    section { padding: 40px 0; }
    .section-title h2 { font-size: 1.5rem; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .services-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .tarifs-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; }

    .form-grid { grid-template-columns: 1fr; }
    .form-container { padding: 25px; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .canton-info-grid { grid-template-columns: 1fr; }

    .service-hero h1 { font-size: 1.6rem; }
    .canton-hero h1 { font-size: 1.6rem; }

    .urgence-banner h2 { font-size: 1.4rem; }
    .legal-content h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; }
}
