/* ============================================
   BETON DÉSACTIVÉ FRANCE - MODERNE DESIGN
   Basé sur la maquette corporate/construction
   ============================================ */

/* Variables CSS */
:root {
    /* Couleurs principales */
    --primary-navy: #143051;
    --primary-navy-light: #1A2B40;
    --accent-red: #EE3245;
    --accent-red-hover: #d62d3d;
    --accent-coral: #E84545;
    
    /* Couleurs de fond */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-grey: #F1F3F5;
    --bg-dark: #143051;
    
    /* Couleurs de texte */
    --text-primary: #1A1A1A;
    --text-secondary: #495057;
    --text-muted: #868E96;
    --text-light: #FFFFFF;
    
    /* Typographie */
    --font-primary: 'Inter', 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'TWK Everett', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    /* Bordures et espacements */
    --border-radius-sm: 0px;
    --border-radius-md: 0px;
    --border-radius-lg: 0px;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset et Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: var(--accent-red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-red-hover);
}

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--bg-grey);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-navy);
    flex-shrink: 0;
    border: none !important;
    outline: none !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-text span {
    color: var(--accent-red);
    margin-top: 2px;
}

/* Nav Toggle - Hidden on desktop */
.nav-toggle {
    display: none !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* Spacer for fixed header */
body {
    padding-top: 80px;
}

.quick-quote-section {
    margin-top: 24px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img,
.logo-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo span {
    color: var(--accent-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex: 1;
}

.nav-menu > li {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-red);
    background: transparent;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent-red);
}

.header-cta {
    background: var(--accent-red);
    color: var(--text-light) !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius-sm) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta:hover {
    background: var(--accent-red-hover);
    color: var(--text-light) !important;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-gray {
    background: var(--bg-grey);
}

.section-dark {
    background: var(--primary-navy);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-grey) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../assets/images/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-red);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
}

.card-cta::after {
    content: '↗';
    font-size: 1rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--accent-red);
}

.feature-card:hover .feature-icon {
    background: var(--accent-red);
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Service Cards */
.service-card {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.service-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 32px;
    border: 1px solid var(--bg-grey);
}

.pricing-box h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-box ul {
    margin-top: 16px;
}

.pricing-box li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-grey);
}

.pricing-box li:last-child {
    border-bottom: none;
}

/* ============================================
   GRIDS
   ============================================ */
.grid {
    display: grid;
    gap: 24px;
}

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--primary-navy);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--text-light);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TABLES
   ============================================ */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--bg-grey);
}

.pricing-table th {
    background: var(--primary-navy);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table .table-highlight {
    background: var(--bg-light);
}

.table-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

/* ============================================
   TABS / FILTERS
   ============================================ */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 1px solid var(--bg-grey);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.tab.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-light);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    background: var(--primary-navy);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    border-radius: var(--border-radius-sm);
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}

.cta-box h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-nav {
    background: var(--bg-light);
    padding: 16px 0;
}

.breadcrumb-list {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--accent-red);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb-item[aria-current="page"] {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   FORMULAIRES
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 1px solid var(--bg-grey);
    border-radius: var(--border-radius-sm);
    background: var(--bg-white);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(238, 50, 69, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-sm);
}

.badge-primary {
    background: var(--primary-navy);
    color: var(--text-light);
}

.badge-gold {
    background: var(--accent-red);
    color: var(--text-light);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--bg-grey);
    color: var(--text-secondary);
}

.zone-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.zone-tag:hover {
    background: var(--accent-red);
    color: var(--text-light);
}

/* ============================================
   COMMUNE CARDS (pour les pages de villes)
   ============================================ */
.commune-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.commune-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.commune-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.commune-card-content {
    padding: 20px;
}

.commune-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.commune-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.distance-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary-navy);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */
.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-red);
}

.services-list li,
.communes-list li {
    margin-bottom: 12px;
}

.services-list a,
.communes-list a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.services-list a:hover,
.communes-list a:hover {
    color: var(--accent-red);
    padding-left: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-box {
        padding: 32px 24px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Animation Classes - DÉSACTIVÉ pour éviter les problèmes de visibilité */
.fade-in {
    /* Animation désactivée - le contenu doit toujours être visible
    animation: fadeIn 0.5s ease forwards;
    */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Summary Box */
.quick-summary {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-red);
}

.quick-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.quick-summary ul {
    list-style: none;
}

.quick-summary li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-grey);
    color: var(--text-secondary);
    line-height: 1.6;
}

.quick-summary li:last-child {
    border-bottom: none;
}

.quick-summary li strong {
    color: var(--text-primary);
}

/* Expert Verified Badge */
.expert-verified {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-sm);
}

.expert-verified-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-red);
    color: var(--text-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.expert-verified-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.expert-verified-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    padding: 32px;
}

.map-section h2 {
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.map-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-navy);
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Warning Box */
.warning-box {
    background: #FFF3CD;
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid #FFC107;
}

.warning-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
}
