/* ========================================
   GUICHET AUTO - STYLES GLOBAUX
   Fichier unique pour tout le site
   ======================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* === ANIMATIONS === */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

@keyframes gaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gaSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   HEADER & NAVIGATION (commun à tout le site)
   ======================================== */

/* Urgence Banner */
.urgence-banner {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 0.75rem 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    animation: pulse 2s ease-in-out infinite;
}

.urgence-banner span {
    margin: 0 1rem;
}

/* Header */
header {
    background: #1e3a5f;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-name {
    letter-spacing: -0.5px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    display: inline-block;
}

.nav-link,
nav a {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
    display: block;
}

.nav-link:hover,
nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: #3b82f6;
    border-radius: 5px;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    z-index: 1001;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-section h4 {
    color: #1e3a5f;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.dropdown-section a {
    display: block;
    color: #4b5563;
    text-decoration: none;
    padding: 0.6rem 0.75rem;
    border-radius: 5px;
    transition: all 0.2s;
    font-size: 0.95rem;
    margin: 0;
}

.dropdown-section a:hover {
    background: #eff6ff;
    color: #3b82f6;
    padding-left: 1rem;
}

/* Menu Burger */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ========================================
   BOUTONS GLOBAUX
   ======================================== */

.btn-primary {
    background: #3b82f6;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
    font-weight: 600;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #1e3a5f;
    padding: 1rem 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* ========================================
   BREADCRUMB (pages service uniquement)
   ======================================== */

.breadcrumb {
    background: #f9fafb;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 0.85rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ========================================
   HOMEPAGE - HERO SECTION
   ======================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(44, 82, 130, 0.95) 100%);
    color: white;
    padding: 5rem 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3a5f" width="1200" height="600"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-reassurance {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-reassurance span {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.badge-urgence {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-horaires {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 1rem;
}

/* ========================================
   PAGES SERVICE - HERO SECTION
   ======================================== */

.service-hero {
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    padding: 3rem 24px;
    border-bottom: 1px solid #e5e7eb;
}

.service-hero-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-lead {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
}

.service-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.service-meta-item strong {
    color: #1e3a5f;
    font-weight: 600;
}

.service-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Quick Info Bar (pages service) */
.quick-info {
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 24px;
}

.quick-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.quick-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-info-text h4 {
    font-size: 0.9rem;
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.quick-info-text p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ========================================
   HOMEPAGE - SECTIONS
   ======================================== */

/* Trust Bar */
.trust-bar {
    background: #f9fafb;
    padding: 2rem 20px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
    display: block;
}

.trust-label {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Container générique */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e3a5f;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Steps */
.process-bg {
    background: #f9fafb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* SEO Content */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    color: #4b5563;
    line-height: 1.8;
}

.seo-content h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seo-content h3 {
    color: #1e3a5f;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.seo-content p {
    margin-bottom: 1rem;
}

.seo-content strong {
    color: #1e3a5f;
}

.seo-content ul {
    margin: 1rem 0 1rem 2rem;
}

.seo-content li {
    margin: 0.5rem 0;
}

/* Tarification */
.tarification-bg {
    background: #f9fafb;
}

.tarif-box {
    background: white;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.tarif-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tarif-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Garanties */
.garanties-list {
    max-width: 700px;
    margin: 0 auto;
}

.garanties-list ul {
    list-style: none;
}

.garanties-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.garanties-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.3rem;
}

/* FAQ */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f9fafb;
    padding: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
}

.faq-answer {
    padding: 1.5rem;
    color: #6b7280;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: '−';
}

/* ========================================
   PAGES SERVICE - LAYOUT & CONTENT
   ======================================== */

/* Main Content Layout */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 24px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

/* Article Content */
.article {
    max-width: 800px;
}

.article h2 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.article h2:first-child {
    margin-top: 0;
}

.article h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article p {
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article ul, .article ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article strong {
    color: #1e3a5f;
    font-weight: 600;
}

/* Info Boxes */
.info-box {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 6px 6px 0;
}

.info-box strong {
    color: #1e40af;
}

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 6px 6px 0;
}

.warning-box strong {
    color: #d97706;
}

.success-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 6px 6px 0;
}

.success-box strong {
    color: #047857;
}

/* Document Cards */
.doc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.doc-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.doc-card h4 {
    font-size: 1rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.doc-card ul {
    margin: 0;
    padding-left: 1.25rem;
}

.doc-card li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Process Inline (pages service) */
.process-inline {
    margin: 2rem 0;
}

.step-inline {
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 6px 6px 0;
    display: flex;
    gap: 1rem;
}

.step-number-inline {
    background: #3b82f6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.step-content-inline h4 {
    color: #1e3a5f;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content-inline p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 0.9rem;
    color: #6b7280;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.sidebar-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.sidebar-cta {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    justify-content: center;
}

.sidebar-note {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

/* ========================================
   FOOTER (commun à tout le site)
   ======================================== */

footer {
    background: #1e3a5f;
    color: white;
    padding: 3rem 20px 1rem;
    padding-bottom: 130px; /* Espace pour le sticky CTA */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section a,
.footer-section p {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a5f;
    color: white;
    padding: 1rem 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta-text small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    /* Navigation mobile */
    nav {
        display: block;
        position: fixed;
        top: 60px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 60px);
        background: #1e3a5f;
        padding: 2rem 0;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    .nav-link,
    nav a {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-cta {
        margin: 1rem 2rem;
        display: block;
        text-align: center;
    }

    .nav-dropdown .dropdown-arrow {
        float: right;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-section {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-section h4 {
        color: white;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 1rem 2rem;
        margin: 0;
        font-size: 0.8rem;
    }

    .dropdown-section a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 2rem;
        padding-left: 3rem;
    }

    .dropdown-section a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .logo-image {
        height: 40px;
    }

    .burger-menu {
        display: flex;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-reassurance span {
        display: block;
        margin: 0.5rem 0;
    }

    .badge-horaires {
        display: block;
        margin: 0.5rem 0;
    }

    /* Service Hero */
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-lead {
        font-size: 1.1rem;
    }

    .service-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Quick Info */
    .quick-info-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Main Content */
    .main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 16px;
    }

    .sidebar {
        position: static;
    }

    .doc-cards {
        grid-template-columns: 1fr;
    }

    /* Sticky CTA */
    .sticky-cta-container {
        flex-direction: column;
        text-align: center;
    }

    /* Trust Bar */
    .trust-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}