/* --- STATIC FORM-CURSE --- */
/* Ensure elements are always visible and correctly positioned without JS */
.form-curse {
    opacity: 1 !important;
    visibility: visible !important;
}

.form-curse .map-point {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important; /* Prevent any JS transform animations */
}

/* --- SLIM TESTIMONIAL SLIDER (CSS Only) --- */
.testimonials-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.list-testimonials-new {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.list-testimonials-new::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.list-testimonials-new {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.list-testimonials-new li {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.list-testimonials-new img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid rgba(255,255,255,0.3);
}

.list-testimonials-new .comment {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
    max-width: 700px;
}

.list-testimonials-new .date {
    font-weight: 600;
    color: #eee;
    font-size: 0.9rem;
}

/* Slider Controls (Optional visual cues) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots span:hover {
    background: rgba(255,255,255,0.8);
}
