
/* =========================
   SECTION MTRPC
========================= */

.mtrpc-section{
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        linear-gradient(135deg,#f5f8ff 0%, #ffffff 50%, #eef4ff 100%);
    font-family: 'Poppins', sans-serif;
}

/* =========================
   FORMES DECORATIVES
========================= */

.mtrpc-bg-shape{
    position: absolute;
    top: -180px;
    right: -180px;
    width: 520px;
    height: 520px;
    background: linear-gradient(135deg,#0169fe,#00bfff);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(10px);
}

/* =========================
   WRAPPER
========================= */

.mtrpc-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* =========================
   LEFT SIDE IMAGE
========================= */

.mtrpc-left{
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* CARTE IMAGE */

.map-card{
    position: relative;
    width: 100%;
    max-width: 750px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(15px);
    border-radius: 35px;
    padding: 20px;
    box-shadow:
        0 25px 70px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* EFFET HOVER */

.map-card:hover{
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 35px 90px rgba(1,105,254,0.18);
}

/* GLOW */

.map-glow{
    position: absolute;
    width: 320px;
    height: 320px;
    background: #0169fe;
    opacity: 0.18;
    border-radius: 50%;
    filter: blur(90px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* IMAGE RDC */

.rdc-map{
    width: 100%;
    max-width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 25px;
    animation: floatMap 5s ease-in-out infinite;
}

/* =========================
   DIVIDER
========================= */

.middle-divider{
    width: 2px;
    height: 480px;
    background: linear-gradient(
        to bottom,
        transparent,
        #0169fe,
        #00bfff,
        transparent
    );
    position: relative;
    border-radius: 50px;
}

.middle-divider span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #0169fe;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    box-shadow:
        0 0 20px #0169fe,
        0 0 40px rgba(1,105,254,0.5);
}

/* =========================
   RIGHT SIDE CONTENT
========================= */

.mtrpc-right{
    width: 40%;
}

/* BADGE */

.badge-title{
    display: inline-block;
    padding: 10px 24px;
    background: rgba(1,105,254,0.1);
    color: #0169fe;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border: 1px solid rgba(1,105,254,0.15);
}

/* TITRE */

.main-title{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.main-title span{
    color: #0169fe;
    position: relative;
}

.main-title span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 6px;
    border-radius: 50px;
    background: linear-gradient(to right,#0169fe,#00bfff);
}

/* SOUS TITRE */

.subtitle{
    color: #0169fe;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 1px;
    line-height: 1.7;
}

/* DESCRIPTION */

.description{
    color: #5b6472;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 30px;
}

/* =========================
   FEATURES
========================= */

.feature-list{
    margin-bottom: 35px;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.feature-item i{
    color: #0169fe;
    font-size: 18px;
}

/* =========================
   BUTTON
========================= */

.mtrpc-btn{
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: white;
    background: linear-gradient(135deg,#0169fe,#00bfff);
    box-shadow:
        0 18px 40px rgba(1,105,254,0.35);
    transition: all 0.4s ease;
}

.mtrpc-btn:hover{
    transform: translateY(-6px);
    color: white;
    box-shadow:
        0 25px 50px rgba(1,105,254,0.45);
}

/* FOOT NOTE */

.mini-text{
    margin-top: 18px;
    font-size: 13px;
    color: #7b8794;
}

/* =========================
   ANIMATION
========================= */

@keyframes floatMap{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .mtrpc-wrapper{
        flex-direction: column;
        gap: 45px;
    }

    .mtrpc-left,
    .mtrpc-right{
        width: 100%;
        text-align: center;
    }

    .map-card{
        max-width: 100%;
    }

    .middle-divider{
        width: 85%;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent,
            #0169fe,
            #00bfff,
            transparent
        );
    }

    .main-title{
        font-size: 42px;
    }

    .feature-item{
        justify-content: center;
    }

}

@media(max-width:576px){

    .mtrpc-section{
        padding: 80px 0;
    }

    .main-title{
        font-size: 34px;
    }

    .subtitle{
        font-size: 15px;
    }

    .description{
        font-size: 15px;
    }

    .mtrpc-btn{
        width: 100%;
    }

}

/* =========================================================
   HERO SECTION - VERSION BLEUE PROFESSIONNELLE
========================================================= */

.hero-section{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(5,15,35,0.95),
            rgba(8,45,95,0.90)
        ),
        url("img/landing/header_bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0;
}

/* OVERLAY */
.hero-overlay{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(0,140,255,0.22),
        transparent 35%);
    z-index: 1;
}

/* FLOATING SHAPES */
.hero-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.shape-1{
    width: 280px;
    height: 280px;
    background: rgba(0,153,255,0.20);
    top: -90px;
    right: -70px;
}

.shape-2{
    width: 240px;
    height: 240px;
    background: rgba(0,89,255,0.18);
    bottom: -70px;
    left: -80px;
}

/* CONTAINER */
.hero-container{
    position: relative;
    z-index: 3;
    padding-top: 90px;
}

/* CONTENT */
.hero-content{
    max-width: 700px;
    padding: 30px;
}

/* BADGE */
.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 12px 20px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    color: #f8f9fa;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TITLE */
.hero-title{
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.hero-title span{
    color: #4db8ff;
    position: relative;
}

.hero-title span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 14px;
    background: rgba(77,184,255,0.20);
    z-index: -1;
    border-radius: 30px;
}

/* DESCRIPTION */
.hero-description{
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 38px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 45px;
}

/* PRIMARY BUTTON */
.btn-primary-custom{
    background: linear-gradient(135deg,#0d6efd,#00b4ff);
    color: #fff;
    padding: 16px 30px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(13,110,253,0.35);
    border: none;
}

.btn-primary-custom:hover{
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(13,110,253,0.45);
}

/* OUTLINE BUTTON */
.btn-outline-custom{
    border: 1px solid rgba(255,255,255,0.18);
    padding: 16px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    background: rgba(255,255,255,0.03);
}

.btn-outline-custom:hover{
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateY(-3px);
}

/* COUNTERS */
.hero-counters{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.counter-box{
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 22px 24px;
    min-width: 250px;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.counter-box:hover{
    transform: translateY(-7px);
    background: rgba(255,255,255,0.08);
}

/* COUNTER ICON */
.counter-icon{
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#00b4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(13,110,253,0.35);
}

.counter-box h3{
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.counter-box p{
    margin: 0;
    color: rgba(255,255,255,0.75);
}

/* MEDIA */
.hero-media{
    position: relative;
    padding: 30px;
}

/* FLOATING CARD */
.hero-floating-card{
    position: absolute;
    top: 0;
    left: -20px;
    z-index: 5;
    background: rgba(8,20,45,0.88);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.hero-floating-card ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-floating-card li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.hero-floating-card li:last-child{
    margin-bottom: 0;
}

.hero-floating-card span{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg,#0d6efd,#00b4ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(13,110,253,0.35);
}

/* IMAGES */
.hero-image{
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.hero-image img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 0.8s ease;
}

.hero-image:hover img{
    transform: scale(1.08);
}

/* BOTTOM BAR */
.hero-bottom-bar{
    position: relative;
    z-index: 3;
    margin-top: 20px;
    background: linear-gradient(180deg,#ffffff,#f4f8ff);
    padding: 50px 20px;
    border-radius: 40px 40px 0 0;
    text-align: center;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
}

/* STARS */
.rating-stars{
    color: #0d6efd;
    font-size: 22px;
    margin-bottom: 18px;
}

/* TITLE */
.hero-bottom-bar h4{
    font-size: 2rem;
    font-weight: 800;
    color: #0b2545;
    margin-bottom: 14px;
}

/* TEXT */
.hero-bottom-bar p{
    color: #5f6b7a;
    font-size: 16px;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 991px){

    .hero-title{
        font-size: 2.9rem;
    }

    .hero-content{
        padding: 20px;
    }

    .hero-media{
        padding: 20px;
    }

    .hero-floating-card{
        position: relative;
        left: 0;
        margin-bottom: 20px;
    }

    .hero-image img{
        height: 450px;
    }

    .hero-bottom-bar h4{
        font-size: 1.6rem;
    }
}

@media(max-width: 576px){

    .hero-title{
        font-size: 2.2rem;
    }

    .hero-description{
        font-size: 16px;
    }

    .counter-box{
        width: 100%;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width: 100%;
        text-align: center;
    }
}


