/* ==========================================================================
   PAGE CONTACT - THEME SOFT POP
   ========================================================================== */

/* --- 1. Couleurs de fond "Soft" pour les cartes de droite --- */
.bg-soft-primary {
    /*background-color: rgba(106, 17, 203, 0.08) !important; !* Violet très clair *!*/
}
.bg-soft-dark {
    background-color: #f8f9fa !important; /* Gris très clair */
}
/* .bg-soft-warning si besoin pour une autre carte... */


/* --- 2. Styling du Formulaire Natif PrestaShop --- */
/* On cible les éléments à l'intérieur du widget contactform */

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 50px !important; /* Forme pilule pour les inputs */
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    font-size: 0.95rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Le textarea doit être moins arrondi */
.contact-form textarea.form-control {
    border-radius: 20px !important;
    resize: vertical; /* Autorise le redimensionnement vertical uniquement */
    min-height: 120px;
}

/* Effet au focus (halo violet) */
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: white;
    border-color: var(--primary-color, #6a11cb);
    box-shadow: 0 0 0 4px rgba(106, 17, 203, 0.1) !important;
}

/* Labels du formulaire */
.contact-form .form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    padding-left: 10px; /* Alignement avec le début de l'input arrondi */
    font-size: 0.9rem;
}

/* Le bouton "Envoyer" */
.contact-form .form-footer .btn-primary {
    width: 100%; /* Pleine largeur */
    padding: 15px;
    font-size: 1.1rem;
    /* Note: Il hérite déjà de votre style de bouton dégradé global */
}

/* Checkbox GDPR (si présente) */
.contact-form .form-check-input {
    width: 1.3em;
    height: 1.3em;
    margin-top: 0.1em;
    border-radius: 4px; /* Légèrement arrondi */
    border: 2px solid #d0d0d0;
}
.contact-form .form-check-input:checked {
    background-color: var(--primary-color, #6a11cb);
    border-color: var(--primary-color, #6a11cb);
}
.contact-form .form-check-label {
    font-size: 0.9rem;
    color: #666;
}

/* Masquer les titres de section inutiles du module natif si besoin */
.contact-form h3 {
    display: none;
}

/* ==========================================================================
   PAGE CONTACT - FAQ & SOFT POP
   ========================================================================== */

/* Design de l'accordéon */
.soft-pop-accordion {
    background: #ffffff;
}

.soft-pop-accordion .accordion-item {
    background-color: transparent;
}

/* Le bouton des questions */
.soft-pop-accordion .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.soft-pop-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color, #6a11cb) !important;
}

/* Flèche de l'accordéon (chevron) */
.soft-pop-accordion .accordion-button::after {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: 1rem;
}

.soft-pop-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(18%) sepia(91%) saturate(5412%) hue-rotate(265deg) brightness(85%) contrast(121%); /* Donne une teinte violette au chevron SVG par défaut */
}

/* Zone de réponse */
.soft-pop-accordion .accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 0;
}