/* Conteneur principal en noir profond */
.audacieuse-footer-promo {
    clear: both;
    background-color: #000000; /* Fond noir comme demandé */
    color: #ffffff;
    padding: 0 0 0 10px;
	margin: 30px 0;		
    width: 100%;
}

.audacieuse-container {
    max-width: 960px; /* Largeur du thème */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Alignement vertical au centre */
    gap: 30px;
}

/* Colonne Gauche : Contenu centré */
.audacieuse-col-text {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre horizontalement le contenu de la colonne */
    text-align: center; /* Centre le texte */
}

/* Titre H2 en petites majuscules */
.audacieuse-col-text h2 {
    margin-bottom: 10px;
}

.audacieuse-col-text h2 a {
    color: #d4af37;
    text-decoration: none;
    font-variant: small-caps; /* Petites majuscules */
    font-size: 2.8rem;
    background: transparent !important; /* Neutralise le thème */
}

/* Texte d'accompagnement centré */
.audacieuse-col-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Grille de services */
.audacieuse-services-grid {
    display: flex;
    width: 100%;
    max-width: 550px;
    height: 150px;
    background: url('../images/bg-services.jpg') no-repeat center top;
    background-size: contain;
}

/* Neutralisation des effets de survol du thème (Rose/Gris) */
.audacieuse-footer-promo a,
.audacieuse-footer-promo a:hover,
.audacieuse-footer-promo a:focus,
.audacieuse-footer-promo a:active,
.audacieuse-footer-promo a:visited {
    background-color: transparent !important; /* Supprime le rose et le gris */
    text-decoration: none !important;
    outline: none !important;
}

/* Effet de survol léger et doré sur les icônes */
.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 5px;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.service-item:hover {
    background-color: rgba(212, 175, 55, 0.1) !important; /* Reflet doré très léger */
    transform: translateY(-3px);
}

.service-item .titre {
    display: block;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.service-item .sous-titre {
    display: block;
    color: #d4af37;
    font-size: 0.7rem;
}

/* Colonne Droite : Image sans bordure */
.audacieuse-col-img {
    flex: 1 1 450px;
}

.audacieuse-col-img img {
    width: 100%;
    height: auto;
    border: none !important; /* Enlève la ligne/bordure */
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .audacieuse-container { flex-direction: column; }
    .audacieuse-col-text { padding: 0 15px; }
}
