/* =============================================================================
   STYLES DE BASE
   ============================================================================= */

/* Prévention du débordement horizontal */
body,
html {
  overflow-x: hidden !important;
}

/* =============================================================================
   SECTION VIDEO
   ============================================================================= */

/* Container principal de la section vidéo */
.video-section {
  text-align: center;
  padding: 40px 20px;
  padding-bottom: 20px;
}

/* Informations de la vidéo */
.video-info {
  color: #034363 !important;
  font-size: 18px;
  margin-top: 20px;
}

.video-info .author {
  font-size: 24px;
}

/* Container des cartes vidéo */
.video-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin-bottom: 30px;
}

/* Carte vidéo individuelle */
.video-card {
  width: 350px;
  overflow: visible;
}

/* Wrapper de la vidéo avec bordure arrondie */
.video-wrapper {
  position: relative;
  border-radius: 50px;
  overflow: visible;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  /* min-height: 450px !important;
  max-height: 450px !important; */
  border-radius: 50px;
  object-fit: cover;
}

/* Effet de fond bleu derrière la vidéo */
.video-wrapper::before {
  content: "";
  background: #09b5cc;
  height: 100%;
  width: 105%;
  display: block;
  position: absolute;
  border-radius: 50px;
  top: -18px;
  left: -17px;
  z-index: -1;
}

/* =============================================================================
   BOUTON PLAY/PAUSE VIDEO
   ============================================================================= */

/* Bouton de lecture/pause */
.video-play-btn {
  position: absolute;
  bottom: 10px;
  right: 30px;
  width: 55px;
  height: 40px;
  background: rgba(27, 25, 68, 0.3);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 2px solid white;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.video-play-btn .icon {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
}

/* Icône Play (triangle) - État pause */
.video-play-btn[data-state="paused"] .icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 3px;
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-radius: 3px;
}

/* Effet de creux pour l'icône play */
.video-play-btn[data-state="paused"] .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 3.1px;
  left: 5px;
  width: 0;
  height: 0;
  border-left: 7px solid rgb(27 25 68 / 78%);
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
  border-radius: 0px;
}

/* Icône Pause (deux barres) - État lecture */
.video-play-btn[data-state="playing"] .icon::before,
.video-play-btn[data-state="playing"] .icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 12px;
  background: white;
}

.video-play-btn[data-state="playing"] .icon::before {
  left: 2px;
}

.video-play-btn[data-state="playing"] .icon::after {
  right: 2px;
}

/* =============================================================================
   CONTRÔLES SLIDER (MOBILE)
   ============================================================================= */

/* Contrôles de navigation du slider - cachés par défaut */
.slider-controls {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

/* Points de navigation */
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(9, 181, 204, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #09b5cc;
  transform: scale(1.2);
}

/* =============================================================================
   SECTION ÉVALUATIONS
   ============================================================================= */

/* Colonne des évaluations */
.rating-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 80px;
  background-color: #0c4964;
  border-radius: 0 30px 30px 0;
  max-width: fit-content;
  position: relative;
  left: -50px !important;
  bottom: -60px;
}

/* Texte d'introduction des évaluations */
.line-text p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

/* Container des étoiles */
.line-stars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Groupe d'étoiles par plateforme */
.stars {
  display: flex;
  align-items: center;
  margin-right: 20px !important;
  cursor: pointer !important;
}

.store-logo {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.star-rating {
  width: auto;
  margin-right: 10px;
}

.note {
  color: white;
  font-weight: 500;
  font-size: 20px;
}

/* =============================================================================
   CLASSES UTILITAIRES
   ============================================================================= */

/* Couleur bleue personnalisée */
.blue-custom {
  color: #09b5cc;
}

/* Texte en gras */
.bolded {
  font-weight: 600;
}

/* Soulignement avec image */
.underline {
  position: relative;
  display: inline-block;
}

.underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -27px;
  width: 100%;
  height: 100%;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/udnerline.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* =============================================================================
   ÉLÉMENTS DÉCORATIFS
   ============================================================================= */

/* Guillemets décoratifs */
.need-quote-img::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -30px;
  width: 50px;
  height: 70px;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/quote-section.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Image de Nina en arrière-plan */
.need-img-header {
  overflow: visible !important;
}

.need-mascote::before {
  content: "";
  position: absolute;
  left: -225px;
  bottom: -50px;
  width: 350px;
  height: 500px;
  background-image: url(https://www.albus.fr/app/uploads/2025/07/Mascottes-Albus.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 99;
}
.need-mascote::after {
  content: "";
  position: absolute;
  left: -230px;
  bottom: -40px;
  width: 250px;
  height: 300px;
  background-image: url(https://www.albus.fr/app/uploads/2025/07/bg_mascote.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.need-hearth-video::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -50px;
  width: 350px;
  height: 350px;
  background-image: url(https://www.albus.fr/app/uploads/2025/07/icon-hearts-video.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
/* Feux d'artifice décoratifs */
.need-firework::before {
  content: "";
  position: absolute;
  right: 70px;
  top: 50px;
  width: 200px;
  height: 200px;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/firework.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Cœurs décoratifs */
.need-hearth-1::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 50px;
  width: 150px;
  height: 150px;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/coeurs_illu.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.need-hearth-2::before {
  content: "";
  position: absolute;
  right: 70px;
  top: -60px;
  width: 150px;
  height: 150px;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/coeurs_illu_v2.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Effet décoratif Albus */
.need-albus-effect::before {
  content: "";
  position: absolute;
  left: 45px;
  top: -40px;
  width: 120px;
  height: 35px;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/albus_top_effect.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* =============================================================================
   SECTION SERVICES - POPUP
   ============================================================================= */

/* Container principal du service */
.service-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  background-color: #00b6bd;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
  color: white;
  padding: 0px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.popup-services {
  cursor: pointer !important;
}

/* Header du service (colonne gauche) */
.service-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 40px 80px !important;
  margin-right: 30px;
}

/* Titre du service */
.service-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  position: absolute;
  right: 0px;
  top: 40px;
  color: #faffb3;
}

/* Soulignements colorés */
.underline-blue {
  display: inline-block;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/underline-blue.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  padding-bottom: 25px;
}

.underline-yellow {
  display: inline-block;
  background-image: url("https://www.albus.fr/app/uploads/2025/07/underline_yellow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  padding-bottom: 25px;
}

/* Introduction du service */
.service-intro {
  font-size: 25px;
  font-weight: 600;
  color: white;
  margin-top: 40px;
  line-height: 35px;
  margin-bottom: 0px;
}

.service-intro span {
  color: #faffb3;
}

/* Description du service */
.service-description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}

/* Actions du service */
.service-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.service-actions .btn-primary {
  color: #faffb3;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  align-items: center;
  cursor: pointer;
  margin-right: 10px !important;
}

.service-actions img {
  width: 10px;
}

.service-actions .hs-cta-embed {
  position: relative;
  left: -22px !important;
}
#facturation .hs-cta-embed {
  left: -40px !important;
}
/* Image du service (colonne droite) */
.service-img {
  flex: 1;
  max-height: 100%;
}

.service-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 32px;
}

/* Icône du service */
.service-icon {
     max-width: 120px !important;
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* Solutions HB */

.price-col-cyan::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #09b5cc14;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.price-col-orange::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #ff786514;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.price-col-yellow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f3ff5214;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.price-col-cyan:hover::before,
.price-col-orange:hover::before,
.price-col-yellow:hover::before {
  height: 100%;
}

.slider-container {
  max-width: 500px;
  margin: 0 auto !important;
  width: 100%;
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  color: white;
  position: relative;
  text-align: left;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  max-height: 300px;
}

.slide-image {
  display: block;
  margin: 0;
  width: 100%;
  text-align: left;
  position: relative;
  margin-bottom: 0;
}

.slide-icon {
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 1.2;
}

.slide-description {
  padding-bottom: 0;
  padding-top: 30px;
  width: 100%;
  font-size: 1em;
  line-height: 1.5;
}

.slide-description p {
  margin-bottom: 15px;
  font-weight: 500 !important;
}
.slide-description .first-text {
  font-weight: 300 !important;
}

.slide-description p:last-child {
  margin-bottom: 0;
}

/* Slide backgrounds */
.slide-1 {
  background: #034363;
}

.slide-2 {
  background: #ffb7ad;
}

.slide-2 .slide-description,
.slide-5 .slide-description,
.slide-2 .slide-title,
.slide-5 .slide-title {
  color: #034363;
}

.slide-1 .slide-description,
.slide-1 .slide-title,
.slide-3 .slide-description,
.slide-3 .slide-title,
.slide-4 .slide-description,
.slide-4 .slide-title {
  color: white;
}

.slide-3 {
  background: #09b5cc;
}

.slide-4 {
  background: #ff5d47;
}

.slide-5 {
  background: #f3ff52;
}

.controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.control-dot.active {
  background: white;
  transform: scale(1.3);
}

.nav-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2em;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrows:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.nav-prev {
  left: 15px;
}

.nav-next {
  right: 15px;
}
#harry-video video {
  border-radius: 30px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-container {
    max-width: 350px;
    margin: 10px;
  }

  .slider-wrapper {
    height: auto;
  }

  .slide {
    padding: 30px;
  }

  .slide-title {
    font-size: 22px;
    font-weight: bold;
  }

  .slide-description {
    font-size: 16px;
    padding-top: 25px;
  }

  .slide-icon {
    width: auto !important;
    max-height: 70px !important;
  }
  .slide-content {
    min-height: 400px !important;
    max-height: unset !important;
  }
}

@media (max-width: 480px) {
  .slider-container {
    max-width: 320px;
  }

  .slider-wrapper {
    height: auto;
  }

  .slide {
    padding: 30px;
  }

  .slide-title {
    font-size: 22px;
    font-weight: bold;
  }

  .slide-description {
    font-size: 16px;
    padding-top: 20px;
  }

  .nav-arrows {
    display: none;
  }
  .slide-content {
    min-height: 400px !important;
    max-height: unset !important;
  }
}

/* Animation effects */
.slide-title,
.slide-description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.slide.active .slide-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slide-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.slide.active .slide-icon {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.05s;
}
.et_pb_video_box,
.et_pb_video_overlay {
  border-radius: 30px !important;
}
/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 981px) {
  .video-cards {
    display: flex;
    overflow: visible;
    flex-wrap: nowrap;
    gap: 290px;
    justify-content: flex-start;
    scroll-behavior: smooth;
    padding: 0;
    margin-bottom: 20px;
    /* Masquer la scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Scroll snap pour alignement parfait */
    scroll-snap-type: x mandatory;
  }
  .need-hearth-2::before {
    display: none !important;
  }
  .video-cards::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 50px;
    overflow: visible;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    /* max-height: 560px !important;
    min-height: 560px !important; */
    max-width: 100%;
    object-fit: cover;
    border-radius: 50px;
  }

  .video-wrapper::before {
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
  }

  /* Afficher les contrôles sur mobile */
  .slider-controls {
    display: flex;
  }

  .video-section {
    padding: 20px 0;
    overflow: hidden;
    padding-bottom: 50px !important;
  }

  .video-play-btn {
    bottom: 8px;
    right: 40px;
    width: 45px;
    height: 40px;
  }
}
/* Mobile - Adaptation de la section vidéo */
@media (max-width: 768px) {
  .video-cards {
    display: flex;
    overflow: visible;
    flex-wrap: nowrap;
    gap: 200px;
    justify-content: flex-start;
    scroll-behavior: smooth;
    padding: 0;
    margin-bottom: 20px;
    /* Masquer la scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Scroll snap pour alignement parfait */
    scroll-snap-type: x mandatory;
  }
  .need-hearth-2::before {
    display: none !important;
  }
  .video-cards::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 50px;
    overflow: visible;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    /* max-height: 560px !important;
    min-height: 560px !important; */
    max-width: 100%;
    object-fit: cover;
    border-radius: 50px;
  }

  .video-wrapper::before {
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
  }

  /* Afficher les contrôles sur mobile */
  .slider-controls {
    display: flex;
  }

  .video-section {
    padding: 20px 0;
    overflow: hidden;
    padding-bottom: 50px !important;
  }

  .video-play-btn {
    bottom: 8px;
    right: 40px;
    width: 45px;
    height: 40px;
  }
      .popup-content-wrapper .service-header {
        padding: 40px 30px 30px 30px !important;
    }
}

/* Petits écrans mobiles (max 480px) */
@media screen and (max-width: 479px) {
  .video-card {
    padding: 0 15px;
  }
  .video-cards {
    gap: 30px !important;
  }
  .video-play-btn {
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .video-play-btn .icon {
    width: 30px;
    height: 30px;
  }
  .video-play-btn[data-state="paused"] .icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-radius: 3px;
  }
  .video-play-btn[data-state="paused"] .icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 8px;
    width: 0;
    height: 0;
    border-left: 14px solid rgb(27 25 68 / 78%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-radius: 3px;
  }
  .video-play-btn[data-state="playing"] .icon::before,
  .video-play-btn[data-state="playing"] .icon::after {
    content: "";
    position: absolute;
    top: 5px;
    width: 2px;
    height: 20px;
    background: white;
  }
  .video-play-btn[data-state="playing"] .icon::after {
    right: 13px;
  }
  .video-play-btn[data-state="playing"] .icon {
    left: 5px;
  }
  /* Adaptations des éléments décoratifs */
  .need-quote-img::before {
    right: 10px;
    width: 35px;
    top: -35px;
  }

  .line-text p {
    text-align: left;
    line-height: 35px;
    font-size: 25px;
    padding-right: 100px;
  }

  .line-stars {
    justify-content: flex-start;
  }

  .stars {
    margin-bottom: 30px;
  }
  .store-logo {
    width: 30px !important;
  }
  .star-rating {
    width: 140px !important;
  }

  .rating-column {
    padding: 30px 20px;
    padding-bottom: 10px;
    left: -10.5px !important;
  }

  .need-img-header::before {
    content: "";
    position: absolute;
    width: 270px !important;
    height: 270px !important;
    right: -20px;
    bottom: 15px;
    z-index: 99;
    background-image: url("https://www.albus.fr/app/uploads/2025/07/Nina-effectuant-un-pansement-a-une-patiente_mob.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .et_pb_module.cta-header-button {
    margin-bottom: 120px !important;
  }

  .hs-cta-embed {
    margin: 0 auto !important;
  }
  .cta-header-button .hs-cta-embed {
    margin-left: 0px !important;
  }

  .need-firework::before {
    width: 60px;
    right: 20px;
    top: 10px;
  }

  #row-rating {
    margin-top: -60px !important;
  }

  /* Popup services - Mobile */
  .service-content {
    flex-direction: column !important;
  }

  .popup-tab-content .service-header {
    width: 100% !important;
    max-width: 100% !important;
    padding: 40px !important;
    padding-bottom: 0px !important;
  }

  .service-title {
    left: 30px;
    right: unset;
    background-image: unset;
    top: 50px;
    font-size: 20px !important;
  }

  .service-icon {
    max-width: 70px !important;
    position: absolute;
    right: 50px;
    top: 15px;
  }

  .service-intro {
    margin-top: 60px !important;
    font-size: 20px !important;
  }

  .service-actions .hs-cta-embed {
    margin: unset !important;
  }

  #facturation .service-icon,
  #cotation .service-icon {
    max-width: 40px !important;
  }

  .need-hearth-1::before {
    display: none !important;
  }

  .need-albus-effect::before {
    left: 0px !important;
    width: 80px !important;
  }
  #services-row ul li {
    text-align: left !important;
    font-size: 16px !important;
  }
  .need-hearth-video::before,
  .need-mascote::before,
  .need-mascote::after {
    display: none !important;
  }
  .harry-player video {
    height: 400px !important;
  }
  h3 {
    font-size: 20px !important;
  }
    .service-img img {
    max-height: 500px !important;
    object-fit: contain !important;
  }
}

/* Téléphones en paysage (480px - 767px) */
@media screen and (min-width: 480px) and (max-width: 767px) {
  .need-quote-img::before {
    right: -30px;
    width: 40px;
    top: -20px;
  }

  .line-text p {
    text-align: left;
    line-height: 35px;
    padding-right: 100px;
  }

  .line-stars {
    justify-content: flex-start;
  }

  .stars {
    margin-bottom: 30px;
  }

  .rating-column {
    padding: 30px 20px;
    padding-bottom: 10px;
    left: -13px !important;
  }

  .need-img-header::before {
    content: "";
    position: absolute;
    width: 270px !important;
    height: 270px !important;
    right: -20px;
    bottom: -50px;
    z-index: 99;
    background-image: url("https://www.albus.fr/app/uploads/2025/07/Nina-effectuant-un-pansement-a-une-patiente_mob.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .et_pb_module.cta-header-button {
    margin-bottom: 140px !important;
  }

  .hs-cta-embed {
    margin: 0 auto !important;
  }

  .need-firework::before {
    width: 60px;
    right: 20px;
    top: 10px;
  }

  /* Popup services - Paysage */
  .service-content {
    flex-direction: column !important;
  }

  .popup-tab-content .service-header {
    width: 100% !important;
    max-width: 100% !important;
  }

  .service-title {
    left: 30px;
    right: unset;
    background-image: unset;
    top: 50px;
  }

  .service-icon {
    max-width: 90px !important;
    position: absolute;
    right: 70px;
    top: 30px;
  }

  .service-intro {
    margin-top: 60px !important;
  }

  .service-actions .hs-cta-embed {
    margin: unset !important;
  }

  #facturation .service-icon,
  #cotation .service-icon {
    max-width: 40px !important;
  }

  .need-hearth-1::before {
    display: none !important;
  }

  .need-albus-effect::before {
    left: 25px !important;
    width: 80px !important;
  }
  #services-row ul li {
    text-align: left !important;
    font-size: 16px !important;
  }
  .need-hearth-video::before,
  .need-mascote::before,
  .need-mascote::after {
    display: none !important;
  }
    .service-img img {
    max-height: 500px !important;
    object-fit: contain !important;
  }
}

/* Tablettes portrait (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .need-quote-img::before {
    right: -30px;
    width: 40px;
    top: -20px;
  }

  .line-text p {
    text-align: left;
    line-height: 35px;
    padding-right: 130px !important;
  }

  .line-stars {
    justify-content: flex-start;
  }

  .stars {
    margin-bottom: 30px;
  }

  .rating-column {
    padding: 30px 20px;
    padding-bottom: 10px;
  }

  .need-img-header::before {
    content: "";
    position: absolute;
    width: 400px !important;
    height: 400px !important;
    right: -50px;
    bottom: 10px;
    z-index: 99;
    background-image: url("https://www.albus.fr/app/uploads/2025/07/Nina-effectuant-un-pansement-a-une-patiente_mob.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .et_pb_module.cta-header-button {
    margin-bottom: 200px !important;
  }

  .hs-cta-embed {
    margin: 0 auto !important;
  }

  .need-firework::before {
    width: 60px;
    right: 20px;
    top: 10px;
  }

  /* Popup services - Tablette */
  .service-content {
    flex-direction: column !important;
  }

  .popup-tab-content .service-header {
    width: 100% !important;
    max-width: 100% !important;
  }

  .service-title {
    left: 80px;
    right: unset;
    background-image: unset;
    top: 50px;
  }

  .service-icon {
    max-width: 90px !important;
    position: absolute;
    right: 70px;
    top: 30px;
  }

  .service-intro {
    margin-top: 60px !important;
  }

  .service-actions .hs-cta-embed {
    margin: unset !important;
  }

  .need-hearth-1::before {
    display: none !important;
  }

  .need-albus-effect::before {
    left: 25px !important;
    width: 80px !important;
  }

  #services-row ul li {
    text-align: left !important;
    font-size: 16px !important;
  }
  .need-hearth-video::before,
  .need-mascote::before,
  .need-mascote::after {
    display: none !important;
  }
  .video-card {
    width: 100% !important;
  }
  .et_pb_toggle_title {
    padding-right: 70px !important;
  }
  .service-img img {
    max-height: 500px !important;
    object-fit: contain !important;
  }
}

/* Petits écrans de bureau (981px - 1279px) */
@media screen and (min-width: 981px) and (max-width: 1279px) {
  .need-quote-img::before {
    right: -30px;
    width: 40px;
    top: -20px;
  }

  .need-img-header::before {
    content: "";
    position: absolute;
    width: 500px !important;
    height: 500px !important;
    right: -180px !important;
    bottom: -90px;
    background-image: url("https://www.albus.fr/app/uploads/2025/07/Nina-idel-effectuant-un-pansement-a-une-patiente.webp");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  #header-img {
    display: none !important;
  }
  .need-firework::before {
    width: 60px;
    right: 20px;
    top: 10px;
  }
  .d-none-responsive {
    display: none !important;
  }
  .video-card {
    width: 230px !important;
  }
  .et_pb_row:not(#row-header) {
    width: 90% !important;
  }
  #services-row .need-adjust-width {
    min-height: 70px !important;
  }
  #services-row .listing-check {
    min-height: 475px !important;
  }
  #services-row .desc {
    min-height: 170px !important;
  }
  .h2-container {
    width: 100% !important;
  }
  .et_pb_row.display-on-media {
    display: block !important;
  }
  .slide-description p {
    font-size: 20px !important;
  }
  h2 {
    max-width: 60% !important;
    margin: 0 auto !important;
  }
  .reassurance .flex-row h3 {
    width: 100% !important;
  }
  .reassurance .flex-row {
    min-height: 149px !important;
  }
  #services-row {
    width: 95% !important;
  }
  #services-row .et_pb_column {
    margin-right: 1% !important;
    width: 35% !important;
  }
  .popup-services h3 {
    min-height: 65px !important;
  }
  .popup-services .adapt-height {
    min-height: 120px !important;
  }
  .need-fix-width,
  .need-fix-width h2 {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .row-bento h3 {
    font-size: 24px !important;
  }
}

/* Écrans 13" et 16" (1280px - 1600px) */
@media screen and (min-width: 1280px) and (max-width: 1600px) {
  .et_pb_row:not(#row-header) {
    width: 86% !important;
  }
  .et_pb_row#services-row {
    width: 95% !important;
  }
  .need-adjust-width {
    width: 95% !important;
  }
  .et_pb_row#reviews-section {
    width: 90% !important;
  }
  #bento-section .et_pb_row.row-bento {
    width: 90% !important;
  }
  #bento-section .et_pb_row.row-bento .et_pb_column {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  #header-img {
    top: 180px !important;
  }
  .fix-title {
    width: 70% !important;
  }
}

/* Grands écrans de bureau (1601px+) */
@media screen and (min-width: 1601px) {
  /* Styles pour les grands écrans de bureau */
}

/* Écrans 4K (2560px+) */
@media screen and (min-width: 2560px) {
  /* Styles pour les écrans 4K */
}
