        .navbar-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #000;
            padding: 10px 0;
            z-index: 10001;
        }

        body {
            padding-top: 60px;
        }

        .navbar-custom .nav-link {
            color: #fff;
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
            margin-top: 10px
        }

        .navbar-custom .nav-link:hover {
            color: #ccc;
        }

        .navbar-toggler {
            border: none;
            background: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

        .navbar-toggler-icon {
            width: 30px;
            height: 30px;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
            transition: all 0.3s ease-in-out;
        }

        .navbar-toggler.open .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L24 24M24 6L6 24'/%3E%3C/svg%3E");
        }

        #menuOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9998;
        }

        #mobileMenu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            height: calc(100% - 60px);
            background-color: #000;
            text-align: center;
            z-index: 9999;
            overflow-y: auto;
        }

        .menu-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: black;
            z-index: 10001;
        }

        .menu-header .navbar-brand img {
            max-height: 40px;
        }

        .menu-header .navbar-toggler {
            font-size: 24px;
            color: white;
        }

        #mobileMenu.show {
            display: block;
        }



        /* Menu en ligne sur desktop */
        @media (min-width: 992px) {
            .navbar-nav {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }

            /* Masquer le menu mobile sur grand écran */
            .navbar-collapse {
                display: flex !important;
            }

            .navbar .navbar-nav .nav-link {
    font-size: 12px;
}
        }

        @media (max-width: 991px) {

            .navbar .navbar-nav .nav-link,
            .navbar-modern-inner .navbar-nav .nav-link,
            .navbar-full-screen-menu-inner .navbar-nav .nav-link {
                padding: 10px 15px !important;
                color: #fff;
            }
        }

        /* Menu en colonne en bas sur mobile */
        @media (max-width: 991px) {
            .navbar-collapse {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background-color: #000;
                padding: 10px 0;
                text-align: center;
            }

            .navbar-nav {
                flex-direction: column;
                gap: 10px;
            }

            .navbar-nav .nav-item {
                width: 100%;
            }
        }


            .checkbox-group {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 20px
            }

            .checkbox-label {
                display: flex;
                align-items: center;
                position: relative;
                padding-left: 30px;
                cursor: pointer;
                font-size: 16px;
                user-select: none
            }

            .checkbox-label input {
                position: absolute;
                opacity: 0;
                cursor: pointer
            }

            .checkmark {
                position: absolute;
                left: 0;
                height: 20px;
                width: 20px;
                background-color: #ddd;
                border-radius: 4px;
                border: 2px solid #bbb
            }

            .checkbox-label:hover input~.checkmark {
                background-color: #ccc
            }

            .checkbox-label input:checked~.checkmark {
                background-color: #3DB8C0;
                border: 2px solid #3DB8C0
            }

            .checkmark:after {
                content: "";
                position: absolute;
                display: none
            }

            .checkbox-label input:checked~.checkmark:after {
                display: block
            }

            .checkbox-label .checkmark:after {
                left: 7px;
                top: 3px;
                width: 5px;
                height: 10px;
                border: solid white;
                border-width: 0 3px 3px 0;
                transform: rotate(45deg)
            }

            section.big-section {
                padding-bottom: 0px
            }


@media (max-width: 768px) {
    .mt-50px {
        margin-top: 0 !important;
    }
}


            .swiper {
                width: 100%;
                height: auto
            }

            .photos-link {
                text-decoration: none;
                color: #dc3545
            }

.step-container {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    min-height: 180px;
    transition: box-shadow 0.2s;
}
.step-container:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.step h3 {
    font-size: 16px;
}
.step p {
    font-size: 14px;
}

.hero-circle {
    min-width: 320px;
    min-height: 320px;
}

        /* Ensure full-screen sections use dynamic viewport height */
        .full-screen {
            min-height: 100dvh;
            height: auto;
        }

