/*====================================================

    CJ REMIT WEBSITE
    Stylesheet
    Author: Charles Muyamba Mwape
    Version: 1.1 (fixed)

====================================================*/


/*=========================================
    GOOGLE FONTS & RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.8;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    font-family:inherit;
    cursor:pointer;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
    outline:3px solid #F7941D;
    outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
    *{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
        scroll-behavior:auto !important;
    }
}


/*=========================================
    GLOBAL STYLES
=========================================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:100px 0;
}

.section-title span{
    color:#F7941D;
    font-size:15px;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    color:#0F2B46;
    margin-top:10px;
    margin-bottom:30px;
}

.section-title.light span{
    color:#F7941D;
}

.section-title.light h2{
    color:#fff;
}

.center{
    text-align:center;
}


/*=========================================
    BUTTONS
=========================================*/

.btn-primary{
    display:inline-block;
    background:#F7941D;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
    font-size:16px;
}

.btn-primary:hover{
    background:#d97800;
    transform:translateY(-3px);
}

.btn-secondary{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    margin-left:15px;
    transition:.4s;
}

.btn-secondary:hover{
    background:#fff;
    color:#0F2B46;
}


/*=========================================
    HEADER
=========================================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(8px);
    transition:.35s;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.logo{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo h2{
    color:#fff;
    font-size:30px;
    line-height:1;
    margin:0;
    letter-spacing:1px;
}

.logo-text p{
    color:#ffffff;
    font-size:14px;
    margin-top:6px;
    opacity:.85;
}

.logo span{
    color:#F7941D;
    font-size:13px;
    margin-top:3px;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#fff;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#F7941D;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#F7941D;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    color:#fff;
}


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

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(15,43,70,.75),rgba(15,43,70,.75)),
    url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
    max-width:750px;
}

.hero-tagline{
    color:#F7941D;
    text-transform:uppercase;
    letter-spacing:4px;
    font-weight:600;
    display:inline-block;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin:20px 0;
}

.hero p{
    font-size:20px;
    margin-bottom:45px;
    color:#eee;
}

.hero-buttons{
    display:flex;
    align-items:center;
}


/*=========================================
    OUR PROMISE
=========================================*/

.promise{
    background:#fff;
}

.promise-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.promise-card{
    background:#fff;
    border-radius:15px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.promise-card:hover{
    transform:translateY(-10px);
}

.promise-card i{
    font-size:55px;
    color:#F7941D;
    margin-bottom:20px;
}

.promise-card h3{
    margin-bottom:15px;
    color:#0F2B46;
}


/*=========================================
    ABOUT
=========================================*/

.about{
    background:#f8f9fb;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-content p{
    margin-bottom:20px;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.about-highlights div{
    font-weight:600;
}

.about-highlights i{
    color:#F7941D;
    margin-right:8px;
}


/*=========================================
    COMPANY OVERVIEW / STATS
=========================================*/

.stats{
    background:#0F2B46;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
    margin-top:50px;
}

.stat-box h3{
    font-size:56px;
    font-weight:700;
    color:#fff;
}

.stat-box h3 span{
    font-size:30px;
}

.stat-box p{
    margin-top:10px;
}


/*=========================================
    WHY CHOOSE US
=========================================*/

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

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

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:#F7941D;
    margin-bottom:20px;
}


/*=========================================
    MISSION & VISION
=========================================*/

.mission-vision{
    background:#fff;
}

.mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.mv-card{
    background:#f8f9fb;
    border-top:4px solid #F7941D;
    border-radius:15px;
    padding:45px;
}

.mv-card h3{
    color:#0F2B46;
    margin-bottom:18px;
    font-size:26px;
}


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

.services{
    background:#f8f9fb;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

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

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#F7941D;
    margin-bottom:20px;
}


/*=========================================
    OUR COMMITMENT
=========================================*/

.commitment{
    background:
    linear-gradient(rgba(15,43,70,.88),rgba(15,43,70,.88)),
    url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
}

.commitment-overlay{
    padding:0;
}

.commitment-text{
    max-width:800px;
    margin:0 auto;
    text-align:center;
    color:#eee;
    font-size:18px;
}


/*=========================================
    REQUEST A QUOTE
=========================================*/

.quote{
    background:#f8f9fb;
}

.quote-form{
    max-width:900px;
    margin:60px auto 0;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:25px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:Poppins,sans-serif;
}

.quote-form textarea{
    margin-top:25px;
}

.quote-form button{
    margin-top:30px;
    width:250px;
}


/*=========================================
    CONTACT
=========================================*/

.contact{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.contact-card{
    background:#f8f9fb;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    font-size:40px;
    color:#F7941D;
    margin-bottom:20px;
}

.contact-card h3{
    color:#0F2B46;
    margin-bottom:10px;
}

.contact-card a:hover{
    color:#F7941D;
}


/*=========================================
    FOOTER
=========================================*/

footer{
    background:#111;
    color:#fff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding-bottom:40px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:10px;
}

.footer-logo img{
    width:50px;
}

.footer-tagline{
    color:#F7941D;
    margin-top:8px;
}

.footer-links h4{
    margin-bottom:20px;
    color:#fff;
}

.footer-links ul{
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ddd;
    transition:.3s;
}

.footer-links a:hover{
    color:#F7941D;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding:20px 0;
    text-align:center;
}

.copyright{
    color:#ccc;
    font-size:14px;
}
.footer-social a {
    display: inline-block;
    margin-right: 12px;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #0077b5;
}

/*=========================================
    STICKY HEADER / MOBILE MENU / FADE IN
=========================================*/

.sticky{
    background:#08131F;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.nav-links.active{
    display:flex;
}

.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}


/*=========================================
    BACK TO TOP
=========================================*/

#topBtn{
    position:fixed;
    bottom:30px;
    right:30px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#F7941D;
    color:#fff;
    font-size:18px;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:998;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

#topBtn:hover{
    background:#d97800;
    transform:translateY(-3px);
}

#topBtn.show-btn{
    display:flex;
}


/*====================================================

RESPONSIVE DESIGN

====================================================*/

@media (max-width:992px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:48px;
    }

    .about-grid,
    .footer-grid,
    .contact-grid,
    .services-grid,
    .why-grid,
    .stats-grid,
    .mv-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:768px){

    .navbar{
        flex-wrap:wrap;
        align-items:center;
        gap:0;
        min-height:80px;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo h2{
        font-size:18px;
    }

    .logo span{
        font-size:11px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        width:100%;
        flex-direction:column;
        gap:0;
        padding:20px 0;
    }

    .nav-links li{
        width:100%;
        border-top:1px solid rgba(255,255,255,.1);
    }

    .nav-links a{
        display:block;
        padding:14px 0;
    }

    .hero{
        height:auto;
        padding:160px 0 90px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .btn-secondary{
        margin-left:0;
    }

    .about-grid,
    .footer-grid,
    .contact-grid,
    .services-grid,
    .why-grid,
    .stats-grid,
    .promise-grid,
    .mv-grid{
        grid-template-columns:1fr;
    }

    .about-image img{
        height:auto;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .stat-box h3{
        font-size:46px;
    }

    .quote-form button{
        width:100%;
    }
}