/* =========================================================
   CV BAROKAH ARTHA PRIMA
   MAIN STYLE
========================================================= */

:root {
    --navy: #0b1f33;
    --navy-dark: #071522;
    --gold: #c9a24a;

    --white: #ffffff;
    --light: #f6f7f9;
    --text: #17212b;
    --muted: #667085;
    --border: #e5e7eb;

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(92%, 1240px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 9999;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e7eaee;

    box-shadow: 0 2px 12px rgba(11, 31, 51, 0.05);
}

.navbar-inner {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-info strong {
    color: var(--navy);

    font-size: 14px;
    font-weight: 800;

    line-height: 1.2;

    white-space: nowrap;
}

.brand-info small {
    margin-top: 5px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   NAVBAR CONTENT
========================================================= */

.navbar-content {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;
}


/* =========================================================
   MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    position: relative;

    display: inline-block;

    padding: 30px 0;

    color: #263849;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 21px;

    height: 2px;

    background: var(--gold);
}


/* =========================================================
   NAVBAR ACTIONS
========================================================= */

.navbar-actions {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}


/* =========================================================
   LANGUAGE
========================================================= */

.language {
    display: flex;
    align-items: center;

    gap: 6px;

    font-size: 12px;
    font-weight: 700;
}

.language span {
    color: #d0d5da;
}

.language a {
    color: #7a8793;

    transition: var(--transition);
}

.language a:hover {
    color: var(--gold);
}

.language a.active {
    color: var(--navy);
}


/* =========================================================
   CONSULTATION
========================================================= */

.consultation-btn {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 18px;

    background: var(--navy);
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.consultation-btn:hover {
    background: var(--gold);
    color: #ffffff;
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-left: auto;

    padding: 0;

    border: 1px solid #d9dee3;
    border-radius: 2px;

    background: #ffffff;
    color: var(--navy);

    font-size: 18px;

    cursor: pointer;
}

.menu-toggle i {
    color: var(--navy);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--navy-dark);

    color: rgba(255, 255, 255, 0.65);
}

.footer-container {
    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1.25fr;

    gap: 50px;

    padding-top: 65px;
    padding-bottom: 55px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    max-width: 390px;
}

.footer-brand-top {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}

.footer-brand-top img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

.footer-brand-top div {
    display: flex;
    flex-direction: column;
}

.footer-brand-top strong {
    color: #ffffff;

    font-size: 15px;
    font-weight: 800;
}

.footer-brand-top span {
    margin-top: 5px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.48);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    position: relative;

    margin: 0 0 22px;

    padding-bottom: 10px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    background: var(--gold);
}

.footer-column > a {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;

    transition: var(--transition);
}

.footer-column > a:hover {
    color: var(--gold);

    transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact > div {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;

    line-height: 1.6;
}

.footer-contact i {
    width: 16px;

    margin-top: 4px;

    color: var(--gold);

    text-align: center;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-floating {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9998;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    font-size: 26px;

    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.2);

    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: translateY(-3px);
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 950px) {

    .navbar-inner {
        min-height: 72px;
    }


    /* HAMBURGER */

    .menu-toggle {
        display: flex !important;
    }


    /* MOBILE CONTENT */

    .navbar-content {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 8px 5% 20px;

        background: #ffffff;

        border-top: 1px solid #e7eaee;
        border-bottom: 1px solid #e7eaee;

        box-shadow: 0 12px 25px rgba(11, 31, 51, 0.10);
    }

    .navbar-content.active {
        display: flex !important;
    }


    /* MOBILE MENU */

    .nav-menu {
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;

        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #eef0f2;
    }

    .nav-menu a.active::after {
        display: none;
    }


    /* ACTIONS */

    .navbar-actions {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 15px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 650px;
    }
}


/* =========================================================
   MOBILE SMALL
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .navbar-inner {
        min-height: 68px;
    }

    .brand img {
        width: 43px;
        height: 43px;
    }

    .brand-info strong {
        font-size: 12px;
    }

    .brand-info small {
        font-size: 7px;
        letter-spacing: 1.2px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom-inner {
        min-height: 80px;

        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        gap: 4px;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;

        font-size: 24px;
    }
}

