/* ==========================================================================
   ABC DANSE - COMMENT RÉSERVER UN COURS PARTICULIER
   Chargé après site.css et home.css
   ========================================================================== */

.reservation-help-page{
    background:var(--home-paper);
    color:var(--home-ink);
}

.reservation-help-hero{
    position:relative;
    overflow:hidden;
    padding:72px 0 78px;
    background:
        radial-gradient(circle at 86% 14%,rgba(238,61,131,.22),transparent 30%),
        linear-gradient(135deg,#211126,#64184e);
    color:#fff;
}

.reservation-help-hero:after{
    content:'';
    position:absolute;
    width:520px;
    height:520px;
    right:-190px;
    top:-250px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.reservation-help-hero-content{
    position:relative;
    z-index:1;
    max-width:800px;
}

.reservation-help-hero .home-kicker{
    color:#ff85b8;
}

.reservation-help-hero h1{
    margin:8px 0 22px;
    color:#fff;
    font-size:clamp(3.1rem,7vw,6rem);
    line-height:.92;
    letter-spacing:-.055em;
    text-transform:uppercase;
}

.reservation-help-hero h1 span{
    display:block;
    margin-top:9px;
    color:#ff4c96;
    font-size:.58em;
    font-style:italic;
    letter-spacing:-.03em;
    text-transform:none;
}

.reservation-help-hero p{
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.84);
    font-size:1.12rem;
    line-height:1.7;
}

.reservation-help-intro{
    max-width:800px;
    margin:0 auto 38px;
}

.reservation-help-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
    align-items:stretch;
}

.reservation-help-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid rgba(25,20,33,.08);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--home-shadow);
}

.reservation-help-image{
    display:flex;
    min-height:280px;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:22px;
    background:#f7f2f5;
}

.reservation-help-image img{
    position:static!important;
    display:block;
    width:100%!important;
    height:auto!important;
    max-height:285px;
    object-fit:contain!important;
}

.reservation-help-content{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:32px 34px 36px;
}

.reservation-help-icon{
    display:flex;
    width:58px;
    height:58px;
    margin-bottom:20px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--home-pink),var(--home-purple));
    color:#fff;
    font-size:1.35rem;
    box-shadow:0 12px 28px rgba(169,31,114,.18);
}

.reservation-help-content .home-kicker{
    margin-bottom:7px;
}

.reservation-help-content h2{
    margin:0 0 16px;
    color:var(--home-ink);
    font-size:1.65rem;
    line-height:1.12;
    text-transform:none;
}

.reservation-help-content p{
    margin:0 0 20px;
    color:var(--home-muted);
    line-height:1.7;
}

.reservation-help-points{
    display:grid;
    gap:10px;
    margin-bottom:26px;
}

.reservation-help-points span{
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#4a444c;
    font-size:.94rem;
    line-height:1.45;
}

.reservation-help-points i{
    flex:0 0 auto;
    margin-top:3px;
    color:var(--home-purple);
}

.reservation-help-button{
    width:100%;
    margin-top:auto;
}

.reservation-help-button i{
    margin-right:8px;
}

.reservation-help-note{
    display:grid;
    grid-template-columns:48px minmax(0,1fr);
    gap:16px;
    max-width:820px;
    margin:34px auto 0;
    padding:22px 24px;
    border:1px solid rgba(169,31,114,.10);
    border-radius:18px;
    background:#fff7fb;
}

.reservation-help-note > i{
    display:flex;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f3dfeb;
    color:var(--home-purple);
    font-size:1.2rem;
}

.reservation-help-note strong{
    display:block;
    margin-bottom:5px;
    color:var(--home-ink);
}

.reservation-help-note p{
    margin:0;
    color:var(--home-muted);
    line-height:1.55;
}

@media(max-width:900px){
    .reservation-help-grid{
        grid-template-columns:1fr;
    }

    .reservation-help-card{
        max-width:720px;
        margin:0 auto;
    }
}

@media(max-width:736px){
    .reservation-help-hero{
        padding:54px 0 58px;
    }

    .reservation-help-hero h1{
        font-size:clamp(2.7rem,13vw,4.4rem);
    }

    .reservation-help-hero p{
        font-size:1rem;
    }

    .reservation-help-intro{
        margin-bottom:28px;
    }

    .reservation-help-card{
        border-radius:20px;
    }

    .reservation-help-image{
        min-height:0;
        padding:16px;
    }

    .reservation-help-image img{
        max-height:none;
    }

    .reservation-help-content{
        padding:26px 22px 30px;
    }

    .reservation-help-icon{
        width:54px;
        height:54px;
        margin-bottom:17px;
        font-size:1.25rem;
    }

    .reservation-help-content h2{
        font-size:1.45rem;
    }

    .reservation-help-note{
        grid-template-columns:42px minmax(0,1fr);
        padding:18px;
    }

    .reservation-help-note > i{
        width:40px;
        height:40px;
    }
}
