
/* Global */

a {
 text-decoration: none !important;
}
p{
  text-align: justify;
}
.pagination .page-item.active .page-link {
    border-color: #F97316 !important; /* couleur warning */
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F97316; /* équivalent Bootstrap warning un peu plus vif */
    color: #fff;
    display: none; /* masqué par défaut */
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    }

    .back-to-top:hover {
        background: #F97316; /* plus foncé au survol */
        transform: translateY(-3px);
    }

    .back-to-top i {
        font-size: 1.5rem;
        line-height: 1;
    }

    /* Responsive : réduire taille sur mobile */
    @media (max-width: 768px) {
        .back-to-top {
            width: 40px;
            height: 40px;
        }

        .back-to-top i {
            font-size: 1.2rem;
        }
    }
/* --------------------------
   Fenêtre chatbot
-------------------------- */
.chatbot-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1060;
    font-family: "Segoe UI", Roboto, sans-serif;
    animation: fadeInUp 0.3s ease-in-out;
}

/* Animation apparition */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------
   Header
-------------------------- */
.chatbot-header {
    background: linear-gradient(135deg, #F97316, #fb923c);
    color: #fff;
    padding: 12px 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

/* --------------------------
   Zone messages
-------------------------- */
.chatbot-messages {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    background: #f4f6f9;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Scroll discret */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* --------------------------
   Bulles de messages
-------------------------- */
.bot-message, .user-message {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 18px;
    line-height: 1.4;
    font-size: 14px;
    word-wrap: break-word;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Bot → gauche */
.bot-message {
    background: #e9ecef;
    color: #212529;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

/* User → droite */
.user-message {
    background: #F97316;
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

/* --------------------------
   Suggestions (chips style)
-------------------------- */
.bot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
    align-self: flex-start;
}

.bot-suggestions button {
    background: #fff;
    border: 1px solid #F97316;
    color: #F97316;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bot-suggestions button:hover {
    background: #F97316;
    color: #fff;
}

/* --------------------------
   Zone input
-------------------------- */
.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.chatbot-input input {
    flex: 1;
    border: none;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    background: #f1f1f1;
    outline: none;
    transition: all 0.2s;
}

.chatbot-input input:focus {
    background: #fff;
    border: 1px solid #F97316;
    box-shadow: 0 0 0 2px rgba(249,115,22,0.2);
}

.chatbot-input button {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    background: #F97316;
    color: #fff;
    border: none;
    transition: background 0.3s;
}

.chatbot-input button:hover {
    background: #ea580c;
}


/* Bouton chatbot */
.chatbotBtn {
    position: fixed;
    bottom: 100px; /* au-dessus du back-to-top */
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #057348; /* bleu Bootstrap */
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite; /* Effet pulsation */
}

    .chatbotBtn i {
        font-size: 1.1rem;
        line-height: 1;
    }

    /* Responsive : réduire taille sur mobile */
    @media (max-width: 768px) {
        .chatbotBtn {
            width: 40px;
            height: 40px;
        }

        .chatbotBtn i {
            font-size: 1.2rem;
        }
    }

.chatbotBtn:hover {
    background: #F97316;
    animation: none; /* Stop clignotement quand on survole */
}

/* Animation pulsation (effet clignotement doux) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border: 0;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

.card-hover {
  transition: all 0.3s ease; /* transition fluide pour le hover */
}

.card-hover:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* ombre plus marquée au survol */
  transform: translateY(-5px); /* optionnel : léger déplacement vers le haut */
}


.action-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Fixer la hauteur des images et les couper proprement */
.action-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Forcer le texte à prendre la place restante */
.action-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Equipe et Temoignages */

.scroll-container {
  overflow: hidden;
  width: 100%;
}

.scroll-content {
  display: flex;
  gap: 1rem;
  animation: scroll-left 40s linear infinite;
}

.scroll-container:hover .scroll-content {
  animation-play-state: paused; /* Pause au survol */
}

.card-partenaire {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.icon {
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.swiper-button-prev {
  color: #F97316; /* couleur bouton (ex: jaune Bootstrap warning) */
  width: 40px;
  height: 40px;
  left: -9px;
}

.swiper-button-next {
  color: #F97316; /* couleur bouton (ex: jaune Bootstrap warning) */
  width: 40px;
  height: 40px;
  right: -9px;
}

.equipe-swiper .swiper-slide {
  display: flex; /* permet au contenu de prendre toute la hauteur */
  height: auto !important; /* éviter les contraintes de Swiper */
}

.equipe-swiper .swiper-slide > div {
  flex: 1; /* occupe toute la hauteur disponible */
  display: flex;
  flex-direction: column;
}

/* Preloader et Top */

#preloader {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Animation logo qui pulse */
.preloader-logo {
    height: 80px;
    animation: pulse 1.5s infinite ease-in-out;
}

.rounded {
  border-radius: 1rem !important;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}


.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  width: 4px;
  background-color:  #057348;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  z-index: 0;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.timeline-item.left {
  left: 50%;
  transform: translateX(-100%);
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 1rem;
  width: 20px;
  height: 20px;
  background-color: #F97316;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

.timeline-content {
  max-width: 400px;
  display: inline-block;
}

/* Bouton central entre les cadres */
.timeline-button {
  width: 100%;
  text-align: center;
  margin: -1rem 0 2rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .timeline-line {
    left: 50%; /* garde la ligne au milieu */
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 100%;
    padding-left: 2rem; /* espace pour la ligne */
    padding-right: 2rem;
    text-align: center; /* optionnel : centrer le texte */
    left: 0 !important;
    transform: none !important;
  }

  /* Masquer les cercles sur mobile */
  .timeline-item::before {
    display: none;
  }

  .timeline-content {
    max-width: 100%;
    display: block;
  }
}





/*--------------------------------------------------------------
# Pricing Section Amélioré
--------------------------------------------------------------*/
.pricing {
  position: relative;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background: #f5f8ff;
}

.price-button a.btn {
    padding: 12px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.price-button a.btn:hover {
    transform: scale(1.05);
    color: #fff;
}

.price-table {
  text-align: center;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.price-table:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/*-------------------------
   En-tête : titre + interval
-------------------------*/
.price-head {
  padding: 45px 15px; /* réduit l'espace vertical */
  color: #fff;
  font-weight: 700;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.price-head h1 {
  margin-bottom: 5px;
}

.price-head p {
  font-size: 0.9rem; /* petite taille pour l'interval */
  margin: 0;
  opacity: 0.9;
}

/*-------------------------
   Duration et prix
-------------------------*/
.price-description p {
  margin: 0.3rem 0; /* réduit l'espace entre durée et prix */
}

.price-description p:first-child {
  color: #198754;
  font-weight: 500;
}

.price-description p:last-child {
  color: #198754;
  font-weight: 700; /* prix plus imposant */
  font-size: 1.1rem;
}

/*-------------------------
   Contenu
-------------------------*/
.price-content {
  padding: 0 20px 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  background: #f0fdf4;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 15px;
  transition: background 0.3s ease;
}

.features-list li i {
  color: #198754;
  margin-right: 10px;
  font-size: 1.2rem;
}

.features-list li:hover {
  background: #fff7ed;
}

/*-------------------------
   Bouton
-------------------------*/
.price-button {
  margin-top: auto;
  padding: 20px 0;
}

.price-button span {
  padding: 12px 45px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.price-button span:hover {
  transform: scale(1.05);
}

/*-------------------------
   Responsiveness
-------------------------*/
@media (max-width: 992px) {
  .price-table {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .price-table {
    width: 100%;
  }

  .price-head {
    padding: 15px 10px;
  }

  .price-head h3 {
    font-size: 1.2rem;
  }

  .features-list li {
    font-size: 14px;
    padding: 8px 12px;
  }

  .price-button span {
    padding: 8px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .price-button a.btn {
    padding: 8px 25px;  /* réduit le padding */
    font-size: 0.9rem;  /* réduit la taille du texte */
  }
}
.circle-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #F97316 ; /* Orange */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .circle-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #F97316 ;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: bold;
        flex-shrink: 0;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .circle-icon {
            width: 45px;
            height: 45px;
        }

        .circle-icon i {
            font-size: 1rem; /* réduit l’icône à l’intérieur */
        }

        .circle-number {
            width: 30px;
            height: 30px;
            font-size: 0.9rem;
        }
    }



.bg-orange {
    background-color: #F97316 !important
}


.btn-outline-orange {
    color: #F97316;
    border-color: #F97316
}

.btn-outline-orange:hover {
    color: #fff;
    background-color: #F97316;
    border-color: #F97316
}

.btn-orange {
    color: #fff;
    background-color: #F97316;
    border-color: #F97316
}

.btn-orange:hover {
    color: #fff;
    background-color: #F97316;
    border-color: #F97316
}


.text-orange {
    color: #F97316 !important
}

.border-orange {
    border-color: #F97316 !important
}

.bg-opacity-10:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
    transition: all 0.3s;
}

.bullet-orange {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    background: #F97316 ;
}

/* Styles puces personnalisées */
.bullet-orange, .bullet-green {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}
.bullet-orange { background: #F97316 ; }
.bullet-green { background: rgba(5,115,72,255); }

 .circle-tip {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: #F97316 ; /* Orange */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .circle-tip span {
        color: #fff;
        font-weight: bold;
    }

    /* Responsive : réduire sur mobile */
    @media (max-width: 768px) {
        .circle-tip {
            width: 2rem;
            height: 2rem;
        }

        .circle-tip span {
            font-size: 0.9rem;
        }
    }

     .circle-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .circle-icon i {
        font-size: 1.2rem;
        color: #fff;
    }

    /* Responsive : réduire taille sur mobile */
    @media (max-width: 768px) {
        .circle-icon {
            width: 2.3rem;
            height: 2.3rem;
        }

        .circle-icon i {
            font-size: 1rem;
        }
    }


.bg-noir{
 background-color: #0D0D0D;
} 

.bg-gris-anthracite{
 background-color: #585858;
} 
.bg-gris-acier{
 background-color: #7E7E7E;
} 

.bg-gris-clair{
 background-color: #A3A3A3;
} 

.services-carousel .swiper-slide {
    height: auto !important;
    display: flex;
}

.services-carousel .room-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
