/* ==========================================================================
   AZURA Styles — azura-climatisation-lyon-sud.fr
   ========================================================================== */

/* --- Tables responsive --- */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
}
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
}
.responsive-table thead {
    background-color: #024072;
    color: #ffffff;
}
.responsive-table th,
.responsive-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.responsive-table tbody tr:nth-child(even) {
    background-color: #fdf3e5;
}
.responsive-table tbody tr:hover {
    background-color: #e8dcc8;
}

@media screen and (max-width: 767px) {
    .responsive-table {
        font-size: 13px;
    }
    .responsive-table th,
    .responsive-table td {
        padding: 10px 10px;
    }
}

/* --- Processus / étapes interactives --- */
.processus-etapes {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    color: #222;
    position: relative;
}
.element-etape {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.element-etape:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 42px;
    left: 20px;
    width: 2px;
    height: 40px;
    background-image: linear-gradient(#1d75ba 30%, transparent 30%);
    background-size: 2px 8px;
    background-repeat: repeat-y;
}
.numero-etape {
    width: 42px;
    height: 42px;
    background-color: #1d75ba;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    z-index: 2;
}
.titre-etape {
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.titre-etape h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    font-family: 'Roboto', sans-serif;
}
.icone-fleche {
    font-size: 1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}
.element-etape:hover .icone-fleche {
    transform: translateX(4px);
}
.contenu-etape {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
    font-size: 0.92rem;
    line-height: 1.4;
}
.contenu-etape br {
    line-height: 1.2;
    margin-bottom: 0.3rem;
}
.element-etape:hover .contenu-etape {
    opacity: 1;
    visibility: visible;
}

/* --- Header sticky bandeau --- */
.azura-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 20px;
    font-size: 15px;
}
.azura-header-bar a {
    text-decoration: none;
}
.azura-header-bar .header-phone {
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.azura-header-bar .header-cta {
    background: #ff6f61;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}
.azura-header-bar .header-cta:hover {
    background: #e85d50;
}

@media screen and (max-width: 767px) {
    .azura-header-bar {
        justify-content: center;
        text-align: center;
        padding: 8px 12px;
        gap: 8px;
    }
    .azura-header-bar .header-phone {
        font-size: 15px;
    }
    .azura-header-bar .header-cta {
        padding: 7px 16px;
        font-size: 14px;
    }
}

/* --- Témoignages --- */
.azura-temoignage {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.azura-temoignage p {
    font-style: italic;
    margin-bottom: 10px;
}
.azura-temoignage .temoignage-auteur {
    font-weight: 700;
    font-style: normal;
    color: #024072;
}

/* --- Certifications badges --- */
.azura-certifs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin: 20px 0;
}
.azura-certifs span {
    background: #024072;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* --- Global adjustments --- */
.kb-table-container {
    overflow-x: auto;
}
