/* ==========================================================================
   Mobilaventure.fr - Design System V2
   Spécifications modernes inspirées de franchise-escape-game-outdoor.php
   ========================================================================== */

/* Backgrounds & Containers */
.v2-section-bg,
.v2-section-bg-white {
    background-color: #FBFBFB !important;
    padding: 70px 0;
}

.v2-section-bg-dark,
section.v2-section-bg-dark {
    background-color: #434343 !important;
    color: #ffffff !important;
    padding: 70px 0;
}

/* Force l'overlay semi-transparent #434343 sur overlay-bg pour préserver l'image de fond parallax */
.overlay-bg {
    background-color: rgba(67, 67, 67, 0.88) !important;
    padding: 70px 0;
}

/* Titres de Section V2 avec barre sous-jacente */
.h2article-v2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.v2-section-bg-dark .h2article-v2,
.overlay-bg .h2article-v2,
.h2article-v2.text-light {
    color: #ffffff !important;
}

.h2article-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #f39c12;
    border-radius: 2px;
}

.h2article-v2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.subtitle-v2 {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.subtitle-v2.text-light {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Base Card V2 */
.card-v2 {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f39c12;
}

/* Card V2 pour section sombre (Glassmorphism moderne) */
.card-v2-dark {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    color: #ffffff;
}

.card-v2-dark:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: #f39c12;
}

.card-v2-dark .card-v2-title {
    color: #ffffff !important;
}

.card-v2-dark .card-v2-text {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Card Image Wrapper with smooth zoom */
.card-v2-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.card-v2-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.card-v2:hover .card-v2-img img {
    transform: scale(1.04);
}

/* Card Content typography */
.card-v2-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-v2-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Icon Wrappers */
.icon-wrapper-v2 {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.icon-wrapper-v2 i {
    font-size: 24px;
    color: #f39c12;
}

/* Badges */
.badge-v2 {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(243, 156, 18, 0.12);
    color: #d35400;
    margin-bottom: 14px;
}

/* Session Chips (pour l'agenda des résas) */
.session-chip-box {
    background: #f8fafc;
    border: 1px solid #eef2f5;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
}

.session-chip-title {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.session-chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: block;
    cursor: pointer;
}

.session-chip:hover {
    background: #ffffff;
    border-color: #f39c12;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
}

.session-chip-date {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    line-height: 1.3;
}

.session-chip-time {
    font-size: 13px;
    font-weight: 700;
    color: #f39c12;
    display: block;
    margin-top: 2px;
}

/* Buttons */
.btn-cta-v2 {
    display: inline-block;
    background: #f39c12;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.35);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta-v2:hover {
    background: #e67e22;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.55);
}

.btn-block-v2 {
    width: 100%;
    display: block;
}

.btn-outline-v2 {
    display: inline-block;
    background: transparent;
    color: #2c3e50 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 30px;
    border: 2px solid #2c3e50;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline-v2:hover {
    background: #2c3e50;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* CTA Banner Block */
.cta-banner-v2 {
    background: linear-gradient(135deg, #1e272e 0%, #2c3e50 100%);
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    color: #ffffff;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-banner-v2 h2 {
    color: #ffffff !important;
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Rating / Stats Cards */
.rating-card-v2 {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f5;
    margin-bottom: 20px;
}

.rating-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #f39c12;
}

.rating-score {
    font-size: 28px;
    font-weight: 800;
    color: #2c3e50;
    margin: 6px 0;
}

/* Ratings Strip Style (Maquette Utilisateur d'origine) */
.rating-strip-section {
    background-color: #434343 !important;
    padding: 38px 0 28px 0;
    color: #ffffff;
}

.rating-col {
    text-align: center;
    position: relative;
    padding: 5px 15px;
}

.rating-col-border::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #f39c12;
    /* Ligne séparation dorée */
}

.rating-platform {
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 32px;
}

.rating-val-strip {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 4px 0 6px 0;
}

.rating-stars-strip {
    color: #f39c12;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-subtitle-strip {
    text-align: center;
    color: #dddddd;
    font-size: 14.5px;
    margin-top: 22px;
    font-weight: 500;
}

/* Logos Entreprise Grid */
.logo-card-v2 {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f5;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 95px;
}

.logo-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #f39c12;
}

.logo-card-v2 img {
    max-height: 75px;
    max-width: 90%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* Hero Subheader Overrides V2 */
.hero-v2 {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 90px 0 70px 0;
}

.hero-v2-overlay {
    background: linear-gradient(135deg, rgba(20, 25, 30, 0.75) 0%, rgba(44, 62, 80, 0.85) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (max-width: 767px) {
    .h2article-v2 {
        font-size: 23px;
    }

    .cta-banner-v2 {
        padding: 30px 20px;
    }

    .cta-banner-v2 h2 {
        font-size: 22px;
    }

    .v2-section-bg,
    .v2-section-bg-white,
    .v2-section-bg-dark {
        padding: 45px 0;
    }

    /* Réduction des notes et cartes sur mobile pour éviter tout débordement */
    .rating-strip-section {
        padding: 25px 0 20px 0 !important;
    }

    .rating-col {
        padding: 0 4px !important;
    }

    .rating-platform {
        font-size: 15px !important;
        min-height: 24px !important;
        gap: 4px !important;
    }

    .rating-val-strip {
        font-size: 18px !important;
        margin: 2px 0 3px 0 !important;
    }

    .rating-stars-strip {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }

    .rating-subtitle-strip {
        font-size: 13px !important;
        margin-top: 15px !important;
    }

    .rating-card-v2 {
        padding: 12px 4px !important;
        border-radius: 10px !important;
        margin-bottom: 10px !important;
    }

    .rating-card-v2 i {
        font-size: 16px !important;
    }

    .rating-score {
        font-size: 17px !important;
        margin: 3px 0 !important;
        letter-spacing: -0.5px;
    }

    .rating-card-v2 img {
        max-width: 85px !important;
    }
}

/* ==========================================================================
   Styles Franchise & Landing Pages V2 (Fichier CSS Unique Réutilisable)
   ========================================================================== */

.franchise-v2-container {
    font-family: inherit;
    padding: 40px 0 60px 0;
    background-color: #fafbfc;
}

.franchise-main-wrapper {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 15px;
}

.franchise-title-header {
    margin-bottom: 30px;
    text-align: center;
}

.franchise-title-header h1 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.franchise-img-wrapper {
    width: 100%;
    margin: 0 0 35px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.franchise-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card d'intro */
.intro-box {
    background: #ffffff;
    border-left: 5px solid #f39c12;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    width: 100%;
}

.intro-box p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

/* Section Avantages Grid */
.advantages-section {
    margin-bottom: 100px;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.advantage-col {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    display: flex;
}

.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f39c12;
}

.advantage-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.advantage-icon-wrapper i {
    font-size: 24px;
    color: #f39c12;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    flex-grow: 1;
}

.advantage-summary {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px 25px;
    border-left: 4px solid #34495e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 45px;
    color: #2c3e50;
    font-size: 15.5px;
    line-height: 1.7;
}

/* Encadrés Points Forts */
.key-points-wrapper {
    margin-top: 20px;
    margin-bottom: 100px;
}

.key-points-title {
    font-size: 19px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-points-title i {
    color: #f39c12;
}

.key-points-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.key-point-col {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
    display: flex;
}

.key-point-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-left: 4px solid #f39c12;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
}

.key-point-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #f39c12;
}

.key-point-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f39c12;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.key-point-icon i {
    color: #ffffff !important;
}

.key-point-text {
    font-size: 14.5px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
}

/* CTA Banner */
.cta-franchise-block {
    background: linear-gradient(135deg, #1e272e 0%, #2c3e50 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    margin: 45px 0 55px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-franchise-block h2 {
    color: #ffffff !important;
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
}

.btn-cta-franchise {
    display: inline-block;
    background: #f39c12;
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    margin-top: 10px;
}

.btn-cta-franchise:hover {
    background: #e67e22;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

/* Support Section */
.support-section {
    margin-bottom: 100px;
}

.support-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.support-col {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    display: flex;
}

.support-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #f39c12;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.support-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    flex-grow: 1;
}

.support-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.support-icon {
    font-size: 26px;
    color: #f39c12;
    margin-right: 14px;
    flex-shrink: 0;
}

/* Timeline Process Steps */
.steps-section {
    margin-bottom: 100px;
}

.steps-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 25px 24px 85px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
    position: relative;
    transition: all 0.2s ease;
}

.step-card:hover {
    transform: translateX(5px);
    border-color: #f39c12;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-badge {
    position: absolute;
    top: 24px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f39c12;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.step-card p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.65;
    font-size: 15px;
}

.step-card strong {
    font-size: 17.5px;
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

/* ==========================================================================
   Formulaire Privatisation Groupe Responsive
   ========================================================================== */
#privatisation input[type="text"],
#privatisation input[type="date"],
#privatisation select,
#privatisation textarea {
    max-width: 100% !important;
    width: 100% !important;
    height: 38px !important;
    border-radius: 8px !important;
    border: 1px solid #dcdcdc !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    margin-bottom: 10px !important;
    color: #2c3e50 !important;
    background-color: #ffffff !important;
}

#privatisation textarea {
    height: 90px !important;
}

#privatisation p.lead {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-top: 8px !important;
}