/* Reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
img,
div,
span {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Glassmorphism Support Detection */
@supports not (backdrop-filter: blur(20px)) {
    .home-service-col {
        background: rgba(255, 255, 255, 0.85) !important;
    }
    .home-service-box {
        background: rgba(255, 255, 255, 0.9) !important;
    }
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #fff;
    color: #222;
}

/* Header */
.home-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.home-header-logo {
    display: flex;
    align-items: center;
    padding: 10px 24px;
}

.home-header-logo img {
    height: 48px;
}

.home-nav {
    width: 100%;
    background: #204a71;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-nav-logo {
    display: flex;
    align-items: center;
    height: 64px;
}

.home-nav-logo img {
    height: 48px;
}

.home-nav-list {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    margin-left: 32px;
    gap: 32px;
}

.home-nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.home-nav-list li,
.home-nav-actions li {
    list-style: none;
}

.home-nav-list a,
.home-nav-actions a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.home-nav-list a:hover,
.home-nav-actions a:hover {
    color: #a11c1c;
}

.home-header-alert {
    width: 100%;
    background: #a11c1c;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.header-promo-bar {
    width: 100%;
    background: #a11c1c;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    padding: 2px 0 0 0;
    letter-spacing: 0.5px;
    min-height: 22px;
}

.promo-highlight {
    color: #f7b500;
}

.header-navbar {
    width: 100%;
    background: #204a71;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;

}

.header-navbar-logo {
    display: flex;
    align-items: center;
    height: 54px;
    padding-left: 18px;
}

.header-navbar-logo img {
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #a11c1c;
}

.header-navbar-list {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-around;
    margin-left: 32px;
    gap: 32px;
}

.header-navbar-list li {
    list-style: none;
}

.header-navbar-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    transition: color 0.2s;
}

.header-navbar-list a:hover {
    color: #f7b500;
}

.header-navbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    padding-right: 24px;
}

.header-navbar-actions li {
    list-style: none;
}

.header-navbar-actions a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    transition: color 0.2s;
}

.header-navbar-actions a:hover {
    color: #f7b500;
}

/* Vidéo section */
.home-video-section {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
}

.home-video-section iframe {
    width: 100%;
    max-width: 1200px;
    height: 480px;
    border: none;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .home-video-section iframe {
        height: 250px;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .home-video-section iframe {
        height: 200px;
    }
}

/* Titre principal */
.home-title-section {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 36px 0 16px 0;
}

.home-title-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #204a71;
    line-height: 1.1;
}

/* Description */
.home-desc-section {
    width: 100%;
    text-align: center;
    background: #fff;
    padding-bottom: 24px;
}

.home-desc-section h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #222;
}

.home-desc-section h2 span {
    color: #204a71;
}

/* Services */
.home-services-section {
    width: 100%;
    background: linear-gradient(90deg, #0e3a6d 0%, #1e7ec7 100%);
    padding: 32px 0 32px 0;
}

.home-services-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-service-col {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(32, 74, 113, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 24px 32px 32px 32px;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.home-service-col:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(32, 74, 113, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.home-service-col h3 {
    color: #204a71;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-service-img img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(32, 74, 113, 0.09);
}

.home-service-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(32, 74, 113, 0.1);
    padding: 18px 20px;
    width: 100%;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.home-service-box:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(32, 74, 113, 0.15);
}

.home-service-box h4 {
    color: #204a71;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.home-service-box ul {
    list-style: disc inside;
    color: #204a71;
    margin-bottom: 10px;
    font-size: 1rem;
}

.home-service-btn {
    display: inline-block;
    background: #a11c1c;
    color: #fff;
    border-radius: 18px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s;
}

.home-service-btn:hover {
    background: #204a71;
}

/* Attentes */
.home-attentes-section {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 36px 0 18px 0;
}

.home-attentes-section h2 {
    color: #a11c1c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-attentes-section p {
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Photos */
.home-photos-section {
    width: 100%;
    background: #fff;
    padding: 32px 0 48px 0;
    overflow: hidden;
}

.home-photos-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-photos-carousel-viewport {
    overflow: hidden;
    width: 900px;
    max-width: 98vw;
    height: 520px;
    border-radius: 22px;
    position: relative;
    margin: 0 auto;
    background: #f8f8f8;
}

.home-photos-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
    height: 100%;
}

.home-photos-carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(32, 74, 113, 0.13);
    background: #f8f8f8;
    margin: 0;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
    display: block;
}

.home-photos-carousel-btn {
    background: #204a71cc;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.home-photos-carousel-btn.prev {
    left: -70px;
}

.home-photos-carousel-btn.next {
    right: -70px;
}

.home-photos-carousel-btn:hover {
    background: #a11c1c;
}

@media (max-width: 1100px) {
    .home-photos-carousel-viewport {
        width: 98vw;
        height: 320px;
    }

    .home-photos-carousel-track img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .home-photos-carousel-viewport {
        width: 99vw;
        height: 160px;
    }

    .home-photos-carousel-track img {
        width: 100%;
        height: 100%;
    }

    .home-photos-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .home-photos-carousel-btn.prev {
        left: -6px;
    }

    .home-photos-carousel-btn.next {
        right: -6px;
    }
}

/* Titre principal */
.home-title-section {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 36px 0 16px 0;
}

.home-title-section h1 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #204a71;
    line-height: 1.1;
}

/* Description */
.home-desc-section {
    width: 100%;
    text-align: center;
    background: #fff;
    padding-bottom: 24px;
}

.home-desc-section h2 {
    font-size: 2.7rem;
    font-weight: 600;
    color: #222;
}

.home-desc-section h2 span {
    color: #000000;
}

/* Services */
.home-services-section {
    background-image: url('/images/fondbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 32px 0 32px 0;
}

.home-services-row {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto
}

.home-services-row {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto
}

.home-service-col {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(32, 74, 113, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 24px 32px 32px 32px;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.home-service-col:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(32, 74, 113, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.home-service-col h3 {
    color: #204a71;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-service-img img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(32, 74, 113, 0.09);
}

.home-service-box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(32, 74, 113, 0.07);
    padding: 18px 20px;
    width: 100%;
    margin-top: 8px;
    align-items: center;
    flex-direction: column;
}

.home-service-box h4 {
    color: #204a71;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.home-service-box ul {
    list-style: disc inside;
    color: #204a71;
    margin-bottom: 10px;
    font-size: 1rem;
}

.home-service-btn {
    display: inline-block;
    background: #a11c1c;
    color: #fff;
    border-radius: 18px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s;
}

.home-service-btn:hover {
    background: #204a71;
}

/* Attentes */
.home-attentes-section {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 36px 0 18px 0;
}

.home-attentes-section h2 {
    color: #a11c1c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-attentes-section p {
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Photos */
.home-photos-section {
    width: 100%;
    background: #fff;
    padding: 32px 0 48px 0;
    overflow: hidden;
}

.home-photos-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-photos-carousel-viewport {
    overflow: hidden;
    width: 900px;
    max-width: 98vw;
    height: 520px;
    border-radius: 22px;
    position: relative;
    margin: 0 auto;
    background: #f8f8f8;
}

.home-photos-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
    height: 100%;
}

.home-photos-carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(32, 74, 113, 0.13);
    background: #f8f8f8;
    margin: 0;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
    display: block;
}

.home-photos-carousel-btn {
    background: #204a71cc;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.home-photos-carousel-btn.prev {
    left: -70px;
}

.home-photos-carousel-btn.next {
    right: -70px;
}

.home-photos-carousel-btn:hover {
    background: #a11c1c;
}

@media (max-width: 1100px) {
    .home-photos-carousel-viewport {
        width: 98vw;
        height: 320px;
    }

    .home-photos-carousel-track img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .home-photos-carousel-viewport {
        width: 99vw;
        height: 160px;
    }

    .home-photos-carousel-track img {
        width: 100%;
        height: 100%;
    }

    .home-photos-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .home-photos-carousel-btn.prev {
        left: -6px;
    }

    .home-photos-carousel-btn.next {
        right: -6px;
    }
}

/* Tablette */
@media (max-width: 1100px) {
    .home-photos-carousel-viewport {
        width: 98vw;
        height: 320px;
    }

    .home-photos-carousel-track img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 700px) {
    .home-photos-section {
        padding: 18px 0 28px 0;
    }

    .home-photos-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .home-photos-row img {
        width: 92vw;
        max-width: 340px;
        height: 160px;
    }
}

/* Mobile petit */
@media (max-width: 400px) {
    .home-photos-row img {
        width: 98vw;
        max-width: 98vw;
        height: 100px;
    }
}

/* Avis */
.home-avis-section {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 32px 0 32px 0;
}

.home-avis-section h2 {
    color: #204a71;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-avis-section p {
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.home-avis-row {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.home-avis-card {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(32, 74, 113, 0.07);
    padding: 22px 28px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-avis-stars {
    color: #f7b500;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.home-avis-text {
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.home-avis-author {
    color: #204a71;
    font-size: 0.98rem;
    font-weight: 600;
}

.home-avis-author span {
    background: #204a71;
    color: #fff;
    border-radius: 50%;
    padding: 4px 10px;
    margin-right: 6px;
    font-size: 1rem;
}

/* Footer */
.home-footer {
    width: 100%;
    background: #204a71;
    color: #fff;
    padding: 32px 0 0 0;
}

.home-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 32px;
}

.home-footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.home-footer-logo img {
    height: 150px;
}

.home-footer-logo span {
    font-size: 1rem;
    color: #fff;
    margin-top: 4px;
}

.home-footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.home-footer-links>div {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.home-footer-map {
    width: 90px;
    border-radius: 8px;
    margin-top: 4px;
}

.home-footer-social {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 10px;
    transition: color 0.2s;
}

.home-footer-social:hover {
    color: #f7b500;
}

.home-footer-bottom {
    width: 100%;
    background: #17365c;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 0.98rem;
    margin-top: 18px;
}

/* Bloc Informations dans le footer */
.footer-infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    min-width: 180px;
    background: none;
    color: #fff;
}

.footer-infos-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}


.footer-infos-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-infos-link {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
    padding: 2px 0;
}

.footer-infos-link:hover {
    color: #f7b500;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .footer-infos {
        align-items: center;
        min-width: unset;
    }

    .footer-infos-title {
        text-align: center;
    }
}

/* Styles spécifiques à la page d'accueil */

/* Hero Section */
.hero-section {
    height: 80vh;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section */
.services-section {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #a11c1c;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #204a71;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-link {
    color: #a11c1c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.service-link:hover {
    color: #8a1717;
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .about-content {
        flex-direction: column;
    }
}

/* --- Responsive PRO --- */

/* ----------- ORDINATEUR (par défaut) ----------- */
/* (Rien à changer, tout ce qui précède s'applique déjà pour desktop) */

/* ----------- TABLETTE ----------- */
@media (max-width: 1024px) {
    .header-navbar-list {
        gap: 18px;
        margin-left: 12px;
    }

    .header-navbar-logo img {
        height: 38px;
    }

    .header-navbar {
        min-height: 48px;
    }

    .home-footer-row {
        gap: 18px;
        padding: 0 8px;
    }

    .home-footer-links {
        gap: 18px;
    }

    .home-services-row {
        gap: 18px;
    }

    .home-service-col {
        width: 95%;
        max-width: 420px;
        padding: 18px 10px 22px 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .home-photos-row img {
        width: 140px;
        height: 90px;
    }
}

/* ----------- TÉLÉPHONE ----------- */
@media (max-width: 700px) {
    .header-navbar {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
        padding: 0;
    }

    .header-navbar-logo {
        justify-content: center;
        padding: 8px 0 0 0;
    }

    .header-navbar-list,
    .header-navbar-actions {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .header-navbar-list li,
    .header-navbar-actions li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #17365c;
    }

    .header-navbar-list a,
    .header-navbar-actions a {
        padding: 12px 0;
        font-size: 1rem;
        justify-content: center;
    }

    .header-navbar-actions {
        gap: 0;
        padding-right: 0;
    }

    .home-title-section h1 {
        font-size: 1.5rem;
    }

    .home-desc-section h2 {
        font-size: 1rem;
    }

    .home-services-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .home-service-col {
        width: 98%;
        padding: 10px 2px 14px 2px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .home-service-img img {
        max-width: 100%;
    }

    .home-photos-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .home-photos-row img {
        width: 98vw;
        max-width: 320px;
        height: 80px;
    }

    .home-avis-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .home-avis-card {
        width: 95vw;
        max-width: 320px;
        padding: 12px 8px;
    }

    .home-footer-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 4px;
    }

    .home-footer-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .home-footer-socials {
        margin-left: 0;
        justify-content: center;
        gap: 12px;
    }

    .home-footer-logo img {
        height: 38px;
    }

    .home-footer-map {
        width: 60px;
    }

    .home-footer-bottom {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* ----------- PETIT TÉLÉPHONE ----------- */
@media (max-width: 400px) {
    .header-navbar-logo img {
        height: 28px;
    }

    .home-title-section h1 {
        font-size: 1.1rem;
    }

    .home-footer-logo img {
        height: 28px;
    }

    .home-footer-map {
        width: 38px;
    }
}

/* Bouton Google Avis - Contraste amélioré pour accessibilité */
.google-avis-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a73e8;
    color: #fff;
    border: 2px solid #1a73e8;
    border-radius: 22px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 1.08rem;
    margin: 16px 0 24px 0;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-avis-btn:hover {
    background: #1557b0;
    border-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.google-avis-btn i {
    font-size: 1.2em;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
    padding: 2px 0;
}

.footer-link:hover {
    color: #f7b500;
    text-decoration: underline;
}