/*  */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #000;
}
.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slider-slide.active { opacity: 1; }
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay et caption uniques, positionnés au-dessus de toutes les slides */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(22,0,73,0.35) 0%, rgba(22,0,73,0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}
.slider-caption {
    background: rgba(255,255,255,0.93);
    border-radius: 10px;
    padding: 18px 36px;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 24px rgba(22,0,73,0.18);
    max-width: 90%;
}
.slider-caption h1 {
    color: var(--dark);
    font-size: clamp(20px, 3vw, 30px);
    margin: 0 0 4px 0;
    font-weight: 800;
}
.slider-caption .slider-sub {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    font-size: 16px;
    z-index: 10;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.slider-prev { left: 25px; }
.slider-next { right: 25px; }
.slider-prev:hover, .slider-next:hover { background: var(--primary); color: #fff; }
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: #fff; transform: scale(1.3); }

/* ===== SECTIONS COMMUNES ===== */
.lav-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 0;
}
.lav-section h2 {
    color: var(--dark);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212,57,162,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}
.lav-section h2 i { color: var(--primary); font-size: 22px; }
.lav-section p { color: var(--text-dark); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.lav-section a { color: var(--white); text-decoration: none; font-weight: 600; }

/* ===== SECTION "POURQUOI" : 100 % largeur, liste en 3 colonnes ===== */
.pourquoi-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pourquoi-text { width: 100%; }
.pourquoi-features {
    width: 100%;
    background-color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}
/* Colonnes via CSS columns : flux naturel haut→bas puis colonne suivante */
.pourquoi-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 32px;
}
.pourquoi-features li {
    break-inside: avoid;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.pourquoi-features li i { color: var(--primary); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.pourquoi-features li:last-child { margin-bottom: 0; }

/* ===== SECTION ACCÈS ===== */
.acces-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.acces-info { flex: 1; }
.acces-info address {
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.acces-info .acces-sub {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}
.acces-map {
    flex: 1.4;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22,0,73,0.05);
}
.acces-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== BOUTONS — style unifié .btn-card ===== */
.btn-itinerary,
.btn-dispo {
    display: inline-block;
    text-align: center;
    background-color: var(--dark);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
/* Centrage du bouton disponibilité */
.btn-dispo {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.btn-itinerary:hover,
.btn-dispo:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

/* ===== SECTION DISPONIBILITÉ ===== */
.dispo-header p { margin-bottom: 16px; }
.dispo-frame-wrap {
    width: 100%;
    height: 420px;
    background: #f0f0f0;
    margin-bottom: 0;
}
.dispo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===== TARIFS ===== */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.tarifs-table thead tr { background: var(--dark); }
.tarifs-table th {
    color: var(--white);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}
.tarifs-table td {
    padding: 12px 18px;
    font-size: 15px;
    border-bottom: 1px solid rgba(22,0,73,0.06);
}
.tarifs-table tr:last-child td { border-bottom: none; }
.tarifs-table tr:nth-child(even) td { background: rgba(22,0,73,0.02); }
.tarifs-table td:last-child { font-weight: 700; color: var(--secondary); text-align: right; }

/* ===== FIDÉLITÉ ===== */
.fidelite-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.fidelite-card {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212,57,162,0.25);
}
.fidelite-card .amount { font-size: 28px; font-weight: 800; }
.fidelite-card .arrow { font-size: 18px; opacity: 0.7; margin: 6px 0 2px; }
.fidelite-card .gets { font-size: 16px; font-weight: 700; }

/* ===== AVIS ===== */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.avis-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    font-size: 14px;
    line-height: 1.65;
    border-left: 3px solid var(--primary);
}
.avis-name { font-weight: 700; color: var(--dark); display: block; margin-bottom: 6px; font-size: 15px; }

/*  */
.faq-item {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 22px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22,0,73,0.04);
    cursor: pointer;
}
.faq-question {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-toggle { transition: transform 0.25s; color: var(--primary); flex-shrink: 0; }
.faq-answer {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
    display: none;
    line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(180deg); }

/* ===== BOTTOM PADDING ===== */
.lav-bottom { padding-bottom: 70px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-slider { height: 320px; }
    .pourquoi-features ul { column-count: 2; }
    .acces-container { flex-direction: column; }
    .acces-map { width: 100%; flex: none; height: 260px; }
    .slider-prev, .slider-next { display: none; }
}
@media (max-width: 540px) {
    .slider-caption { padding: 14px 20px; }
    .pourquoi-features ul { column-count: 1; }
    .fidelite-cards { flex-direction: column; }
}