
:root{
    --premium-gradient: linear-gradient(
        180deg,
        #0b3c5d 0%,
        #145da0 55%,
        #1f6fe5 100%
    );
    --bg-light:#f4f7fb;
    --text-dark:#1f2933;
    --white:#ffffff;
}


*{box-sizing:border-box}
body{
    margin:0;
    font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
    background:var(--bg-light);
    color:var(--text-dark);
}

.hero {
    background: var(--premium-gradient); /* sama dgn footer */
    color: #ffffff;
    padding: 70px 20px 110px;
    text-align: center;
}

.hero img {
    width: 90px;
    height: 90px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.hero-title {
    margin-bottom: 15px;
}

.hero-title .agency {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 6px;
}

.hero-title h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.hero p {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.8;
    opacity: .95;
}


@media (max-width: 600px) {
    .hero img {
        width: 75px;
        height: 75px;
    }

    .hero-title h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }
}



.section{
    max-width:1100px;
    margin:-70px auto 0;
    padding:0 20px 90px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 🔥 PAKSA 4 SEBARIS */
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}

.card{
    background:var(--white);
    border-radius:14px;
    padding:28px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.25s ease;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}
.card span{font-size:36px}
.card h3{margin:12px 0 4px;font-size:18px}
.card strong{font-size:34px;color:#145da0}
.card p{font-size:14px;color:#555;line-height:1.6}
.card a{
    display:inline-block;
      align-self: flex-start;
    margin-top: auto;
    padding:10px 18px;
    background:#1f6fe5;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
}

@media (max-width: 1100px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cards {
        grid-template-columns: 1fr;
    }
}


.footer {
    background: var(--premium-gradient); /* sama dgn header */
    color: #eaf1f7;
    text-align: center;
    padding: 35px 20px 0;
}


.footer-contact h4 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-row span {
    white-space: nowrap;
}

.footer a {
    color: #cfe6ff;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}


.footer-address {
    font-size: 13px;
    line-height: 1.6;
    color: #d7e6f3;
    margin-top: 6px;
}

.footer-links {
    margin-top: 22px;
    font-size: 13px;
}

.footer-links span {
    margin: 0 10px;
    color: rgba(255,255,255,.6);
}


.footer-bottom {
    margin-top: 25px;
    background: rgba(0,0,0,.25);
    padding: 10px;
    font-size: 12px;
    color: #cbdbea;
}


@media (max-width: 600px) {
    .contact-row {
        gap: 12px;
        font-size: 13px;
    }
}


