/* ============================================
   ARMOR DRONES SERVICES — CSS Global Premium
   Charte : Orange #FF7700 / Noir / Blanc
   Fonts : Raleway (titres) + Questrial (corps)
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
::selection { background: var(--primary); color: var(--white); }

/* --- VARIABLES --- */
:root {
    --primary: #FF7700;
    --primary-dark: #e56a00;
    --primary-light: #fff3e6;
    --dark: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-500: #6c757d;
    --white: #ffffff;
    --font-title: 'Raleway', sans-serif;
    --font-body: 'Questrial', sans-serif;
    --radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.15);
    --max-width: 1200px;
    --section-pad: clamp(4rem, 10vw, 7rem) clamp(1rem, 5vw, 4rem);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); margin-bottom: 1rem; letter-spacing: -0.01em; }
.section h2, .section-alt h2 { position: relative; padding-bottom: 0.75rem; }
.text-center h2::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--primary); margin: 0.75rem auto 0; border-radius: 2px;
}
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; max-width: 70ch; }
strong { font-weight: 600; }

/* --- LAYOUT --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.section { padding: var(--section-pad); }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--dark); color: rgba(255,255,255,0.9); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.text-center { text-align: center; }

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--primary); z-index: 1002;
    transform-origin: left; transform: scaleX(0);
    pointer-events: none;
}

/* --- HEADER / NAV --- */
.header {
    position: sticky; top: 0; z-index: 1001;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem clamp(1rem, 3vw, 2rem); max-width: var(--max-width); margin: 0 auto; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
    font-family: var(--font-title); font-weight: 600; font-size: 0.9rem;
    color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px;
    position: relative; padding: 0.3rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
    background: var(--primary); color: var(--white) !important;
    padding: 0.6rem 1.4rem; border-radius: var(--radius);
    font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,119,0,0.35); color: var(--white); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1004; background: none; border: none; padding: 0.5rem; position: relative; }
.burger span { width: 28px; height: 3px; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- HERO --- */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative; z-index: 2; max-width: 700px;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}
.hero h1 { color: var(--white); font-weight: 800; text-shadow: 0 2px 20px rgba(0,0,0,0.3); letter-spacing: -0.02em; }
.hero h1 span { color: var(--primary); text-shadow: 0 2px 30px rgba(255,119,0,0.3); }
.hero-sub {
    color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem; max-width: 550px;
}
.hero-badges {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.5rem 1.2rem; border-radius: 50px;
    color: white; font-size: 0.85rem; font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-badge:hover { background: rgba(255,119,0,0.2); border-color: rgba(255,119,0,0.4); }
.hero-badge svg { width: 18px; height: 18px; fill: var(--primary); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: var(--radius);
    font-family: var(--font-title); font-weight: 700; font-size: 1rem;
    cursor: pointer; border: none; text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); box-shadow: 0 4px 15px rgba(255,119,0,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,119,0,0.45); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { box-shadow: var(--shadow-md); color: var(--white); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* --- TRUST STRIP --- */
.trust-strip {
    display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3rem);
    padding: 2rem 2rem; background: var(--dark); flex-wrap: wrap;
    border-bottom: 3px solid var(--primary);
}
.trust-item { text-align: center; min-width: 120px; }
.trust-number {
    display: block; font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #ffaa44 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.5px; }
.trust-badge-img { height: 40px; width: auto; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.8; }

/* --- CARDS / GRID --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--gray-500); font-size: 0.95rem; }
.card-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: 0.8rem;
    transition: gap 0.3s ease, color 0.3s ease;
}
.card-link:hover { gap: 0.8rem; color: var(--primary-dark); }
.card-icon {
    width: 56px; height: 56px; background: var(--primary-light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}
.card:hover .card-icon { background: var(--primary); transform: scale(1.1); }
.card-icon svg { width: 28px; height: 28px; fill: var(--primary); transition: fill 0.3s ease; }
.card:hover .card-icon svg { fill: var(--white); }

/* --- AVIS / REVIEWS --- */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.5rem; }
.avis-card {
    background: var(--white); border-radius: var(--radius); padding: 1.8rem;
    border-left: 4px solid var(--primary); box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.avis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.avis-stars { color: #f4b400; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.avis-text { font-style: italic; color: #444; line-height: 1.6; margin-bottom: 1rem; }
.avis-author { font-weight: 600; color: var(--dark); }
.avis-meta { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.3rem; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 1.2rem 0; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: var(--font-title); font-weight: 600;
    font-size: 1.05rem; color: var(--dark); gap: 1rem;
    transition: color 0.2s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; padding-top: 1rem; }
.faq-answer p { color: var(--gray-500); }

/* --- CTA BANNER --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 4rem);
    text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; }

/* --- BREADCRUMB --- */
.breadcrumb {
    padding: 1rem 0; font-size: 0.85rem; color: var(--gray-500);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--gray-500); }

/* --- ZONES / MAP --- */
.zones-list { columns: 2; gap: 1.5rem; }
.zones-list li { padding: 0.4rem 0; break-inside: avoid; display: flex; align-items: center; gap: 0.5rem; }
.zones-list li::before { content: '📍'; font-size: 0.9rem; }

/* --- GALLERY BEFORE/AFTER --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.5rem; }
.gallery-item {
    border-radius: var(--radius); overflow: hidden; position: relative;
    box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white; padding: 2rem 1.2rem 1.2rem; font-size: 0.9rem;
    font-weight: 600; transform: translateY(10px); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

/* --- FOOTER --- */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #111 100%);
    color: rgba(255,255,255,0.8); padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 4rem) 1.5rem;
    border-top: 3px solid var(--primary);
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: var(--max-width); margin: 0 auto; }
.footer h4 { color: var(--white); font-family: var(--font-title); margin-bottom: 1rem; font-size: 1rem; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: block; padding: 0.25rem 0; transition: color 0.2s ease; }
.footer a:hover { color: var(--primary); }
.footer-logo img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; transition: background 0.3s ease;
}
.footer-socials a:hover { background: var(--primary); }
.footer-socials svg { width: 18px; height: 18px; fill: white; }
.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    max-width: var(--max-width); margin-left: auto; margin-right: auto;
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.footer-bar a { display: inline; padding: 0; font-size: 0.82rem; }
.footer-tel { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 700; font-size: 1.05rem; }
.footer-tel svg { width: 18px; height: 18px; fill: var(--primary); }

/* --- MOBILE CTA FIXED --- */
.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--primary); text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    color: var(--white); font-weight: 700; font-size: 1rem; padding: 1rem;
}
.mobile-cta svg { width: 20px; height: 20px; fill: white; }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark); color: rgba(255,255,255,0.9);
    padding: 1rem 2rem; display: flex; align-items: center;
    justify-content: space-between; z-index: 9999; gap: 1rem;
    font-size: 0.88rem; flex-wrap: wrap;
}
.cookie-banner a { color: var(--primary); }
.cookie-btn {
    background: var(--primary); color: white; border: none;
    padding: 0.5rem 1.2rem; border-radius: 6px; cursor: pointer;
    font-weight: 700; white-space: nowrap;
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- PAGE INNER HERO --- */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 60%, #1f1a14 100%);
    padding: clamp(5rem, 12vw, 8rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 6vw, 4rem);
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.page-hero .breadcrumb { padding: 0 0 1.5rem; }
.page-hero .breadcrumb a { color: var(--primary); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.6); }

/* --- TWO COLUMNS LAYOUT --- */
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.two-cols img {
    border-radius: var(--radius); width: 100%; max-height: 450px; object-fit: cover;
    box-shadow: var(--shadow-md); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.two-cols img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* --- TARIFS --- */
.tarif-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.tarif-table th { background: var(--dark); color: white; padding: 1rem; text-align: left; font-family: var(--font-title); }
.tarif-table td { padding: 1rem; border-bottom: 1px solid var(--gray-200); }
.tarif-table tr:hover td { background: var(--primary-light); }
.tarif-price { font-weight: 800; color: var(--primary); font-size: 1.1rem; }

/* --- TARIF CARDS (page tarifs) --- */
.tarif-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 1.2rem; }
.tarif-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 1.5rem; transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow);
}
.tarif-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tarif-card-header { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.tarif-card-header h3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; margin: 0; color: var(--dark); }
.tarif-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* --- CONTACT FORM --- */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--gray-200);
    border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- BLOG ARTICLE --- */
.blog-hero {
    position: relative; min-height: 55vh; display: flex; align-items: flex-end;
    background-size: cover; background-position: center; overflow: hidden;
}
.blog-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
}
.blog-hero-content {
    position: relative; z-index: 2; max-width: var(--max-width);
    margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
    width: 100%;
}
.blog-hero h1 {
    color: var(--white); font-weight: 800; font-size: clamp(1.8rem, 4vw, 3rem);
    max-width: 800px; text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.blog-hero-sub {
    color: rgba(255,255,255,0.85); font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 650px; margin-top: 1rem;
}
.blog-hero .breadcrumb { padding: 0 0 1rem; }
.blog-hero .breadcrumb a { color: var(--primary); }
.blog-hero .breadcrumb span { color: rgba(255,255,255,0.6); }

.article-content {
    max-width: 780px; margin: 0 auto;
    font-size: 1.05rem; line-height: 1.85; color: #333;
}
.article-content h2 {
    margin-top: 3rem; margin-bottom: 1.2rem;
    padding-bottom: 0.6rem; border-bottom: 2px solid var(--primary-light);
}
.article-content h3 { margin-top: 2rem; color: var(--dark); }
.article-content p { color: #444; margin-bottom: 1.3rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.5rem 1.5rem; color: #444; }
.article-content li { margin-bottom: 0.6rem; line-height: 1.8; }
.article-content li::marker { color: var(--primary); }
.article-content strong { color: var(--dark); }

.article-meta {
    display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
    padding: 1.5rem 0; border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2.5rem; font-size: 0.9rem; color: var(--gray-500);
}
.article-meta-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-title); font-weight: 800; font-size: 1.2rem;
    flex-shrink: 0;
}
.article-meta-info { display: flex; flex-direction: column; gap: 0.15rem; }
.article-meta-info strong { color: var(--dark); font-size: 0.95rem; }
.article-meta-info span { font-size: 0.82rem; color: var(--gray-500); }

.article-summary {
    background: var(--primary-light); border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem; border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2.5rem 0; font-size: 1rem;
}
.article-summary p { margin-bottom: 0; color: var(--dark); }

.article-img {
    width: 100%; border-radius: var(--radius); margin: 2.5rem 0;
    box-shadow: var(--shadow-md); aspect-ratio: 16/9; object-fit: cover;
}
.article-img-caption {
    text-align: center; font-size: 0.82rem; color: var(--gray-500);
    margin-top: -1.5rem; margin-bottom: 2rem; font-style: italic;
}

.article-highlight {
    background: var(--gray-100); border-radius: var(--radius);
    padding: 2rem 2.5rem; margin: 2.5rem 0;
    border: 1px solid var(--gray-200);
}
.article-highlight h3 { margin-top: 0; color: var(--primary-dark); font-size: 1.15rem; }

.article-tags {
    display: flex; gap: 0.6rem; flex-wrap: wrap;
    margin: 3rem 0 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200);
}
.article-tag {
    background: var(--gray-100); color: var(--gray-500);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; font-family: var(--font-title);
}

.article-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    margin: 3rem 0; padding-top: 2rem; border-top: 2px solid var(--gray-200);
}
.article-nav-link {
    display: flex; flex-direction: column; gap: 0.3rem;
    padding: 1.2rem 1.5rem; border-radius: var(--radius);
    background: var(--gray-100); text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.article-nav-link:hover { background: var(--primary-light); transform: translateY(-3px); }
.article-nav-link small { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.article-nav-link span { font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; color: var(--dark); }

/* --- PAGES LOCALES — Hero vidéo --- */
.local-hero {
    position: relative; min-height: 70vh; display: flex; align-items: center;
    justify-content: center; text-align: center; overflow: hidden;
}
.local-hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.local-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.6) 100%);
}
.local-hero-content {
    position: relative; z-index: 2;
    max-width: 800px; padding: clamp(2rem, 5vw, 4rem);
}
.local-hero h1 { color: var(--white); font-weight: 800; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.local-hero h1 span { color: var(--primary); }
.local-hero-sub {
    color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.local-hero .breadcrumb { padding: 0 0 1.5rem; }
.local-hero .breadcrumb a { color: var(--primary); }
.local-hero .breadcrumb span { color: rgba(255,255,255,0.5); }
.local-hero .btn { margin-top: 0.5rem; }

/* --- PAGES LOCALES — Intro texte + image --- */
.local-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
}
.local-intro-text p { color: #444; }
.local-intro-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.local-intro-media img, .local-intro-media video {
    width: 100%; display: block; border-radius: var(--radius);
}

/* --- PAGES LOCALES — Prestations --- */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.service-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); padding: 2rem 2.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 0; line-height: 1.7; }

/* --- PAGES LOCALES — Communes desservies --- */
.communes-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.commune-item {
    background: var(--white); border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.4rem 1.8rem; box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.commune-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.commune-item strong {
    display: block; font-family: var(--font-title); font-size: 1.1rem;
    color: var(--dark); margin-bottom: 0.3rem;
}
.commune-item span { font-size: 0.88rem; color: var(--gray-500); line-height: 1.5; }

/* --- PAGES LOCALES — Tarifs (version div) --- */
.tarifs-table {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-md); overflow: hidden; margin: 2rem 0;
    border: 1px solid rgba(0,0,0,0.04);
}
.tarifs-table-header {
    background: var(--dark); color: var(--white); padding: 1.2rem 1.8rem;
    font-family: var(--font-title); font-weight: 700; font-size: 1.05rem;
}
.tarif-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 1.8rem; border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s ease; gap: 1rem;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row:hover { background: var(--primary-light); }
.tarif-prix {
    font-weight: 800; color: var(--primary); font-size: 1.15rem;
    white-space: nowrap; font-family: var(--font-title);
}
.tarif-note { font-size: 0.9rem; color: var(--gray-500); margin-top: 1.5rem; }

/* --- PAGES LOCALES — Témoignage --- */
.testimonial-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-md); border-left: 5px solid var(--primary);
    padding: 2.5rem 3rem; max-width: 800px; margin: 0 auto;
    position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: -10px; left: 20px;
    font-size: 6rem; color: var(--primary); opacity: 0.15;
    font-family: Georgia, serif; line-height: 1;
}
.testimonial-card blockquote { margin: 0; }
.testimonial-card blockquote p {
    font-style: italic; color: #444; line-height: 1.8;
    font-size: 1.1rem; margin-bottom: 1.2rem;
}
.testimonial-author {
    font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem;
}
.testimonial-author strong { color: var(--dark); font-size: 1rem; }
.testimonial-author span { color: var(--gray-500); }
.testimonial-stars {
    color: #f4b400; font-size: 1.2rem; letter-spacing: 2px;
    margin-bottom: 1rem; display: block;
}

/* --- PAGES LOCALES — CTA --- */
.cta-section { padding: 0; }
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius); padding: clamp(3rem, 8vw, 5rem);
    text-align: center; color: var(--white); margin: 0 auto;
    max-width: var(--max-width); position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-box h2 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.cta-box p { color: rgba(255,255,255,0.9); max-width: 550px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.2rem; border-radius: var(--radius);
    font-family: var(--font-title); font-weight: 700; font-size: 1rem;
    background: transparent; color: var(--white); border: 2px solid var(--white);
    cursor: pointer; text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-secondary:hover {
    background: var(--white); color: var(--dark);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- PAGES LOCALES — Vidéo showcase --- */
.video-showcase {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); max-width: 900px; margin: 0 auto;
}
.video-showcase video {
    width: 100%; display: block; border-radius: var(--radius);
}

/* --- PAGES LOCALES — Liens vers autres villes --- */
.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.link-card {
    display: flex; align-items: center; justify-content: center;
    background: var(--dark); color: rgba(255,255,255,0.9);
    padding: 1.5rem 1.8rem; border-radius: var(--radius);
    font-family: var(--font-title); font-weight: 600; font-size: 1rem;
    text-decoration: none; text-align: center; min-height: 70px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.link-card:hover {
    background: var(--primary); color: var(--white);
    transform: translateY(-4px); box-shadow: 0 8px 25px rgba(255,119,0,0.3);
}

/* --- PAGES LOCALES — FAQ (details/summary) --- */
.faq-list { max-width: 800px; margin: 0 auto; }
details.faq-item {
    border-bottom: 1px solid var(--gray-200); padding: 0;
    transition: background 0.2s ease;
}
details.faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: var(--font-title); font-weight: 600;
    font-size: 1.1rem; color: var(--dark); gap: 1rem;
    padding: 1.4rem 0; list-style: none;
    transition: color 0.2s ease;
}
details.faq-item summary:hover { color: var(--primary); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
    content: '+'; font-size: 1.5rem; color: var(--primary);
    transition: transform 0.3s ease; flex-shrink: 0;
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-light); border-radius: 50%;
}
details.faq-item[open] summary::after { content: '−'; background: var(--primary); color: var(--white); }
details.faq-item > p, details.faq-item > div {
    padding: 0 0 1.4rem; color: var(--gray-500); line-height: 1.8;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .avantages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .communes-grid { grid-template-columns: repeat(2, 1fr); }
    .local-intro { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw; height: 100vh; height: 100dvh;
        background: #ffffff !important;
        flex-direction: column; justify-content: center;
        align-items: center; gap: 0; z-index: 1003;
        padding: 5rem 2rem 2rem;
        -webkit-backdrop-filter: none; backdrop-filter: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.4rem; padding: 1.2rem 0; width: 100%; text-align: center; border-bottom: 1px solid var(--gray-200); color: var(--dark); }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a:hover, .nav-links a:active { color: var(--primary); }
    .nav-links .nav-cta { margin-top: 1.5rem; padding: 1rem 2rem; width: auto; border-bottom: none; border-radius: var(--radius); color: #fff; }
    .burger { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .avantages-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .article-nav-next { text-align: left; }
    .two-cols { grid-template-columns: 1fr; }
    .hero { min-height: 85vh; background-attachment: scroll; }
    .local-hero { min-height: 60vh; }
    .footer-grid { grid-template-columns: 1fr; }
    .zones-list { columns: 1; }
    .mobile-cta { display: block; }
    body { padding-bottom: 56px; }
    .footer-bar { flex-direction: column; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .communes-grid { grid-template-columns: 1fr; }
    .link-cards { grid-template-columns: 1fr; }
    .tarif-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1.2rem 1.5rem; }
    .testimonial-card { padding: 1.8rem; }
    .testimonial-card::before { font-size: 4rem; top: -5px; left: 10px; }
    .cta-box { margin: 0 1rem; border-radius: var(--radius); padding: clamp(2rem, 6vw, 3rem); }
    .blog-hero { min-height: 40vh; }
    .blog-hero h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .article-content { font-size: 1rem; }
    .article-highlight { padding: 1.5rem; }
    .article-nav { grid-template-columns: 1fr; }
    .article-img { margin: 1.5rem 0; }
}

@media (max-width: 480px) {
    .trust-strip { gap: 1rem; padding: 1.2rem 1rem; }
    .trust-item { min-width: 80px; }
    .hero-badges { flex-direction: column; }
    .avis-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-content .btn, .local-hero-content .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn, .cta-buttons .btn-secondary { width: 100%; justify-content: center; text-align: center; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-btn { width: 100%; }
}

/* --- FORM ROW --- */
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* --- ARTICLE NAV NEXT --- */
.article-nav-next { text-align: right; }

/* --- TOUCH TARGETS & TABLES --- */
.btn-sm { min-height: 44px; }
.burger { min-width: 44px; min-height: 44px; z-index: 1004; }
.cookie-btn { min-height: 44px; min-width: 44px; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-responsive .tarif-table { min-width: 500px; }

@media (max-width: 768px) {
    .tarif-table { border: none; }
    .tarif-table thead { display: none; }
    .tarif-table tr {
        display: block; margin-bottom: 1rem; background: var(--white);
        border: 1px solid var(--gray-200); border-radius: var(--radius);
        box-shadow: var(--shadow); overflow: hidden;
    }
    .tarif-table td {
        display: flex; justify-content: space-between; align-items: baseline;
        gap: 1rem; padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--gray-100);
        text-align: right;
    }
    .tarif-table td::before {
        content: attr(data-label);
        font-weight: 700; font-family: var(--font-title); text-align: left;
        color: var(--dark); flex-shrink: 0; font-size: 0.9rem;
    }
    .tarif-table td:first-child {
        background: var(--dark); color: var(--white); font-weight: 700;
        font-family: var(--font-title); display: block; text-align: left;
        padding: 0.8rem 1.2rem;
    }
    .tarif-table td:first-child::before { display: none; }
    .tarif-table td:last-child { border-bottom: none; }
    .tarif-table .tarif-price { font-size: 1rem; }
}
