/* RESET */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Poppins', sans-serif;
    color:#333;
    line-height:1.7;
    background:#fff;
}

/* ================= CONTAINER ================= */
.container {
    width:1100px;
    margin:auto;
}

/* ================= HEADER ================= */
.main-header {
    background:#0a2540;
    padding:14px 0;
}

.main-header .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img {
    height:48px;
}

nav a {
    color:white;
    margin-left:25px;
    text-decoration:none;
    font-weight:500;
}

nav a:hover {
    color:#d4af37;
}

/* ================= HERO HOME ================= */
.hero {
    width:100%;
    height:520px;
    background:url("/images/hero.jpg") no-repeat center center;
    background-size:cover;
    position:relative;
}

/* overlay */
.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
        rgba(7,25,55,0.90),
        rgba(7,25,55,0.65),
        rgba(7,25,55,0.25),
        rgba(7,25,55,0.05)
    );
}

.hero-inner {
    position:relative;
    z-index:2;
    width:1100px;
    margin:auto;
    top:50%;
    transform:translateY(-50%);
    color:white;
    max-width:540px;
}

.hero-inner h1 {
    font-family:'Merriweather', serif;
    font-size:50px;
    margin-bottom:16px;
}

.hero-inner p {
    font-size:19px;
    margin-bottom:26px;
}

/* ================= BUTTON ================= */
.btn-primary {
    background:#d4af37;
    color:#000;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.btn-secondary {
    background:#fff;
    color:#0a2540;
    padding:14px 30px;
    border-radius:8px;
    margin-left:14px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

/* ================= INTRO HOME ================= */
.intro {
    padding:90px 0;
    background:#fff;
}

.intro-wrap {
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:50px;
    align-items:center;
}

.intro-title h2 {
    font-size:34px;
    color:#0a2540;
}

.intro-text p {
    font-size:17px;
}

/* ================= SERVICES ================= */
.services {
    background:#f9fafc;
    padding:80px 0;
}

.grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card {
    background:white;
    padding:32px;
    border-radius:12px;
    min-height:220px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
}

.card h3 {
    margin-bottom:12px;
    color:#0a2540;
}

.card p {
    margin-top:auto;
}

/* ================= CTA ================= */
.cta {
    background:#0a2540;
    color:white;
    padding:90px 0;
}

.center {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* ================= FOOTER ================= */
footer {
    background:#111;
    color:#aaa;
    text-align:center;
    padding:20px;
}

/* ================================================= */
/* ================= PAGE HERO (ABOUT, DLL) ========= */
/* ================================================= */

.page-hero {
    background:#0a2540;
    color:white;
    padding:70px 0;
}

.page-hero .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.page-hero h1 {
    font-family:'Merriweather', serif;
    font-size:42px;
    margin-bottom:6px;
}

.page-hero p {
    font-size:18px;
    color:#dce4ef;
}

/* ================= ABOUT INTRO ================= */
.about-intro {
    padding:90px 0;
    background:#fff;
}

.about-intro .container {
    display:block;   /* WAJIB: jangan flex */
}

.two-col {
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.about-text h2 {
    font-size:32px;
    color:#0a2540;
    margin-bottom:20px;
}

.about-text p {
    font-size:17px;
    margin-bottom:16px;
    line-height:1.8;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background:#f5f7fb;
    padding:30px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.highlight-box h3 {
    color:#0a2540;
    margin-bottom:14px;
}

.highlight-box ul {
    list-style:none;
}

.highlight-box li {
    margin-bottom:10px;
    font-size:16px;
}

/* ================= INDUSTRIES ================= */
.industries {
    background:#f9fafc;
    padding:80px 0;
}

.industries h2 {
    text-align:center;
    font-size:30px;
    color:#0a2540;
    margin-bottom:40px;
}

.industry-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.industry-card {
    background:white;
    padding:22px;
    text-align:center;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* ================= WHY TRUST ================= */
.why-trust {
    padding:90px 0;
    background:#fff;
}

.why-trust h2 {
    text-align:center;
    font-size:30px;
    color:#0a2540;
    margin-bottom:50px;
}

.trust-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-box {
    background:#f5f7fb;
    padding:28px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.trust-box h3 {
    margin-bottom:10px;
    color:#0a2540;
}
