/* ============================================
   TÉMOIGNAGES
   ============================================ */

#temoignages {
    background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
    margin: 0 var(--marge-gauche-droite);
    color: white;
    font-size: 18px;
    padding: 20px;
    border-radius: var(--adouss-border);
    margin-bottom: var(--espace-sous-section);
    border: 3px solid var(--color-yellow-vif);
    box-shadow:
        0 8px 20px rgba(255, 201, 71, 0.2),
        0 0 40px rgba(255, 201, 71, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 0 20px;
}

.avis-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--color-yellow-vif);
    transition: all 0.3s ease;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 201, 71, 0.4);
    border-left-width: 6px;
}

.avis-etoiles {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.avis-texte {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1em;
}

.avis-auteur {
    color: var(--color-yellow-vif);
    font-size: 0.95em;
    font-weight: bold;
}

.stats-temoignages {
    text-align: center;
    font-size: 1.2em;
    color: #cbd5e1;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 201, 71, 0.3);
}

.stats-temoignages strong {
    color: var(--color-yellow-vif);
    font-size: 1.1em;
}

/* ============================================
   NEWSLETTER CAPTURE
   ============================================ */

#newsletter-capture {
    background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
    margin: 0 var(--marge-gauche-droite);
    color: white;
    font-size: 18px;
    padding: 20px;
    border-radius: var(--adouss-border);
    margin-bottom: var(--espace-sous-section);
    border: 3px solid var(--color-yellow-vif);
    box-shadow:
        0 8px 20px rgba(255, 201, 71, 0.2),
        0 0 40px rgba(255, 201, 71, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
}

.newsletter-description {
    font-size: 1.1em;
    color: #cbd5e1;
    margin: 10px 0 30px 0;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 201, 71, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1em;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-yellow-vif);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 201, 71, 0.3);
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--color-yellow-vif) 0%, #ffb347 100%);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 201, 71, 0.4);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 201, 71, 0.6);
    background: linear-gradient(135deg, #ffb347 0%, var(--color-yellow-vif) 100%);
}

.newsletter-notice {
    text-align: center;
    color: #94a3b8;
    margin: 10px 0;
}

.newsletter-avantages {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.avantage-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 201, 71, 0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.avantage-newsletter:hover {
    border-color: var(--color-yellow-vif);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 201, 71, 0.3);
}

.avantage-icon-newsletter {
    font-size: 2.5em;
}

.avantage-newsletter span:last-child {
    color: #cbd5e1;
    font-weight: bold;
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .newsletter-avantages {
        gap: 20px;
    }

    .avantage-newsletter {
        min-width: 120px;
    }
}
