/* =====================================
GLOBAL
===================================== */

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    overflow-x:hidden;
}

/* =====================================
HERO SECTION
===================================== */

.hero-section{
    position:relative;
    overflow:hidden;
    min-height:700px;
    padding:40px 0 120px;
}

.hero-banner-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    z-index:1;
}

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(255,255,255,.80);

    z-index:2;
}

.hero-inner{
    position:relative;
    z-index:3;
    max-width:950px;
    margin:0 auto;
    text-align:center !important;
}

.hero-company-title,
.hero-title,
.hero-subtitle,
.hero-description{
    text-align:center !important;
    margin-left:auto;
    margin-right:auto;
}

/* Logo */

.hero-logo{
    width:120px;
    height:auto;
    display:block;
    margin:0 auto 15px;
}

/* Company Name */

.hero-company-title{
    font-size:3.0rem;
    font-weight:800;
    line-height:1.08;
    color:#154284;
    text-transform:uppercase;

    max-width:900px;
    margin:0 auto 15px;
}

/* Meta */

.hero-meta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

    margin-bottom:25px;
}

.chinese-name{
    color:#d8b14a;
    font-size:1.4rem;
    font-weight:600;
}

.meta-divider{
    width:70px;
    height:2px;
    background:#d8b14a;
}

.license{
    color:#555;
    font-size:1.1rem;
    font-weight:500;
}

/* Coming Soon */

.hero-title{
    font-size:3.5rem;
    font-weight:900;
    line-height:1;
    color:#154284;
    margin-bottom:10px;
}

.hero-subtitle{
    color:#d8b14a;
    font-size:1.6rem;
    font-weight:700;
    margin-bottom:20px;
}

/* Description */

.hero-description{
    max-width:650px;
    margin:0 auto 10px;

    color:#475569;

    font-size:1rem;
    line-height:1.8;
}

/* Buttons */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;

    margin-top:30px;
}

.hero-buttons a{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.hero-buttons i{
    font-size:1rem;
}

.hero-buttons i{
    font-size:1.1rem;
    transition:.3s;
}

.hero-buttons a:hover i{
    transform:scale(1.1);
}

.btn-call{
    background:#154284;
    color:#fff;
    padding:14px 34px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;

    box-shadow:0 12px 30px rgba(21,66,132,.20);
    transition:.3s;
}

.btn-call:hover{
    color:#fff;
    transform:translateY(-3px);
}

.btn-email{
    background:#fff;
    color:#d8b14a;
    border:2px solid #d8b14a;

    padding:14px 34px;
    border-radius:12px;

    text-decoration:none;
    font-weight:700;

    transition:.3s;
}

.btn-email:hover{
    background:#d8b14a;
    color:#fff;
}

/* Bottom Curve */

.hero-wave{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    line-height:0;
    z-index:5;
}

.hero-wave img{
    width:100%;
    height:auto;
    display:block;
}

@media(max-width:991px){

    .hero-company-title{
        font-size:2.6rem;
    }

    .hero-title{
        font-size:3.5rem;
    }

    .hero-banner-image{
        opacity:.35;
    }

}

@media(max-width:576px){

    .hero-section{
        min-height:auto;
        padding:30px 0 100px;
    }

    .hero-logo{
        width:70px;
    }

    .hero-company-title{
        font-size:1.9rem;
    }

    .hero-title{
        font-size:2.6rem;
    }

    .hero-subtitle{
        font-size:1.1rem;
    }

    .chinese-name{
        font-size:1rem;
    }

    .license{
        font-size:.9rem;
    }

}

/* =====================================
SERVICES SECTION
===================================== */

.services-section{
    padding:40px 0 80px;
    background:#f7f9fc;
}

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
}

.section-title span{
    width:80px;
    height:2px;
    background:#d8b14a;
}

.section-title h2{
    margin:0;
    font-size:2.2rem;
    font-weight:800;
    color:#154284;
}

.services-wrapper{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:1px solid #eef1f6;
}

.service-item{
    height:100%;
    display:flex;
    align-items:center;
    gap:18px;
    padding:30px;
    border-right:1px solid #edf2f7;
    border-bottom:1px solid #edf2f7;
    transition:.35s ease;
    background:#fff;
}

.service-item:hover{
    background:#f8fbff;
    transform:translateY(-4px);
}

.service-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#f2f7ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    font-size:1.8rem;
    color:#154284;
}

.service-item h5{
    margin:0;
    color:#154284;
    font-weight:700;
    font-size:1.1rem;
}

.service-item p{
    margin:5px 0 0;
    color:#64748b;
    font-size:.95rem;
}

@media(max-width:991px){

    .service-item{
        border-right:none;
    }

} 

/* =====================================
CONTACT SECTION
===================================== */

.contact-section{
    padding:20px 0 90px;
    background:#f7f9fc;
}

.contact-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.35s ease;
    border:1px solid #eef2f7;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(21,66,132,.12);
}

.contact-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #154284,
        #2b5ea5
    );
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#fff;
    font-size:1.8rem;
}

.contact-card h5{
    font-size:1.2rem;
    font-weight:700;
    color:#154284;
    margin-bottom:15px;
}

.contact-card a{
    display:block;
    text-decoration:none;
    color:#334155;
    font-weight:600;
    margin-bottom:5px;
    transition:.3s;
}

.contact-card a:hover{
    color:#154284;
}

.contact-card p{
    margin-bottom:5px;
    color:#64748b;
    line-height:1.7;
}

.contact-card strong{
    display:block;
    font-size:1.2rem;
    color:#d8b14a;
    font-weight:700;
    margin-top:5px;
}

.contact-card small{
    display:block;
    color:#64748b;
    font-size:.9rem;
}

/* =====================================
FOOTER CTA
===================================== */

.footer-cta{
    padding:90px 0;
    background:linear-gradient(
        135deg,
        #154284,
        #1e4f93
    );
    text-align:center;
    color:#fff;
}

.footer-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:25px;
}

.footer-cta h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.footer-cta p{
    max-width:700px;
    margin:auto;
    font-size:1.1rem;
    line-height:1.9;
    opacity:.9;
}

/* =====================================
FOOTER
===================================== */

.main-footer{
    background:#ffffff;
    padding:50px 0 20px;
}

.footer-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:20px;
}

.footer-logo img{
    width:70px;
    height:auto;
}

.footer-logo h4{
    margin:0;
    color:#154284;
    font-weight:700;
    font-size:1.3rem;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-contact a,
.footer-contact span{
    color:#64748b;
    text-decoration:none;
    font-weight:500;
}

.footer-contact i{
    color:#d8b14a;
    margin-right:8px;
}

.main-footer hr{
    margin:35px 0 25px;
    border-color:#edf2f7;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    color:#64748b;
    font-size:.95rem;
}

/* =====================================
MOBILE
===================================== */

@media(max-width:768px){

    .footer-cta h2{
        font-size:2rem;
    }

    .footer-wrapper{
        text-align:center;
        justify-content:center;
    }

    .footer-logo{
        flex-direction:column;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

}

