:root {

    --red: #b40018;
    --red-dark: #870012;
    --red-light: #e3152d;

    --red-pale: #fff1f3;

    --black: #17181b;
    --dark: #25272c;

    --text: #292c31;
    --muted: #737880;

    --white: #ffffff;
    --bg: #f6f7f9;

    --border: #e7e8eb;

    --green: #16834b;

    --shadow-sm:
        0 5px 18px rgba(20,20,30,.05);

    --shadow:
        0 15px 40px rgba(20,20,30,.08);

    --shadow-lg:
        0 25px 65px rgba(20,20,30,.12);

    --radius: 16px;

    --radius-lg: 24px;

}
* {

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

    scroll-padding-top: 80px;

}

body {

    margin: 0;

    background: var(--bg);

    color: var(--text);

    font-family:
        Inter,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;

}

a {

    color: inherit;

    text-decoration: none;

}

img {

    max-width: 100%;

    display: block;

}

button {

    font-family: inherit;

}

.container {

    width:
        min(
            1380px,
            calc(100% - 48px)
        );

    margin: auto;

}


.nav {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.90);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(0,0,0,.06);

    box-shadow:
        0 2px 15px rgba(0,0,0,.035);

}

.nav-inner {

    height: 78px;

    display: flex;

    align-items: center;

    gap: 25px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-right: auto;

}

.brand img {

    width: 50px;

    height: 50px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 4px 8px rgba(0,0,0,.10)
        );

}

.brand-text small {

    display: block;

    color: #72757a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;

}

.brand-text strong {

    display: block;

    color: var(--red);

    font-size: 22px;

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -.7px;

}

.nav-links {

    display: flex;

    align-items: center;

    gap: 5px;

}

.nav-links a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border-radius: 9px;

    color: #4b4e54;

    font-size: 12px;

    font-weight: 700;

    transition: .2s ease;

}

.nav-links a i {

    font-size: 11px;

}

.nav-links a:hover {

    color: var(--red);

    background: var(--red-pale);

}

.nav-links a.active {

    color: var(--red);

    background: var(--red-pale);

}

.login {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--red-light)
        );

    color: white;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 8px 20px
        rgba(180,0,24,.18);

    transition: .2s ease;

}

.login:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(180,0,24,.28);

}

.menu {

    display: none;

    border: 0;

    background: transparent;

    color: var(--red);

    font-size: 25px;

    cursor: pointer;

}

.hero {

    position: relative;

    min-height: 590px;

    overflow: hidden;

    background: #fff;

}

.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    opacity: .72;

    filter:
        saturate(.72)
        contrast(1.03);

}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #fff 0%,
            rgba(255,255,255,.98) 25%,
            rgba(255,255,255,.88) 45%,
            rgba(255,255,255,.50) 66%,
            rgba(255,255,255,.05) 100%
        );

}

.hero-inner {

    position: relative;

    z-index: 3;

    min-height: 590px;

    display: flex;

    align-items: center;

    padding:
        75px 0 105px;

}

.hero-copy {

    width: 62%;

    max-width: 750px;

}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    padding: 7px 11px;

    background: var(--red-pale);

    color: var(--red);

    border-radius: 100px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.dot {

    width: 7px;

    height: 7px;

    background: var(--red);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(180,0,24,.10);

}


h1 {

    margin: 0 0 10px;

    color: var(--black);

    font-size:
        clamp(
            45px,
            5.5vw,
            75px
        );

    line-height: .98;

    letter-spacing: -3.5px;

    font-weight: 900;

}

h1 span {

    color: var(--red);

}

.hero-title {

    margin-bottom: 18px;

    color: #3d4147;

    font-size:
        clamp(
            24px,
            3vw,
            39px
        );

    line-height: 1.12;

    letter-spacing: -1.4px;

    font-weight: 800;

}

.hero p {

    max-width: 610px;

    margin: 0 0 28px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

}

.actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 45px;

    padding: 12px 20px;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;

    transition: .2s ease;

}

.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red-light)
        );

    box-shadow:
        0 10px 25px
        rgba(180,0,24,.22);

}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(180,0,24,.30);

}

.btn-outline {

    color: var(--red);

    background:
        rgba(255,255,255,.75);

    border:
        1px solid #e4a6ad;

}

.btn-outline:hover {

    color: white;

    background: var(--red);

    border-color: var(--red);

    transform: translateY(-3px);

}

.hero-brands {

    position: absolute;

    z-index: 5;

    right: 4%;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 10px 14px;

    border:
        1px solid rgba(255,255,255,.65);

    border-radius: 16px;

    background:
        rgba(255,255,255,.58);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.08);

}

.hero-brands img {

    object-fit: contain;

}

.hero-brands .seal {

    width: 68px;

    height: 68px;

}

.hero-brands .slogan {

    width: 140px;

    max-height: 65px;

}

.hero-brands .bagong {

    width: 68px;

    height: 68px;

}

.stats-wrap {

    position: relative;

    z-index: 8;

    margin-top: -42px;

}

.stats {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #870012,
            #b40018 50%,
            #d4142d
        );

    color: white;

    border-radius: 18px;

    box-shadow:
        0 20px 50px
        rgba(90,0,12,.20);

}

.stat {

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 105px;

    padding: 20px 25px;

    border-right:
        1px solid
        rgba(255,255,255,.20);

}

.stat:last-child {

    border-right: 0;

}

.stat-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid
        rgba(255,255,255,.20);

}

.stat-icon i {

    font-size: 17px;

}

.stat small {

    display: block;

    color:
        rgba(255,255,255,.76);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

}

.stat strong {

    display: block;

    margin-top: 1px;

    font-size: 26px;

    font-weight: 900;

}

.section {

    padding: 85px 0;

}

.section-head {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;

}

.kicker {

    display: inline-block;

    margin-bottom: 4px;

    color: var(--red);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}

.section h2 {

    margin: 0;

    color: var(--black);

    font-size: 31px;

    letter-spacing: -1.3px;

    font-weight: 900;

}

.section-head p {

    max-width: 580px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}

.view-all {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--red);

    font-size: 11px;

    font-weight: 800;

}

.view-all i {

    transition:
        transform .2s ease;

}

.view-all:hover i {

    transform:
        translateX(4px);

}

.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(6,1fr);

    gap: 14px;

}

.quick {

    position: relative;

    min-height: 175px;

    padding: 21px 18px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: .25s ease;

}

.quick::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--red-light)
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .25s ease;

}

.quick:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(180,0,24,.18);

    box-shadow: var(--shadow);

}

.quick:hover::before {

    transform:
        scaleX(1);

}

.quick .icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #fff1f3,
            #ffe6e9
        );

    color: var(--red);

    transition: .25s ease;

}

.quick .icon i {

    font-size: 19px;

}

.quick:hover .icon {

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--red),
            var(--red-light)
        );

    transform:
        translateY(-3px);

    box-shadow:
        0 9px 20px
        rgba(180,0,24,.20);

}

.quick h3 {

    margin: 0 0 7px;

    color: var(--black);

    font-size: 13px;

    font-weight: 800;

}

.quick p {

    margin: 0 0 12px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;

}

.quick span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

}

.quick span i {

    font-size: 9px;

    transition:
        transform .25s ease;

}

.quick:hover span i {

    transform:
        translateX(5px);

}

.monitor-section {

    padding: 85px 0;

    background: #fff;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}

.project-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}

.project-card {

    padding: 23px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: .25s ease;

}

.project-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}

.project-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

}

.status {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 100px;

    font-size: 9px;

    font-weight: 800;

}

.status span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

}

.status.ongoing {

    color: #946200;

    background: #fff6dd;

}

.status.ongoing span {

    background: #e0a100;

}

.status.completed {

    color: var(--green);

    background: #e8f7ef;

}

.status.completed span {

    background: var(--green);

}

.project-code {

    color: #999da3;

    font-size: 9px;

    font-weight: 700;

}

.project-card h3 {

    margin: 0 0 8px;

    color: var(--black);

    font-size: 16px;

    line-height: 1.35;

    font-weight: 800;

}

.project-card > p {

    margin: 0 0 18px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

}

.project-meta {

    display: flex;

    gap: 18px;

    margin-bottom: 20px;

}

.project-meta span {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #777b82;

    font-size: 10px;

    font-weight: 600;

}

.project-meta i {

    color: var(--red);

}

.progress-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 7px;

    color: #858990;

    font-size: 9px;

    font-weight: 700;

}

.progress-info strong {

    color: var(--black);

}

.progress {

    height: 7px;

    overflow: hidden;

    border-radius: 100px;

    background: #ececef;

}

.progress span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--red-light)
        );

}

.completed-bar span {

    background:
        linear-gradient(
            90deg,
            #13864c,
            #28ad6c
        );

}

.offices-section {

    background:
        linear-gradient(
            180deg,
            #f7f7f9,
            #fff
        );

}

.office-cards {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}

.office-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 135px;

    padding: 20px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: .25s ease;

}

.office-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(180,0,24,.18);

    box-shadow: var(--shadow);

}

.office-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color: var(--red);

    background: var(--red-pale);

}

.office-icon i {

    font-size: 19px;

}

.office-card h3 {

    margin: 0 0 5px;

    color: var(--black);

    font-size: 13px;

    font-weight: 800;

}

.office-card p {

    margin: 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;

}

.office-card .arrow {

    position: absolute;

    right: 17px;

    bottom: 17px;

    color: #c1c4c8;

    font-size: 10px;

    transition: .2s ease;

}

.office-card:hover .arrow {

    color: var(--red);

    transform:
        translateX(4px);

}

.cta {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 38px 40px;

    overflow: hidden;

    color: white;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            110deg,
            #7f0011,
            #b40018 55%,
            #d4142d
        );

    box-shadow:
        0 20px 45px
        rgba(180,0,24,.18);

}

.cta-icon {

    position: relative;

    z-index: 2;

    width: 62px;

    height: 62px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid
        rgba(255,255,255,.20);

}

.cta-icon i {

    font-size: 24px;

}

.cta-content {

    position: relative;

    z-index: 2;

    flex: 1;

}

.cta-content > span {

    color: #ffbdc5;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.3px;

}

.cta h2 {

    margin: 5px 0;

    font-size: 26px;

    letter-spacing: -.7px;

    font-weight: 900;

}

.cta p {

    margin: 0;

    color: #ffdfe3;

    font-size: 12px;

}

.cta-button {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

    color: var(--red);

    background: white;

}

.cta-button:hover {

    transform:
        translateY(-3px);

}

footer {

    background: #191a1e;

    color: #b9bdc3;

    padding: 55px 0 20px;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

}

.footer-brand img {

    width: 52px;

    height: 52px;

    object-fit: contain;

}

.footer-brand strong {

    display: block;

    color: white;

    font-size: 16px;

    font-weight: 900;

}

.footer-brand small {

    display: block;

    margin-top: 2px;

    color: #858a91;

    font-size: 9px;

}

footer h3 {

    margin: 0 0 13px;

    color: white;

    font-size: 13px;

    font-weight: 800;

}

footer p,
footer li,
footer a {

    color: #969ba2;

    font-size: 11px;

    line-height: 1.7;

}

footer p {

    max-width: 380px;

}

footer ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

footer li {

    margin-bottom: 4px;

}

footer a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    transition: .2s ease;

}

footer a i {

    width: 14px;

    color: var(--red-light);

    font-size: 10px;

}

footer a:hover {

    color: white;

}

.copyright {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 35px;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color: #666b72;

    font-size: 10px;

}

@media (max-width:1200px) {

    .quick-grid {

        grid-template-columns:
            repeat(3,1fr);

    }

    .office-cards {

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media (max-width:850px) {

    .nav-inner {

        height: 70px;

    }

    .nav-links {

        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        right: 0;

        padding: 10px 20px 18px;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;

        background:
            rgba(255,255,255,.98);

        border-bottom:
            1px solid var(--border);

        box-shadow:
            0 15px 30px
            rgba(0,0,0,.08);

    }

    .nav-links.open {

        display: flex;

    }

    .nav-links a {

        padding: 12px;

    }

    .menu {

        display: block;

    }

    .login {

        display: none;

    }


    /* HERO */

    .hero-inner {

        min-height: 680px;

        padding:
            55px 0 150px;

        align-items:
            flex-start;

    }

    .hero-copy {

        width: 100%;

    }

    .hero::before {

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.98),
                rgba(255,255,255,.87) 55%,
                rgba(255,255,255,.30)
            );

    }

    .hero-brands {

        left: 20px;

        right: 20px;

        justify-content:
            center;

        bottom: 20px;

    }


    /* STATS */

    .stats {

        grid-template-columns:
            repeat(2,1fr);

    }

    .stat {

        border-right: 0;

        padding: 17px;

    }

    .stat:nth-child(odd) {

        border-right:
            1px solid
            rgba(255,255,255,.20);

    }


    /* SECTION */

    .section-head {

        display: block;

    }

    .section-head p {

        margin-top: 10px;

    }


    /* PROJECTS */

    .project-grid {

        grid-template-columns: 1fr;

    }


    /* CTA */

    .cta {

        display: block;

        padding: 32px;

    }

    .cta-content {

        margin-top: 18px;

    }

    .cta-button {

        margin-top: 20px;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media (max-width:520px) {

    .container {

        width:
            calc(100% - 28px);

    }

    .brand img {

        width: 43px;

        height: 43px;

    }

    .brand-text small {

        display: none;

    }

    .brand-text strong {

        font-size: 19px;

    }


    /* HERO */

    .hero-inner {

        min-height: 650px;

        padding-top: 45px;

    }

    h1 {

        font-size: 43px;

        letter-spacing: -2px;

    }

    .hero-title {

        font-size: 23px;

    }

    .hero p {

        font-size: 13px;

    }

    .actions {

        flex-direction: column;

    }

    .actions .btn {

        width: 100%;

    }


    /* LOGOS */

    .hero-brands {

        gap: 7px;

        padding: 8px 10px;

    }

    .hero-brands .seal {

        width: 52px;

        height: 52px;

    }

    .hero-brands .slogan {

        width: 105px;

    }

    .hero-brands .bagong {

        width: 52px;

        height: 52px;

    }


    /* STATS */

    .stats {

        grid-template-columns:
            1fr 1fr;

    }

    .stat {

        gap: 8px;

        padding: 13px 9px;

    }

    .stat-icon {

        width: 35px;

        height: 35px;

    }

    .stat strong {

        font-size: 18px;

    }

    .stat small {

        font-size: 8px;

    }

    .quick-grid {

        grid-template-columns: 1fr;

    }

    .office-cards {

        grid-template-columns: 1fr;

    }

    .section {

        padding: 60px 0;

    }

    .section h2 {

        font-size: 27px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .copyright {

        display: block;

        line-height: 1.8;

    }

}

:focus-visible {

    outline:
        3px solid
        rgba(180,0,24,.25);

    outline-offset: 3px;

}