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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f2f2f2;
    color: #1a1a1a;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Effet scanner - Ralenti */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -150px;
    width: 40px;
    height: 100vh;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(240, 248, 255, 0.3) 15%,
        rgba(200, 230, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(200, 230, 255, 0.6) 70%,
        rgba(240, 248, 255, 0.3) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.9),
        0 0 100px rgba(200, 230, 255, 0.7),
        0 0 150px rgba(150, 200, 255, 0.5),
        inset 0 0 40px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 9999;
    animation: scanHorizontal 20s ease-in-out infinite;
    filter: blur(1px);
}

/* Ligne centrale plus intense - Ralenti */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: -150px;
    width: 2px;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(200, 230, 255, 0.9),
        0 0 60px rgba(150, 200, 255, 0.7);
    pointer-events: none;
    z-index: 10000;
    animation: scanHorizontal 20s ease-in-out infinite;
}

@keyframes scanHorizontal {
    0% {
        left: -150px;
        opacity: 0;
    }
    3% {
        opacity: 1;
    }
    48% {
        left: 100vw;
        opacity: 1;
    }
    50% {
        left: 100vw;
        opacity: 0;
    }
    100% {
        left: 100vw;
        opacity: 0;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f2f2f2;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 37px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    gap: 35px;
    font-size: 15px;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.6;
}

.breadcrumb {
    padding: 30px 60px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    margin-right: 8px;
}

.breadcrumb a:hover {
    color: #1a1a1a;
}

main {
    padding: 60px 60px 100px;
    max-width: 1400px;
}

h1 {
    font-size: 88px;
    font-weight: 750;
    letter-spacing: 0px;
    line-height: 1;
    color: #e60000;
    margin-bottom: 60px;
    margin-left: 37px;
}

h1 .thin {
    font-weight: 100;
    font-size: 48px;
    letter-spacing: 0px;
}

.intro {
    font-size: 22px;
    line-height: 1.5;
    max-width: 900px;
    margin-bottom: 80px;
    margin-left: 37px;
    color: #2a2a2a;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-left {
    margin-bottom: 20px;
}

.service-date {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #666;
}

.service-title {
    font-size: 53px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.service-right {
    flex: 1;
}

.service-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-section {
    margin-top: 80px;
    padding: 50px;
    background-color: #ffffb3;
    border-radius: 8px;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.map-section {
    margin-top: 20px;
    padding: 50px;
    background-color: #ccffcc;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.contact-info {
    font-size: 18px;
    line-height: 1.8;
    flex: 1;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.1;
}

.contact-info strong {
    font-weight: 600;
    font-size: 25px;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-info a:hover {
    opacity: 0.6;
}

.contact-hours {
    font-size: 18px;
    line-height: 1.8;
    flex: 1;
}

.contact-hours p {
    margin-bottom: 8px;
    line-height: 1.1;
}

.contact-hours strong {
    font-weight: 600;
    font-size: 25px;
    display: block;
    margin-bottom: 12px;
}

.contact-hours .day {
    display: inline-block;
    min-width: 160px;
}

.contact-hours .hours {
    display: inline-block;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* Assurer que les iframes Google Maps fonctionnent correctement */
.map-section iframe {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 45px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-title a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 23px;
}

.contact-title a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    header, main, .breadcrumb {
        padding-left: 25px;
        padding-right: 25px;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 30px;
    }

    .service-title {
        font-size: 24px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        width: 100%;
    }

    .contact-hours {
        width: 100%;
    }

    #map {
        height: 250px;
    }
}