/* ===== BODY & FONTS ===== */
body {
    font-family: 'Tajawal', sans-serif;
    margin:0;
    background:#f5f5f5;
    overflow-x:hidden;
}

/* ===== SLIDER FULLSCREEN ===== */ 
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row; /* desktop: texte à droite, form à gauche */
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}


.slide {
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position:absolute;
    top:0; left:0;
    width:100%; height:100%; 
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
	
    backdrop-filter: blur(1px);
    z-index:1;
}

/* ===== SLIDE CONTENT ===== */
.slide-content {
    color:#fff;
    max-width:45%;
    z-index:2;
}
.slide-content h1{
    font-size:3rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
    overflow:hidden;
}
.slide-content p{
    font-size:1.25rem;
    margin-bottom:25px;
    opacity:0;
}

/* ===== ANIMATION LETTRE OU MOT ===== */
.char{
    display:inline-block;
    opacity:0;
    transform:translateY(20px);
}

/* ===== FORMULAIRE PREMIUM ===== */
.booking-form {
    position: relative;
    width: 550px;
    max-width: 90%;
    max-height: 90vh; /* jamais dépasser l'écran */ 
    background: #fff;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index:2;
    overflow-y: auto;      /* scroll */
    overflow-x: hidden;    /* jamais horizontal */    
	border: solid 10px #c5005f;
	background-image: url('img/pattern.webp');
}

/* Scrollbar stylée premium */
.booking-form::-webkit-scrollbar {
    width: 8px;
}

.booking-form::-webkit-scrollbar-track {
    background: transparent;
    margin: 15px 0; /* 🔥 laisse respirer les coins arrondis */
}

.booking-form::-webkit-scrollbar-thumb {
    background: rgba(197, 0, 95, 0.35);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.booking-form::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 0, 95, 0.6);
}


/* ===== STEP NUMBERS ===== */
.steps {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.step-circle{
    width:35px; height:35px; border-radius:50%; background:#ddd; color:#fff;
    display:flex; justify-content:center; align-items:center; font-weight:bold; transition: all .3s;
}
.step-circle.active{background:#c5005f; transform: scale(1.3);
	animation: pulsexx 2s infinite;}
.step-line{
    flex:1; height:2px; background:#ddd; margin:0 5px;
}

/* ===== STEP CONTENT ===== */
.step{
    display:none;
}
.step.active{
    display:block;
}

/* ===== BOUTONS PREMIUM ===== */
.btn-next, .btn-prev, .btn-submit{
    border-radius:50px;
    padding:10px 25px;
    font-weight:600;
    font-size:1rem;
    margin-top:10px;
}

/* ===== BODY PART SELECTION ===== */
.body-part{
    cursor:pointer; 
    border:1px solid #c5005f54; 
    padding:5px; 
    border-radius:10px; 
    transition: all .3s; 
    flex:1 1 48%; /* responsive 2 par ligne mobile */
    margin-bottom:10px;
}
.body-part.selected{ 
	border: 2px solid #c5005f;
    transform: scale(1.02);
    box-shadow: 0px 0px 18px rgb(197 0 95);
    background: linear-gradient(90deg, rgba(197, 0, 95, 1) 0%, rgb(255 255 255) 50%, rgba(197, 0, 95, 1) 100%);
}
.body-part:hover{ 
	border: 2px solid #c5005f;
    transform: scale(1.02);
    box-shadow: 0px 0px 18px rgb(197 0 95);
    background: linear-gradient(90deg, rgba(197, 0, 95, 1) 0%, rgb(255 255 255) 50%, rgba(197, 0, 95, 1) 100%);
}
.body-part-img{
    width:100%; 
    height:120px; 
    object-fit:cover; 
    border-radius:10px;
    transition: all .3s;
}
.body-part:hover .body-part-img{
    transform:scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .slider{
        flex-direction: column; /* texte au dessus du formulaire */
        padding: 30px 20px;
        justify-content: center;
		height: 100vh;
    }
    .slide-content{
        max-width:90%;
        text-align:center; 
    }
    .booking-form{
        width:95%;
        max-height: none; /* scroll non nécessaire, s'adapte au contenu */
    }
}

@media(max-width:576px){
    .slide-content h1{
       font-size: 1.7rem;
    }
    .slide-content p{
        font-size:1rem;
    }
    .booking-form{
        padding:20px;
		width: 100% !important;
		max-width: 100% !important;
    }
	.body-part{ 
		flex:1 1 100%;  
	}
}

.gender-option {
    cursor: pointer;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #c5005f54;
    width: 45%;
    transition: all .3s ease;
}

.gender-option:hover,
.gender-option.selected {
	border: 2px solid #c5005f;
	transform: scale(1.02);
	box-shadow: 0px 0px 18px rgb(197 0 95); 
    background: linear-gradient(90deg, rgba(197, 0, 95, 1) 0%, rgb(255 255 255) 50%, rgba(197, 0, 95, 1) 100%); 
}
 
.btn-primary {
	background: #c5005f;
    border: solid #c5005f;
	animation: pulsexx 2s infinite;
}
.btn-primary:hover {
	color: #c5005f;
	background: white;
    border: solid #c5005f;
} 


@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}
.video-cta {
    margin-top: 20px;
}

.btn-video {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.btn-video i {
    font-size: 14px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes pulsexx {
    0% { box-shadow: 0 0 0 0 rgb(0 0 0 / 50%); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Mobile */
@media (max-width: 768px) {
    .btn-video span {
        display: none;
    }
}
@media (max-width: 768px) {
    .btn-close {
        width: 40px;
        height: 40px;
    }
}
.hk-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	  background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f6f8fc 35%,
        #e8eef9 55%,
        #fbeaec 75%,
        #ffffff 100%
    );
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.hk-loader.d-none {
	display: none !important;
}

.hk-loader-content {
	animation: fadeIn 0.5s ease-in-out;
}

.hk-loader-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 40px rgba(0,0,0,0.08);
	animation: pulse 1.6s infinite; 
}

.hk-loader-icon img {
	width: 50px;
	height: auto;
}

.hk-loader-text {
	font-size: 1.1rem;
	font-weight: 600;
	color: #444;
	letter-spacing: 0.3px;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.card-img-top {
    height: 180px;
    object-fit: cover;
}
/* ==============================
   SECTION WHY CHOOSE US
============================== */
.why-choose-us {
    background: #f8f9fa; /* gris clair premium */
    padding: 80px 0;
}

.why-choose-us h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
}

.why-choose-us p {
    font-size: 1.1rem;
    color: #555;
}

.why-choose-us .card {
    border: none;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
	border: solid 3px #a5a5a561;
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.why-choose-us .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
}

.why-choose-us .card-title {
    font-size: 1.2rem;
    margin-top: 15px;
}

.why-choose-us .card-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .slide-content {
        max-width: 55%;
    }
    .why-choose-us .card-img-top {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .slider {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        height: auto;
		height: 100vh;
    }

    .slide-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .why-choose-us .card-img-top {
        height: 160px;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }

    .why-choose-us p {
        font-size: 1rem;
    }
}

/* ===== AOS ANIMATION OVERRIDE ===== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===== HOVER SCALE EFFECT ===== */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.hk-testimonials {
    background: #fff;
    padding: 90px 0;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    overflow: hidden;
}

.hk-testimonials-head {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0 16px;
}

.hk-testimonials-head h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 10px;
}

.hk-testimonials-head p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ===== SCROLL AREA ===== */
.hk-testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

  
/* pause on hover */
.hk-testimonials-track:hover {
    animation-play-state: paused;
}

 
.hk-testimonials-track {
    will-change: transform;
}
.hk-testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.hk-testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: hkAutoScroll 40s linear infinite;
    direction: ltr; /* CRUCIAL */
	padding: 25px;
}

.hk-testimonial-card {
    width: 320px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: solid 3px #a5a5a561;
}

.hk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.hk-service {
    font-size: 14px;
    font-weight: 700;
    color: #d94b8c;
}

.hk-rating {
    font-size: 14px;
    color: #f5b301;
    letter-spacing: 1px;
}

.hk-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.hk-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777;
}

.hk-author-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hk-author {
    font-weight: 700;
    color: #222;
}

.hk-country {
    font-size: 12px;
}

.hk-verified {
    font-size: 12px;
    color: #2e7d32;
    font-weight: 600;
}

/* Auto scroll */
@keyframes hkAutoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .hk-testimonial-card {
        width: 260px;
    }
}

.footer-section a:hover {
    color: #c5005f !important;
    transition: color 0.3s;
}
.footer-section i {
    transition: transform 0.3s;
}
.footer-section i:hover {
    transform: scale(1.2);
    color: #c5005f;
}
@media(max-width:576px){
    .footer-section .text-md-start {
        text-align: center !important;
    }
}