@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&family=Syne:wght@700;800&display=swap');

:root {
    --ls-font-family: "CocogoosePro", "Cocogoose Pro", "Cocogoose", sans-serif;
    --lc-gold: #ffc000;
}

* {
    box-sizing: border-box;
    font-family: var(--ls-font-family);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #020202;
    color: #ffffff;
}

.ls-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 192, 0, 0.15);
    overflow: visible;
}

.ls-site-nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ls-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    white-space: nowrap;
}

.ls-nav-logo__image {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex: 0 0 auto;
    display: block;
}

.ls-nav-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    gap: 0.18rem;
}

.ls-nav-logo__text strong {
    font-family: 'Anton', sans-serif;
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-transform: uppercase;
}

.ls-nav-logo__text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.082em;
    color: rgba(255, 255, 255, 0.95);
}

.ls-nav-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.ls-nav-links a {
    display: inline-block;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ls-nav-links a:hover {
    color: #ffc000;
}

.ls-nav-links .ls-nav-cta {
    background: #ffc000;
    color: #000000;
    padding: 0.55rem 1.2rem;
    border-radius: 2px;
    letter-spacing: 0.07em;
}

.ls-nav-links .ls-nav-cta:hover {
    color: #000000;
    background: #ffd966;
}

/* ─── Hamburger button (hidden on desktop) ─── */
.ls-nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 101;
}

.ls-nav-hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
    transform-origin: center;
}

/* Animasi X saat menu terbuka */
.ls-nav-hamburger.is-open .ls-nav-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ls-nav-hamburger.is-open .ls-nav-hamburger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.ls-nav-hamburger.is-open .ls-nav-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ls-site-main {
    min-height: 100vh;
}

footer.lc-footer {
    margin-top: 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 4rem 0 0;
    font-family: 'DM Sans', sans-serif;
}

.lc-footer__body {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1.2fr;
    align-items: flex-start;
    width: min(1200px, 100%);
    margin: 0 auto;
    gap: 3rem;
    padding: 0 2rem 3rem;
    position: relative;
    z-index: 1;
}

.lc-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 360px;
    justify-self: start;
}

.lc-footer__logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.3rem;
}

.lc-footer__logo img {
    width: clamp(130px, 15vw, 178px);
    height: auto;
    display: block;
    margin: -16px 0 -22px -8px;
}

.lc-footer__address {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.35;
}

.lc-footer__address i {
    color: var(--lc-gold);
    margin-right: 0.35rem;
    font-size: 0.9em;
}

.lc-footer__tagline {
    font-size: 0.98rem;
    color: rgba(232, 232, 232, 0.86);
    font-weight: 400;
    line-height: 1.45;
    max-width: 320px;
    margin: 0 0 1.15rem;
}

.lc-footer__socials {
    display: flex;
    gap: 0.55rem;
}

.lc-social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(238, 238, 238, 0.9);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.22s;
    font-size: 0.8rem;
}

.lc-social-link:hover {
    border-color: var(--lc-gold);
    color: #ffffff;
    background: rgba(255, 192, 0, 0.12);
    transform: translateY(-2px);
}

.lc-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.lc-footer__col-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lc-gold);
    margin: 0 0 1.1rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.lc-footer__col-title::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lc-gold);
    flex-shrink: 0;
    box-shadow: none;
}

.lc-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
}

.lc-footer__links li a,
.lc-footer__link-text {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.83rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
    line-height: 1.2;
}

.lc-footer__link-text {
    cursor: default;
}

.lc-footer__links li a::before {
    content: none;
}

.lc-footer__links li a:hover {
    color: #ffffff;
    transform: none;
}

.lc-footer__services .lc-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 0.15rem;
    align-items: start;
}

.lc-footer__services .lc-footer__links li {
    width: auto;
}

.lc-footer__services .lc-footer__links li a,
.lc-footer__services .lc-footer__link-text {
    display: inline-flex;
    width: auto;
    font-size: 0.83rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    padding: 0;
    letter-spacing: 0;
    line-height: 1.15;
}

.lc-footer__services .lc-footer__links li a::before {
    content: none;
}

.lc-footer__services .lc-footer__link-text {
    display: inline-flex;
    width: auto;
}

.lc-footer__services {
    text-align: left;
    min-width: 200px;
    justify-self: center;
    padding-top: 0.15rem;
}

.lc-footer__services .lc-footer__col-title {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.lc-footer__contact .lc-footer__col-title {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.lc-footer__services .lc-footer__col-title::before {
    display: block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    border-radius: 50%;
    align-self: center;
    flex-shrink: 0;
    box-shadow: none;
    opacity: 0.9;
}

.lc-footer__services .lc-footer__links li a:hover {
    color: #ffffff;
    transform: none;
}

.lc-footer__contact {
    margin-left: 0;
    max-width: 360px;
    justify-self: end;
}

.lc-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}

.lc-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
}

.lc-contact-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--lc-gold);
    font-size: 0.96rem;
    flex-shrink: 0;
}

.lc-contact-row__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lc-contact-row__value {
    margin: 0.05rem 0 0;
    font-size: 1.02rem;
    color: rgba(240, 240, 240, 0.9);
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
}

.lc-contact-row__value:hover {
    color: var(--lc-gold);
}

.lc-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    width: min(1180px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
    gap: 1rem;
    flex-wrap: wrap;
}

.lc-footer__copy {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.lc-footer__copy strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.lc-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.lc-footer__legal a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.18s;
}

.lc-footer__legal a:hover {
    color: var(--lc-gold);
}

@media (max-width: 1024px) {
    .ls-site-nav {
        justify-content: flex-start;
        gap: 18px;
    }

    .ls-nav-logo {
        gap: 10px;
    }

    .ls-nav-logo__image {
        width: 52px;
        height: 52px;
    }

    .ls-nav-logo__text strong {
        font-size: 1.55rem;
    }

    .ls-nav-logo__text span {
        font-size: 0.70rem;
    }

    .ls-nav-links {
        width: max-content;
        flex-wrap: nowrap;
        gap: 14px;
    }

    .ls-nav-links a {
        font-size: 0.75rem;
    }

    .lc-footer__body {
        grid-template-columns: 1fr 1fr;
        gap: 1.6rem;
    }

    .lc-footer__services {
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
    }

    .lc-footer__services .lc-footer__col-title {
        justify-content: flex;
    }

    .lc-footer__services .lc-footer__links {
        align-items: center;
    }

    .lc-footer__contact {
        justify-self: end;
    }
}

/* ─── Mobile nav: hamburger aktif ─── */
@media (max-width: 680px) {
    .ls-site-nav {
        overflow-x: visible;
        gap: 0;
    }

    .ls-nav-hamburger {
        display: flex;
    }

    .ls-nav-links {
        /* Layout */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: auto;
        right: 0;
        width: min(270px, 88vw);
        min-height: calc(100vh - 80px);
        /* Visual */
        background: rgba(2, 2, 2, 0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 192, 0, 0.2);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0 0 0 12px;
        box-shadow: -6px 8px 32px rgba(0, 0, 0, 0.55);
        padding: 16px 24px 32px;
        overflow-y: auto;
        z-index: 50;
        /* Hidden state — animasi slide-down */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.28s ease, visibility 0.25s ease;
    }

    .ls-nav-links.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ls-nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ls-nav-links a {
        font-size: 0.95rem;
        padding: 16px 4px;
        width: 100%;
        display: block;
        letter-spacing: 0.08em;
    }

    .ls-nav-links .ls-nav-cta {
        margin-top: 20px;
        text-align: center;
        border-radius: 4px;
        padding: 14px 24px;
        width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .lc-footer__body {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1.6rem;
        padding: 1.8rem 20px 1.5rem;
    }

    .lc-footer__brand {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 14px;
        row-gap: 2px;
        align-items: center;
        max-width: 100%;
        width: 100%;
        justify-self: stretch;
    }

    .lc-footer__contact {
        max-width: 100%;
        width: 100%;
        justify-self: stretch;
    }

    .lc-footer__services {
        width: 100%;
        justify-self: stretch;
        text-align: left;
    }

    .lc-footer__services .lc-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1rem;
        row-gap: 0.5rem;
        align-items: flex-start;
    }

    .lc-footer__divider,
    .lc-footer__bottom {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .lc-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .lc-footer__legal {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .lc-footer__logo {
        grid-column: 1;
        grid-row: 1 / 3;
        margin-bottom: 0;
        align-self: center;
    }

    .lc-footer__logo img {
        width: clamp(90px, 28vw, 120px);
        margin: -8px 0 -10px -4px;
    }

    .lc-footer__address {
        grid-column: 2;
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
    }

    .lc-footer__brand .lc-footer__address:first-of-type {
        align-self: end;
    }

    .lc-footer__brand .lc-footer__address:last-of-type {
        align-self: start;
    }

    .lc-footer__links li a {
        font-size: 0.96rem;
    }

    .lc-footer__services .lc-footer__links li a {
        font-size: 0.8rem;
    }

    .lc-contact-row__value {
        font-size: 0.92rem;
    }
}
