/* ============================================================
   FOMEB — Composants Réutilisables Premium 2026
   ============================================================ */

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #FF6B35), transparent);
}

.section-subtitle::after {
    background: linear-gradient(90deg, transparent, var(--primary, #FF6B35));
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary, #FF6B35), var(--secondary, #00BF6F));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 10px 40px 10px 0;
    position: relative;
    width: 50%;
    margin-bottom: 20px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding: 10px 0 10px 40px;
    align-self: flex-end;
    margin-left: 50%;
}

.timeline-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary, #FF6B35);
    border-radius: 50%;
    right: -10px;
    top: 20px;
    border: 4px solid var(--dark, #0A0A0F);
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.timeline-item:nth-child(even) .timeline-node {
    left: -10px;
    right: auto;
}

.timeline-card {
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.timeline-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== TEAM CARDS ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #FF6B35), var(--secondary, #00BF6F));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.team-card:hover .team-photo {
    border-color: var(--primary, #FF6B35);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary, #FF6B35);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== VALUE CARDS ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 191, 111, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary, #FF6B35);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #FF6B35, #00BF6F);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== MISSION/VISION SPLIT ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.mv-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mv-card .mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.mv-card.mission .mv-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.05));
    color: #FF6B35;
}

.mv-card.vision .mv-icon {
    background: linear-gradient(135deg, rgba(0, 191, 111, 0.2), rgba(0, 191, 111, 0.05));
    color: #00BF6F;
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== ACTION DETAIL (Alternating) ===== */
.action-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.action-detail:last-child {
    border-bottom: none;
}

.action-detail:nth-child(even) .action-image-wrapper {
    order: 2;
}

.action-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.action-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.action-image-wrapper:hover img {
    transform: scale(1.05);
}

.action-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.action-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-content h3 i {
    color: var(--primary, #FF6B35);
    font-size: 1.5rem;
}

.action-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.action-features {
    list-style: none;
    padding: 0;
}

.action-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.action-features li i {
    color: var(--secondary, #00BF6F);
    font-size: 0.8rem;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: saturate(0.8) contrast(1.1);
}

/* ===== SOCIAL ICONS ===== */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--primary, #FF6B35);
    border-color: var(--primary, #FF6B35);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.social-link.facebook:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4); }
.social-link.instagram:hover { background: #E4405F; border-color: #E4405F; box-shadow: 0 5px 20px rgba(228, 64, 95, 0.4); }
.social-link.linkedin:hover { background: #0A66C2; border-color: #0A66C2; box-shadow: 0 5px 20px rgba(10, 102, 194, 0.4); }
.social-link.whatsapp:hover { background: #25D366; border-color: #25D366; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary, #FF6B35);
}

.breadcrumb .separator {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

/* ===== TABS ===== */
.tabs {
    display: flex;
    gap: 5px;
    background: var(--light-surface);
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ===== BADGE / TAG ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary { background: rgba(255, 107, 53, 0.15); color: #FF6B35; }
.badge-success { background: rgba(0, 191, 111, 0.15); color: #00BF6F; }
.badge-warning { background: rgba(255, 184, 0, 0.15); color: #FFB800; }
.badge-danger { background: rgba(255, 71, 87, 0.15); color: #FF4757; }
.badge-info { background: rgba(55, 66, 250, 0.15); color: #3742fa; }

/* ===== HERO PAGE (inner pages) ===== */
.page-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 140px 20px 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    z-index: 1;
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-tertiary);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 320px;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.toast.toast-success { border-left: 4px solid #00BF6F; }
.toast.toast-error { border-left: 4px solid #FF4757; }
.toast.toast-warning { border-left: 4px solid #FFB800; }
.toast.toast-info { border-left: 4px solid #3742fa; }

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.toast-success .toast-icon { color: #00BF6F; }
.toast-error .toast-icon { color: #FF4757; }
.toast-warning .toast-icon { color: #FFB800; }
.toast-info .toast-icon { color: #3742fa; }

.toast-message {
    flex: 1;
    font-size: 0.9rem;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: white;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #00BF6F);
    border-radius: 0 0 0 12px;
    animation: loaderProgress 5s linear forwards;
}

.toast.removing {
    animation: slideInRight 0.3s ease-in reverse forwards;
}

/* ===== OBJECTIVE CARDS ===== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.objective-card {
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.objective-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.objective-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(0,191,111,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary, #FF6B35);
    transition: all 0.4s ease;
}

.objective-card:hover .objective-icon {
    background: linear-gradient(135deg, #FF6B35, #00BF6F);
    color: white;
    transform: scale(1.15);
}

.objective-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.objective-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== IMPACT STATS ROW ===== */
.impact-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.impact-item {
    text-align: center;
}

.impact-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ===== CONTACT INFO ITEMS ===== */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-info-text h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-text a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary);
}

/* Overrides removed because site is light mode by default */

/* ============================================================
   NEW PREMIUM COMPONENTS (Maquette 2026)
   ============================================================ */

/* ── Hero Stats Floating Bar ─────────────────────────────── */
.stats-bar-floating {
    position: relative;
    top: -50px;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 60px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.stat-floating-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-floating-icon {
    font-size: 2rem;
    color: var(--primary);
}

.stat-floating-text h4 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-floating-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Domaines Card (Half Image / Half White Box) ───────── */
.domain-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-5px);
}

.domain-img-wrapper {
    width: 45%;
    position: relative;
}

.domain-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.domain-content {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.domain-icon {
    width: 50px;
    height: 50px;
    background: #fdfbf7;
    border: 2px solid rgba(24, 99, 60, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.domain-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-dark-primary);
    margin-bottom: 10px;
}

.domain-content p {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.domain-link {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.domain-link:hover {
    color: var(--primary);
}

/* ── Impact Circle ───────────────────────────────────────── */
.impact-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--light-surface);
    border: 2px solid var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease;
}

.impact-circle:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.impact-circle h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.impact-circle p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ── Testimonial Premium ─────────────────────────────────── */
.testimonial-premium {
    background: var(--light-surface);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    flex-shrink: 0;
}

.testimonial-body {
    flex: 1;
}

.testimonial-quote {
    color: var(--text-primary);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
}

/* ── Buttons & Utilities ─────────────────────────────────── */
.btn-outline-gold {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: #fff;
}

.btn-play-video {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.btn-play-video:hover {
    transform: scale(1.1);
}

.text-gold {
    color: var(--primary) !important;
}

.text-emerald {
    color: var(--secondary) !important;
}

/* Grilles Responsive (déplacées depuis le HTML pour éviter les cassures sur mobile) */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
