/* =========================
   VARIABLES
========================= */
:root {
    --main-color: #0f3d2e;
    --accent-color: #cc6a00;
    --text-color: #222;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background: #ffffff;
}

/* =========================
   TITRES
========================= */
h1, h2 { color: var(--main-color); }
h3, h4 { color: var(--accent-color); }

/* =========================
   SECTION TESTIMONIAL
========================= */
section.testimonial-final {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid #111;
}

.testimonial-final h2 {
    color: #111;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
}

/* =========================
   SLIDER
========================= */
#testimonialSlider {
    overflow: hidden;
    max-width: 600px;
    margin: auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-item {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;

    background: #ffffff;
    color: #222;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   CONTENU
========================= */
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #eee;
    object-fit: cover;
    background: #eee;
}

.testimonial-item h4 {
    color: #111;
    font-weight: 700;
}

.testimonial-item span {
    color: #999;
    font-size: 14px;
}

.stars {
    color: gold;
    margin: 10px 0;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-top: 15px;
}

.testimonial-item p::before {
    content: "“";
    font-size: 50px;
    color: #ddd;
    display: block;
    margin-bottom: 10px;
}

/* =========================
   DOTS
========================= */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-dots span.active {
    background: #0f3d2e;
    transform: scale(1.2);
}

/* =========================
   DARK MODE
========================= */
body.dark-mode {
    background: #121212;
    color: #eee;
}

body.dark-mode section.testimonial-final {
    background-color: #1c1c1c;
}

body.dark-mode .testimonial-item {
    background: #2a2a2a;
    color: #f1f1f1;
}

body.dark-mode .testimonial-item p {
    color: #ddd;
}

body.dark-mode .testimonial-item h4 {
    color: #6ee7b7;
}

body.dark-mode .testimonial-dots span {
    background: #555;
}

body.dark-mode .testimonial-dots span.active {
    background: #4caf50;
}