/* =========================================
PREMIUM CORPORATE CSS
IJM + Sunway Inspired UI
Sticky Header + Hero + Services + CTA + Footer
Mobile + Tablet + Laptop + Desktop Responsive
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7f8fc;
    color:#0f172a;
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1400px,92%);
    margin:auto;
}

/* HEADER */
.top-header{
    background:#0b2340;
    padding:12px 0;
}

.top-left{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.top-left span{
    color:#ffffff;
    font-size:14px;
}

.top-left i{
    color:#ff6a00;
    margin-right:8px;
}

/* STICKY MENUBAR */
.menu-bar{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    box-shadow:0 8px 24px rgba(0,0,0,0.04);
}

.menu-flex{
    min-height:95px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand-area{
    display:flex;
    align-items:center;
    gap:16px;
}

.logo img{
    height:76px;
}

.brand-text h3{
    font-size:15px;
    font-weight:700;
    color:#111827;
}

.brand-text p{
    font-size:12px;
    color:#64748b;
}

.menu-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.menu-links a{
    color:#111827;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.menu-links a:hover{
    color:#ff6a00;
}

.btn-quote,
.btn-premium{
    display:inline-block;
    background:linear-gradient(135deg,#ff6a00,#ff8c00);
    color:#ffffff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-quote:hover,
.btn-premium:hover{
    transform:translateY(-2px);
}

.btn-outline{
    display:inline-block;
    padding:14px 30px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50px;
    color:#ffffff;
    font-weight:600;
}

/* HERO */
.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(7,21,47,.74),rgba(11,35,64,.80)),
        url('images/slides.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    color:#ffffff;
    padding:100px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
}

.hero p{
    font-size:17px;
    margin-bottom:30px;
    max-width:720px;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-card{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(18px);
    padding:36px;
    border-radius:28px;
}

/* SECTION */
section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-title h5{
    color:#ff6a00;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2{
    font-size:44px;
    font-weight:800;
    color:#071c3c;
    margin-bottom:16px;
}

.section-title p{
    color:#475569;
    font-size:16px;
}

/* CARDS */
.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:#ffffff;
    border-radius:24px;
    padding:34px;
    border:1px solid #edf2f7;
    box-shadow:0 15px 40px rgba(15,23,42,.05);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:#ffffff;
    border:2px solid #eef2f7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#0b2d5f;
    margin:0 auto 18px;
}

.card h3{
    text-align:center;
    font-size:24px;
    margin-bottom:12px;
}

.card p{
    text-align:center;
    color:#475569;
}

/* CTA */
.cta{
    background:linear-gradient(135deg,#07152f,#0b2d5f,#123d7a);
    color:#ffffff;
    padding:60px;
    border-radius:30px;
    text-align:center;
}

.cta h2{
    font-size:40px;
    margin-bottom:14px;
}

/* FOOTER */
footer{
    background:#07152f;
    color:#dbe4f0;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.footer-col h4{
    color:#ffffff;
    margin-bottom:16px;
}

.footer-col ul{
    list-style:none;
}

.footer-col li,
.footer-col p{
    margin-bottom:10px;
    font-size:14px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:30px;
    padding-top:20px;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .menu-links,
    .btn-quote{
        display:none;
    }

    .hero-grid,
    .services,
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:34px;
    }
}

@media(max-width:768px){
    .top-header{
        display:none;
    }

    .hero-grid,
    .services,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero{
        min-height:auto;
        padding:80px 0;
    }

    .hero h1{
        font-size:30px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn-premium,
    .btn-outline,
    .btn-quote{
        width:100%;
        text-align:center;
    }

    .section-title h2{
        font-size:28px;
    }

    .cta{
        padding:40px 20px;
    }
}
