
:root {
    --primary: #0f3d3a;
    --primary-soft: #ffffff;
    --accent: #dd533c;
    --accent-soft: #fff4e6;
    --text: #1a1f23;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f7f9fa;
    --white: #ffffff;

    --radius-sm: 0.5rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.4rem;
    --radius-xl: 2rem;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.12);

    --container: 1200px;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.4rem;
    --fs-4xl: 3.2rem;

    --transition: 0.3s ease;
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

/* ================= GLOBAL ================= */

.container {
    max-width: var(--container);
    margin: auto;
}

.section {
    padding: 6rem 0;
}

.section-white {
    background: #fff;
}

.section-soft {
    background: var(--primary-soft);
}

.section-gradient {
    background: linear-gradient(135deg, #f7f9fa, #ffffff);
}

h1 {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: var(--fs-3xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: var(--fs-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--muted);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
}

/* ================= BUTTONS ================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: #fff;
}

.btn-secondary:hover {
    background: var(--primary-soft);
}

/* ================= TOPBAR ================= */

.topbar {
    background: var(--primary);
    color: #fff;
    font-size: var(--fs-sm);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar {
    background: #0f3d3a;
    color: #fff;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.topbar-item i {
    font-size: 0.7rem;
    opacity: 0.8;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #fff;
    transition: 0.2s;
}

.topbar-phone:hover {
    opacity: 0.8;
}

.topbar-cta {
    background: #dd533c;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-weight: 600;
    transition: 0.2s;
}

.topbar-cta:hover {
    transform: translateY(-1px);
}

.topbar-item.highlight {
    color: #dd533c;
    font-weight: 600;
}

/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    height: 75px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    font-weight: 600;
    color: var(--primary);
}

.burger {
    display: none;
    font-size: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    min-width: 400px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.25s ease;
    border: 1px solid #eee;
}

.nav-item:hover .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 2rem;
}

.dropdown-title {
    display: block;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #0f3d3a;
}

.dropdown a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
    transition: 0.2s;
}

.dropdown a:hover {
    color: #dd533c;
    transform: translateX(3px);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    background: url("https://skeletons.nescio.fr/asvp4p_FLoWtb/assets/medias/asvp4p-bg-hero.png");
    background-size: cover;
}

/* LAYOUT FLEX */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

/* LEFT */
.hero-left {
    max-width: 520px;
}

.hero-left h1 {
    margin: 1rem 0;
}

.hero-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.hero-benefits {
    margin-top: 1.5rem;
    list-style: none;
}

.hero-benefits li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-benefits i {
    color: #dd533c;
    margin-right: 0.4rem;
}

/* RIGHT */
.hero-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* CARD */
.hero-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    padding: 1.6rem;
    border-radius: 1.2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* SESSION */
.session {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid #eee;
}

.session:last-child {
    border: none;
}

.session-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.session-line {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.session-line i {
    color: #0f3d3a;
    font-size: 0.85rem;
}

.session-line.sub {
    font-size: 0.75rem;
    color: #777;
}

/* RIGHT */
.session-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* BADGE */
.session-badge {
    font-size: 0.75rem;
    background: #fff4e6;
    color: #dd533c;
    padding: 0.3rem 0.6rem;
    border-radius: 0.4rem;
    font-weight: 600;
    white-space: nowrap;
}

.session-badge.available {
    background: #e7f4f3;
    color: #0f3d3a;
}

/* BTN */
.session-btn {
    background: #0f3d3a;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    transition: 0.2s;
}

.session-btn:hover {
    background: #1b5c58;
}

/* CTA */
.full {
    width: 100%;
    margin-top: 1.2rem;
}

.hero-link {
    display: block;
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f3d3a;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-card {
        max-width: 100%;
    }
}
/* CTA */
.full {
    width: 100%;
}

.hero-link {
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f3d3a;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        gap: 2rem;
    }


    .hero-card {
        max-width: 100%;
    }

}


/* SECTION */
.asvp-section-contrast {
    padding: 5rem 0;
    background: #0f3d3a;
    color: #fff;
}

/* HEADER */
.asvp-section-contrast .asvp-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.asvp-section-contrast .asvp-header h2 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    color: #fff;
}

.asvp-section-contrast .asvp-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* GRID FLEX */
.asvp-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.asvp-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    padding: 1.8rem 1.5rem;
    border-radius: 1rem;
    width: 260px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.25s ease;
}

.asvp-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* ICON (GROSSE AMÉLIORATION ICI) */
.asvp-card i {
    font-size: 2rem; /* ← beaucoup plus visible */
    margin-bottom: 1rem;
    color: #dd533c;
}

/* TITLES */
.asvp-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

/* TEXT */
.asvp-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* CTA */
.asvp-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.asvp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.6rem;
    background: #dd533c;
    color: #fff;
    font-weight: 600;
    border-radius: 0.6rem;
    transition: 0.2s;
}

.asvp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .asvp-grid {
        flex-direction: column;
        align-items: center;
    }

    .asvp-card {
        width: 100%;
        max-width: 320px;
    }

}

.asvp-danger {
    padding: 6rem 0;
    background: url("https://skeletons.nescio.fr/asvp4p_FLoWtb/assets/medias/bg-asvp-danger.png");
}

.asvp-danger-inner {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* LEFT */

.asvp-danger-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.danger-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.danger-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.8rem;
    background: #fff4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.danger-icon i {
    color: #dd533c;
    font-size: 1.4rem;
}

.danger-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.danger-item p {
    font-size: 0.9rem;
    color: #666;
}

/* RIGHT */

.asvp-danger-right {
    flex: 1;
    max-width: 520px;
}

.asvp-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f3d3a;
    background: #e7f4f3;
    padding: 0.35rem 0.8rem;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
}

.asvp-danger-right h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1
}

.asvp-danger-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.asvp-danger-highlight {
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 1.8rem;
}

/* CARD (moins plate) */

.asvp-solution {
    background: #0f3d3a;
    color: #fff;
    padding: 1.8rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.asvp-solution h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.asvp-solution ul {
    list-style: none;
}

.asvp-solution li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.asvp-solution i {
    color: #dd533c;
    margin-right: 0.4rem;
}

/* CTA aligné avec carte */

.asvp-danger-cta {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    border-radius: 0.8rem;
}

.asvp-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;

    padding: 1rem 1.1rem;
    border-radius: 0.9rem;

    background: rgba(255, 159, 28, 0.08);
    border: 1px solid rgba(255, 159, 28, 0.18);

    box-shadow: 0 0.5rem 1.2rem rgba(255, 159, 28, 0.08);
    margin-bottom: 15px
}

/* ICON CERCLE */
.asvp-alert-icon {
    width: 2.6rem;
    height: 2.6rem;

    border-radius: 50%;

    background: rgba(255, 159, 28, 0.15);
    border: 1px solid rgba(255, 159, 28, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.asvp-alert-icon i {
    color: #dd533c;
    font-size: 0.95rem;
}

/* TEXT */
.asvp-alert-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.asvp-alert-content strong {
    font-size: 0.95rem;
    color: #7a4b00;
}

.asvp-alert-content span {
    font-size: 0.85rem;
    color: #a16207;
    line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .asvp-danger-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .asvp-danger-right {
        max-width: 100%;
    }

}

.asvp-types {
    padding: 6rem 0;
    background: #ffffff;
}

/* HEADER */
.asvp-header {
    text-align: center;
    margin: 0 auto 3rem;
}

.asvp-header h2 {
    color: #132025;
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
}

.asvp-header p {
    color: #666;
    font-size: 0.95rem;
}

/* GRID = 4 FIXE */
.asvp-types-grid {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

/* CARD */
.asvp-type-card {
    flex: 1;
    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.asvp-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.asvp-type-image {
    height: 140px;
    background-size: cover;
    background-position: center;
}

/* CONTENT */
.asvp-type-content {
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
    flex: 1;
}

/* BADGE */
.asvp-type-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 600;
    background: #dd533c;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
    margin-bottom: 0.7rem;
}

.asvp-type-badge.neutral {
    background: #e7f4f3;
    color: #0f3d3a;
}

/* TITLE */
.asvp-type-content h3 {
    font-size: 1.1rem;
    color: #132025;
    margin-bottom: 0.5rem;
}

/* TEXT */
.asvp-type-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

/* LINK aligné en bas */
.asvp-type-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f3d3a;
}

/* RESPONSIVE */
@media (max-width: 1000px) {

    .asvp-types-grid {
        flex-wrap: wrap;
    }

    .asvp-type-card {
        flex: 1 1 calc(50% - 1rem);
    }

}

@media (max-width: 600px) {

    .asvp-type-card {
        flex: 1 1 100%;
    }

}

.asvp-newsletter {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f3d3a 0%, #14504c 55%, #17625d 100%);
    color: #fff;
    overflow: hidden;
}

/* CONTAINER LARGE */
.asvp-newsletter .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* CONTENT */
.asvp-newsletter-content {
    width: 100%;
    text-align: center;
}

/* CHIP */
.asvp-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 1.2rem;
}

/* TITLE */
.asvp-newsletter h2 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* TEXT */
.asvp-newsletter-desc {
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* FORM */
.asvp-newsletter-form {
    max-width: 700px;
    margin: 0 auto;
}

/* INPUT GROUP */
.asvp-input-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;

    height: 64px;
    padding: 0 1.2rem;

    background: #fff;
    border-radius: 0.9rem;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.asvp-input-group i {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* INPUT FIX ALIGNEMENT */
.asvp-input-group input {
    height: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #111;
}

/* CONSENT */
.asvp-consent {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.asvp-checkbox {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;

    max-width: 700px;
    text-align: left;

    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.asvp-checkbox input {
    margin-top: 0.25rem;
}

.asvp-checkbox a {
    color: #fff;
    text-decoration: underline;
}

/* BUTTON */
.asvp-newsletter-btn {
    width: 100%;
    height: 60px;
    margin-top: 1.3rem;

    border: none;
    border-radius: 0.9rem;

    background: #dd533c;
    color: #fff;

    font-size: 1.05rem;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    cursor: pointer;
    transition: 0.2s;

    /* SHADOW RÉDUIT */
    box-shadow: 0 6px 15px rgba(255, 159, 28, 0.25);
}

.asvp-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 159, 28, 0.3);
}

/* NOTE */
.asvp-note {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 700px) {

    .asvp-newsletter h2 {
        font-size: 2rem;
    }

    .asvp-newsletter-desc {
        font-size: 1rem;
    }

    .asvp-input-group {
        height: 56px;
    }

    .asvp-newsletter-btn {
        height: 56px;
    }

}

.asvp-contact {
    background: linear-gradient(135deg, #dd533c, #ffb347);
    padding: 5rem 1.5rem;
}

.asvp-contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
.asvp-contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.asvp-contact-header h2 {
    font-size: 2.4rem;
    margin: 1rem 0;
    color: #fff;
    line-height: 1;
}

.asvp-contact-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    line-height: 1.6;
}

/* CHIP */
.asvp-chip {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* CARD */
.asvp-contact-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* FORM */
.asvp-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* GRID */
.asvp-grid-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1rem;
}

/* FIELD */
.asvp-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.asvp-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

/* INPUT */
.asvp-field input,
.asvp-field textarea {
    padding: 0.9rem 1rem;
    border-radius: 0.7rem;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    outline: none;
    transition: 0.2s;
}

.asvp-field input:focus,
.asvp-field textarea:focus {
    border-color: #dd533c;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.asvp-field textarea {
    min-height: 120px;
    resize: none;
}

/* CHECKBOX */
.asvp-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.asvp-check {
    display: flex;
    gap: 0.6rem;
    font-size: 0.85rem;
    align-items: flex-start;
}

.asvp-check input {
    margin-top: 0.25rem;
}

.asvp-check a {
    color: #dd533c;
    text-decoration: underline;
}

/* BUTTON */
.asvp-submit {
    margin-top: 0.5rem;
    padding: 1.1rem;
    border: none;
    border-radius: 0.8rem;
    background: #dd533c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.asvp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(221, 83, 60, 0.34);
}

/* FOOTER CONTACT */
.asvp-contact-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.asvp-contact-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 0.8rem;
    padding: 1rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex: 1;
    color: #fff;
}

.asvp-contact-item i {
    font-size: 1.1rem;
}

.asvp-contact-item strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1;
}

.asvp-contact-item span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.asvp-news {
    padding: 6rem 0;
}

/* GRID */
.asvp-news-grid {
    display: flex;
    gap: 1.8rem;
    margin-top: 2.5rem;
}

/* CARD */
.asvp-news-card {
    flex: 1;
    background: #fff;
    border-radius: 1.3rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.asvp-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.asvp-news-image {
    height: 190px;
    overflow: hidden;
}

.asvp-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: var(--radius-lg);
}

.asvp-news-card:hover img {
    transform: scale(1.06);
}

/* CONTENT */
.asvp-news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* META */
.asvp-news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #7a8895;
    margin-bottom: 0.4rem;
}

.dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

/* TITLE */
.asvp-news-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.asvp-news-content h3 a {
    color: #0f172a;
    text-decoration: none;
    transition: 0.2s;
}

.asvp-news-content h3 a:hover {
    color: #dd533c;
}

/* TEXT */
.asvp-news-content p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #5f6b75;
    margin-bottom: 1rem;
}

/* LINK */
.asvp-news-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #dd533c;
    text-decoration: none;
    position: relative;
}

.asvp-news-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #dd533c;
    transition: 0.3s;
}

.asvp-news-link:hover::after {
    width: 100%;
}

.asvp-news-footer {
    margin: 2em 0;
    display: flex;
    align-items: center;
    justify-content: center
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .asvp-news-grid {
        flex-direction: column;
    }
}

/* RESPONSIVE */
@media (max-width: 700px) {

    .asvp-grid-2 {
        grid-template-columns:1fr;
    }

    .asvp-contact-footer {
        flex-direction: column;
    }

}


/* ================= TABLE ================= */

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table th, .table td {
    padding: 1.2rem;
}

.table th {
    background: var(--primary-soft);
    font-size: var(--fs-sm);
}


/* ================= TESTIMONIAL ================= */

.testimonials {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

/* ================= FAQ ================= */

.faq {
    display: grid;
    gap: 1rem;
}

details {
    background: #fff;
    padding: 1.2rem;
    border-radius: var(--radius-md);
}

summary {
    font-weight: 600;
    cursor: pointer;
}

/* ================= CONTACT ================= */

.contact {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 2rem;
}


/* ================= FOOTER ================= */

footer {
    background: #0b2d2b;
    color: #fff;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer a {
    color: #cbd5e1;
    display: block;
    margin-bottom: 0.5rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns:1fr;
    }

    .grid-4 {
        grid-template-columns:1fr 1fr;
    }

    .grid-3 {
        grid-template-columns:1fr;
    }

    .stats {
        grid-template-columns:1fr 1fr;
    }

    .image-split {
        grid-template-columns:1fr;
    }

    .testimonials {
        grid-template-columns:1fr;
    }

    .contact {
        grid-template-columns:1fr;
    }

    .nav {
        display: none;
    }

    .burger {
        display: block;
    }

}


.asvp-faq {
    background: #f9fafb;
    padding: 4rem 1.5rem;
}

.asvp-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.asvp-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.asvp-faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.asvp-faq-header p {
    color: #666;
    margin-bottom: 1rem;
}

#faqSearch {
    width: 100%;
    padding: 0.9rem;
    border-radius: 0.6rem;
    border: 1px solid #ddd;
}

/* ITEM */
.asvp-faq-item {
    background: #fff;
    border-radius: 0.7rem;
    margin-bottom: 0.6rem;
    border: 1px solid #eee;
    overflow: hidden;
    display: none;
}

.asvp-faq-question {
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 1em;
}

.asvp-faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    color: #555;
}

.asvp-faq-item.active .asvp-faq-answer {
    padding: 1rem;
    max-height: 300px;
}

/* PAGINATION */
.asvp-faq-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.asvp-faq-pagination button {
    padding: 0.5rem 0.8rem;
    border: none;
    background: #dd533c;
    color: #fff;
    border-radius: 0.4rem;
    cursor: pointer;
}

.asvp-faq-pagination button.active {
    background: #333;
}
.asvp-reservation {
    padding: 4rem 0;
}

.asvp-reservation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.asvp-reservation-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.asvp-reservation-info {
    margin-bottom: 3rem;
}
.asvp-info-card div {
    display: flex;
    flex-direction: column;
}
.asvp-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.asvp-info-card {
    background: #fff;
    padding: 1rem;
    border-radius: 0.8rem;
    display: flex;
    gap: 0.7rem;
    box-shadow: var(--shadow-sm);
    align-items: center
}
.asvp-stage-date i{
    color:#dd533c;
    font-size: 1.3em;
    margin-right: 0.25em;
}
.asvp-info-card i {
    color: var(--accent);
    font-size: 1.5em
}

.asvp-info-card strong {
    font-size: 0.85rem;
}

.asvp-info-card span {
    font-size: 0.8rem;
    color: #666;
}

.asvp-reservation-list h2 {
    margin-bottom: 1.5rem;
}
.mt-2{
    padding-top: 2em;
}
.asvp-stages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.asvp-stage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1.2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.asvp-stage-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.asvp-stage-date {
    font-weight: 600;
}

.asvp-stage-sub {
    font-size: 0.8rem;
    color: #777;
}

.asvp-stage-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.asvp-stage-badge {
    background: #fff4e6;
    color: #dd533c;
    padding: 0.3rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
}
/* états désactivés */
.asvp-stage.disabled {
    opacity: 0.6;
}

/* bouton désactivé */
.disabled-btn {
    background: #ccc !important;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none !important;
}

/* badge bientôt */
.asvp-stage-badge.soon {
    background: #e5e7eb;
    color: #555;
    text-align: center;
}

/* badge complet */
.asvp-stage-badge.full {
    background: #ddd;
    color: #333;
}
.asvp-stage-detail {
    padding: 4rem 0;
}

/* LAYOUT */
.asvp-stage-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* LEFT */
.asvp-stage-left {
    flex: 1;
    align-items: start;
}

.asvp-stage-desc {
    margin: 1rem 0 2rem;
    font-size: 1.05rem;
}

/* INFOS */
.asvp-stage-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.asvp-stage-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.asvp-stage-info i {
    color: var(--accent);
}

.asvp-stage-info span {
    color: #444;
}

/* ALERT */
.asvp-alert {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    background: #fff4e6;
    padding: 1rem;
    border-radius: 0.8rem;
    margin-top: 1.5rem;
    width: 100%;
}

/* FORM */
.asvp-form-card {
    margin-top: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: #222;
    width: 100%;
}

.asvp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding-bottom: 2em;
}

.asvp-form-grid .full {
    grid-column: 1 / -1;
}

.asvp-form-card input {
    padding: 0.9rem;
    border-radius: 0.6rem;
    border: 1px solid #ddd;
}

/* RADIO */
.asvp-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.asvp-radio-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    background: #fff;
}

.asvp-radio-card input {
    display: none;
}

.radio-ui {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
}

.asvp-radio-card input:checked + .radio-ui {
    border-color: var(--accent);
}

.asvp-radio-card input:checked + .radio-ui::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

/* DOC */
.asvp-doc-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f5f7f8;
    border-radius: 0.8rem;
    font-size: 0.85rem;
}

/* CONDITIONS */
.asvp-conditions {
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* CHECK */
.asvp-checkbox {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* RIGHT */
.asvp-stage-right {
    position: sticky;
    top: 120px;
}

.asvp-stage-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.asvp-stage-price {
    text-align: center;
}

.asvp-stage-price span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.asvp-stage-card button{
    border: 0!important;
}
.asvp-alert .fa-solid.fa-fire {
    border-radius: 100%;
    padding: 10px;
    background: #fff;
    color: var(--accent);
}
/* bloc prix + badge */
.asvp-stage-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* prix */
.asvp-stage-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1F8F6A;
}

/* disabled */
.disabled {
    opacity: 0.6;
}

.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
}
.asvp-stage-badge{
    flex: 1;
}
/* badges */
.asvp-stage-badge.soon {
    background: #f0f0f0;
    color: #777;
}

.asvp-stage-badge.full {
    background: #ffe5e5;
    color: #c0392b;
}
.full {
    width: 100%;
    margin-bottom: 0.7rem;
}

.btn-ghost {
    background: #f5f7f8;
    border: none;
}

.asvp-stage-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
}
/* CARD BASE */
.asvp-doc-card,
.asvp-conditions-card {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef0f2;
}

/* HEADER */
.asvp-doc-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.asvp-doc-header i {
    font-size: 1.2rem;
    color: var(--accent);
}

.asvp-doc-header strong {
    display: block;
    font-size: 0.95rem;
}

.asvp-doc-header span {
    font-size: 0.8rem;
    color: #777;
}

/* LIST */
.asvp-doc-list,
.asvp-conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asvp-doc-list li,
.asvp-conditions-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.asvp-doc-list i {
    color: var(--accent);
}

.asvp-conditions-list i.fa-check {
    color: #22c55e;
}

.asvp-conditions-list i.fa-xmark {
    color: #ef4444;
}

/* CONSENT */
.asvp-consent-card {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 0.8rem;
    background: #f8fafb;
    cursor: pointer;
    transition: 0.2s;
}

.asvp-consent-card:hover {
    background: #eef6f5;
}

.asvp-consent-card input {
    display: none;
}

/* CUSTOM CHECKBOX */
.asvp-consent-ui {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asvp-consent-ui i {
    font-size: 0.7rem;
    color: #fff;
    opacity: 0;
}

/* CHECKED */
.asvp-consent-card input:checked + .asvp-consent-ui {
    background: var(--accent);
    border-color: var(--accent);
}

.asvp-consent-card input:checked + .asvp-consent-ui i {
    opacity: 1;
}

/* LINK */
.asvp-consent-card a {
    color: var(--accent);
    text-decoration: none;
}

.asvp-consent-card a:hover {
    text-decoration: underline;
}
/* =========================
   CARD BASE
========================= */
.asvp-doc-card,
.asvp-conditions-card {
    margin-top: 1.5rem;
    padding: 1.4rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #eef0f2;
    box-shadow: var(--shadow-sm);
}

/* =========================
   HEADER
========================= */
.asvp-doc-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.asvp-doc-header i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(46,125,91,0.1);
    color: var(--accent);
    font-size: 1rem;
}

.asvp-doc-header strong {
    display: block;
    font-size: 0.95rem;
    color: #111;
}

.asvp-doc-header span {
    font-size: 0.8rem;
    color: #777;
}

/* =========================
   LIST RESET
========================= */
.doc-block ul,
.asvp-conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================
   LIST ITEM (COMMUN)
========================= */
.doc-block li,
.asvp-conditions-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.7rem;
    border-radius: 0.6rem;
    transition: 0.2s;
    font-size: 0.9rem;
}

/* =========================
   ICON BASE
========================= */
.doc-block li i,
.asvp-conditions-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* =========================
   DOC ICON (VERT)
========================= */
.doc-block li i {
    background: rgba(46,125,91,0.12);
    color: var(--accent);
}

/* =========================
   CONDITIONS ICONS
========================= */
.asvp-conditions-list li i.fa-check {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
}

.asvp-conditions-list li i.fa-xmark {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
}

/* =========================
   HOVER EFFECT
========================= */
.doc-block li:hover,
.asvp-conditions-list li:hover {
    background: #f8fafb;
}

/* =========================
   ANIMATION SWITCH DOC
========================= */
.doc-block {
    display: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.25s ease;
}

.doc-block.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.card-col-2{
    display: flex;
    justify-content: space-between;
    gap:1em;
}
.card-col-2 > div{
    flex: 1
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .asvp-doc-card,
    .asvp-conditions-card {
        padding: 1.1rem;
    }

    .doc-block li,
    .asvp-conditions-list li {
        font-size: 0.85rem;
    }

}
/* MOBILE */
@media (max-width: 900px) {
    .asvp-stage-layout {
        flex-direction: column;
    }

    .asvp-stage-right {
        width: 100%;
        position: static;
    }

    .asvp-stage-info-grid,
    .asvp-form-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
    .asvp-info-grid {
        grid-template-columns: 1fr;
    }

    .asvp-stage {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .asvp-stage-right {
        width: 100%;
        justify-content: space-between;
    }
}
.asvp-footer {
    --footer-bg-1: #0f3d3a;
    --footer-bg-2: #124b47;
    --footer-bg-3: #17625d;
    --footer-text: #f4fbfa;
    --footer-muted: rgba(244, 251, 250, 0.78);
    --footer-border: rgba(255, 255, 255, 0.10);
    --footer-card: rgba(255, 255, 255, 0.06);
    --footer-card-hover: rgba(255, 255, 255, 0.09);
    --footer-accent: #dd533c;
    --footer-accent-soft: rgba(221, 83, 60, 0.14);

    position: relative;
    overflow: hidden;
    color: var(--footer-text);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(135deg, var(--footer-bg-1) 0%, var(--footer-bg-2) 58%, var(--footer-bg-3) 100%);
}

footer .logo img {
    height: 75px;
    filter: brightness(0) invert(1) contrast(1.1);
}

.asvp-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), transparent 20%);
}

.asvp-footer-wrap {
    width: min(1320px, calc(100% - 3rem));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.asvp-footer-top {
    padding: 3.25rem 0 2.25rem;
}

.asvp-footer-intro {
    margin-bottom: 1.6rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--footer-border);
}

.asvp-footer-brand {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.asvp-footer-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}
.doc-block {
    display: none;
}

.doc-block.active {
    display: block;
}
.asvp-footer h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

.asvp-footer-lead {
    max-width: 900px;
    margin: 0.95rem 0 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--footer-muted);
}

.asvp-footer-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.15rem;
}

.asvp-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.85rem 1.1rem;
    border-radius: 0.95rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all .25s ease;
}

.asvp-footer-btn i {
    font-size: 0.85rem;
}

.asvp-footer-btn-primary {
    background: var(--footer-accent);
    color: #fff;
    box-shadow: 0 0.8rem 1.8rem rgba(221, 83, 60, 0.22);
}

.asvp-footer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(221, 83, 60, 0.28);
}

.asvp-footer-btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.asvp-footer-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.asvp-footer-trust {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.asvp-footer-trust li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.2rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #fff;
}

.asvp-footer-trust i {
    color: #fff;
    font-size: 0.82rem;
}

.asvp-footer-grid {
    display: grid;
    grid-template-columns:1.05fr 1.3fr 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.asvp-footer-card {
    padding: 1.2rem 1.15rem;
}


.asvp-footer h3 {
    margin: 0 0 0.75rem;
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.asvp-footer-card-text,
.asvp-footer-note,
.asvp-footer-list li,
.asvp-footer-contact-list li,
.asvp-footer address {
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--footer-muted);
}

.asvp-footer-list,
.asvp-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asvp-footer-list li {
    margin: 0 0 0.45rem;
}

.asvp-footer-list a,
.asvp-footer-cities a,
.asvp-footer-contact-list a {
    color: #fff;
    text-decoration: none;
    transition: color .22s ease, opacity .22s ease;
}

.asvp-footer-list a:hover,
.asvp-footer-cities a:hover,
.asvp-footer-contact-list a:hover {
    color: #fff;
    opacity: 0.82;
}

.asvp-footer-cities {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0.5rem 0.75rem;
    margin-top: 0.8rem;
}

.asvp-footer-cities a {
    display: flex;
    align-items: center;
    min-height: 2.9rem;
    padding: 0.65rem 0.7rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.84rem;
    line-height: 1.4;
    text-align: center;
}

.asvp-footer-note {
    margin: 0.9rem 0 0;
}

.asvp-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.asvp-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.asvp-footer-icon {
    width: 2.2rem;
    height: 2.2rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: #dd533c;
    color: #fff;
    margin-top: 0.08rem;
}

.asvp-footer-icon i {
    font-size: 0.9rem;
}

.asvp-footer-contact-list strong {
    display: block;
    margin-bottom: 0.12rem;
    font-size: 0.82rem;
    color: #fff;
}

.asvp-footer-contact-list address {
    font-style: normal;
    margin: 0;
}

.asvp-footer-seo-band {
    border-top: 1px solid var(--footer-border);
    border-bottom: 1px solid var(--footer-border);
    background: rgba(255, 255, 255, 0.04);
}

.asvp-footer-seo-band p {
    margin: 0;
    padding: 1rem 0;
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--footer-muted);
    text-align: center;
}

.asvp-footer-bottom {
    padding: 1rem 0 1.1rem;
}

.asvp-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.asvp-footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(244, 251, 250, 0.68);
}
/* =========================
   GLOBAL
========================= */

html {
    scroll-behavior: smooth;
}

a, button, .btn {
    cursor: pointer;
    transition: all 0.25s ease;
}
button:active,
.btn:active {
    transform: scale(0.97);
}
/* =========================
   LINKS ANIMATION
========================= */

a {
    position: relative;
}

/* =========================
   BUTTONS
========================= */

.btn {
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* shine effect */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
}

.btn:hover::after {
    left: 120%;
    transition: 0.6s;
}
.btn-ghost:hover {
    background: #2E7D5B;
    color: #fff;
}

/* =========================
   HEADER / NAV
========================= */

.header {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   DROPDOWN FIX (CRITIQUE)
========================= */

.nav-item {
    position: relative;
}

/* bridge invisible anti bug */
.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 20px;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;
    pointer-events: none;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* =========================
   CARDS
========================= */

.asvp-card,
.asvp-stage,
.asvp-news-card,
.asvp-type-card,
.asvp-stage-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asvp-card:hover,
.asvp-stage:hover,
.asvp-news-card:hover,
.asvp-type-card:hover,
.asvp-stage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* hover glow dynamique */
.asvp-card::before,
.asvp-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(46,125,91,0.08), transparent 40%);
    opacity: 0;
    transition: 0.3s;
}

.asvp-card:hover::before,
.asvp-stage:hover::before {
    opacity: 1;
}

/* =========================
   ICONS
========================= */

.asvp-icon i,
.danger-icon i,
.asvp-stage-info i {
    transition: all 0.3s ease;
}

.asvp-card:hover i,
.danger-item:hover i {
    transform: scale(1.2) rotate(4deg);
}

/* =========================
   INPUTS
========================= */

input,
textarea {
    transition: all 0.2s ease;
}


/* =========================
   RADIO / CHECK
========================= */

.asvp-radio-card,
.asvp-consent-card {
    transition: all 0.25s ease;
}

.asvp-radio-card:hover,
.asvp-consent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   HERO ANIM
========================= */

.hero-left h1 {
    animation: fadeUp 0.6s ease both;
}

.hero-left p {
    animation: fadeUp 0.8s ease both;
}

.hero-cta {
    animation: fadeUp 1s ease both;
}

.hero-benefits li {
    animation: fadeUp 1.2s ease both;
}

/* =========================
   BADGES
========================= */

.asvp-chip,
.badge {
    transition: all 0.25s ease;
}

.asvp-chip:hover,
.badge:hover {
    transform: scale(1.05);
}

/* =========================
   SESSION
========================= */

.session {
    transition: all 0.25s ease;
}

.session:hover {
    transform: translateY(-3px);
    background: rgba(0,0,0,0.02);
}

/* =========================
   CTA
========================= */

.topbar-cta:hover,
.asvp-footer-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1180px) {
    .asvp-footer-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 760px) {
    .asvp-footer-top {
        padding: 2.3rem 0 1.5rem;
    }

    .asvp-footer-wrap {
        width: min(1320px, calc(100% - 2rem));
    }

    .asvp-footer-grid {
        grid-template-columns:1fr;
    }

    .asvp-footer-cities {
        grid-template-columns:1fr;
    }

    .asvp-footer-bottom-inner {
        flex-direction: column;
    }

    .asvp-footer-actions {
        width: 100%;
    }

    .asvp-footer-btn {
        width: 100%;
    }
}


 .asvp-voluntary-stage {
     padding-top: 4rem;
 }

.asvp-voluntary-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.asvp-voluntary-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.asvp-voluntary-breadcrumb a:hover {
    color: var(--primary);
}

.asvp-voluntary-breadcrumb .sep {
    color: #b7bec7;
    font-size: 0.72rem;
}

.asvp-voluntary-breadcrumb .current {
    color: var(--text);
    font-weight: 600;
}

.asvp-voluntary-card {
    border-radius: var(--radius-xl);
    padding: 2rem;
    overflow: hidden;
}
.asvp-cta-full{
    margin-top:3rem;
    padding:3rem 2rem;
    background:linear-gradient(135deg, #0f3d3a 0%, #14504c 55%, #17625d 100%);
    color:#fff;
    text-align:center;
    border-radius:14px;
    gap:0.5em;
    display: flex;
    flex-direction: column;
    align-items: center
}

.asvp-cta-full h3{
    font-size:1.6rem;
    margin: 0
}

.asvp-cta-full p{
    opacity:0.9;
    color:#fff;

}
.asvp-cta-full a{
    margin-top: 1em
}

.asvp-voluntary-panel{
    background:rgba(255,255,255,0.03);
    padding:20px;
    border-radius:10px;
}

.asvp-voluntary-list li{
    display:flex;
    gap:10px;
    align-items:center;
}
/* BASE LIST RESET */
.asvp-voluntary-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

/* STYLE GLOBAL */
.asvp-voluntary-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 14px;

    font-size: 0.95rem;
    color: #1e293b;

    background: rgba(255,245,230,0.44);

    transition: all 0.2s ease;
}



/* HOVER LIGHT */
.asvp-voluntary-list li:hover {
    background: rgba(20, 80, 76, 0.06);
}

/* ICONES */
.asvp-voluntary-list li i {
    min-width: 18px;
    text-align: center;
    font-size: 0.9rem;

}

/* VERSION DANGER */
.asvp-voluntary-list li i.fa-triangle-exclamation {
    color: #c22323;
}

/* VERSION COMPACT (barème vitesse etc) */
.asvp-volun#030101st.compact li {
    justify-content: space-between;
    font-size: 0.9rem;
}

/* ALIGNEMENT TEXTE GAUCHE / DROITE */
.asvp-voluntary-list.compact li span {
    font-weight: 500;
    color: #0f172a;
}

/* PETIT BOOST VISUEL */
.asvp-voluntary-list.compact li:hover {
    transform: translateX(3px);
}

/* HERO */
.asvp-voluntary-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.asvp-voluntary-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.asvp-voluntary-chip i {
    color: var(--accent);
}

.asvp-voluntary-hero h1 {
    margin-bottom: 1rem;
}

.asvp-voluntary-lead {
    font-size: 1.05rem;
    max-width: 760px;
}

.asvp-voluntary-keypoints {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.3rem;
}

.asvp-voluntary-keypoints span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff4e6;
    color: #7a4b00;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.asvp-voluntary-keypoints i {
    color: var(--accent);
}

.asvp-voluntary-figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.asvp-voluntary-figure img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/* BLOCKS */
.asvp-voluntary-block {
    padding: 1.8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.asvp-voluntary-block:first-of-type {
    border-top: 0;
}

.asvp-voluntary-block h2 {
    margin-bottom: 1rem;
}

.asvp-voluntary-block p + p {
    margin-top: 0.9rem;
}

/* QUOTES */
.asvp-voluntary-quote {
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: #ffffff;
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.asvp-voluntary-quote i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.15rem;
}

.asvp-voluntary-quote p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

.asvp-voluntary-quote.soft {
    background: var(--primary-soft);
    border-left-color: var(--primary);
}

.asvp-voluntary-quote.soft i {
    color: var(--primary);
}

.asvp-voluntary-quote.danger {
    background: #fff4e6;
    border-left-color: #dd533c;
}

.asvp-voluntary-quote.danger i {
    color: #dd533c;
}

/* LISTS */
.asvp-voluntary-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1em;
}

.asvp-voluntary-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.55;
    font-weight: 600;
}

.asvp-voluntary-list li i {
    width: 20px;
    min-width: 20px;
    margin-top: 0.12rem;
    color: var(--accent);
    text-align: center;
}

.asvp-voluntary-list.compact {
    gap: 0.7rem;
}

.asvp-voluntary-list.cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* PANELS */
.asvp-voluntary-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.asvp-voluntary-panel {
    background: #f9fafb;
    border: 1px solid #edf1f4;
    border-radius: var(--radius-lg);
    padding: 1.35rem;
}

.asvp-voluntary-panel h3 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
}

.asvp-voluntary-panel h3 i {
    color: var(--accent);
}

.asvp-voluntary-note {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--muted);
}

/* DOCS */
.asvp-voluntary-docs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.asvp-voluntary-doc-card {
    background: #fff;
    border: 1px solid #edf1f4;
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.asvp-voluntary-doc-card .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: #fff4e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asvp-voluntary-doc-card .icon i {
    color: var(--accent);
    font-size: 1.1rem;
}

.asvp-voluntary-doc-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.asvp-voluntary-doc-card p {
    font-size: 0.9rem;
}


.asvp-voluntary-booking-head h2 {
    margin-bottom: 0.6rem;
}


.asvp-voluntary-list.cities {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 30px;
}

.asvp-voluntary-list.cities li {
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 10px 10px 16px;

    font-size: 0.95rem;
    color: var(--text);

    border-bottom: 1px solid rgba(0,0,0,0.05);

    transition: all 0.25s ease;
}

/* ligne verticale à gauche */
.asvp-voluntary-list.cities li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 3px;
    height: 60%;

    background: var(--accent);
    opacity: 0.15;
    transition: all 0.25s ease;
}

/* icône */
.asvp-voluntary-list.cities li i {
    width: 18px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0.8;
}

/* hover propre */
.asvp-voluntary-list.cities li:hover {
    transform: translateX(4px);
    background: linear-gradient(to right, rgba(0,0,0,0.03), transparent);
}

.asvp-voluntary-list.cities li:hover::before {
    opacity: 0.6;
    height: 80%;
}

/* responsive */
@media (max-width: 768px) {
    .asvp-voluntary-list.cities {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .asvp-voluntary-hero {
        grid-template-columns: 1fr;
    }

    .asvp-voluntary-figure img {
        min-height: 260px;
    }

    .asvp-voluntary-docs {
        grid-template-columns: 1fr;
    }

    .asvp-voluntary-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .asvp-voluntary-stage {
        padding: 2.5rem 0 3.5rem;
    }

    .asvp-voluntary-card {
        padding: 1.2rem;
        border-radius: 1.3rem;
    }

    .asvp-voluntary-keypoints {
        flex-direction: column;
        align-items: flex-start;
    }

    .asvp-voluntary-list.cities {
        grid-template-columns: 1fr;
    }
}
