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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    padding: 20px 0;
}

/* BANNIÈRE */
.hero-banner {
    position: relative;
    height: 600px;
    background-image: url("images/05.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: translation 5s linear infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.hero-banner:hover{
  box-shadow: 0px 6px 40px 10px rgb(101, 177, 179);
  transform: translate(50px 50px);
}
@keyframes translation {
    0% {
        transform: perspective(1000px) translate3d(0px, 0px, 0px);
    }
    50% {
        transform: perspective(1000px) translate3d(0px, 0px, -50px);
    }
    100% {
        transform: perspective(1000px) translate3d(0px, 0px, 0px);
    }
}

.hero-banner::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btn {
    background: white;
    color: #5bbdb5;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* SECTIONS COMMUNES */
.section {
    padding: 40px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Sections avec background personnalisé */
.section[style*="background"] {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1em;
    color: #666;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* GRILLE DE SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(91, 189, 181, 0.15);
    border-color: rgba(91, 189, 181, 0.3);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #5bbdb5 0%, #bed000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(91, 189, 181, 0.25);
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95em;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5bbdb5;
    font-weight: bold;
}

.service-btn {
    background: linear-gradient(135deg, #5bbdb5 0%, #bed000 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 189, 181, 0.35);
}

/* SECTION ALTERNÉE (Image + Texte) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    align-items: center;
}

.split-section:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.split-image {
    min-height: 300px;
    
    padding: 1px;
    margin: 4px;
    
    box-shadow: 0px 0px 18px 8px rgba(101, 177, 179, 0.105);
}

.split-content {
    padding: 15px 27px;
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.split-content .service-icon {
    margin-bottom: 20px;
    align-self: center;
}

.split-content .badge {
    align-self: center;
}

.split-content .service-features {
    text-align: left;
    width: 100%;
    max-width: 100%;
    align-self: center;
}

.split-content .service-btn {
    align-self: center;
    max-width: fit-content;
}

.split-content h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.split-content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

/* Version inversée */
.split-section.reverse .split-image {
    order: 2;
}

.split-section.reverse .split-content {
    order: 1;
}

/* BADGES */
.badge {
    display: inline-block;
    background: rgba(91, 189, 181, 0.1);
    color: #5bbdb5;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(91, 189, 181, 0.3);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    body {
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .section {
        padding: 50px 30px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .service-card {
        max-width: 100%;
    }

    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
    }

    .split-section.reverse .split-image,
    .split-section.reverse .split-content {
        order: 0;
    }

    .split-content {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 40px 20px;
        border-radius: 15px;
    }
}
 footer {
            position: relative;
            color: white;
            padding: 60px 20px 30px;
            overflow: hidden;
        }

        .footer-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .footer-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .footer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(91, 189, 181, 0.85) 0%, 
                rgba(185, 203, 74, 0.75) 100%);
            z-index: 2;
        }

        .footer-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 600;
        }

        .logo-section {
            display: flex;
            flex-direction: column;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
            margin-bottom: 25px;
        }

        .logo img {
            max-width: 250px;
            height: auto;
        }

        .logo-section p {
            line-height: 1.8;
            margin-bottom: 25px;
            color: white;
            font-size: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5bbdb5;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px) scale(1.1);
        }

        .contact-info-item, .hours-info-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details p, .hours-details p {
            margin: 0;
            line-height: 1.6;
            color: white;
            font-size: 15px;
        }

        .contact-details strong, .hours-details strong {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            opacity: 0.9;
        }

        .hours-info-item {
            margin-bottom: 15px;
        }

        .hours-details p {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            font-size: 14px;
            color: white;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .logo-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .logo-section {
                grid-column: 1;
            }
        }