/* ==========================================================
   HERO GMIT
========================================================== */

/* ==========================
   HERO PRINCIPAL
========================== */

.hero-gmit {
    display: flex;
    position: relative;
    align-items: center;
    padding: 120px 0 60px;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(rgba(3,12,24,.55), rgba(3,12,24,.55)), url("../img/clavier.jpg") center center no-repeat;
    background-size: cover;
}

.hero-gmit .container {
    z-index: 2;
    position: relative;
}

.hero-left {
    margin: 40px auto 0;
    max-width: 640px;
    text-align: center;
}

.col-lg-7.d-flex {
    align-items: center;
}

.hero-stats {
    margin-top: 30px;
}

/* ==========================
   COLONNE GAUCHE
========================== */

.hero-badge {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    background: #629baf;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.hero-subtitle {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 300;
    color: #629baf;
}

.hero-description {
    margin-bottom: 35px;
    max-width: 520px;
    font-size: 21px;
    line-height: 1.7;
    color: #fff;
}

/* ==========================
   BOUTONS
========================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin: 30px 0;
}

.hero-buttons .btn {
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    transition: all .35s ease;
}

.hero-buttons .btn:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,.35);
    transform: translateY(-5px);
}

/* ==========================
   TAGS
========================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.hero-features span {
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 40px;
    color: #fff;
    background: rgba(255,255,255,.12);
    transition: .3s;
    backdrop-filter: blur(10px);
}

.hero-features span:hover {
    border-color: #629baf;
    background: rgba(43,179,255,.18);
}

/* ==========================
   STATISTIQUES
========================== */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin-top: 20px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 180px;
    height: 180px;
    padding: 25px 20px;
    padding-top: 20px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    transition: all .35s ease;
    backdrop-filter: blur(12px);
}

.stat-card:hover {
    border-color: #629baf;
    background: rgba(43,179,255,.10);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    transform: translateY(-8px);
}

.stat-card i {
    margin-bottom: 18px;
    font-size: 30px;
    color: #629baf;
}

.stat-card h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.stat-card p {
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    color: #d8d8d8;
}

/* ==========================
   CARTE DE DROITE
========================== */

.hero-card {
    margin-top: 45px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    background: rgba(25,25,25,.55);
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
}

.hero-card h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

/* ==========================
   SERVICES
========================== */

.hero-service {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    transition: all .30s ease;
}

.hero-service:hover {
    border-color: rgba(43,179,255,.35);
    background: rgba(43,179,255,.10);
    transform: translateX(8px);
}

.hero-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #629baf;
}

.hero-icon i {
    font-size: 24px;
    color: #fff;
}

.hero-service-content h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.hero-service-content p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #cfcfcf;
}

/* ==========================
   BOUTON DE LA CARTE
========================== */

.hero-card-btn {
    width: 100%;
    height: 58px;
    margin-top: 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all .35s ease;
}

.hero-card-btn:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,.35);
    transform: translateY(-4px);
}

/* ==========================
   ANIMATIONS
========================== */

.hero-card,
.stat-card,
.hero-service {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================
   ECRANS < 1200px
========================================================== */

@media (max-width:1200px) {
    .hero-gmit {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 62px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

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

    .hero-card {
        margin-top: 40px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-card {
        width: 170px;
        height: 145px;
    }
}

/* ==========================================================
   TABLETTE
========================================================== */

@media (max-width:992px) {
    .hero-gmit {
        padding-top: 150px;
        text-align: center;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
        font-size: 18px;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .hero-buttons .btn {
        margin: 0;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-stats {
        display: flex;
        align-items: center;
        gap: 18px;
        justify-content: center;
        margin-top: 25px;
    }

    .hero-card {
        margin-top: 60px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px) {
    .hero-title {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 22px;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-card {
        width: 100%;
        height: auto;
        max-width: 300px;
        min-height: 150px;
    }

    .hero-card {
        padding: 25px;
    }

    .hero-card h3 {
        font-size: 30px;
    }

    .hero-service {
        padding: 14px;
    }

    .hero-icon {
        width: 50px;
        height: 50px;
    }

    .hero-icon i {
        font-size: 20px;
    }

    .hero-content h4 {
        font-size: 18px;
    }
}

/* ==========================================================
   PETITS SMARTPHONES
========================================================== */

@media (max-width:576px) {
    .hero-gmit {
        padding-top: 120px;
        padding-bottom: 50px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

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

    .hero-badge {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-features span {
        font-size: 13px;
    }

    .stat-card h3 {
        font-size: 38px;
    }

    .stat-card p {
        font-size: 15px;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-card h3 {
        font-size: 26px;
    }
}

/* ==========================================================
   GRANDS ECRANS
========================================================== */

@media (min-width:1400px) {
    .hero-title {
        font-size: 66px;
    }

    .hero-description {
        max-width: 760px;
    }

    .hero-card {
        padding: 45px;
    }
}

/*==========================================================
A PROPOS
==========================================================*/

.about-section {
    padding: 120px 0;
    background: #f8fafc;
}

.section-title {
    margin-bottom: 70px;
    text-align: center;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1b2330;
}

.section-title p {
    margin-top: 15px;
    font-size: 22px;
    color: #629baf;
}

.about-content {
    margin: 0 auto 70px;
    max-width: 950px;
    text-align: center;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.9;
    color: #555;
}

.about-intro {
    font-size: 24px;
    font-weight: 600;
    color: #1d2430;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.value-card {
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card i {
    margin-bottom: 20px;
    font-size: 42px;
    color: #629baf;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.value-card p {
    line-height: 1.7;
    color: #666;
}

@media (max-width:992px) {
    .about-values {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .about-values {
        grid-template-columns: 1fr;
    }
}