/* /Views/Chat/Index.cshtml.rz.scp.css */
.chat-page[b-boa8wkwvvj] {
    max-width: 900px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.chat-form[b-boa8wkwvvj], .clear-form[b-boa8wkwvvj] {
    display: inline-block;
    margin-right: .5rem;
}

.input-row[b-boa8wkwvvj] {
    display: flex;
    gap: .5rem;
}

.chat-input[b-boa8wkwvvj] {
    flex: 1;
    padding: .6rem .8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.btn-send[b-boa8wkwvvj], .btn-clear[b-boa8wkwvvj] {
    padding: .55rem .9rem;
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: 8px;
    cursor: pointer;
}

.alert-error[b-boa8wkwvvj] {
    margin-top: .5rem;
    color: #b00020;
}

.hint[b-boa8wkwvvj] {
    color: #666;
}

.conversation[b-boa8wkwvvj] {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1rem;
}

.turn[b-boa8wkwvvj] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: .7rem;
}

.bubble[b-boa8wkwvvj] {
    max-width: 80%;
    padding: .6rem .8rem;
    border-radius: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.bubble-user[b-boa8wkwvvj] {
    align-self: flex-start;
    background: #eef4ff;
    border: 1px solid #c9dcff;
}

.bubble-assistant[b-boa8wkwvvj] {
    align-self: flex-end;
    background: #f6f6f6;
    border: 1px solid #e3e3e3;
}

@media (max-width: 640px) {
    .bubble[b-boa8wkwvvj] {
        max-width: 100%;
    }
}

/* Base: tout cacher, afficher le formulaire actif via .is-active (piloté par JS) */
#chat-input-modes .forms [data-chat-mode][b-boa8wkwvvj] { display: none; }
#chat-input-modes .forms [data-chat-mode].is-active[b-boa8wkwvvj] { display: block; }

/* Amélioration progressive si :has() disponible (pas de JS requis pour l’affichage) */
@supports selector(:has(*)) {
    #chat-input-modes:has(#mode-short:checked) .forms [data-chat-mode="short"][b-boa8wkwvvj] { display: block; }
    #chat-input-modes:has(#mode-long:checked)  .forms [data-chat-mode="long"][b-boa8wkwvvj]  { display: block; }
}

/* Si :has() n'est pas supporté, le JS gère .is-active et éventuellement [hidden] */

/* Radios toggle outline primary: état actif avec couleur thème */
.btn-check:checked + .btn-outline-primary[b-boa8wkwvvj],
.btn-check:active + .btn-outline-primary[b-boa8wkwvvj],
.btn-outline-primary.active[b-boa8wkwvvj],
.btn-outline-primary:active[b-boa8wkwvvj] {
    color: #fff;
    background-color: var(--th-primary);
    border-color: var(--th-primary);
}

.btn-check:focus + .btn-outline-primary[b-boa8wkwvvj],
.btn-outline-primary:focus[b-boa8wkwvvj] {
    box-shadow: 0 0 0 .25rem rgba(var(--th-primary-rgb), .5);
}

/* Thème dark: rendre text-secondary lisible dans cette vue */
[data-theme="dark"] .chat-page .text-secondary[b-boa8wkwvvj],
[data-theme="dark"] .chat-page .text-muted[b-boa8wkwvvj],
[data-theme="dark"] .chat-page .text-muted-modern[b-boa8wkwvvj] {
    --bs-text-opacity: 1;
    color: var(--th-muted, var(--bs-secondary-color, #9fb0c7)) !important;
}
/* /Views/Chat/Todolist.cshtml.rz.scp.css */
.chat-page[b-23tl8y2woj] {
    max-width: 900px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.chat-form[b-23tl8y2woj], .clear-form[b-23tl8y2woj] {
    display: inline-block;
    margin-right: .5rem;
}

.input-row[b-23tl8y2woj] {
    display: flex;
    gap: .5rem;
}

.chat-input[b-23tl8y2woj] {
    flex: 1;
    padding: .6rem .8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.btn-send[b-23tl8y2woj], .btn-clear[b-23tl8y2woj] {
    padding: .55rem .9rem;
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: 8px;
    cursor: pointer;
}

.alert-error[b-23tl8y2woj] {
    margin-top: .5rem;
    color: #b00020;
}

.hint[b-23tl8y2woj] {
    color: #666;
}

.conversation[b-23tl8y2woj] {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1rem;
}

.turn[b-23tl8y2woj] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: .7rem;
}

.bubble[b-23tl8y2woj] {
    max-width: 80%;
    padding: .6rem .8rem;
    border-radius: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.bubble-user[b-23tl8y2woj] {
    align-self: flex-start;
    background: #eef4ff;
    border: 1px solid #c9dcff;
}

.bubble-assistant[b-23tl8y2woj] {
    align-self: flex-end;
    background: #f6f6f6;
    border: 1px solid #e3e3e3;
}

@media (max-width: 640px) {
    .bubble[b-23tl8y2woj] {
        max-width: 100%;
    }
}

/* Base: tout cacher, afficher le formulaire actif via .is-active (piloté par JS) */
#chat-input-modes .forms [data-chat-mode][b-23tl8y2woj] { display: none; }
#chat-input-modes .forms [data-chat-mode].is-active[b-23tl8y2woj] { display: block; }

/* Amélioration progressive si :has() disponible (pas de JS requis pour l’affichage) */
@supports selector(:has(*)) {
    #chat-input-modes:has(#mode-short:checked) .forms [data-chat-mode="short"][b-23tl8y2woj] { display: block; }
    #chat-input-modes:has(#mode-long:checked)  .forms [data-chat-mode="long"][b-23tl8y2woj]  { display: block; }
}

/* Si :has() n'est pas supporté, le JS gère .is-active et éventuellement [hidden] */

/* Radios toggle outline primary: état actif avec couleur thème */
.btn-check:checked + .btn-outline-primary[b-23tl8y2woj],
.btn-check:active + .btn-outline-primary[b-23tl8y2woj],
.btn-outline-primary.active[b-23tl8y2woj],
.btn-outline-primary:active[b-23tl8y2woj] {
    color: #fff;
    background-color: var(--th-primary);
    border-color: var(--th-primary);
}

.btn-check:focus + .btn-outline-primary[b-23tl8y2woj],
.btn-outline-primary:focus[b-23tl8y2woj] {
    box-shadow: 0 0 0 .25rem rgba(var(--th-primary-rgb), .5);
}

/* Thème dark: rendre text-secondary lisible dans cette vue */
[data-theme="dark"] .chat-page .text-secondary[b-23tl8y2woj],
[data-theme="dark"] .chat-page .text-muted[b-23tl8y2woj],
[data-theme="dark"] .chat-page .text-muted-modern[b-23tl8y2woj] {
    --bs-text-opacity: 1;
    color: var(--th-muted, var(--bs-secondary-color, #9fb0c7)) !important;
}
/* /Views/Homes/Essential.cshtml.rz.scp.css */
/* Styles limités à la FAQ */
#faq table[b-2dny0w0bmt] {
    border-color: #dee2e6;
}

#faq .faq-row-question th[b-2dny0w0bmt] {
    border-bottom: 0;
    background-color: var(--bs-secondary-bg-subtle);
}

/* Hover discret */
#faq .faq-row-question th:hover[b-2dny0w0bmt] {
    background-color: var(--bs-primary-bg-subtle);
    filter: brightness(.97);
}

/* Variante optionnelle : accent vertical (si souhaité) */
#faq .faq-row-question th.faq-accent[b-2dny0w0bmt] {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary-text-emphasis, var(--bs-primary));
    border-left: .4rem solid var(--bs-primary);
    padding-left: 1rem;
}

#faq .faq-row-answer td[b-2dny0w0bmt] {
    border-top: 0;
}

/* Arrondis compatibles table (Bootstrap ne les applique pas en milieu de table) */
#faq .rounded-top[b-2dny0w0bmt] {
    border-top-left-radius: .4rem;
    border-top-right-radius: .4rem;
}

#faq .rounded-bottom[b-2dny0w0bmt] {
    border-bottom-left-radius: .4rem;
    border-bottom-right-radius: .4rem;
}

/* /Views/Homes/Immersive.cshtml.rz.scp.css */
.immersive-color[b-uq854cfype] {
    /* Dérivés / effets */
    --th-glass-bg: rgba(var(--th-white-rgb), .04);
    --th-glass-brd: rgba(var(--th-white-rgb), .12);
    --th-chip-bg: rgba(var(--th-white-rgb), .06);
    --th-icon-circle-grad-start: rgba(var(--th-primary-rgb), .18);
    --th-icon-circle-grad-end: rgba(var(--th-accent-rgb), .12);
    --th-btn-neon-glow: 0 0 20px rgba(var(--th-primary-rgb), .45);
    --th-inner-bright: rgba(var(--th-white-rgb), .06);
    --th-section-radial-left: rgba(var(--th-primary-rgb), .25);
    --th-section-radial-right: rgba(var(--th-accent-rgb), .18);
    --th-shadow: 0 10px 30px rgba(var(--th-black-rgb), .35), inset 0 0 0 1px rgba(var(--th-white-rgb), .03);
    --th-hover-raise-shadow: 0 15px 35px rgba(var(--th-black-rgb), .45);
    --th-immersive-gradient-1: var(--th-gradient-1);
    --th-immersive-gradient-2: var(--th-gradient-2);
    --th-immersive-gradient-3: var(--th-gradient-3);
    --th-immersive-muted: var(--th-text-muted);
    --th-immersive-bg-1: var(--th-bg1);
    --th-immersive-bg-2: var(--th-bg2);
}

.th-btn-outline[b-uq854cfype] {
    --bs-btn-color: var(--th-btn-color-1);
    --bs-btn-border-color: var(--th-btn-border-color-1);
    --bs-btn-hover-color: var(--th-btn-hover-color-1);
    --bs-btn-hover-bg: var(--th-btn-hover-bg-1);
    --bs-btn-hover-border-color: var(--th-btn-hover-border-color-1);
    --bs-btn-focus-shadow-rgb: var(--th-btn-focus-shadow-rgb-1);
    --bs-btn-active-color: var(--th-btn-active-color-1);
    --bs-btn-active-bg: var(--th-btn-active-bg-1);
    --bs-btn-active-border-color: var(--th-btn-active-border-color-1);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--th-btn-active-shadow-rgb-1), .125);
    --bs-btn-disabled-color: var(--th-btn-disabled-color-1);
    /*--bs-btn-disabled-bg: transparent;*/
    --bs-btn-disabled-border-color: var(--th-btn-disabled-border-color-1);
    /*--bs-gradient: none;*/
}

.th-text[b-uq854cfype] {
    color: var(--th-text-2) !important;
}

.th-text-color-2[b-uq854cfype] {
    color: var(--th-text-color-2) !important;
}

.th-text-color-3[b-uq854cfype] {
    color: var(--th-text-color-3) !important;
}

.th-text-color-6[b-uq854cfype] {
    color: var(--th-text-color-6) !important;
}

.section-dark[b-uq854cfype] {
    background: radial-gradient(1200px 600px at 10% -10%, var(--th-section-radial-left),
    transparent 60%), radial-gradient(1000px 600px at 90% 10%, var(--th-section-radial-right),
    transparent 55%), linear-gradient(180deg, var(--th-immersive-bg-1), var(--th-immersive-bg-2));
    position: relative;
    overflow: hidden;
    color: var(--th-text);
}

.gradient-anim[b-uq854cfype] {
    background: linear-gradient(90deg, var(--th-immersive-gradient-1), var(--th-immersive-gradient-2), var(--th-immersive-gradient-3));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hue-b-uq854cfype 10s ease-in-out infinite;
}

@keyframes hue-b-uq854cfype {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.glass[b-uq854cfype] {
    background: var(--th-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--th-glass-brd);
    box-shadow: var(--th-shadow);
    border-radius: 18px;
}

.chip[b-uq854cfype] {
    border: 1px solid var(--th-glass-brd);
    background: var(--th-chip-bg);
}

.icon-circle[b-uq854cfype] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--th-icon-circle-grad-start), var(--th-icon-circle-grad-end));
    border: 1px solid var(--th-glass-brd);
}

/* Fond blanc pour les cercles d’icônes dans cette page */
.immersive-color .icon-circle[b-uq854cfype] {
    background: #fff;
    border-color: rgba(var(--th-black-rgb), .08);
}

.immersive-color .icon-circle > span[b-uq854cfype] {
    color: var(--th-primary) !important;
}

.btn-neon[b-uq854cfype] {
    box-shadow: var(--th-btn-neon-glow), inset 0 0 0 1px var(--th-inner-bright);
}

.card-border[b-uq854cfype] {
    border: 1px solid var(--th-glass-brd);
}

.text-muted-modern[b-uq854cfype] {
    color: var(--th-immersive-muted) !important;
}

.hover-raise[b-uq854cfype] {
    transition: transform .25s ease, box-shadow .25s ease;
}

.hover-raise:hover[b-uq854cfype] {
    transform: translateY(-4px);
    box-shadow: var(--th-hover-raise-shadow);
}

/* FAQ — affiner l'accordéon pour s'harmoniser avec le thème "glass" */
.immersive-color #faq .accordion[b-uq854cfype] {
    --bs-accordion-color: var(--th-text);
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--th-glass-brd);
    --bs-accordion-border-width: 1px;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-color: var(--th-text);
    --bs-accordion-active-color: var(--th-primary);
    --bs-accordion-active-bg: rgba(var(--th-white-rgb), .04);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(var(--th-primary-rgb), .35);
}

.immersive-color #faq .accordion-item[b-uq854cfype] {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--th-glass-brd);
}
.immersive-color #faq .accordion-item:last-child[b-uq854cfype] {
    border-bottom: 0;
}

.immersive-color #faq .accordion-button[b-uq854cfype] {
    padding: 1rem 1.25rem;
    background: transparent;
    box-shadow: none !important;
    transition: background-color .2s ease, color .2s ease;
}
.immersive-color #faq .accordion-button:hover[b-uq854cfype] {
    background: rgba(var(--th-white-rgb), .03);
}
.immersive-color #faq .accordion-button:not(.collapsed)[b-uq854cfype] {
    color: var(--th-primary);
}

.immersive-color #faq .accordion-button[b-uq854cfype]::after {
    transition: transform .2s ease, filter .2s ease;
    filter: invert(1) opacity(.65);
}
.immersive-color #faq .accordion-button:not(.collapsed)[b-uq854cfype]::after {
    transform: rotate(180deg);
    filter: invert(1) opacity(.95);
}

.immersive-color #faq .accordion-body[b-uq854cfype] {
    color: var(--th-muted);
}

/* FAQ — contraste renforcé pour l'entête sur fond sombre
   Placez ce bloc en bas du fichier pour qu'il surcharge correctement. */
.immersive-color #faq .accordion[b-uq854cfype] {
    --bs-accordion-color: rgba(var(--th-white-rgb), .96);
    --bs-accordion-btn-color: rgba(var(--th-white-rgb), .96);
    --bs-accordion-active-color: rgba(var(--th-white-rgb), 1);
    --bs-accordion-active-bg: rgba(var(--th-white-rgb), .08);
    --bs-accordion-border-color: var(--th-glass-brd);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(var(--th-primary-rgb), .5);
}

.immersive-color #faq .accordion-item[b-uq854cfype] {
    border-bottom: 1px solid var(--th-glass-brd);
}

.immersive-color #faq .accordion-button[b-uq854cfype] {
    color: rgba(var(--th-white-rgb), .96) !important;
    background: transparent;
    box-shadow: none !important;
    text-shadow: 0 1px 1px rgba(0,0,0,.35);
}
.immersive-color #faq .accordion-button:hover[b-uq854cfype] {
    background: rgba(var(--th-white-rgb), .06);
}
.immersive-color #faq .accordion-button:not(.collapsed)[b-uq854cfype] {
    color: #fff !important;
}

/* Caret lisible sur fond sombre */
.immersive-color #faq .accordion-button[b-uq854cfype]::after {
    transition: transform .2s ease, filter .2s ease, opacity .2s ease;
    filter: invert(1) contrast(1.2);
    opacity: .9;
}
.immersive-color #faq .accordion-button:not(.collapsed)[b-uq854cfype]::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* FAQ — distinction claire Question vs Réponse */
.immersive-color #faq .faq-question[b-uq854cfype] {
    color: rgba(var(--th-text-color-4-rgb), .98) !important;
    text-shadow: 0 1px 1px rgba(var(--th-text-color-4-rgb),.25);
    letter-spacing: .2px;
}
.immersive-color #faq .accordion-button:not(.collapsed).faq-question[b-uq854cfype] {
    color: var(--th-text-color-4) !important;
}

.immersive-color #faq .faq-answer[b-uq854cfype] {
    color: rgba(var(--th-white-rgb));
    font-size: .98rem;
    border-top: 1px solid var(--th-glass-brd);
    padding-top: .9rem;
}

/* Optionnel: renforce encore le contraste au survol/actif */
.immersive-color #faq .accordion-button:hover.faq-question[b-uq854cfype] {
    background: rgba(var(--th-white-rgb), .04);
}
/* /Views/Homes/_Animate.cshtml.rz.scp.css */
/* Thème animé global */

/* Variables de thème (préfixe --th-) */
.animate-color[b-ijbfz5h59w]{
  /* Dérivés */
  --th-hero-animated-bg:
    radial-gradient(1250px 500px at 10% 20%, rgba(var(--th-animate-500-rgb), .20), transparent 60%),
    radial-gradient(1250px 500px at 90% 80%, rgba(var(--th-amber-400-rgb), .20), transparent 60%),
    linear-gradient(120deg, var(--th-animate-700) 0%, var(--th-animate-500) 45%, var(--th-animate-400) 100%);
  --th-hero-animated-overlay: linear-gradient(180deg, rgba(var(--th-black-rgb), .06), rgba(var(--th-black-rgb), .14));

  --th-float-badge-shadow: drop-shadow(0 10px 20px rgba(var(--th-black-rgb), .15));
  --th-card-shadow-hover: 0 1rem 2rem rgba(var(--th-black-rgb), .15);

  --th-timeline-gradient: linear-gradient(var(--th-animate-500), var(--th-animate-400));
  --th-timeline-dot-bg: var(--th-animate-500);
  --th-timeline-dot-outline: 0 0 0 4px rgba(var(--th-animate-500-rgb), .15);

  --th-blockquote-quote-color: rgba(var(--th-animate-500-rgb), .35);

  --th-sparkle-highlight: radial-gradient(circle at 120% -20%, rgba(var(--th-white-rgb), .6) 0, transparent 35%);
}

.hero-animated[b-ijbfz5h59w] {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--th-white);
    overflow: hidden;

    /* Passage à une palette chaude (orange/ambre) */
    background: var(--th-hero-animated-bg);
    background-size: 200% 200%;
    animation: gradientMove-b-ijbfz5h59w 18s ease-in-out infinite;
}

.hero-animated[b-ijbfz5h59w]::after {
    /* voile pour lisibilité */
    content: "";
    position: absolute;
    inset: 0;
    background: var(--th-hero-animated-overlay);
    pointer-events: none;
}

@keyframes gradientMove-b-ijbfz5h59w {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content[b-ijbfz5h59w] { position: relative; z-index: 1; }

.float-badges[b-ijbfz5h59w] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.float-badge[b-ijbfz5h59w] {
    position: absolute;
    opacity: .25;
    filter: var(--th-float-badge-shadow);
    animation: floatY-b-ijbfz5h59w 8s ease-in-out infinite;
}

@keyframes floatY-b-ijbfz5h59w {
    0%,100% { transform: translateY(0) rotate(0deg) }
    50% { transform: translateY(-20px) rotate(2deg) }
}

/* Animations d’apparition au scroll */
.reveal[b-ijbfz5h59w] {
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.reveal-in[b-ijbfz5h59w] { opacity: 1; transform: none; }

.reveal-zoom[b-ijbfz5h59w] {
    opacity: 0;
    transform: scale(.94);
    transition: all .6s ease;
}
.reveal-zoom.reveal-in[b-ijbfz5h59w] { opacity: 1; transform: scale(1); }

.reveal-left[b-ijbfz5h59w] {
    opacity: 0;
    transform: translateX(-24px);
    transition: all .7s ease;
}
.reveal-left.reveal-in[b-ijbfz5h59w] { opacity: 1; transform: none; }

.reveal-right[b-ijbfz5h59w] {
    opacity: 0;
    transform: translateX(24px);
    transition: all .7s ease;
}
.reveal-right.reveal-in[b-ijbfz5h59w] { opacity: 1; transform: none; }

/* Cartes et effets */
.card-raise[b-ijbfz5h59w] { transition: transform .3s ease, box-shadow .3s ease; }
.card-raise:hover[b-ijbfz5h59w] { transform: translateY(-6px); box-shadow: var(--th-card-shadow-hover) }

/* Timeline */
.timeline[b-ijbfz5h59w] {
    position: relative;
    padding-left: 1.5rem;
}
.timeline[b-ijbfz5h59w]::before {
    content: "";
    position: absolute;
    left: .5rem; top: 0; bottom: 0; width: 2px;
    /* Dégradé chaud */
    background: var(--th-timeline-gradient);
    opacity: .35;
}
.timeline-item[b-ijbfz5h59w] {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}
.timeline-item[b-ijbfz5h59w]::before {
    content: "";
    position: absolute;
    left: -3px; top: .4rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--th-timeline-dot-bg);
    box-shadow: var(--th-timeline-dot-outline);
}

/* Témoignages */
.blockquote-fx[b-ijbfz5h59w] { position: relative; padding-left: 2rem; }
.blockquote-fx[b-ijbfz5h59w]::before {
    content: "“";
    position: absolute;
    left: 0; top: -10px;
    font-size: 3rem; line-height: 1;
    color: var(--th-blockquote-quote-color);
}

/* Formulaire */
.btn-sparkle[b-ijbfz5h59w] { position: relative; overflow: hidden; transition: transform .15s ease; }
.btn-sparkle:active[b-ijbfz5h59w] { transform: translateY(1px); }
.btn-sparkle[b-ijbfz5h59w]::after {
    content: "";
    position: absolute; inset: 0;
    background: var(--th-sparkle-highlight);
    transform: translateX(-120%); transition: transform .6s ease;
}
.btn-sparkle:hover[b-ijbfz5h59w]::after { transform: translateX(0); }

/* === Palette chaude globale déplacée dans /wwwroot/css/theme-hot.css ===
   (Les overrides .text-primary, .btn-(outline)-primary, badges, etc. ne résident plus ici)
*/

/* (Le reste inchangé : animations, timeline, blockquote, carrousels, etc.) */
/* /Views/Homes/_Dynamic.cshtml.rz.scp.css */
/* Palette froide globale d�plac�e dans /wwwroot/css/theme-cold.css */

/* Variables de th�me (pr�fixe --th-) */
.dynamic-color[b-wrd22uazmb]{

  /* D�riv�s */
  --th-hero-cold-bg:
      radial-gradient(1200px 480px at 15% 20%, rgba(var(--th-blue-600-rgb), .25), transparent 60%),
      radial-gradient(1200px 480px at 85% 80%, rgba(var(--th-cyan-400-rgb), .25), transparent 60%),
      linear-gradient(120deg, var(--th-blue-600) 0%, var(--th-indigo-500) 45%, var(--th-cyan-400) 100%);
  --th-hero-cold-overlay: linear-gradient(180deg, rgba(var(--th-black-rgb), .06), rgba(var(--th-black-rgb), .18));

  --th-hero-neo-bg: linear-gradient(180deg, var(--th-neo-start) 0%, var(--th-neo-mid) 55%, var(--th-neo-end) 100%);
  --th-hero-neo-blobs:
      radial-gradient(30rem 20rem at 20% 30%, rgba(var(--th-acc-a-rgb), .28), transparent 60%),
      radial-gradient(26rem 18rem at 80% 70%, rgba(var(--th-acc-b-rgb), .26), transparent 60%),
      radial-gradient(22rem 16rem at 60% 20%, rgba(var(--th-cyan-400-rgb), .22), transparent 60%);

  --th-heading-wipe-grad: linear-gradient(90deg, var(--th-heading-wipe-start), var(--th-heading-wipe-end));

  --th-particle-bg:     linear-gradient(145deg, rgba(var(--th-white-rgb), .25), rgba(var(--th-white-rgb), .05));
  --th-particle-shadow: 0 10px 30px rgba(var(--th-black-rgb), .15) inset;

  --th-tile-shadow:     0 .75rem 1.5rem rgba(var(--th-black-rgb), .25);
  --th-figcaption-bg:   linear-gradient(180deg, transparent, rgba(var(--th-black-rgb), .55));
  --th-tilt-shadow:     0 1.25rem 2.25rem rgba(var(--th-acc-a-rgb), .22);

  --th-snap-border:     1px solid rgba(var(--th-acc-a-rgb), .18);
  --th-snap-conic:      conic-gradient(from 0deg, rgba(var(--th-acc-a-rgb), 0), rgba(var(--th-acc-a-rgb), .25), rgba(var(--th-acc-a-rgb), 0) 60%);

  --th-frost-bg:        linear-gradient(180deg, rgba(var(--th-white-rgb), .75), rgba(var(--th-white-rgb), .55));
  --th-frost-border:    1px solid rgba(var(--th-acc-a-rgb), .18);
  --th-frost-shadow:    0 .5rem 1.25rem rgba(var(--th-acc-d-rgb), .10);

  --th-btn-glow-shadow: 0 0 0 rgba(var(--th-acc-a-rgb), 0);
  --th-btn-glow-hover:  0 0 24px rgba(var(--th-acc-a-rgb), .35);
}

/* Hero Cold */
.hero-cold[b-wrd22uazmb] {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--th-white);
  overflow: hidden;
  background: var(--th-hero-cold-bg);
  background-size: 200% 200%;
  animation: gradientMove-b-wrd22uazmb 18s ease-in-out infinite;
}
.hero-cold[b-wrd22uazmb]::after{
  content:"";
  position:absolute; inset:0;
  background: var(--th-hero-cold-overlay);
  pointer-events:none;
}
.hero-content[b-wrd22uazmb] { position: relative; z-index: 1; }

/* Hero Neo */
.hero-neo[b-wrd22uazmb]{
  position:relative; min-height:72vh; display:grid; place-items:center; text-align:center; color: var(--th-white); overflow:hidden;
  background: var(--th-hero-neo-bg);
}
.hero-neo[b-wrd22uazmb]::before,
.hero-neo[b-wrd22uazmb]::after{
  content:""; position:absolute; inset:-10%;
  background: var(--th-hero-neo-blobs);
  filter: blur(10px);
  animation: blobMove-b-wrd22uazmb 28s ease-in-out infinite;
  mix-blend-mode: screen;
}
.hero-neo[b-wrd22uazmb]::after{
  animation-duration: 36s;
  animation-direction: reverse;
  opacity: .6;
}
@keyframes blobMove-b-wrd22uazmb{
  0%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(2%, -3%, 0) scale(1.05); }
  100%{ transform: translate3d(0,0,0) scale(1); }
}
.hero-inner[b-wrd22uazmb]{ position:relative; z-index:1; padding: 4rem 1rem; }
.heading-wipe[b-wrd22uazmb]{
  display:inline-block; position:relative;
  background: var(--th-heading-wipe-grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.heading-wipe[b-wrd22uazmb]::after{
  content:""; position:absolute; left:0; right:0; bottom:-.4rem; height:3px;
  background: linear-gradient(90deg, var(--th-dynamic-500), var(--th-dynamic-300));
  transform-origin:left; transform: scaleX(0);
  animation: underline-b-wrd22uazmb 1s ease .3s forwards;
}
@keyframes underline-b-wrd22uazmb{ to { transform: scaleX(1); } }

/* Particules */
.fx-particles span[b-wrd22uazmb] {
  position: absolute; border-radius: 50%;
  filter: blur(1px); opacity: .25;
  background: var(--th-particle-bg);
  box-shadow: var(--th-particle-shadow);
  animation: floatY-b-wrd22uazmb 9s ease-in-out infinite;
}
.fx-particles .p1[b-wrd22uazmb]{ width:120px; height:120px; top:10%; left:8%; animation-delay:.2s }
.fx-particles .p2[b-wrd22uazmb]{ width:90px; height:90px; bottom:12%; right:12%; animation-delay:.6s }
.fx-particles .p3[b-wrd22uazmb]{ width:110px; height:110px; top:18%; right:26%; animation-delay:1.1s }
.fx-particles .p4[b-wrd22uazmb]{ width:70px; height:70px; bottom:18%; left:18%; animation-delay:.9s }
.fx-particles .p5[b-wrd22uazmb]{ width:55px; height:55px; top:30%; left:48%; animation-delay:1.4s }
.fx-particles .p6[b-wrd22uazmb]{ width:85px; height:85px; bottom:25%; right:40%; animation-delay:.4s }

@keyframes gradientMove-b-wrd22uazmb { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes floatY-b-wrd22uazmb { 0%,100%{ transform: translateY(0)} 50%{ transform: translateY(-18px)} }

/* Animations reveal */
.reveal[b-wrd22uazmb] { opacity:0; transform: translateY(22px); transition: all .7s cubic-bezier(.2,.7,.2,1) }
.reveal.reveal-in[b-wrd22uazmb] { opacity:1; transform:none }
.reveal-zoom[b-wrd22uazmb] { opacity:0; transform: scale(.94); transition: all .6s ease }
.reveal-zoom.reveal-in[b-wrd22uazmb] { opacity:1; transform: scale(1) }
.reveal-left[b-wrd22uazmb] { opacity:0; transform: translateX(-24px); transition: all .7s ease }
.reveal-left.reveal-in[b-wrd22uazmb] { opacity:1; transform:none }
.reveal-right[b-wrd22uazmb] { opacity:0; transform: translateX(24px); transition: all .7s ease }
.reveal-right.reveal-in[b-wrd22uazmb] { opacity:1; transform:none }

/* Galerie */
.gallery-grid[b-wrd22uazmb]{
  display:grid; gap:1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.tile[b-wrd22uazmb]{
  position:relative; overflow:hidden; border-radius:.75rem; background: var(--th-tile-bg);
  box-shadow: var(--th-tile-shadow);
  transform-style: preserve-3d; transition: transform .2s ease, box-shadow .2s ease;
}
.tile img[b-wrd22uazmb]{ width:100%; height:320px; object-fit: cover; transition: transform .6s ease; display:block; }
.tile figcaption[b-wrd22uazmb]{
  position:absolute; left:0; right:0; bottom:0; padding:.6rem .9rem; color: var(--th-white); font-weight:600;
  background: var(--th-figcaption-bg);
}
.tilt-card:hover img[b-wrd22uazmb]{ transform: scale(1.08); }
.tilt-on[b-wrd22uazmb]{ box-shadow: var(--th-tilt-shadow); }

/* Tarifs carrousel */
.snap-wrap[b-wrd22uazmb]{ overflow:auto; padding-bottom:.5rem; }
.snap-track[b-wrd22uazmb]{
  display:flex; gap:1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.snap-card[b-wrd22uazmb]{
  scroll-snap-align: start;
  min-width: min(340px, 88vw);
  border-radius:.75rem;
  border: var(--th-snap-border);
  position:relative;
  isolation:isolate;
}
.snap-card[b-wrd22uazmb]::after{
  content:""; position:absolute; inset:-2px;
  background: var(--th-snap-conic);
  border-radius:inherit; z-index:-1; filter: blur(8px); opacity:.0;
  animation: glowPulse-b-wrd22uazmb 2.4s ease-in-out infinite;
}
@keyframes glowPulse-b-wrd22uazmb{
  0%,100% { opacity:.0 }
  50% { opacity:.6 }
}

/* Cartes givr�es */
.card-frost[b-wrd22uazmb]{
  background: var(--th-frost-bg);
  backdrop-filter: blur(6px);
  border: var(--th-frost-border);
  box-shadow: var(--th-frost-shadow);
  border-radius:.75rem;
}

/* Blog flip */
.flip3d[b-wrd22uazmb]{ perspective: 1000px; outline: none; }
.flip3d-inner[b-wrd22uazmb]{
  position:relative; transform-style: preserve-3d; transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.flip3d:hover .flip3d-inner[b-wrd22uazmb],
.flip3d:focus .flip3d-inner[b-wrd22uazmb]{ transform: rotateY(180deg); }
.flip3d-front[b-wrd22uazmb], .flip3d-back[b-wrd22uazmb]{
  position:absolute; inset:0; backface-visibility:hidden; border-radius:.75rem;
}
.flip3d-back[b-wrd22uazmb]{ transform: rotateY(180deg); }

/* FAQ caret */
.accordion-button[b-wrd22uazmb]::after{ transition: transform .25s ease; }
.accordion-button:not(.collapsed)[b-wrd22uazmb]::after{ transform: rotate(180deg); }

/* Ticker avis */
.ticker[b-wrd22uazmb]{ overflow:hidden; border-radius:.75rem; }
.ticker-track[b-wrd22uazmb]{
  display:flex; gap:2rem; padding: .75rem 1rem; white-space: nowrap;
  animation: tickerMove-b-wrd22uazmb 40s linear infinite;
}
.ticker:hover .ticker-track[b-wrd22uazmb]{ animation-play-state: paused; }
.ticker-item[b-wrd22uazmb]{ color: var(--th-ticker-text); }
@keyframes tickerMove-b-wrd22uazmb{
  from{ transform: translateX(0) }
  to  { transform: translateX(-50%) }
}

/* Apparitions data-anim */
[data-anim][b-wrd22uazmb]{ opacity:0; }
.is-inview[data-anim][b-wrd22uazmb]{ animation-duration: .8s; animation-fill-mode: both; }
.is-inview[data-anim="rise"][b-wrd22uazmb]{ animation-name: riseIn-b-wrd22uazmb; }
.is-inview[data-anim="wipe"][b-wrd22uazmb]{ animation-name: wipeIn-b-wrd22uazmb; }
.is-inview[data-anim="fade"][b-wrd22uazmb]{ animation-name: fadeIn-b-wrd22uazmb; }
.is-inview[data-anim="zoom"][b-wrd22uazmb]{ animation-name: zoomIn-b-wrd22uazmb; }
@keyframes riseIn-b-wrd22uazmb{ from{ opacity:0; transform: translateY(18px); filter: blur(4px); } to{ opacity:1; transform:none; filter:blur(0);} }
@keyframes wipeIn-b-wrd22uazmb{ from{ opacity:1; clip-path: inset(0 100% 0 0);} to{ opacity:1; clip-path: inset(0 0 0 0);} }
@keyframes fadeIn-b-wrd22uazmb{ from{ opacity:0 } to{ opacity:1 } }
@keyframes zoomIn-b-wrd22uazmb{ from{ opacity:0; transform: scale(.92);} to{ opacity:1, transform: scale(1);} }

/* Effets boutons sp�cifiques page */
.btn-glow[b-wrd22uazmb]{
  position:relative; overflow:hidden;
  box-shadow: var(--th-btn-glow-shadow);
  transition: box-shadow .25s ease, transform .2s ease;
}
.btn-glow:hover[b-wrd22uazmb]{ transform: translateY(-1px); box-shadow: var(--th-btn-glow-hover) }

/* Accessibilit� motion */
@media (prefers-reduced-motion: reduce){
  *[b-wrd22uazmb] { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
/* /Views/Home/Contact.cshtml.rz.scp.css */
.th-text-secondary[b-uuqozi6gi4] {
    --th-text-secondary-opacity: 1;
    color: rgba(var(--th-text-color-7-rgb), var(--th-text-secondary-opacity)) !important;
}
/* /Views/Home/Index.cshtml.rz.scp.css */
.img-demo-thumb[b-6e3pfq7y2w] {
    height: 220px; /* ou la hauteur souhaitée */
    object-fit: cover; /* pour recadrer sans déformer */
    width: 100%; /* pour remplir la card */
    border-radius: 0.5rem; /* optionnel, pour l’esthétique */
}

.hover-lift[b-6e3pfq7y2w] {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .hover-lift:hover[b-6e3pfq7y2w] {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    }

.th-text[b-6e3pfq7y2w] {
    --bs-text-opacity: 1;
    color: rgba(var(--th-text-color-5-rgb), var(--bs-text-opacity)) !important;
}

.th-text-2[b-6e3pfq7y2w] {
    --bs-text-opacity: 1;
    color: rgba(var(--th-text-color-8-rgb), var(--bs-text-opacity)) !important;
}
/* /Views/Shared/_Layout.cshtml.rz.scp.css */
 Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. 

a.navbar-brand[b-riir6765gc] {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a[b-riir6765gc] {
    color: #0077cc;
}

.btn-primary[b-riir6765gc] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active[b-riir6765gc], .nav-pills .show > .nav-link[b-riir6765gc] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top[b-riir6765gc] {
    border-top: 1px solid #e5e5e5;
}

.border-bottom[b-riir6765gc] {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-riir6765gc] {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-riir6765gc] {
    font-size: 1rem;
    line-height: inherit;
}

.footer[b-riir6765gc] {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 200px;
}

/* Modal "Fictif" – style sobre et animé */
.fictif-modal .modal-content[b-riir6765gc] {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.25);
}

.fictif-hero[b-riir6765gc] {
    padding: 2rem 1.5rem 1rem 1.5rem;
}

.fictif-title[b-riir6765gc] {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    letter-spacing: .02em;
    background: linear-gradient(90deg, #0d6efd, #6f42c1, #0d6efd);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fictif-sheen-b-riir6765gc 4s linear infinite;
    margin: 0;
}

@keyframes fictif-sheen-b-riir6765gc {
    to {
        background-position: 200% center;
    }
}

.fictif-sub[b-riir6765gc] {
    color: #6c757d;
    margin-top: .5rem;
}

.fictif-footer[b-riir6765gc] {
    border-top: 1px solid rgba(0,0,0,.075);
    background: #f8f9fa;
}
