body, h1, h2, h3, h4, h5, h6, p, a, button, input, label {
    font-family: 'Poppins', sans-serif !important;
}

body {
    background-color: white !important;
}

.bg-bati{
    background: #264E86;
    color: white;
}

.color-bati {
    color: #264E86 ;
}

.icon-hover-zoom {
    transition: transform 0.2s ease-in-out;
}

.icon-hover-zoom:hover {
    transform: scale(1.3);
}
.page-item.active .page-link {
    background-color: #264E86 !important;
    border-color: #264E86 !important;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 85, 127, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-title {
    color: #264E86;
    font-weight: 600;
}

.page-item.active .page-link {
    background-color: #264E86 !important;
    border-color: #264E86 !important;
}

.page-link {
    color: #264E86;
}
/* Couleur des numéros de jour (dans les cellules du calendrier) */
.fc-daygrid-day-number {
    color: #264E86 !important; /* Noir ou autre couleur */
}

/* Couleur des jours hors mois actuel (ex : 27, 28, 29 avril dans mai) */
.fc-day-other .fc-daygrid-day-number {
    color: #bbb !important;
}

/* Couleur des noms des jours (lun., mar., etc.) */
.fc-col-header-cell-cushion {
    color: #264E86 !important;
    font-weight: bold;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    color: black;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.6);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #ccc;
}

#chantier-table td {
    vertical-align: middle !important;
}

#chantier-table td:last-child {
    white-space: nowrap;
}

.chantier-actions {
    vertical-align: middle !important;
    white-space: nowrap;
}

/* Bonus : corrige le décalage des boutons dans les lignes responsive */
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child::before {
    top: 50%;
    transform: translateY(-50%);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 800px;
    margin: auto;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    display: none;
    font-size: 0.95rem;
}

.cookie-banner p {
    margin: 0;
    color: #444;
}

.cookie-banner a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-banner .btn {
    margin-left: 10px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .cookie-banner .btn {
        margin-top: 0;
    }

    .cookie-banner .cookie-actions {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

/*FAQ*/
.accordion-button {
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    color: #264E86;
    background-color: #d6eaf5;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/*HOME*/
.testimonials-section {
    background-color: #ffffff;
}

.testimonial-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 170px;
}

.card-bg {
    background: linear-gradient(145deg, #6c8dbb, #486ba4); /* Fond bleu */
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 300px;
    height: auto;
}

.mock-img {
    position: absolute;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Arrière-plan le plus en retrait */
.card-back-2 {
    transform: rotate(-4deg) translateY(-8px) translateX(-10px);
    z-index: 1;
    opacity: 0.5;
}

/* Deuxième plan */
.card-back-1 {
    transform: rotate(-2deg) translateY(-4px) translateX(-5px);
    z-index: 2;
    opacity: 0.7;
}

/* Carte du dessus */
.card-front {
    position: relative;
    z-index: 3;
    opacity: 1;
    transform: perspective(800px) rotateX(8deg) translateY(12px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card-stack img {
    transition: transform 0.4s ease;
    will-change: transform;
}

.card-stack:hover img.card-front {
    transform: scale(1.5);
    z-index: 5;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .card-bg {
        max-width: 100%;
    }
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.icon-circle i {
    font-size: 22px;
    color: #98fb98; /* vert clair fluo */
}

.icon-text {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.chat-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #264e86; /* même bleu que ton fond */
    color: white;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.chat-icon i {
    font-size: 20px;
}

.chat-icon:hover {
    background-color: #0f2e57;
}

@media (max-width: 923px) {
    .chat-icon {
        bottom: 6em;
        right: 20px;
        top: auto;
        font-size: 1.8rem;
        padding: 14px 16px;
        z-index: 999;
    }
}

#homeSlider {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.accordion-button {
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: none;
    background-color: #fff !important;
    color: #111 !important;
}

.accordion-button::after {
    font-size: 1.2rem;
    color: #333;
    transform: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
    border: none !important;
}

.accordion-item {
    border: none !important;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.80) !important;
}

#faqTitle {
    flex-basis : 45%;
}

@media (max-width: 767.98px) {
    .chat-icon {
        bottom: 8em;
        right: 20px;
        top: auto;
        font-size: 1.8rem;
        padding: 14px 16px;
        z-index: 999;
    }

    #homeSlider {
        padding-right: .5rem !important;
        padding-left: .5rem !important;
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }
    #faqTitle {
        flex-basis : inherit;
    }
}
    div.dataTables_wrapper div.dataTables_filter input {
        display: block;
    }

    #filter-statut {
        margin: auto;
    }

}
