/* ===========================================
   CourseMinute - Reservation Page
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#f7f9fc;
    color:#1f2937;
}

.cm-container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* ===========================================
   HERO
=========================================== */

.cm-hero{

    padding:70px 0;

    background:#ffffff;

}

.cm-hero .cm-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.cm-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#eef5ff;

    color:#2563eb;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;

}

.cm-hero h1{

    font-size:64px;

    line-height:1.05;

    font-weight:800;

    color:#0f172a;

    margin-bottom:25px;

}

.cm-hero h1 span{

    display:block;

    color:#2563eb;

}

.cm-hero p{

    font-size:20px;

    color:#64748b;

    line-height:1.8;

    max-width:560px;

}

.cm-features{

    display:flex;

    flex-wrap:wrap;

    gap:35px;

    margin-top:45px;

}

.cm-feature{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    width:120px;

    text-align:center;

}

.cm-feature i{

    font-size:34px;

    color:#2563eb;

}

.cm-feature span{

    font-size:15px;

    font-weight:600;

    color:#334155;

}

.cm-hero-right img{

    width:100%;

    display:block;

}

/* ===========================================
   ETAPES
=========================================== */

.cm-steps{

    margin-top:-40px;

    margin-bottom:50px;

}

.cm-steps .cm-container{

    background:#ffffff;

    border-radius:24px;

    box-shadow:0 12px 40px rgba(15,23,42,.08);

    padding:28px 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.cm-step{

    display:flex;

    align-items:center;

    gap:18px;

    flex:1;

}

.cm-step-number{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#edf2f7;

    color:#64748b;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    font-weight:700;

}

.cm-step.active .cm-step-number{

    background:#2563eb;

    color:#ffffff;

}

.cm-step strong{

    display:block;

    font-size:17px;

    color:#0f172a;

    margin-bottom:5px;

}

.cm-step p{

    font-size:14px;

    color:#64748b;

}

.cm-step-line{

    width:70px;

    height:2px;

    background:#e2e8f0;

    margin:0 15px;

}

/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:991px){

    .cm-hero .cm-container{

        grid-template-columns:1fr;

    }

    .cm-hero h1{

        font-size:44px;

    }

    .cm-steps .cm-container{

        flex-direction:column;

        gap:25px;

    }

    .cm-step-line{

        display:none;

    }

}

/* ===========================================
   BOOKING LAYOUT
=========================================== */

.cm-booking-section{

    padding:20px 0 80px;

}

.cm-booking-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    align-items:start;

}

.cm-booking-right{

    position:sticky;

    top:30px;

}

.cm-sidebar-card{

    background:#fff;

    border-radius:22px;

    padding:28px;

    margin-bottom:25px;

    box-shadow:0 10px 35px rgba(15,23,42,.06);

    border:1px solid #edf2f7;

}

.cm-sidebar-badge{

    display:inline-block;

    background:#eef5ff;

    color:#2563eb;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.cm-sidebar-card h3{

    font-size:28px;

    margin-bottom:12px;

}

.cm-sidebar-card p{

    color:#64748b;

    line-height:1.7;

    margin-bottom:25px;

}

.cm-sidebar-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:16px;

    font-size:16px;

}

.cm-sidebar-row.total{

    border-top:1px solid #e2e8f0;

    padding-top:18px;

    margin-top:20px;

    font-size:20px;

    font-weight:700;

    color:#2563eb;

}

.cm-benefits{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.cm-benefits li{

    margin-bottom:16px;

    font-size:16px;

    color:#334155;

}

@media(max-width:991px){

    .cm-booking-grid{

        grid-template-columns:1fr;

    }

    .cm-booking-right{

        position:relative;

        top:0;

    }

}

/* ==========================================
   SIDEBAR
========================================== */

.cm-sidebar-summary{

    margin:30px 0;

}

.cm-sidebar-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid #edf2f7;

}

.cm-sidebar-row span{

    display:flex;

    align-items:center;

    gap:10px;

    color:#475569;

}

.cm-sidebar-row i{

    color:#2563eb;

    width:18px;

}

.cm-sidebar-row strong{

    color:#0f172a;

}

.cm-sidebar-row.total{

    margin-top:15px;

    border-top:2px solid #e2e8f0;

    border-bottom:none;

    padding-top:25px;

}

.cm-sidebar-row.total strong{

    font-size:30px;

    color:#2563eb;

}

.cm-sidebar-secure{

    margin-top:30px;

    display:flex;

    flex-direction:column;

    gap:15px;

}

.cm-sidebar-secure div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#334155;

    font-weight:600;

}

.cm-sidebar-secure i{

    color:#22c55e;

}

.cm-feature-list{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-top:25px;

}

.cm-feature-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.cm-feature-item i{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    font-size:20px;

    flex-shrink:0;

}

.cm-feature-item strong{

    display:block;

    margin-bottom:6px;

    color:#0f172a;

}

.cm-feature-item span{

    color:#64748b;

    line-height:1.6;

    font-size:14px;

}

/* ==========================================
   FAQ
========================================== */

.cm-faq{

    padding:100px 0;

    background:#f8fafc;

}

.cm-section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.cm-section-title span{

    display:inline-block;

    padding:8px 18px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.cm-section-title h2{

    font-size:40px;

    color:#0f172a;

    margin-bottom:20px;

}

.cm-section-title p{

    color:#64748b;

    line-height:1.7;

}

.cm-faq-list{

    max-width:900px;

    margin:auto;

}

.cm-faq-item{

    background:white;

    border-radius:18px;

    margin-bottom:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    overflow:hidden;

}

.cm-faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:700;

}

.cm-faq-question span{

    font-size:28px;

    color:#2563eb;

}

.cm-faq-answer{

    padding:0 28px 28px;

    color:#64748b;

    line-height:1.8;

}
/* ==========================================
   AVIS CLIENTS
========================================== */

.cm-testimonials{

    padding:100px 0;

    background:white;

}

.cm-rating{

    text-align:center;

    margin-bottom:60px;

}

.cm-rating-score{

    font-size:52px;

    font-weight:800;

    color:#2563eb;

}

.cm-rating-score span{

    font-size:26px;

}

.cm-rating-stars{

    font-size:32px;

    color:#fbbf24;

    margin:10px 0;

}

.cm-testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.cm-testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.3s;

}

.cm-testimonial-card:hover{

    transform:translateY(-8px);

}

.cm-avatar{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}

.cm-testimonial-card h4{

    margin-bottom:10px;

    color:#0f172a;

}

.stars{

    color:#fbbf24;

    margin-bottom:15px;

}

.cm-testimonial-card p{

    color:#64748b;

    line-height:1.8;

}

/* ==========================================
   PARTENAIRES
========================================== */

.cm-partners{

    padding:100px 0;

    background:#f8fafc;

}

.cm-partners-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;

}

.cm-partner{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    font-weight:700;

    color:#0f172a;

    transition:.3s;

    cursor:default;

}

.cm-partner:hover{

    transform:translateY(-6px);

    border-color:#2563eb;

    box-shadow:0 15px 35px rgba(37,99,235,.12);

}

/* ==========================================
   CTA FINAL
========================================== */

.cm-final-cta{

    padding:90px 0;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

}

.cm-final-cta-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.cm-final-cta-text{

    color:#fff;

    max-width:700px;

}

.cm-cta-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:25px;

}

.cm-final-cta h2{

    font-size:48px;

    margin-bottom:20px;

    line-height:1.2;

}

.cm-final-cta p{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

}

.cm-cta-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#fff;

    color:#2563eb;

    padding:18px 38px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.cm-cta-button:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

/* ==========================================
   STATISTIQUES
========================================== */

.cm-stats{

    padding:90px 0;

    background:white;

}

.cm-stats .cm-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.cm-stat-card{

    text-align:center;

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.cm-stat-card h3{

    font-size:46px;

    color:#2563eb;

    margin-bottom:10px;

}

.cm-stat-card p{

    color:#64748b;

    font-size:17px;

}

/* ==========================================
   FOOTER
========================================== */

.cm-footer{

    background:#0f172a;

    color:white;

    padding:80px 0 30px;

}

.cm-footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.cm-footer h3,
.cm-footer h4{

    margin-bottom:20px;

}

.cm-footer p,
.cm-footer li{

    color:#cbd5e1;

    line-height:1.8;

}

.cm-footer ul{

    list-style:none;

    padding:0;

}

.cm-footer a{

    color:#cbd5e1;

    text-decoration:none;

}

.cm-footer a:hover{

    color:white;

}

.cm-footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

}