/* VIDEO */
.video-accueil {
    position: relative;
}
.video-accueil-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.video-accueil-container video {
    width: 100%;
    height: auto;
    position: absolute;
    top: -100px;
}

/* POINT FORT */
.slider {
    background-color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.slide-track {
    display: flex;
    width: calc(250px * 9);
    animation: scroll 30s linear infinite alternate;
}
.slide {
    height: 250px;
    width: 250px;
    margin-right: 1px;
    overflow: hidden;
}
.slide img {
    height: 150px;
    width: 150px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(calc(-250px * 4));
    }
    100% {
        transform: translateX(0);
    }
}

/* SERVICE */
.wrapper {
    max-height: 100vh;
    margin: 0 auto;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 250px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.content {
    max-width: 1024px;
    width: 100%;
    padding: 0 4%;
    padding-top: 250px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
    width: 100%;
    max-width: 300px;
    min-width: 200px;
    height: 250px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    border: 2px solid rgba(7, 7, 7, 0.12);
    font-size: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    background: #fff; /* couleur de base */
    transition: background 1s ease, height 0.3s ease; /* transition fluide */
}
.card:hover {
    height: 270px;
    background: linear-gradient(60deg, #9EE0FF 50%, #ff3ef6 100%);
    background-size: 200% 200%; /* pour donner du mouvement */
    background-position: right center;
    transition: background 1s ease, height 0.3s ease;
}
.icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(230deg, #8300A8, #D342FF, #8300A8, #D342FF);
    background-size: 300% 300%;
    animation: gradientFlow 6s ease-in-out infinite alternate;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.icon i {
    font-size: 40px;
    transition: all 0.5s ease;
}
.card:hover .icon {
    background: #000;
    color: #fff;
}
.card .title {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: #fff 1px 1px, #fff -1px 1px, #fff -1px -1px, #fff 1px -1px;
}
.card .text {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: #000;
    font-weight: 600;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
}
.card:hover .text {
    opacity: 1;
    max-height: 40px;
}

/* BIOGRAPHIE */
.container-biographie {
    max-width: 1200px;
    min-width: 900px;
    margin: 0 auto;
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    padding: 80px;
}
.bio-map-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding-left: 40px;
	padding-right: 40px;
}
.bio-column {
    flex: 1 1 70%;
}
.bio-column h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.bio-column p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}
.map-column {
    flex: 1 1 45%;
}
.map-container {
    width: 100%;
    text-align: center;
}
.map-container h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.map-container .map-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}
.interactive-map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Ratio carré */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: 95% 55%; /* Point de zoom */
}
.intervention-zone {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="rgba(231, 60, 126, 0.2)" stroke="%23e73c7e" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    pointer-events: none;
}
.interactive-map-wrapper.zoomed .map-image {
    transform: scale(2.5);
}
.interactive-map-wrapper.zoomed .intervention-zone {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* SOCIAL */
.form {
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    padding: 0 20px;
}
.social {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 1rem;
  list-style: none;
  margin-top: 60px;
  margin-bottom: 40px;
}
.social li {
  position: relative;
  flex-basis: 4.5rem;
}
.social li::after {
  position: absolute;
  content: attr(data-tooltip);
  inset: -45% auto auto 50%;
  z-index: -1;
  translate: -50%;
  padding: 0.25rem 0.75rem;
  font-size: 20px;
  color: #fff;
  background: var(--bg, #070707);
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
    visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.social li:has(a:hover, a:focus-visible)::after {
  opacity: 1;
  visibility: visible;
  inset-block-start: -60%;
}
.social a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-size: 30px;
  color: #82237D;
  border: 1px solid;
  border-radius: 100%;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}
.social a > i {
  position: relative;
  z-index: 1;
}
.social a::after {
  position: absolute;
  content: "";
  inset: 100% 0 0;
  background: var(--bg, #070707);
  pointer-events: none;
  transition: inset 0.3s ease-in-out;
}
.social a:hover,
.social a:focus-visible {
  color: #fff;
}
.social a:hover::after,
.social a:focus-visible::after {
  inset-block-start: 0;
}

/* CONTACT */
.form-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 10px;
    margin-top: 50px;
}
.switcher-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: "CalSans-Regular", sans-serif;
    border: 2px solid transparent;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f3f4f6;
    color: #374151;
}
.switcher-btn.active {
    background-image: linear-gradient(125deg, #a72879, #064497);
    color: #fff;
}
.switcher-btn:not(.active):hover {
    background-color: #e5e7eb;
}
#copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}
#copy-notification.show {
    opacity: 1;
}
.form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}
.form-wrapper.visible {
    max-height: 3000px;
}
.contact-form {
    display: flex; flex-wrap: wrap; gap: 20px;
}
.contact-form .form-field {
    position: relative; margin-top: 20px; flex: 1 1 45%; min-width: 200px;
}
.contact-form .form-field.full-width { flex: 1 1 100%; }
.contact-form .input-text {
    display: block;
	width: 100%;
	height: 36px;
	border: none;
    border-bottom: 2px solid #5543ca;
	font-size: 18px;
	line-height: 26px;
    font-weight: 400;
	background: transparent;
	font-family: "Quicksand-VariableFont_wght";
}
.contact-form .input-text:focus {
	outline: none;
}
.contact-form .input-text:focus + .label,
.contact-form .input-text:not(:placeholder-shown) + .label {
	transform: translateY(-28px);
}
.contact-form .label {
    position: absolute; left: 20px; bottom: 15px; font-size: 18px;
    line-height: 26px; font-weight: 400; color: #5543ca; cursor: text;
    transition: transform 0.2s ease-in-out;
}
.contact-form .label i {
	margin-right: 8px;
	font-size: 18px;
	color: #5543ca; 
	}
.contact-form textarea.input-text {
	min-height: 100px;
	resize: none;
	padding-top: 12px;
	font-family: "Quicksand-VariableFont_wght";
}
.contact-form textarea.input-text + .label {
	position: absolute;
	top: 10px;
	left: 20px;
	bottom: auto;
	transform: none;
}
.contact-form .submit-btn {
    display: block;
	width: 100%;
	max-width: 600px;
	margin: 20px auto;
    padding: 15px 20px;
	background-color: #000;
    background-image: linear-gradient(125deg, #a72879, #064497);
    color: #fff;
	font-family: "CalSans-Regular", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
    font-size: 20px;
	font-weight: 700;
	border: none;
    border-radius: 9999px;
	cursor: pointer;
	text-align: center;
    transition: background 0.3s ease, opacity 0.3s ease;
}
.contact-form .submit-btn:hover {
	opacity: 0.9;
}
.quote-section-title {
    width: 100%;
    text-align: left;
    font-family: "CalSans-Regular", sans-serif;
    color: black;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    text-transform: uppercase;
}
.contact-form select.input-text,
.contact-form input[type="date"].input-text {
    color: #333;
    padding-top: 10px;
}
.contact-form select.input-text:required:invalid {
    color: transparent;
}
.contact-form .form-field {
    position: relative;
}
.contact-form .form-field select.input-text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
}
.contact-form .form-field::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5543ca;
    pointer-events: none;
    display: none;
}
.contact-form .form-field:has(select.input-text)::after {
    display: block;
}
.options-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}
.option-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    color: #333;
    border-color: #b9b9b9;
}
.option-item:hover {
    border-color: #a72879;
    background-color: #f0f0ff;
}
.option-item input[type="checkbox"] {
    display: none; /* On cache la case à cocher par défaut */
}
.option-item span {
    font-size: 16px;
    font-weight: 600;
}
.option-item span i {
    margin-right: 10px;
    color: #5543ca;
    transition: all 0.3s ease;
}
.option-item input[type="checkbox"]:checked + span {
    color: #fff;
}
.option-item input[type="checkbox"]:checked ~ * {
    background-image: linear-gradient(125deg, #a72879, #064497);
    border-color: #a72879;
    color: #fff;
}
.option-item:has(input[type="checkbox"]:checked) {
    background-image: linear-gradient(125deg, #a72879, #064497);
    border-color: #fff;
    color: #fff;
}
.option-item:has(input[type="checkbox"]:checked) span i {
    color: #fff;
}

/* AVIS */
.reviews-section {
    background-color: #F9FAFB;
    padding: 3rem 1rem;
    margin-top: 30px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.header-text {
    margin: 0 auto;
}
.reviews-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}
.review:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stars {
    display: flex;
    gap: 0.125rem;
    color: #7b0091;
	margin-bottom: 10px;
}
.star {
    width: 1.25rem;
    height: 1.25rem;
}
.review-text {
    margin-top: 1rem;
}
.review-desc {
    margin-top: 1rem;
    line-height: 1.75;
    color: #000;
    font-weight: bold;
    text-align: justify;
}
.review-footer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}
.contenainer-review-btn {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.review-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid #bc00de;
    border-radius: 9999px;
    color: #bc00de;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.review-btn:hover {
    background-color: #bc00de;
    color: #ffffff;
}
.btn-icon {
    width: 1rem;
    height: 1rem;
}

/*PAGE SERVICES*/
.biographie {
    text-align: justify;
	margin-bottom: -30px;
}

.pictogramme-container {
    max-width: 1200px;
	min-width: 900px;
    margin: auto;
    margin-bottom: 40px;
}
.paragraph-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.paragraph-section {
    width: 30%;
    text-align: center;
    margin-top: 20px;
}
.paragraph {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}
.paragraph1 {
    text-align: justify;
	padding: 20px;
}
.circle-above {
    width: 60px;
    height: 60px;
    background-color: #C15FD6;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}
.pictogramme {
    margin-top: -10px;
    line-height: 80px;
    color: #ffffff;
    font-size: 40px;
}

.center-prestations {
    width: 700px;
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
	margin-bottom: -40px;
}
.circle-prestations {
    position: relative;
    width: 150px;
    height: 150px;
    color: #fff;
    background: #AC34AE;
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.inner-circle {
    position: absolute;
    top: 10%;
    width: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-circle i {
    font-size: 25px;
    color: #fff;
}
.nb-prestations {
    font-size: 50px;
    line-height: 130px;
    vertical-align: middle;
}
.text-animation {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 8px;
    font-size: 15px;
    text-transform: uppercase;
    background: #B43AC0;
    border: 2px solid;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: none;
}

.timeline-section {
    padding: 50px 20px;
    background-color: #fff;
}
.timeline-title {
    margin-bottom: 50px;
}
.cbp_tmtimeline {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}
.cbp_tmtimeline li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.cbp_tmtime {
    position: absolute;
    left: 0;
    top: 5px;
    width: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #C15FD6;
}
.cbp_tmicon {
    position: absolute;
    left: 60px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #C15FD6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.cbp_tmlabel {
    margin-left: 70px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cbp_tmlabel h6 {
    margin: 0 0 5px;
    font-size: 20px;
    color: #333;
}
.cbp_tmlabel p {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.container-video-demonstration {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 50px;
    box-sizing: border-box;
}
.video-demonstration {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.video-demonstration video {
    flex: 1 1 500px;
    max-width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 2em;
}
.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: 250ms 50ms;
}

/*MENTIONS LEGALES*/
.container-mentionslegales {
    min-width: 900;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 30px;
}

/*PARTENAIRES*/
.partenaires-container {
    width: 1100px;
    margin: auto;
    padding-top: 100px;
    margin-bottom: 60px;
}
.partenaires-grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.partenaire-card {
    width: 30%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}
.logo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 10px;
}
.partenaire-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.partenaire-nom {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.partenaire-description {
    text-align: justify;
}

/*CONFIRMATION*/
.container-confirmation {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 10px;
}
.confirmation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 100px 20px;
    background-color: #f9fafb; /* Un fond légèrement gris */
}
.confirmation-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    border-top: 5px solid #5543ca;
}
.confirmation-icon {
    font-size: 60px;
    color: #28a745; /* Vert succès */
    margin-bottom: 20px;
}
.confirmation-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
.confirmation-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}
.confirmation-spam-notice {
    font-size: 16px;
    color: #000;
    margin-top: 20px;
    font-style: italic;
}
.confirmation-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 30px auto;
    width: 80%;
}
.confirmation-box h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
	letter-spacing: 1px;
    font-family: "CalSans-Regular", sans-serif;
}
.social-links-confirmation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.social-btn i {
    margin-right: 10px;
    font-size: 20px;
}
.facebook-btn {
	background-color: #1877F2;
}
.instagram-btn {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.site-links-confirmation {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Pour les petits écrans */
}
.site-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #5543ca;
    background-color: #5543ca;
    color: #fff;
}
.site-btn.alt {
    background-color: transparent;
    color: #5543ca;
}

.site-btn:hover {
    background-color: #4535a0;
    border-color: #4535a0;
}
.site-btn.alt:hover {
    background-color: #5543ca;
    color: #fff;
}
.site-btn i {
    margin: 0 8px;
}

.error-box {
    border-top-color: #dc3545; /* Rouge erreur */
}
.confirmation-icon.error-icon {
    color: #dc3545; /* Rouge erreur */
}
.error-options-text {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.error-contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: none;
}
.contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.phone-btn { background-color: #198754; }
.email-btn { background-color: #0d6af4; }

/*SIGNATURE*/
.container-signature {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container-signature h2{
    margin-top: 80px;
    margin-bottom: 30px;
}
label-signature {
    display: block;
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
	font-family: 'Quicksand-VariableFont_wght', sans-serif;
	font-size: 15px;
}
#signature-preview {
    display: none;
    max-width: 100%;
    margin-bottom: 20px;
    border: 2px dashed #ccc;
    border-radius: 5px;
}

/*DETAILS SERVICES DJ*/
:root {
    --primary-color: #a72879;
    --secondary-color: #064497;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}
.services-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(125deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    top: 0;
    z-index: 100;
    position: flex;
}
.services-header h2 {
    margin-top: 30px;
    margin-bottom: -20px;
}
.services-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.services-layout {
    display: flex;
    gap: 2rem;
}
.services-nav {
    flex: 0 0 250px;
    position: sticky;
    top: 150px;
    align-self: flex-start;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}
.services-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-nav a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}
.services-nav a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}
.services-nav a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}
.services-content {
    flex: 1;
    min-width: 0;
}
.service-card {
    position: relative;
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    scroll-margin-top: 180px;
}
.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-image {
    transform: scale(1.05);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
}
.service-card-content {
    position: relative;
    z-index: 3;
}
.service-card-content h3 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.service-card-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 90%;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}







/* --- PAGE PREPARATION --- */
.progression-navbar {
        position: sticky;
        top: 50px;
        z-index: 990;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
.progression-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 20px;
    }
.progression-item {
        display: flex;
        align-items: center;
        font-size: 0.9em;
        font-weight: bold;
        color: #666;
        text-decoration: none;
        transition: color 0.2s ease;
    }
.progression-item:hover {
        color: #007bff;
    }
.progression-item-link {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }
.progression-item-link:hover {
        color: #007bff;
    }

.progress-container {
	padding: 10px 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	text-align: center;
	}
.progress-container span {
	font-size: 1em;
	font-weight: bold;
	color: #333;
	}
.progression-checkbox {
	margin-right: 12px;
	transform: scale(1.2);
	cursor: pointer;
	}
.container-prepa {
	max-width: 900px;
	margin: 40px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	box-sizing: border-box;
}

.full-width-field {
    grid-column: 1 / -1; /* occupe toute la largeur si placé dans une grille */
    margin-bottom: 20px;
}

.full-width-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.full-width-field input {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.event-details-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
}
.event-details-columns dl {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 10px;
}
.event-details-columns dt {
    font-weight: bold;
    color: #000;
    text-align: right;
    padding-right: 5px;
}
.event-details-columns dd {
    margin-left: 0;
    color: #333;
}
.event-details-columns dd strong {
    color: #CE00D1;
}

.prep-section-title {
        width: 100%;
        text-align: left;
        font-family: 'CalSans-Regular', sans-serif;
        color: black;
        padding-bottom: 10px;
        border-bottom: 2px solid #e0e0e0;
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 22px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
.prep-options-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}
.prep-option-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    color: #333;
    border-color: #b9b9b9;
    font-size: 16px;
    font-weight: 600;
}
.prep-option-item:hover {
    border-color: #a72879;
    background-color: #f0f0ff;
}
.prep-option-item input[type="checkbox"] {
    display: none;
}
.prep-option-item span {
    display: flex;
    align-items: center;
}
.prep-option-item span i {
    margin-right: 10px;
    color: #5543ca;
    transition: all 0.3s ease;
}
.prep-option-item:has(input[type="checkbox"]:checked) {
    background-image: linear-gradient(125deg, #a72879, #064497);
    border-color: #fff;
    color: #fff;
}
.prep-option-item:has(input[type="checkbox"]:checked) span i {
    color: #fff;
}
select.input-text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    background-color: white;
}
.form-group select.input-text + .label-after-select {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5543ca;
    pointer-events: none;
}
.form-group label[for="couleur_eclairage_salle"],
.form-group label[for="couleur_ouverture_bal"] {
    position: static;
    transform: none;
    cursor: default;
    color: #555;
    font-weight: bold;
}
.form-group.select-with-label .input-text + .label {
    position: absolute;
    left: 20px;
    top: 10px;
    transform: none;
    color: #5543ca;
    cursor: default;
}
.form-group.select-with-label .input-text:focus + .label,
.form-group.select-with-label .input-text:not([value=""]) + .label {
    transform: translateY(-24px);
}
input[type="checkbox"] {
        margin-right: 8px;
    }

.croquis-preview {
        max-width: 100%;
        height: auto;
        display: block;
        margin-top: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
.croquis-instructions {
        background-color: #e9f7ef;
        border-left: 5px solid #28a745;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 4px;
        font-size: 0.95em;
        color: #333;
    }
.croquis-instructions p {
        margin-bottom: 8px;
    }
.croquis-instructions ul {
        margin-top: 5px;
        margin-bottom: 0;
        padding-left: 20px;
    }
.croquis-instructions li {
        margin-bottom: 3px;
    }

#uploaded-files-list ul {
        list-style: none;
        padding: 0;
        margin-top: 10px;
    }
#uploaded-files-list li {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
#uploaded-files-list a {
        color: #007bff;
        text-decoration: none;
    }
#uploaded-files-list a:hover {
        text-decoration: underline;
    }
#uploaded-files-list .remove-uploaded-file {
        background: none;
        border: none;
        color: #dc3545;
        cursor: pointer;
        font-size: 1.2em;
        padding: 0;
        line-height: 1;
        transition: color 0.2s ease;
    }
#uploaded-files-list .remove-uploaded-file:hover {
        color: #c82333;
    }
.planning-manager {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
.planning-table-container {
        flex: 2;
        min-width: 300px;
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
.planning-table-container h3 {
        text-align: left;
        font-size: 24px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
.planning-instructions {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 15px;
        line-height: 1.4;
    }
#planning-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }
#planning-table th, #planning-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
        vertical-align: middle;
    }
#planning-table th {
        background-color: #f2f2f2;
        font-weight: bold;
    }
#planning-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }
#planning-table td[contenteditable="true"] {
        background-color: #fff;
        cursor: text;
        transition: background-color 0.2s ease;
    }
#planning-table td[contenteditable="true"]:focus {
        outline: 1px solid #007bff;
        background-color: #e6f7ff;
    }
.remove-planning-row {
        background-color: #dc3545;
        color: white;
        border: none;
        border-radius: 3px;
        padding: 5px 8px;
        cursor: pointer;
        font-size: 0.8em;
        transition: background-color 0.2s ease;
    }
.remove-planning-row:hover {
        background-color: #c82333;
    }
.activity-palette {
        flex: 1;
        min-width: 250px;
        background-color: #fafafa;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
.activity-palette h3 {
        text-align: left;
        font-size: 24px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
.palette-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
.palette-item {
        background-color: #F9E0FF;
        border: 1px solid #A45FB3;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: grab;
        transition: background-color 0.2s ease, transform 0.1s ease;
        font-size: 0.95em;
        font-weight: 600;
        color: #000;
        text-align: center;
    }
.palette-item:hover {
        background-color: #5F0075;
        transform: translateY(-2px);
		color: #fff;
    }
.add-item-button {
        background-color: #F08FFF;
        border: 1px solid #A45FB3;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: grab;
        transition: background-color 0.2s ease, transform 0.1s ease;
        font-size: 0.95em;
        font-weight: 600;
        color: #000;
        text-align: center;
        margin-top: 10px;
    }
.add-item-button:hover {
        background-color: #5F0075;
        transform: translateY(-2px);
		color: #fff;
    }
.palette-item.dragging {
        opacity: 0.6;
        border: 2px dashed #007bff;
        background-color: #e6f7ff;
    }
#planning-table tbody.drag-over {
        background-color: #e0f2f7;
        border: 2px dashed #007bff;
    }
#planning-table .planning-hour-cell {
        padding: 0;
    }
#planning-table .planning-hour-select {
        width: 100%;
        padding: 8px 5px;
        border: none;
        background-color: transparent;
        font-size: 1em;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23333' d='M0 2l4 4 4-4z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 8px;
        cursor: pointer;
    }
.item-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
        align-items: flex-end;
        border: 1px dashed #e0e0e0;
        padding: 10px;
        border-radius: 4px;
        background-color: #f9f9f9;
    }
.item-row label {
        flex: 1;
        min-width: 150px;
        font-weight: normal;
        margin-bottom: 5px;
    }
.item-row input[type="text"] {
        width: auto;
        flex-grow: 1;
        margin-bottom: 0;
    }
.item-row button {
        flex-shrink: 0;
        margin-bottom: 0;
        margin-top: 0;
    }
.button-group {
	text-align: right;
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
button1 {
	padding: 12px 25px;
	background-color: #8300A8;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease;
	font-family: 'Quicksand-VariableFont_wght', sans-serif;
}
button1:hover {
        background-color: #D342FF;
}
.remove-item-button {
        background-color: #dc3545;
        margin-left: 10px;
        padding: 8px 15px;
        font-size: 14px;
        font-family: 'Quicksand-VariableFont_wght', sans-serif;
    }
.remove-item-button:hover {
        background-color: #c82333;
    }
.generate-pdf-button {
        background-color: #004478;
        margin-left: 10px;
    }
.generate-pdf-button:hover {
        background-color: #0079D6;
    }





@media (max-width: 900px) {

    .event-details-columns {
        grid-template-columns: 1fr; /* Une seule colonne sur les petits écrans */
        gap: 15px;
        padding: 10px;
    }
    .event-details-columns .column {
        /* Pas de style spécifique pour les colonnes internes sur mobile */
    }
    .event-details-columns dl {
        grid-template-columns: auto 1fr; /* Reste en 2 colonnes à l'intérieur de chaque dl */
        gap: 5px 10px;
    }
    .event-details-columns dt {
        text-align: left; /* Aligne le libellé à gauche sur mobile */
        padding-right: 0;
        /* Pas de bordure pour chaque dt/dd si le design ne le souhaite pas */
    }
    .event-details-columns dd {
        margin-bottom: 5px; /* Espace entre chaque paire dt/dd */
    }
    .prep-options-group {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
    .prep-option-item {
        font-size: 15px; /* Légèrement plus petit sur mobile */
        padding: 8px 12px;
    }
    .prep-option-item span i {
        font-size: 1.1em; /* Ajuste la taille de l'icône */
    }
    select.input-text {
        padding-right: 20px; /* Ajuste le padding sur mobile */
    }
	.button-group {
            flex-direction: column;
            align-items: stretch;
        }
	.button-group button, .button-group a.button {
            width: 100%;
            margin: 5px 0 !important;
        }
	.item-row {
            flex-direction: column;
            align-items: stretch;
        }
	.item-row label, .item-row input {
            width: 100%;
            min-width: auto;
        }
	.remove-item-button {
            margin-left: 0;
            margin-top: 10px;
            width: 100%;
        }
	.form-section h2 {
            font-size: 24px;
        }
	.form-section h3 {
            font-size: 20px;
        }
	.progression-navbar {
            top: 50px; /* Ajuste pour la navbar mobile */
            padding: 8px 0;
        }
	.progression-list {
            gap: 10px; /* Moins d'espace sur mobile */
            font-size: 0.8em;
        }
	.progression-icon {
            font-size: 1em;
        }
	.form-section h2[id] {
            scroll-margin-top: 100px; /* Ajuste sur mobile */
        }
	.event-details-columns {
            grid-template-columns: 1fr; /* Une seule colonne sur les petits écrans */
            gap: 15px;
            padding: 10px;
        }
	.event-details-columns dl {
            grid-template-columns: auto 1fr; /* Reste en 2 colonnes à l'intérieur de chaque dl */
            gap: 5px 10px;
        }
	.event-details-columns dt {
            text-align: left;
            padding-right: 0;
        }
	.event-details-columns dd {
            margin-bottom: 5px;
        }
	.planning-manager {
            flex-direction: column;
        }
	.planning-table-container,
	.activity-palette {
            min-width: unset;
            width: 100%;
        }
	.prep-options-group {
            grid-template-columns: 1fr;
        }
	.prep-option-item {
            font-size: 15px;
            padding: 8px 12px;
        }
	.prep-option-item span i {
            font-size: 1.1em;
        }
	.prep-section-title {
            font-size: 20px;
        }

    .slider {
        margin-top: 10px;
    }
    .slide-track {
        width: calc(170px * 9);
    }
    .wrapper {
        height: 500px;
        margin-top: 80px;
        margin-bottom: 360px;
    }

    .content {
        padding-top: 300px;
        flex-direction: column;
    }
	.card {
        max-width: 90%;
        min-width: unset;
        margin: 15px 0;
        height: auto;
        transition: background 1s ease, height 0.3s ease;
    }
    .card:hover {
        height: auto;
    }
    .card .text {
        max-height: none;
        margin-top: 1px;
		margin-bottom: 5px;
    }
    .icon {
		margin-top: 20px;
        width: 60px;
        height: 60px;
    }
    .icon i {
        font-size: 30px;
    }
	.card .title {
    margin-top: 10px;
}
    .container-biographie {
        min-width: auto;         /* Supprimer la min-width rigide */
        width: 90%;              /* Utiliser un pourcentage pour mieux s'adapter */
        padding: 40px 20px;      /* Réduire les marges intérieures */
        font-size: 15px;         /* Adapter la taille de police */
        text-align: left;        /* Justifié peut être dur à lire sur petit écran */
    }
    .social-icons {
        display: grid;
        grid-template-columns: repeat(2, 100px);
        grid-auto-rows: 100px;
        gap: 50px;
        justify-content: center;
    }
    .social-icons li a {
        margin: 0;
    }
    .social-description {
        font-size: 20px;
    }

    .pictogramme-container {
        max-width: 900px;
        min-width: auto;
        padding: 0 15px;
    }
    .paragraph-container {
        flex-direction: column;
        align-items: center;
    }
    .paragraph-section {
        width: 100%;
        max-width: 600px;
		margin-top: 5px;
		margin-bottom: 5px;
    }
	.biographie {
		margin-bottom: 0px;
	}
    .video-demonstration {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .video-demonstration video {
        max-width: 100%;
        flex: 1 1 auto;
    }
    .container-video-demonstration {
        padding: 10px 15px;
    }

    .center-prestations {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 50px auto;
		margin-bottom: -40px;
    }
    .circle-prestations {
        margin-bottom: 20px;
    }
    .video-demonstration {
        flex-direction: column;
        gap: 20px;
    }
    .video-accueil-container {
        display: none;
    }
    .video-accueil {
        position: relative;
        height: auto;
        padding: 20px 0;
        text-align: center;
    }
    .video-accueil h1 {
        position: static;
        transform: none;
        font-size: 20px;
        margin: 0 auto;
        margin-top: 50px;
    }
    .partenaires-container {
        width: 90%;
        margin: 0 auto;
        padding-top: 100px;
        margin-bottom: 60px;
    }
    .partenaire-card {
        width: 100%;
    }
    .form-switcher {
        flex-wrap: wrap;
    }
    .form-switcher .switcher-btn {
        flex-basis: 40%;
        text-align: center;
        justify-content: center;
    }
    .bio-map-section {
        flex-direction: column;
    }
    .bio-map-section {
        align-items: center;
    }
    .services-header {
        position: static;
    }
    .services-layout {
        flex-direction: column;
    }
    .services-nav {
        display: none;
    }
    .service-card-content h3 {
        font-size: 1.5rem;
    }
    .service-card {
        scroll-margin-top: 150px;
    }
	.cbp_tmicon {
    left: 10px;
}
	.cbp_tmlabel {
		margin-left: 5px;
		margin-right: 5px;
	}



}
