
/* STATS BAR */
.stats-bar {
    background: linear-gradient(90deg, var(--rouge-fonce), var(--violet-fonce));
    border-top: 2px solid var(--or);
    border-bottom: 2px solid var(--or);
    padding: 1.5rem 0;
}

.stat-item { text-align: center; }
.stat-item .num { font-size: 2rem; font-weight: bold; color: var(--or); display: block; }
.stat-item small { color: #f0d0d0; font-size: 0.9rem; }

/* FILTER BAR */
.filter-bar {
    background: #2d0a0a;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(231,76,60,0.3);
}

.filter-bar .btn-filter {
    background: transparent;
    border: 1px solid var(--rouge-vif);
    color: #f0d0d0;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin: 0.3rem;
    transition: all 0.3s;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-bar .btn-filter:hover,
.filter-bar .btn-filter.active {
    background: var(--rouge-vif);
    color: white;
}

/* TESTIMONIALS GRID */
.testi-section { padding: 4rem 0; background: #1a0505; }

.testi-card {
    background: linear-gradient(135deg, #2d0a0a, #3d1010);
    border: 1px solid rgba(231,76,60,0.35);
    border-radius: 15px;
    padding: 1.8rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(231,76,60,0.3);
    border-color: var(--or);
}

.testi-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }

.testi-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--or);
    box-shadow: 0 0 10px rgba(241,196,15,0.3);
    flex-shrink: 0;
}

.testi-info h6 { color: var(--or); margin: 0; font-size: 1rem; }
.testi-info small { color: #c08080; font-size: 0.82rem; }

.testi-stars { color: var(--or); font-size: 1rem; margin-bottom: 0.3rem; }

.testi-category {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    background: rgba(231,76,60,0.2);
    border: 1px solid var(--rouge-vif);
    color: #f0a0a0;
    margin-bottom: 1rem;
}

.testi-text {
    font-style: italic;
    color: #f0d0d0;
    line-height: 1.8;
    flex: 1;
    font-size: 0.95rem;
}

.testi-date { color: #a06060; font-size: 0.8rem; margin-top: 1rem; text-align: right; }

/* FEATURED */
.testi-featured {
    border-color: var(--or);
    background: linear-gradient(135deg, #3d1010, #4a1a1a);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px; right: 20px;
    background: var(--or);
    color: #1a0505;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 1rem;
    border-radius: 50px;
}

/* FORM TEMOIGNAGE */
.form-section {
    background: linear-gradient(135deg, #2d0a0a, var(--rouge-fonce));
    padding: 4rem 0;
}

.form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--rouge-vif);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(231,76,60,0.2);
}

.form-card h2 { color: var(--or); text-align: center; margin-bottom: 1.5rem; }
.form-label { color: #f0d0d0; font-weight: bold; }
.form-control, .form-select {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.4) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--rouge-vif) !important;
    box-shadow: 0 0 10px rgba(231,76,60,0.3) !important;
}

.stars-selector { display: flex; gap: 0.5rem; flex-direction: row-reverse; justify-content: flex-end; }
.stars-selector input { display: none; }
.stars-selector label {
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: color 0.2s;
}
.stars-selector label:hover,
.stars-selector label:hover ~ label,
.stars-selector input:checked ~ label {
    color: var(--or);
}

.btn-submit {
    background: linear-gradient(135deg, var(--rouge), var(--violet));
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192,57,43,0.5);
    color: white;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--or);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #c08080;
    margin-bottom: 2.5rem;
}