/********** Template CSS **********/
:root {
    --primary: #ffffff;
    --secondary: #191C24;
    --light: #f2fafce3;
    --dark: #000000;
    --neon-blue: #00b7ff;
    --neon-red: #ff0000;
    --neon-green: #00ff00;
    --neon-violet: #8a2be2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Empêcher tous les éléments de déborder */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-size: 23px;
    font-family: "Raleway", sans-serif;
    background-color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-blue);
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0 0 50px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 183, 255, 0.2);
    overflow: hidden;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* Conteneur pour limiter la largeur sur desktop */
.navbar > .container,
.navbar > .container-fluid {
    max-width: 1920px;
    margin: 0 auto;
}

.navbar:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(0, 183, 255, 0.3);
}

.navbar.hide {
    transform: translateY(-100%);
}

.navbar-brand {
    font-size: 2em;
    color: #fff !important;
    text-shadow: 0 0 15px rgba(0, 183, 255, 0.9),
                 0 0 25px rgba(0, 183, 255, 0.5);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-brand h1 {
    white-space: nowrap;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-toggler {
    flex-shrink: 0;
}

.navbar-brand:hover {
    text-shadow: 0 0 20px rgba(0, 183, 255, 1),
                 0 0 30px rgba(0, 183, 255, 0.7),
                 0 0 40px rgba(0, 183, 255, 0.4);
    transform: scale(1.05);
}

.navbar .nav-link {
    text-transform: uppercase;
    color: #fff;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--neon-blue) !important;
    text-shadow: 0 0 10px rgba(0, 183, 255, 0.8);
}

.navbar .btn-primary {
    background: transparent;
    border: 2px solid rgba(0, 183, 255, 0.6);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.4);
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background: rgba(0, 183, 255, 1);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.8),
                0 0 35px rgba(0, 183, 255, 0.4);
    transform: translateY(-2px);
}

.price-btn {
    background: transparent;
    border: 2px solid rgba(0, 183, 255, 0.6);
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.4);
}

.price-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.price-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 183, 255, 0);
    transition: background 0.3s ease;
    z-index: -2;
}

.price-btn:hover {
    background: rgba(0, 183, 255, 1);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.8),
                0 5px 15px rgba(0, 183, 255, 0.4);
    transform: translateY(-3px);
    border-color: rgba(0, 183, 255, 1);
}

.price-btn:hover::before {
    left: 100%;
}

.price-btn:hover::after {
    background: rgba(0, 183, 255, 0.2);
}

/* Bouton réservation navbar */
.btn-navbar-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    margin-left: 20px;
    background: rgb(0, 183, 255);
    color: #000;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(0, 183, 255, 0.7),
                0 5px 15px rgba(0, 183, 255, 0.5),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 183, 255, 0.7),
                    0 5px 15px rgba(0, 183, 255, 0.5),
                    inset 0 0 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 183, 255, 1),
                    0 5px 20px rgba(0, 183, 255, 0.7),
                    inset 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.btn-navbar-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.btn-navbar-appointment::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    animation: rotateBanner 6s linear infinite;
    z-index: 0;
}

.btn-navbar-appointment span,
.btn-navbar-appointment i {
    position: relative;
    z-index: 1;
}

.btn-navbar-appointment:hover {
    background: rgba(0, 183, 255, 1);
    color: #000;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 0 35px rgba(0, 183, 255, 1),
                0 8px 25px rgba(0, 183, 255, 0.8),
                inset 0 0 25px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.8);
    animation: none;
}

.btn-navbar-appointment:hover::before {
    left: 100%;
}

.btn-navbar-appointment i {
    transition: transform 0.3s ease;
}

.btn-navbar-appointment:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.btn-navbar-appointment:hover i.fa-phone-alt {
    animation: phoneRing 0.5s ease infinite;
}

@media (max-width: 991.98px) {
    .navbar {
        border-radius: 0;
        padding: 1rem 0 !important;
    }
    
    .navbar .container-fluid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        margin: 0 !important;
        padding: 0 !important;
        order: 1;
    }
    
    .navbar-brand h1 {
        font-size: 1.3rem !important;
        margin-bottom: 0 !important;
        display: flex;
        align-items: center;
    }
    
    .navbar-brand img {
        width: 40px !important;
        height: 40px !important;
        margin-right: 8px !important;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
        border: 2px solid rgba(0, 183, 255, 0.5) !important;
        background: rgba(0, 183, 255, 0.1);
        border-radius: 8px;
        order: 2;
        margin-left: auto;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 183, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 183, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 1.5em;
        height: 1.5em;
    }
    
    .navbar-collapse {
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        padding: 1.5rem 1rem;
        border-radius: 0 0 15px 15px;
        margin-top: 1rem;
        border-top: 2px solid rgba(0, 183, 255, 0.3);
    }
    
    .navbar .nav-link {
        margin: 0.75rem 0;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(0, 183, 255, 0.1);
    }
    
    .btn-navbar-appointment {
        width: 100%;
        margin: 1rem 0 0 0;
        padding: 15px 30px;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .price-btn {
        width: 100%;
        margin: 1rem auto;
        text-align: center;
    }
    
    /* Fix pour la vidéo YouTube responsive */
    iframe {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.testimonial-img {
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

#imageModal .modal-content {
    background-color: rgba(0, 0, 0, 0.9);
}

#imageModal .modal-body {
    padding: 0;
}

#imageModal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 8px;
}

#imageModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

#modalImage {
    max-height: 90vh;
    object-fit: contain;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: rgba(49, 65, 136, 0.761);
}

.footer .copyright a {
    color: var(--white);
}

.footer .copyright a:hover {
    color: var(--light);
}

div#comparison {
    margin: auto;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

div#comparison figure {
    background-image: url(../img/DSC01256.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

div#comparison figure>img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div#comparison figure div {
    background-image: url(../img/DSC01246.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    top: 0;
    left: 0;
    height: 100%;
    border-right: 2px solid #fff;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: ew-resize;
    margin: 0;
    padding: 0;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
    border: none;
    position: relative;
}

input[type=range]::-webkit-slider-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    width: 40px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
    border: none;
    position: relative;
}

input[type=range]::-moz-range-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
}

.carousel-root,
.carousel-root * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
}
.carousel-root {
	position: relative;
	display: none;
}
.carousel-root .viewport {
	position: relative;
	overflow: hidden;
}

.carousel-root .slides {
	position: relative;
}
.carousel-root .slide {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.5s;
	background-color: #f0f0f0;
}
.carousel-root .slide.selected {
	opacity: 1;
	position: relative;
	z-index: 10;
}
.carousel-root .slide > img {
	display: block;
	width: 100%;
}

.carousel-root .pager {
	text-align: center;
	margin-top: 12px;
}
.carousel-root .pager-button {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 10px;
	border-radius: 15px;
	background-color: #ccc;
	cursor: pointer;
}
.carousel-root .pager-button.selected {
	background-color: orange;
	cursor: default;
}

.carousel-root .arrow {
	position: absolute;
	top: 50%;
	margin-top: -36px;
	cursor: pointer;
	width: 34px;
	height: 72px;
	z-index: 10000;
}
.carousel-root .arrow-previous {
	left: 0;
	background: url("../images/arrow_left.png") no-repeat;
}
.carousel-root .arrow-next {
	right: 0;
	background: url("../images/arrow_right.png") no-repeat;
}
.carousel-root .viewport {
	padding: 0 0;
	min-height: 89px;
	text-align: center;
} /*adjust to create left and right open area for arrows, min-height = arrow height*/

.carousel-root .viewport p {
	font-style: italic;
	font-weight: 300;
	color: #5a2503;
}
.carousel-root .viewport p span {
	display: block;
	font-weight: bold;
	margin-top: 14px;
	font-style: normal;
}
.carousel-root .pager {
	display: none;
}

.video-carousel-root,
.video-carousel-root * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.video-carousel-root {
	width: 100%;
	max-height: 100vh;
	margin: 0;
	position: relative;
	perspective: 1000px;
}
.video-carousel-viewport {
	width: 100%;
	max-height: 100vh;
	margin: 0 auto;
	padding: 45px 0;
	overflow: hidden;
	transform-style: preserve-3d;
}
.video-carousel-slider {
    width: 1068px;
    overflow: hidden;
    position: relative;
    height: 634px;
    margin: 0 auto;
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.video-carousel-slider > div {
	float: left;
	width: 356px;
	height: 634px;
	position: relative;
	z-index: 0;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: translateZ(0);
	backface-visibility: hidden;
}
.video-carousel-slider > div p {
	display: none;
}
.video-carousel-slider div.level1 {
	z-index: 1;
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(0.8);
	width: 0;
	height: 0;
}
.video-carousel-slider div.level2 {
	z-index: 2;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: translateZ(0);
}
.video-carousel-slider div.level3 {
	z-index: 3;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: translateZ(0);
}
.video-carousel-slider div .panel {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	-moz-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-o-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: width, height, top, left;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.video-carousel-slider div.level2 .panel {
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
}
.video-carousel-slider div.level3 .panel {
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
}

.video-carousel-slider div .panel .poster {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.video-carousel-slider div.level3 .panel .poster {
	box-shadow: 0 10px 40px rgba(0, 183, 255, 0.3);
}
.video-carousel-slider div .panel .poster img:first-child {
	width: 100%;
	height: 100%;
	display: block;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	opacity: 0.5;
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: translateZ(0);
}
.video-carousel-slider div .panel .poster .button {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -24px;
	margin-left: -24px;
	width: 48px;
	height: 48px;
}


.video-carousel-slider div.level3 .panel .poster img {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	cursor: pointer;
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease;
}

.video-carousel-slider div.level3 .panel .poster img:hover {
	transform: scale(1.05);
}
.video-carousel-slider div.level3 .panel .poster .button {
	display: block;
}
.video-carousel-slider div .panel .video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-carousel-button-left {
	position: absolute;
	top: 45%;
	left: 40px;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.8;
	transform: translateZ(0);
}

.video-carousel-button-left:hover {
	transform: translateX(-5px) scale(1.1);
	opacity: 1;
}

.video-carousel-button-right {
	position: absolute;
	top: 45%;
	right: 40px;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.8;
	transform: translateZ(0);
}

.video-carousel-button-right:hover {
	transform: translateX(5px) scale(1.1);
	opacity: 1;
}
.video-carousel-text {
	width: 280px;
	margin: 8px auto;
	text-align: center;
	font-size: 14px;
	font-family: Roboto, Arial, sans-serif;
	color: #4d4e53;
}
.video-carousel-text span {
	font-weight: bold;
	display: block;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.video-carousel-slider div .panel {
	-webkit-box-shadow: 0 10px 10px -5px rgba(122, 122, 122, 1);
	-moz-box-shadow: 0 10px 10px -5px rgba(122, 122, 122, 1);
	box-shadow: 0 10px 10px -5px rgba(122, 122, 122, 1);
}
.video-carousel-slider div.level3 .panel {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.video-carousel-root .vjs-big-play-button {
	display: none !important;
}

.buttonme{
    width: 634px;
    height: 634px;
    background: black;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}



@media (max-width: 1100px) {
	.video-carousel-slider {
    width: 356px;
    overflow: hidden;
    position: relative;
    height: 634px;
    margin: 0 auto;
	}
	.video-carousel-slider div.level2 {
		z-index: 1;
		opacity: 0;
		transition: .25s;
		transform: scale(0);
		height: 0px;
		width: 0px;
		display: none;
	}
	.video-carousel-slider div.level1 .panel {
		z-index: 1;
		opacity: 0;
		transition: .25s;
		transform: scale(0);
		height: 0px;
		display: none;
	}
	.video-carousel-slider div.level3 .panel {
		width: 100%;
		height: 100%;
		left: 0px;
		top: 0px;
		transition: .25s;
	}
	.video-carousel-viewport{
		width: 100%;
	}
	.video-carousel-button-left {
		left: 2px;
	}
	.video-carousel-button-right {
		right: 2px;
	}
}

.neonText {
    color: #fff;
    text-shadow:
        0 0 5px rgba(255, 0, 255, 0.8),
        0 0 10px #fff,
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 30px rgba(255, 0, 255, 0.4),
        0 0 40px rgba(255, 0, 255, 0.2);
    text-align: center;
    font-weight: 400;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px rgba(255, 0, 255, 0.8),
            0 0 10px #fff,
            0 0 20px rgba(255, 0, 255, 0.6),
            0 0 30px rgba(255, 0, 255, 0.4);
    }
    to {
        text-shadow:
            0 0 8px rgba(255, 0, 255, 1),
            0 0 15px #fff,
            0 0 25px rgba(255, 0, 255, 0.8),
            0 0 35px rgba(255, 0, 255, 0.6),
            0 0 45px rgba(255, 0, 255, 0.4);
    }
}

.neon {
    border: 1px solid rgba(199, 196, 196, 0.4);
    border-radius: 12px;
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.3),
      inset 0 0 10px rgba(255, 255, 255, 0.1),
      0 0 20px rgba(1, 72, 114, 0.5),
      inset 0 0 20px rgba(1, 72, 114, 0.2),
      0 0 35px rgba(1, 72, 114, 0.3),     
      inset 0 0 35px rgba(1, 72, 114, 0.1);
    transition: all 0.3s ease;
}

.neon:hover {
    box-shadow:
      0 0 15px rgba(255, 255, 255, 0.5),
      inset 0 0 15px rgba(255, 255, 255, 0.2),
      0 0 25px rgba(1, 72, 114, 0.7),
      inset 0 0 25px rgba(1, 72, 114, 0.3),
      0 0 40px rgba(1, 72, 114, 0.5),     
      inset 0 0 40px rgba(1, 72, 114, 0.2);
    border-color: rgba(199, 196, 196, 0.6);
} 
  
  
body {
    font-size: 23px;
    font-family: "Raleway", sans-serif;
    background-color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
} 

.neonRed {
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 0, 0, 0.2),
        0 0 30px rgba(255, 0, 0, 0.4),     
        inset 0 0 30px rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: neonRedPulse 3s ease-in-out infinite alternate;
}

@keyframes neonRedPulse {
    from {
        box-shadow:
            0 0 10px rgba(255, 255, 255, 0.3),
            inset 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 20px rgba(255, 0, 0, 0.6),
            inset 0 0 20px rgba(255, 0, 0, 0.2),
            0 0 30px rgba(255, 0, 0, 0.4);
    }
    to {
        box-shadow:
            0 0 15px rgba(255, 255, 255, 0.5),
            inset 0 0 15px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 0, 0, 0.8),
            inset 0 0 25px rgba(255, 0, 0, 0.3),
            0 0 35px rgba(255, 0, 0, 0.6);
    }
}.neonGreen {
    border: 3px solid #fff;
    border-radius: 12px;
    box-shadow:
        0 0 8px #fff,
        inset 0 0 8px #fff,
        0 0 16px #00ff00,
        inset 0 0 16px #00ff00,
        0 0 32px #00ff00,     
        inset 0 0 32px #00ff00; 
}

.neonViolet {
    border: 3px solid #fff;
    border-radius: 12px;
    box-shadow:
        0 0 8px #fff,
        inset 0 0 8px #fff,
        0 0 16px #8a2be2,
        inset 0 0 16px #8a2be2,
        0 0 32px #8a2be2,     
        inset 0 0 32px #8a2be2; 
}

.neonTextRed {
    color: #fff;
    text-shadow:
        0 0 5px #ff0000,
        0 0 8px #fff,
        0 0 15px #ff0000,
        0 0 25px #ff0000,
        0 0 30px #ff0000;
    text-align: center;
    font-weight: 400;
}

.neonTextGreen {
    color: #fff;
    text-shadow:
        0 0 5px #00ff00,
        0 0 8px #fff,
        0 0 15px #00ff00,
        0 0 25px #00ff00,
        0 0 35px #00ff00;
    text-align: center;
    font-weight: 400;
}

.neonTextViolet {
    color: #fff;
    text-shadow:
        0 0 5px #8a2be2,
        0 0 8px #fff,
        0 0 15px #8a2be2,
        0 0 25px #8a2be2,
        0 0 35px #8a2be2;
    text-align: center;
    font-weight: 400;
}

.neonCard {
    width: 100%;
    height: 254px;
    background: linear-gradient(135deg, #07182E 0%, #0a1f3d 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 183, 255, 0.2);
}

.neonCard::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200%;
    background: linear-gradient(180deg, 
        transparent,
        var(--neon-blue), 
        var(--neon-violet),
        var(--neon-blue),
        transparent);
    animation: rotBGimg 4s linear infinite;
    filter: blur(12px);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.neonCard::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #07182E 0%, #0a1f3d 100%);
    inset: 3px;
    border-radius: 17px;
    transition: all 0.4s ease;
}

.neonCard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 183, 255, 0.4),
                0 0 30px rgba(0, 183, 255, 0.2);
    border-color: rgba(0, 183, 255, 0.6);
}

.neonCard:hover::before {
    width: 250px;
    animation: rotBGimg 2s linear infinite;
    filter: blur(15px);
    opacity: 0.8;
}

.neonCard:hover::after {
    background: linear-gradient(135deg, rgba(7, 24, 46, 0.95) 0%, rgba(10, 31, 61, 0.95) 100%);
}

.neonCard h3 {
    z-index: 1;
    color: white;
    font-size: 1.5em;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.neonCard:hover h3 {
    transform: scale(1.08);
    text-shadow: 0 0 15px rgba(0, 183, 255, 0.8),
                 0 0 25px rgba(0, 183, 255, 0.4);
}

.neonCard p {
    z-index: 1;
    color: white;
    opacity: 0.85;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.neonCard:hover p {
    opacity: 1;
    color: #e0e0e0;
}

.neonCard span {
    z-index: 1;
    color: var(--neon-blue);
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.neonCard:hover span {
    transform: scale(1.15);
    text-shadow: 0 0 10px var(--neon-blue);
}

@keyframes rotBGimg {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 768px) {
    .neonCard {
        height: auto;
        min-height: 220px;
        padding: 25px 20px;
    }
    
    .neonCard::before {
        width: 150px;
    }
    
    .neonCard:hover::before {
        width: 180px;
    }
    
    .neonCard:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.grid-item {
    width: 100%;
}

@media (max-width: 991px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.btn-neon {
    position: relative;
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid rgba(0, 183, 255, 0.8);
    box-shadow: 0 0 8px rgba(1, 142, 224, 0.6), 
                0 0 12px rgba(1, 142, 224, 0.4) inset;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

.btn-neon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(11, 244, 243, 0.8), rgba(0, 183, 255, 0.9));
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-neon:hover {
    color: #000;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(11, 244, 243, 0.8), 
                0 0 20px rgba(11, 244, 243, 0.6) inset,
                0 5px 25px rgba(0, 183, 255, 0.5);
    transform: translateY(-3px);
    border-color: rgba(11, 244, 243, 1);
}

.btn-neon:hover::before {
    height: 100%;
}

.btn-neon:active {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(11, 244, 243, 0.6), 
                0 0 15px rgba(11, 244, 243, 0.4) inset;
}

/* Carousel modifications */
.container-fluid.p-0.mb-5 {
    margin-top: 0; /* Supprimer la marge car la navbar est sticky */
}

#header-carousel {
    position: relative;
}

#header-carousel .carousel-item {
    height: 100vh;
    min-height: 500px;
}

#header-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .navbar {
         border-radius: 0;
         padding: 1rem 0 !important;
    }
    
    .navbar .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        margin: 0 !important;
        padding: 0 !important;
        order: 1;
    }
    
    .navbar-brand h1 {
        font-size: 1.3rem !important;
        margin-bottom: 0 !important;
        display: flex;
        align-items: center;
    }
    
    .navbar-brand img {
        width: 40px !important;
        height: 40px !important;
        margin-right: 8px !important;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
        border: 2px solid rgba(0, 183, 255, 0.5) !important;
        background: rgba(0, 183, 255, 0.1);
        border-radius: 8px;
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 183, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 183, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 1.5em;
        height: 1.5em;
    }

    .navbar-collapse {
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        padding: 1.5rem 1rem;
        border-radius: 0 0 15px 15px;
        margin-top: 1rem;
        border-top: 2px solid rgba(0, 183, 255, 0.3);
        order: 3;
    }
    
    .navbar .nav-link {
        margin: 0.75rem 0;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(0, 183, 255, 0.1);
    }
    
    .btn-navbar-appointment {
        width: 100%;
        margin: 1rem 0 0 0;
        padding: 15px 30px;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .price-btn {
        width: 100%;
        margin: 1rem auto;
        text-align: center;
    }
    
    /* Vidéo YouTube responsive */
    .ratio-16x9 {
        width: 100%;
    }
    
    iframe {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Empêcher le scroll horizontal */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container, .container-fluid, .container-xxl {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
    
    .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}

/* Media queries pour très petits écrans (smartphones) */
@media (max-width: 576px) {
    .navbar .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0 0.5rem;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        margin: 0 !important;
        padding: 0 !important;
        order: 1;
    }
    
    .navbar-brand h1 {
        font-size: 1.1rem !important;
        display: flex;
        align-items: center;
    }
    
    .navbar-brand img {
        width: 35px !important;
        height: 35px !important;
        margin-right: 6px !important;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1.1rem;
        border: 2px solid rgba(0, 183, 255, 0.5) !important;
        background: rgba(0, 183, 255, 0.1);
        border-radius: 6px;
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }
    
    .navbar-collapse {
        width: 100%;
        order: 3;
    }
    
    /* Réduire la taille de la police sur mobile */
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    /* Carousel responsive */
    .carousel-caption h1 {
        font-size: 1.5rem !important;
    }
    
    .carousel-caption p {
        font-size: 0.9rem !important;
    }
    
    .carousel-caption .mx-sm-5 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    
    .carousel-caption .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .btn-appointment-banner {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
    }
    
    /* Empêcher le débordement */
    .container-fluid.p-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


.portfolio {
    display: flex;
    flex-wrap: wrap;
    min-width: 320px;
    gap: 0;
    margin: 0;
    padding: 0;
}



.card {
    width: 25%;
    overflow: hidden;
    position: relative;
    border: none;
    margin: 0;
    padding: 0;
}

.card .content {
    z-index: 2;
    width: 100%;
    position: absolute;
    bottom: -80px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    min-height: 80px;
    background: rgba(17, 17, 17, 0.9);
}

.card .image {
    z-index: 1;
    height: 100%;
}

.card img {
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    transform: scale(1.2);
}

.card:hover .content {
    bottom: 0px;
    color: #fff;
}

.card:hover .image img {
    transform: scale(1);
}

.card .content span:first-child {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #000000;
    font-size: 16px;
}

.card .content span:last-child {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .card {
        width: 50%;
        border: none;
    }
    .card .content {
        bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .card {
        width: 100%;
        border: none;
    }
}

@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/Fontspring-DEMO-theseasons-reg.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

.navbar-brand h1 {
    font-family: 'The Seasons', sans-serif;
    font-style: normal;
    font-weight: 300;
}

.navbar-brand h1,
.navbar .nav-link,
.navbar .btn {
    font-family: 'The Seasons', sans-serif;
    font-style: normal;
    font-weight: 300;
}

/* Styles pour la section avant/après améliorée */
.comparison-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 183, 255, 0.3),
                0 0 20px rgba(0, 183, 255, 0.1);
    background: #000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comparison-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 183, 255, 0.5),
                0 0 30px rgba(0, 183, 255, 0.2);
    transform: scale(1.01);
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-after {
    width: 50%;
    border-right: 4px solid rgba(0, 183, 255, 1);
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.6);
    z-index: 5;
    transition: none;
}

.comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.comparison-wrapper:hover .comparison-img {
    transform: scale(1.05);
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.comparison-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.before-label {
    left: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.after-label {
    right: 20px;
    border: 2px solid rgba(0, 183, 255, 1);
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.6);
}

.after-label:hover {
    border-color: rgba(0, 183, 255, 1);
    box-shadow: 0 0 20px rgba(0, 183, 255, 0.8);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 183, 255, 0.6),
        rgba(0, 183, 255, 1),
        rgba(0, 183, 255, 0.6));
    transform: translateX(-50%);
    z-index: 20;
    cursor: ew-resize;
    transition: none;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.8);
}

.comparison-slider:hover {
    background: linear-gradient(180deg, 
        rgba(0, 183, 255, 0.8),
        rgba(11, 244, 243, 1),
        rgba(0, 183, 255, 0.8));
    box-shadow: 0 0 20px rgba(0, 183, 255, 1);
    width: 5px;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid rgba(0, 183, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.8),
                inset 0 0 15px rgba(0, 183, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 35px rgba(0, 183, 255, 1),
                inset 0 0 20px rgba(0, 183, 255, 0.5);
    border-width: 4px;
}

.slider-handle:hover {
    border-color: rgba(11, 244, 243, 1);
    box-shadow: 0 0 30px rgba(0, 183, 255, 1),
                inset 0 0 18px rgba(0, 183, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 183, 255, 0.8);
    transform: translateX(-50%);
}

.slider-circle {
    width: 45px;
    height: 45px;
    background: rgba(0, 183, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 183, 255, 1);
    font-size: 16px;
    transition: all 0.3s ease;
}

.slider-handle:hover .slider-circle {
    background: rgba(0, 183, 255, 0.3);
    color: rgba(11, 244, 243, 1);
    transform: rotate(180deg);
}

.slider-handle:active .slider-circle {
    background: rgba(0, 183, 255, 0.4);
    transform: rotate(360deg);
}

.comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 30;
}

/* Responsive */
@media (max-width: 991px) {
    .comparison-wrapper {
        height: 400px;
        margin-bottom: 30px;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .comparison-wrapper {
        height: 350px;
    }
    
    .slider-handle {
        width: 60px;
        height: 60px;
    }
    
    .slider-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .comparison-label {
        font-size: 11px;
        padding: 8px 15px;
    }
}

/* Contenu de droite - Section avant/après */
.comparison-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.neon-card-enhanced {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(0, 183, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 183, 255, 0.2),
                0 0 20px rgba(0, 183, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neon-card-enhanced:hover {
    border-color: rgba(0, 183, 255, 0.7);
    box-shadow: 0 15px 50px rgba(0, 183, 255, 0.4),
                0 0 30px rgba(0, 183, 255, 0.2);
    transform: translateY(-8px);
}

.content-header h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 183, 255, 0.6);
}

.neon-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 183, 255, 1), rgba(0, 183, 255, 0.3), transparent);
    margin-bottom: 25px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 183, 255, 0.5);
}

.neon-card-enhanced p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    background: rgba(0, 183, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid rgba(0, 183, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover {
    background: rgba(0, 183, 255, 0.12);
    border-left-color: rgba(0, 183, 255, 1);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 183, 255, 0.2);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 183, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    color: rgba(0, 183, 255, 1);
    font-size: 18px;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(0, 183, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 183, 255, 0.5);
    transform: scale(1.1);
}

.feature-text h5 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.btn-neon-enhanced {
    background: transparent;
    border: 2px solid rgba(0, 183, 255, 0.8);
    color: rgba(0, 183, 255, 1);
    padding: 14px 35px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.3);
}

.btn-neon-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-neon-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 183, 255, 0);
    transition: background 0.3s ease;
    z-index: -2;
}

.btn-neon-enhanced:hover {
    background: rgba(0, 183, 255, 1);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.8),
                0 5px 20px rgba(0, 183, 255, 0.4);
    transform: translateY(-3px);
    text-decoration: none;
    border-color: rgba(11, 244, 243, 1);
}

/* ================================
   GALERIE PHOTOS
================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 450px; /* Hauteur fixe pour les photos verticales */
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gallery-img-wrapper:hover {
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.6),
                0 10px 30px rgba(0, 183, 255, 0.3);
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-img-wrapper:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-gallery-zoom {
    background: rgba(0, 183, 255, 0.2);
    border: 2px solid rgba(0, 183, 255, 0.8);
    color: rgba(0, 183, 255, 1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.4);
}

.btn-gallery-zoom:hover {
    background: rgba(0, 183, 255, 1);
    color: #000;
    border-color: rgba(11, 244, 243, 1);
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.8);
    transform: scale(1.1) rotate(90deg);
}

/* Responsive Galerie */
@media (max-width: 1199px) {
    .gallery-img-wrapper {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .gallery-img-wrapper {
        height: 380px;
    }
    
    .gallery-content h4 {
        font-size: 1rem;
    }
    
    .btn-gallery-zoom {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .gallery-img-wrapper {
        height: 350px;
    }
    
    /* Afficher l'overlay sur mobile */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }
    
    .gallery-content {
        transform: translateY(0);
    }
    
    .gallery-content h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .btn-gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .gallery-img-wrapper {
        height: 300px;
    }
}

.btn-neon-enhanced:hover::before {
    left: 100%;
}

.btn-neon-enhanced:hover::after {
    background: rgba(0, 183, 255, 0.2);
}

.btn-neon-enhanced i {
    transition: transform 0.3s ease;
}

.btn-neon-enhanced:hover i {
    transform: translateX(8px);
}

/* Responsive pour les cartes enhanced */
@media (max-width: 991px) {
    .neon-card-enhanced {
        padding: 30px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .neon-card-enhanced {
        padding: 25px;
    }
    
    .content-header h3 {
        font-size: 20px;
    }
    
    .btn-neon-enhanced {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Boutons de rendez-vous - Style bannière cohérent avec le site */
.btn-appointment-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: rgb(0, 183, 255);
    color: #000;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(0, 183, 255, 0.6),
                0 5px 25px rgba(0, 183, 255, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-appointment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-appointment-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotateBanner 8s linear infinite;
    z-index: 0;
}

@keyframes rotateBanner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-appointment-banner span,
.btn-appointment-banner i {
    position: relative;
    z-index: 1;
}

.btn-appointment-banner:hover {
    background: rgba(0, 183, 255, 1);
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 183, 255, 0.9),
                0 8px 35px rgba(0, 183, 255, 0.6),
                inset 0 0 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-appointment-banner:hover::before {
    left: 100%;
}

.btn-appointment-banner i {
    transition: transform 0.3s ease;
}

.btn-appointment-banner:hover i.fa-arrow-right {
    transform: translateX(8px);
}

.btn-appointment-banner:hover i.fa-phone-alt {
    animation: phoneRing 0.5s ease infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .btn-appointment-banner {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== BANNIÈRE OFFRE DE LANCEMENT - COULEURS HARMONIEUSES ===== */
.promo-banner {
    background: linear-gradient(135deg, 
        #0a0e1a 0%, 
        #1a2332 30%,
        #0f1923 70%,
        #0a0e1a 100%);
    border-top: 2px solid #2d5a7b;
    border-bottom: 2px solid #2d5a7b;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(45, 90, 123, 0.15), 
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.promo-icon i {
    color: #f4c430;
    font-size: 1.5rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(244, 196, 48, 0.4));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(244, 196, 48, 0.6));
    }
}

.promo-badge {
    background: linear-gradient(135deg, #f4c430 0%, #d4a520 100%);
    color: #1a1a1a;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.promo-title {
    color: #e8eef2;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(45, 90, 123, 0.5);
    letter-spacing: 0.5px;
}

.promo-prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(45, 90, 123, 0.15), rgba(26, 35, 50, 0.3));
    padding: 12px 20px;
    border-radius: 50px;
    border: 1.5px solid #2d5a7b;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-item:hover {
    background: linear-gradient(135deg, rgba(45, 90, 123, 0.25), rgba(26, 35, 50, 0.4));
    border-color: #4a8db8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 123, 0.3);
}

.price-item i {
    color: #5ba3d0;
    font-size: 1.2rem;
}

.service-name {
    color: #e8eef2;
    font-weight: 600;
    font-size: 1rem;
}

.old-price {
    color: #d47c7c;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.new-price {
    color: #6ec89b;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(110, 200, 155, 0.4);
}

.price-divider {
    color: #2d5a7b;
    font-size: 2rem;
    font-weight: 700;
}

/* Timer Countdown */
.countdown-timer {
    margin-top: 25px;
}

.timer-label {
    color: #b8c5d0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.timer-box {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.8) 0%, 
        rgba(15, 25, 35, 0.9) 100%);
    border: 2px solid #2d5a7b;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.timer-box:hover {
    border-color: #4a8db8;
    box-shadow: 0 6px 20px rgba(45, 90, 123, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timer-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5ba3d0;
    text-shadow: 0 0 20px rgba(91, 163, 208, 0.5);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
}

.timer-unit {
    display: block;
    font-size: 0.75rem;
    color: #8899aa;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}

.timer-separator {
    color: #5ba3d0;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(91, 163, 208, 0.3);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.4; }
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5ba3d0 0%, #4a8db8 100%);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(91, 163, 208, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-promo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-promo:hover::before {
    width: 400px;
    height: 400px;
}

.btn-promo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(91, 163, 208, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.btn-promo span,
.btn-promo i {
    position: relative;
    z-index: 1;
}

.btn-promo:hover i {
    animation: bounceIcon 0.6s ease infinite;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .promo-title {
        font-size: 1.3rem;
    }
    
    .promo-prices {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-divider {
        display: none;
    }
    
    .timer-box {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .timer-value {
        font-size: 1.8rem;
    }
    
    .timer-unit {
        font-size: 0.65rem;
    }
    
    .btn-promo {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .promo-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
}

@media (max-width: 576px) {
    .timer-boxes {
        gap: 5px;
    }
    
    .timer-box {
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .timer-value {
        font-size: 1.5rem;
    }
    
    .timer-separator {
        font-size: 1.5rem;
    }
    
    .price-item {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .new-price {
        font-size: 1.2rem;
    }
}

/* TikTok Embed - Suppression fond blanc et nettoyage */
.tiktok-wrapper {
    position: relative;
    box-shadow: 0 0 30px rgba(91, 163, 208, 0.3);
    min-height: 740px;
}

.tiktok-embed {
    background: transparent !important;
    border: none !important;
    min-height: 740px;
}

/* Cache uniquement les textes/liens dans le blockquote avant le chargement */
.tiktok-embed section {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Style du player vidéo TikTok */
.tiktok-embed iframe {
    border-radius: 15px;
    overflow: hidden;
    min-height: 740px !important;
    width: 100% !important;
}

/* Overlay pour masquer le texte en bas de la vidéo TikTok */
.tiktok-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #000000 0%, #000000 50%, transparent 100%);
    pointer-events: none;
    z-index: 10;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Ajustement responsive pour le masque et la hauteur */
@media (max-width: 767px) {
    .tiktok-wrapper {
        min-height: 600px;
    }
    
    .tiktok-embed {
        min-height: 600px;
    }
    
    .tiktok-embed iframe {
        min-height: 600px !important;
    }
    
    .tiktok-overlay-bottom {
        height: 60px;
    }
}

@media (max-width: 575px) {
    .tiktok-wrapper {
        min-height: 550px;
    }
    
    .tiktok-embed {
        min-height: 550px;
    }
    
    .tiktok-embed iframe {
        min-height: 550px !important;
    }
}
