/**
 * Page Animateur Séminaire - Styles
 *
 * @package NormandieSeminaire
 * @since 1.0.0
 */

/* ==========================================================================
   VARIABLES LOCALES
   ========================================================================== */

.page-animateur {
    --animateur-rouge: #8B1538;
    --animateur-rouge-light: rgba(139, 21, 56, 0.1);
    --animateur-or: #D4A574;
    --animateur-dark: #1a1a2e;
    --animateur-gris: #666;
    --animateur-light: #f8f8f8;
}

/* ==========================================================================
   HERO SECTION - Banner Premium
   ========================================================================== */

.animateur-hero {
    background: linear-gradient(135deg, var(--animateur-dark) 0%, #2d2d4a 50%, var(--animateur-rouge) 100%);
    padding: 140px 0 100px;
    overflow: hidden;
    position: relative;
}

.animateur-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(139, 21, 56, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.animateur-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
    pointer-events: none;
}

.animateur-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .animateur-hero__grid {
        grid-template-columns: 1fr 400px;
        gap: 80px;
    }
}

.animateur-hero__badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 165, 116, 0.2);
    color: var(--animateur-or);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.animateur-hero__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.animateur-hero__subtitle {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--animateur-or);
    font-weight: 400;
}

.animateur-hero__lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 550px;
}

.animateur-hero__lead strong {
    color: #fff;
}

/* Stats */
.animateur-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--animateur-or);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* CTA */
.animateur-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Image */
.animateur-hero__image {
    position: relative;
}

.animateur-hero__image img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.animateur-hero__badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge--insuffle {
    background: var(--animateur-dark);
    color: #fff;
}

.badge--qualiopi {
    background: var(--animateur-or);
    color: var(--animateur-dark);
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */

.animateur-problem {
    background: #fff;
    padding: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-card {
    padding: 32px;
    border-radius: 16px;
    border: 2px solid transparent;
}

.problem-card--bad {
    background: #fef2f2;
    border-color: #fca5a5;
}

.problem-card--good {
    background: #f0fdf4;
    border-color: #86efac;
}

.problem-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--animateur-dark);
}

.problem-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--animateur-gris);
    font-size: 15px;
}

.problem-card--bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.problem-card--good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

/* ==========================================================================
   EXPERTISE SECTION
   ========================================================================== */

.animateur-expertise {
    background: var(--animateur-light);
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--animateur-rouge);
}

.expertise-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--animateur-rouge-light);
    border-radius: 12px;
    color: var(--animateur-rouge);
}

.expertise-card__icon .icon {
    width: 28px;
    height: 28px;
}

.expertise-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--animateur-dark);
}

.expertise-card p {
    font-size: 14px;
    color: var(--animateur-gris);
    line-height: 1.6;
    margin-bottom: 16px;
}

.expertise-card__link {
    display: inline-block;
    color: var(--animateur-rouge);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.expertise-card__link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FORMATS SECTION
   ========================================================================== */

.animateur-formats {
    background: #fff;
    padding: 80px 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .formats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.format-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
}

.format-card:hover {
    border-color: var(--animateur-rouge);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.format-card--featured {
    border-color: var(--animateur-rouge);
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.03) 0%, #fff 100%);
}

.format-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--animateur-rouge);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.format-card__header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.format-card__duration,
.format-card__participants {
    font-size: 12px;
    color: var(--animateur-gris);
    padding: 4px 10px;
    background: var(--animateur-light);
    border-radius: 6px;
}

.format-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--animateur-dark);
    margin-bottom: 12px;
}

.format-card__desc {
    font-size: 14px;
    color: var(--animateur-gris);
    line-height: 1.6;
    margin-bottom: 16px;
}

.format-card__outcomes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.format-card__outcomes li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--animateur-dark);
}

.format-card__outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.format-card__cta {
    display: inline-block;
    color: var(--animateur-rouge);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.format-card__cta:hover {
    text-decoration: underline;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.animateur-testimonials {
    background: var(--animateur-dark);
    padding: 80px 0;
}

.animateur-testimonials .section-header h2 {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-card__stars {
    color: var(--animateur-or);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.testimonial-card__author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Logos clients */
.testimonials-logos {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-logos__label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonials-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.client-logo {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   NORMANDIE SECTION
   ========================================================================== */

.animateur-normandie {
    background: #fff;
    padding: 80px 0;
}

.normandie-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .normandie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .normandie-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.normandie-card {
    text-align: center;
    padding: 32px 24px;
}

.normandie-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--animateur-rouge-light);
    border-radius: 12px;
    color: var(--animateur-rouge);
}

.normandie-card__icon .icon {
    width: 28px;
    height: 28px;
}

.normandie-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--animateur-dark);
}

.normandie-card p {
    font-size: 14px;
    color: var(--animateur-gris);
    line-height: 1.6;
}

/* Destinations */
.normandie-destinations {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.normandie-destinations h3 {
    font-size: 1rem;
    color: var(--animateur-gris);
    margin-bottom: 20px;
}

.destinations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.destination-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--animateur-light);
    color: var(--animateur-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.destination-tag:hover {
    background: var(--animateur-rouge);
    color: #fff;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.animateur-faq {
    background: var(--animateur-light);
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--animateur-rouge);
}

.faq-item__question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--animateur-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--animateur-rouge);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 24px 24px;
    color: var(--animateur-gris);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item__answer p {
    margin-bottom: 12px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-item__answer ul {
    padding-left: 20px;
    margin: 12px 0;
}

.faq-item__answer li {
    margin-bottom: 8px;
}

.faq-item__answer a {
    color: var(--animateur-rouge);
    text-decoration: none;
    font-weight: 500;
}

.faq-item__answer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   CTA FINAL SECTION
   ========================================================================== */

.animateur-cta {
    background: linear-gradient(135deg, var(--animateur-rouge) 0%, #5f0f28 100%);
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-box > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-white {
    background: #fff;
    color: var(--animateur-rouge);
}

.btn-white:hover {
    background: var(--animateur-light);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cta-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   SECTION HEADER (commun)
   ========================================================================== */

.page-animateur .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-animateur .section-header h2 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--animateur-dark);
    margin-bottom: 16px;
}

.page-animateur .section-header p {
    font-size: 1.125rem;
    color: var(--animateur-gris);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {
    .animateur-hero {
        padding: 60px 0 80px;
    }

    .animateur-hero__image {
        order: -1;
        text-align: center;
    }

    .animateur-hero__image img {
        max-width: 280px;
    }

    .animateur-hero__badges {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }

    .animateur-hero__stats {
        justify-content: center;
        text-align: center;
    }

    .animateur-hero__cta {
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }
}
