﻿/* ==================================================
    RESET / GLOBAL
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Outfit", sans-serif;

    background: #06101d;

    color: #f8fafc;
}



/* ==================================================
    NAVBAR
================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1), background .3s ease, border-color .3s ease;
    background: linear-gradient(180deg, rgba(2, 8, 23, .88), rgba(2, 8, 23, .55));
    border-bottom: 1px solid rgba(56, 189, 248, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* NAVBAR MUNCUL */
.navbar.show {
    opacity: 1;
    transform: translateY(0);
}


.logo {

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #38bdf8;

    text-shadow:
        0 0 10px rgba(56, 189, 248, .5),
        0 0 25px rgba(37, 99, 235, .25);
}


.hamburger {
    display: none;
}


.nav-menu {

    display: flex;
    margin-right: 0;
    gap: 35px;
}


.nav-menu a {

    color: #94a3b8;

    text-decoration: none;

    font-size: 14px;


}

.nav-menu a.active {
    color: var(--blue-primary);
    opacity: 1;
}

.nav-menu.open a.active {
    color: var(--blue-primary) !important;
}

.navbar .nav-menu a::after {
    content: ' ';
    display: block;
    border-bottom: 0.1rem solid #0D6EFD;
    padding-bottom: 0.5rem;
    transform: scalex(0);
    transition: 0.2s linear;
}

.navbar .nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-button {

    padding: 11px 23px;

    border: 1px solid rgba(56, 189, 248, .6);

    border-radius: 30px;

    background: rgba(14, 42, 75, .25);

    color: #e0f2fe;

    cursor: pointer;
    transition: .3s;
}

/* main menu */


/* =========================================
   CONTACT DECORATION
   Tidak mengubah class Hero yang sudah ada
========================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
}


/* =========================================
   DECORATION CONTAINER
========================================= */

.contact-decoration {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}


/* Pastikan content tetap di depan */

.contact-hero .hero-content {
    position: relative;
    z-index: 5;
}


/* =========================================
   ORBS
========================================= */

.contact-orb {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(55px);

    opacity: .55;

    will-change: transform;
}


/* kiri atas */

.orb-left {
    width: 330px;
    height: 330px;

    top: -150px;
    left: -120px;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, .45),
            transparent 70%);

    animation:
        contactOrbLeft 9s ease-in-out infinite;
}


/* kanan */

.orb-right {
    width: 390px;
    height: 390px;

    top: 25%;
    right: -180px;

    background:
        radial-gradient(circle,
            rgba(14, 165, 233, .38),
            transparent 70%);

    animation:
        contactOrbRight 11s ease-in-out infinite;
}


/* bawah tengah */

.orb-bottom {
    width: 260px;
    height: 260px;

    bottom: -180px;
    left: 45%;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, .28),
            transparent 70%);

    animation:
        contactOrbBottom 8s ease-in-out infinite;
}


/* =========================================
   RINGS
========================================= */

.contact-ring {
    position: absolute;

    display: block;

    border: 1px solid rgba(56, 189, 248, .12);

    border-radius: 50%;

    opacity: .6;

    animation:
        ringFloat 8s ease-in-out infinite;
}


.ring-1 {
    width: 280px;
    height: 280px;

    top: 10%;
    right: 8%;
}


.ring-2 {
    width: 170px;
    height: 170px;

    bottom: 12%;
    left: 9%;

    animation-delay: -4s;
}


/* =========================================
   FLOATING DOTS
========================================= */

.contact-dot {
    position: absolute;

    display: block;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #38bdf8;

    box-shadow:
        0 0 12px rgba(56, 189, 248, .8);

    animation:
        dotFloat 5s ease-in-out infinite;
}


.dot-1 {
    top: 25%;
    left: 18%;
}


.dot-2 {
    top: 18%;
    right: 24%;

    animation-delay: -1s;
}


.dot-3 {
    bottom: 25%;
    right: 15%;

    animation-delay: -2.5s;
}


.dot-4 {
    bottom: 18%;
    left: 24%;

    animation-delay: -3.5s;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .orb-left {
        width: 230px;
        height: 230px;
    }

    .orb-right {
        width: 260px;
        height: 260px;
    }

    .orb-bottom {
        width: 190px;
        height: 190px;
    }

    .ring-1 {
        width: 180px;
        height: 180px;

        right: -50px;
    }

    .ring-2 {
        width: 120px;
        height: 120px;

        left: -30px;
    }

    .contact-dot {
        width: 4px;
        height: 4px;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-decoration * {
        animation: none !important;
    }
}


.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px 50px;

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}


.hero.show {

    opacity: 1;

    transform: translateY(0);
}


.hero-content {

    max-width: 850px;
}


.eyebrow {

    color: #38bdf8;

    font-size: 12px;

    letter-spacing: 5px;
}


.hero h1 {

    margin-top: 20px;

    font-size: clamp(45px, 6vw, 78px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.hero h1 span {

    gap: 10px;

    background:
        linear-gradient(90deg,
            #38bdf8,
            #168cff,
            #60a5fa);

    /* DECORATION: FLOATING DOTS */
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.hero p {

    max-width: 600px;

    margin: 25px auto 35px;

    color: #94a3b8;

    font-size: 17px;

    line-height: 1.7;
}


.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;
}


.primary-btn,
.secondary-btn {

    padding: 14px 28px;

    border-radius: 8px;

    cursor: pointer;

    transition: .3s;
}


.primary-btn {

    border: none;

    color: white;

    background:
        linear-gradient(135deg,
            #38bdf8,
            #2563eb);

    box-shadow: 0 0 20px rgba(37, 99, 235, .3);
}


.secondary-btn {

    color: #cbd5e1;

    border: 1px solid rgba(56, 189, 248, .35);

    background: rgba(15, 23, 42, .3);
}



/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    padding: 120px 7%;

    box-sizing: border-box;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(37, 99, 235, .14),
            transparent 35%),
        radial-gradient(
            /* CONTACT SECTION / COMPONENTS */
            rgba(14, 165, 233, .10),
            transparent 35%),
        #020817;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.contact-header {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}

.contact-header>span {
    display: inline-block;

    margin-bottom: 16px;

    color: #38bdf8;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}

.contact-header h2 {
    margin: 0;

    color: #f8fafc;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.contact-header h2 strong {
    display: block;

    background:
        linear-gradient(90deg,
            #38bdf8,
            #2563eb,
            #60a5fa);

    /* FOOTER */
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.contact-header p {
    max-width: 580px;

    margin: 24px auto 0;

    color: #94a3b8;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.contact-grid {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.15fr 1fr 1fr;

    gap: 20px;
}


/* =========================================
   CARD
========================================= */

.contact-card {

    position: relative;

    min-height: 300px;

    padding: 32px;

    box-sizing: border-box;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(15, 45, 82, .72),
            rgba(5, 20, 40, .72));

    border: 1px solid rgba(96, 165, 250, .16);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .04);

    backdrop-filter: blur(14px);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


/* =========================================
   GLOW
========================================= */

.card-glow {

    position: absolute;

    width: 230px;
    height: 230px;

    top: -120px;
    right: -80px;

    border-radius: 50%;

    background: #168cff;

    filter: blur(90px);

    opacity: .18;

    pointer-events: none;
}


/* =========================================
   SUPPORT CARD
========================================= */

.support-card {

    grid-row: span 2;

    min-height: 620px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.support-card h3 {

    max-width: 380px;

    font-size: 38px;

    line-height: 1.15;

    color: #f8fafc;
}

.support-card h3 strong {
    color: #38bdf8;
}

.support-card p {

    max-width: 430px;

    color: #94a3b8;

    line-height: 1.8;

    font-size: 14px;
}


/* =========================================
   ICON
========================================= */

.contact-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    color: #38bdf8;

    background:
        linear-gradient(145deg,
            rgba(56, 189, 248, .16),
            rgba(37, 99, 235, .10));

    border: 1px solid rgba(56, 189, 248, .20);

    box-shadow:
        0 0 25px rgba(56, 189, 248, .08);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.contact-icon svg {

    width: 23px;
    height: 23px;
}


/* =========================================
   LABEL
========================================= */

.card-label {

    display: block;

    margin-bottom: 10px;

    color: #38bdf8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================
   TITLE
========================================= */

.contact-card h3 {

    margin: 0 0 12px;

    color: #f1f5f9;

    font-size: 23px;

    line-height: 1.3;
}


/* =========================================
   DESCRIPTION
========================================= */

.contact-card>p {

    margin: 0;

    color: #94a3b8;

    font-size: 13px;

    line-height: 1.7;
}

/* ===========================================
contack number
=============================================== */

.balicontact h4 {}

.contact-number a {
    color: #60a5fa;
    text-decoration: none;
    display: flex;
    width: fit-content;
    gap: 10px;
    margin-top: 8px;
    font-size: 15px;
    left: 20px;
}

.contact-number svg {
    width: 15px;
}

/* =========================================
   LINK
========================================= */

.contact-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: #60a5fa;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        color .3s ease,
        gap .3s ease;
}

.contact-link svg {

    width: 15px;
}


/* =========================================
   BUTTON
========================================= */

.contact-button {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    padding: 13px 20px;

    border-radius: 12px;

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    background:
        linear-gradient(135deg,
            #2563eb,
            #0ea5e9);

    box-shadow:
        0 8px 25px rgba(37, 99, 235, .25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.contact-button svg {
    width: 16px;
}


/* =========================================
   OFFICE
========================================= */

.office-location {

    margin-top: 22px;

    padding: 15px;

    border-radius: 14px;

    background:
        rgba(2, 8, 23, .35);

    border: 1px solid rgba(96, 165, 250, .10);
}

.office-location strong {

    display: flex;

    margin-bottom: 7px;

    color: #e2e8f0;

    font-size: 13px;

    align-items: center;

    justify-content: center;
}

.office-location span {

    display: block;

    color: #64748b;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   HOURS
========================================= */

.hours {

    margin-top: 20px;
}

.hours div {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 11px 0;

    border-bottom: 1px solid rgba(148, 163, 184, .08);
}

.hours div:last-child {
    border-bottom: none;
}

.hours span {

    color: #64748b;

    font-size: 11px;
}

.hours strong {

    color: #cbd5e1;

    font-size: 11px;

    text-align: right;
}


/* =========================================
   RESPONSE
========================================= */

.response-status {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    color: #94a3b8;

    font-size: 11px;
}

.status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #38bdf8;

    box-shadow:
        0 0 8px #38bdf8;

    animation:
        statusPulse 2s ease-in-out infinite;
}

/* =========================================
   ANIMATION
========================================= */

.contact-header,
.contact-card {

    opacity: 0;

    transform: translateY(35px);

    filter: blur(5px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, .61, .36, 1),
        filter .8s ease;
}

.contact-section.show .contact-header {

    opacity: 1;

    transform: translateY(0);

    filter: blur(0);
}

.contact-section.show .contact-card {

    opacity: 1;

    transform: translateY(0);

    filter: blur(0);
}


/* delay card */

.contact-section.show .contact-card:nth-child(1) {
    transition-delay: .1s;
}

.contact-section.show .contact-card:nth-child(2) {
    transition-delay: .2s;
}

.contact-section.show .contact-card:nth-child(3) {
    transition-delay: .3s;
}

.contact-section.show .contact-card:nth-child(4) {
    transition-delay: .4s;
}

.contact-section.show .contact-card:nth-child(5) {
    transition-delay: .5s;
}

.contact-section.show .contact-card:nth-child(6) {
    transition-delay: .6s;
}

.balicontact {
    margin-top: 20px;
}

.balicontact h4 {
    margin-bottom: 15px;
    color: #f1f5f9;
    font-size: 15px;
}


/* footer */
.footer {
    position: relative;
    min-height: 430px;

    padding: 80px 8% 30px;

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 100%,
            rgba(0, 102, 255, .13),
            transparent 45%),
        linear-gradient(180deg,
            #050d1c 0%,
            #030814 100%);

    border-top: 1px solid rgba(56, 189, 248, .12);

    isolation: isolate;
}


/* =========================================
   3D DECORATION
========================================= */

.footer-3d {
    position: absolute;

    pointer-events: none;

    z-index: -1;
}


/* =========================================
   3D CUBE - KIRI
========================================= */

.footer-3d-left {

    left: -25px;
    bottom: -35px;

    width: 170px;
    height: 170px;

    perspective: 700px;

    opacity: .7;
}


.cube-3d {

    position: absolute;

    left: 30px;
    bottom: 15px;

    width: 100px;
    height: 100px;

    transform-style: preserve-3d;

    transform:
        rotateX(-18deg) rotateY(30deg) rotateZ(-8deg);
}


/* setiap sisi cube */

.cube-3d span {

    position: absolute;

    width: 100px;
    height: 100px;

    border: 1px solid rgba(56, 189, 248, .45);

    background:
        linear-gradient(135deg,
            rgba(30, 120, 255, .20),
            rgba(3, 20, 50, .65));

    box-shadow:
        inset 0 0 25px rgba(0, 153, 255, .12),
        0 0 15px rgba(0, 119, 255, .12);
}


/* depan */

.cube-3d span:nth-child(1) {
    transform: translateZ(50px);
}


/* belakang */

.cube-3d span:nth-child(2) {
    transform: rotateY(180deg) translateZ(50px);
}


/* kanan */

.cube-3d span:nth-child(3) {
    transform:
        rotateY(90deg) translateZ(50px);
}


/* kiri */

.cube-3d span:nth-child(4) {
    transform:
        rotateY(-90deg) translateZ(50px);
}


/* atas */

.cube-3d span:nth-child(5) {
    transform:
        rotateX(90deg) translateZ(50px);
}


/* bawah */

.cube-3d span:nth-child(6) {
    transform:
        rotateX(-90deg) translateZ(50px);
}


/* =========================================
   3D ORB - KANAN
========================================= */

.footer-3d-right {

    right: -80px;
    bottom: -80px;

    width: 260px;
    height: 260px;

    opacity: .7;
}


.orb-3d {

    position: relative;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        radial-gradient(circle at 30% 25%,
            #8bdcff 0%,
            #258cff 12%,
            #0758c9 35%,
            #06265f 62%,
            #020b1c 82%);

    box-shadow:
        inset -25px -25px 45px rgba(0, 0, 0, .75),
        inset 15px 10px 30px rgba(120, 220, 255, .2),
        0 0 35px rgba(0, 119, 255, .22);

    transform:
        rotate(-18deg);
}


/* highlight orb */

.orb-3d::before {

    content: "";

    position: absolute;

    width: 65px;
    height: 35px;

    top: 25px;
    left: 40px;

    border-radius: 50%;

    background:
        rgba(190, 240, 255, .35);

    filter: blur(12px);

    transform: rotate(-25deg);
}


/* ring */

.orb-ring {

    position: absolute;

    width: 255px;
    height: 65px;

    top: 75px;
    left: -23px;

    border-radius: 50%;

    border:
        2px solid rgba(56, 189, 248, .55);

    transform:
        rotateX(65deg) rotateZ(-12deg);

    box-shadow:
        0 0 15px rgba(0, 174, 255, .25);
}


/* ring kedua */

.orb-ring::after {

    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    border:
        1px solid rgba(147, 220, 255, .25);
}


/* inti orb */

.orb-core {

    position: absolute;

    width: 20px;
    height: 20px;

    top: 55px;
    left: 60px;

    border-radius: 50%;

    background: #9de8ff;

    box-shadow:
        0 0 15px #38bdf8,
        0 0 35px rgba(0, 153, 255, .8);
}


/* =========================================
   LOGO
========================================= */

.judul-footer {
    max-width: 420px;

    position: relative;
    z-index: 2;
}


.footer .logo {

    display: flex;

    align-items: center;

    gap: 12px;
}


.footer .logo img {

    width: 42px;
    height: 42px;

    object-fit: contain;
}


.footer-judul {

    margin: 0;

    font-size: 24px;

    letter-spacing: 2px;

    color: #ffffff;
}


.footer-judul span {
    color: #38bdf8;
}


.explain-footer {

    margin-top: 18px;

    max-width: 390px;

    color: #71839d;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   KONTAK
========================================= */

.kontak {

    display: flex;

    gap: 12px;

    margin-top: 22px;
}


.kontak a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #60a5fa;

    border:
        1px solid rgba(56, 189, 248, .22);

    border-radius: 12px;

    background:
        rgba(9, 30, 62, .65);

    text-decoration: none;
}

.kontak a::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 8px;
    background: var(--blue-primary);
    display: none;
}


.kontak svg {

    width: 19px;
    height: 19px;

    position: relative;
    z-index: 1;
}


/* =========================================
   FOOTER MENU
========================================= */

.isi-footer {

    position: relative;

    z-index: 2;

    transform: translateY(-73px);

    display: grid;

    grid-template-columns:
        repeat(2, 150px);

    gap: 70px;

    margin-left: 57%;

    margin-top: -115px;
}

@media (min-width: 901px) {
    .isi-footer {
        width: fit-content;
        margin-left: auto;
        margin-right: 0;
    }
}

.isi-footer h5 {

    margin: 0 0 20px;

    font-size: 14px;

    color: #ffffff;

    letter-spacing: .5px;
}


.isi-footer a,
.isi-footer p {

    display: block;

    margin: 0 0 12px;

    color: #70829c;

    font-size: 12px;

    text-decoration: none;
}


.isi-contact p {
    margin-top: 12px;
}


/* =========================================
   GARIS
========================================= */

.garis {

    position: relative;

    z-index: 2;

    margin-top: 75px;

    border: 0;

    border-top:
        1px solid rgba(56, 189, 248, .12);
}


/* =========================================
   COPYRIGHT
========================================= */

.copyright {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 22px;
}


.copyright p {

    margin: 0;

    font-size: 11px;

    color: #52647d;
}


.explain-copyright {
    color: #315b82 !important;
}

/* end footer */

@media screen and (max-width: 768px) {

    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999999 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;

        display: flex !important;
        align-items: center !important;

        width: 100%;
        box-sizing: border-box;
    }

    .navbar.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    body {
        padding-top: 78px;
    }

    .nav-button {
        display: none;
    }

    /* ===============================
       HAMBURGER BUTTON
    =============================== */

    .hamburger {
        display: flex !important;

        margin-left: auto !important;

        width: 52px !important;
        height: 52px !important;

        padding: 0 !important;

        background: #06172d !important;

        border: 1px solid #168cff !important;

        border-radius: 14px !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        cursor: pointer !important;

        position: relative !important;

        z-index: 9999999 !important;
    }


    .hamburger span {
        display: block !important;

        width: 24px !important;
        height: 3px !important;

        background: #38bdf8 !important;

        border-radius: 10px !important;

        transition: 0.3s ease !important;
    }


    /* ===============================
       MENU TERTUTUP
    =============================== */

    .nav-menu {
        display: none !important;
    }


    /* ===============================
       MENU TERBUKA
    =============================== */

    .nav-menu.open {
        display: flex !important;

        position: absolute !important;

        top: 70px !important;

        right: 15px !important;

        width: 240px !important;

        padding: 10px !important;

        flex-direction: column !important;

        gap: 5px !important;

        background: #031329 !important;

        border: 1px solid #168cff !important;

        border-radius: 15px !important;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.7),
            0 0 25px rgba(22, 140, 255, 0.2) !important;

        z-index: 9999998 !important;

        box-sizing: border-box !important;
    }


    /* ===============================
       MENU LINK
    =============================== */

    .nav-menu.open a {
        display: block !important;

        width: 100% !important;

        padding: 15px !important;

        box-sizing: border-box !important;

        color: #ffffff !important;

        background: transparent !important;

        text-decoration: none !important;

        font-size: 16px !important;

        border-radius: 8px !important;
    }


    /* ===============================
       HAMBURGER MENJADI X
    =============================== */

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes contactOrbLeft {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform:
            translate3d(70px, 50px, 0) scale(1.12);
    }
}


@keyframes contactOrbRight {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform:
            translate3d(-60px, -40px, 0) scale(1.1);
    }
}


@keyframes contactOrbBottom {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform:
            translate3d(-30px, -55px, 0) scale(1.15);
    }
}


@keyframes ringFloat {

    0%,
    100% {
        transform:
            scale(1) rotate(0deg);

        opacity: .35;
    }

    50% {
        transform:
            scale(1.12) rotate(12deg);

        opacity: .65;
    }
}


@keyframes dotFloat {

    0%,
    100% {
        transform:
            translateY(0) scale(1);

        opacity: .35;
    }

    50% {
        transform:
            translateY(-18px) scale(1.4);

        opacity: 1;
    }
}


@keyframes statusPulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .response-card {
        grid-column: 1 / -1;
        width: 100%;
    }

    .support-card {

        grid-row: auto;

        min-height: auto;
    }
}


@media (max-width: 600px) {

    .contact-section {

        padding:
            90px 20px;
    }

    .contact-header {

        margin-bottom: 40px;
    }

    .contact-header h2 {

        font-size: 38px;
    }

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .contact-card {

        min-height: auto;

        padding: 25px;
    }

    .support-card {

        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer {

        padding:
            60px 25px 25px;

        min-height: auto;
    }


    .footer-3d-left {

        left: -70px;
        bottom: -60px;

        transform: scale(.7);

        opacity: .4;
    }


    .footer-3d-right {

        right: -100px;
        bottom: -80px;

        transform: scale(.65);

        opacity: .4;
    }


    .isi-footer {

        width: 100%;

        transform: none;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 35px;

        margin-left: 0;

        margin-top: 45px;
    }


    .copyright {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}

/* =========================================
    ZIGMAX LIGHT ENTERPRISE THEME
========================================= */
:root {
    --white: #FFFFFF;
    --soft-bg: #F7FAFF;
    --border-soft: #E5EDFA;
    --navy: #071A3B;
    --text-primary: #33415E;
    --text-muted: #64748B;
    --blue-primary: #1769FF;
    --blue-dark: #0B43BD;
    --blue-glow: rgba(23, 105, 255, .15);
    --blue-glow-strong: rgba(23, 105, 255, .30);
}

body {
    background: var(--white);
    color: var(--text-primary);
}

.navbar {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: var(--border-soft);
    box-shadow: 0 4px 20px rgba(7, 26, 59, .04);
}

.logo {
    color: var(--blue-primary);
    text-shadow: 0 0 18px var(--blue-glow);
}

.nav-menu a {
    color: var(--text-primary);
}

.nav-button {
    border-color: var(--blue-primary);
    background: var(--white);
    color: var(--blue-primary);
}

.contact-decoration .contact-orb {
    mix-blend-mode: multiply;
    opacity: .28;
}

.contact-orb {
    background: radial-gradient(circle, var(--blue-glow-strong), transparent 70%);
}

.contact-ring {
    border-color: var(--border-soft);
}

.contact-dot {
    background: var(--blue-primary);
    box-shadow: 0 0 12px var(--blue-glow-strong);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--navy);
}

.eyebrow,
.contact-header>span,
.card-label {
    color: var(--blue-primary);
}

.hero h1 span,
.contact-header h2 strong {
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-dark));
}

.hero h1 span,
.contact-header h2 strong {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p,
.contact-header p,
.contact-card>p {
    color: var(--text-muted);
}

.primary-btn,
.contact-button {
    background: var(--blue-primary);
    box-shadow: 0 8px 25px var(--blue-glow-strong);
}

.secondary-btn {
    color: var(--blue-primary);
    border-color: var(--blue-primary);
    background: var(--white);
}

.contact-section {
    background: var(--soft-bg);
}

.contact-card {
    background: var(--white);
    border-color: var(--border-soft);
    box-shadow: 0 10px 30px rgba(23, 105, 255, .08);
    min-width: 0;
}

@media (min-width: 901px) {
    .response-card {
        grid-column: 1 / 4;
    }
}

.contact-card h3,
.support-card h3,
.balicontact h4 {
    color: var(--navy);
}

.contact-icon {
    color: var(--blue-primary);
    background: rgba(23, 105, 255, .08);
    border-color: var(--border-soft);
}

.contact-link,
.contact-number a {
    color: var(--blue-primary);
}

.contact-link {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.office-location {
    background: var(--soft-bg);
    border-color: var(--border-soft);
}

.office-location strong {
    color: var(--navy);
}

.hours div {
    border-bottom-color: var(--border-soft);
}

.hours strong {
    color: var(--text-primary);
}

.response-status {
    color: var(--text-muted);
}

.status-dot {
    background: var(--blue-primary);
    box-shadow: 0 0 8px var(--blue-primary);
}

.footer {
    background: var(--white);
    border-top-color: var(--border-soft);
}

.footer .logo img {
    filter: none;
}

.footer-judul,
.isi-footer h5 {
    color: var(--navy);
}

.footer-judul span,
.kontak a {
    color: var(--blue-primary);
}

.explain-footer,
.isi-footer a,
.isi-footer p {
    color: var(--text-muted);
}

.kontak a {
    position: relative;
    background: var(--white);
    border-color: #000;
    color: var(--blue-primary);
}

@media (max-width: 900px) {
    .response-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .response-card {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        background: var(--white) !important;
        border-color: var(--blue-primary) !important;
    }

    .hamburger span {
        background: var(--blue-primary) !important;
    }

    .nav-menu.open {
        background: var(--white) !important;
        border-color: var(--border-soft) !important;
        box-shadow: 0 15px 40px rgba(7, 26, 59, .12) !important;
    }

    .nav-menu.open a {
        color: var(--text-primary) !important;
    }
}

/* =========================================
   FAST CONTACT REVEALS
========================================= */
.navbar,
.hero,
.contact-header,
.contact-card {
    transition-duration: .4s !important;
    transition-delay: 0s !important;
}

.contact-section.show .contact-card:nth-child(n) {
    transition-delay: 0s !important;
}

html.low-performance .contact-decoration,
html.low-performance .card-glow {
    display: none !important;
}

html.low-performance * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: both !important;
    animation-delay: 0s !important;
    transition-duration: .2s !important;
    transition-delay: 0s !important;
}

html.compact-device .contact-decoration,
html.compact-device .card-glow {
    display: none !important;
}

html.compact-device .contact-card {
    box-shadow: none;
}


/* ============================================
   HOVER STYLES (desktop/mouse only)
   Auto-wrapped: prevents sticky :hover on touch
   ============================================ */
@media (hover: hover) and (pointer: fine) {
    .nav-menu a:hover {
        color: #41ceeae8;
        opacity: 1;
    }

    .navbar .nav-menu a:hover::after {
        transform: scaleX(1);
    }

    .nav-button:hover {
        background: linear-gradient(90deg,
                #38bdf8,
                #168cff,
                #60a5fa);
    }

    .contact-card:hover {

        transform: translateY(-7px);

        border-color:
            rgba(56, 189, 248, .38);

        box-shadow:
            0 25px 70px rgba(0, 75, 160, .20),

            0 0 30px rgba(56, 189, 248, .07),

            inset 0 1px 0 rgba(255, 255, 255, .07);
    }

    .contact-card:hover .contact-icon {

        transform:
            rotate(-5deg) scale(1.08);

        box-shadow:
            0 0 25px rgba(56, 189, 248, .20);
    }

    .contact-number a:hover {
        color: #38bdf8;

        gap: 3px;
    }

    .contact-link:hover {

        color: #38bdf8;

        gap: 13px;
    }

    .contact-button:hover {

        transform: translateY(-3px);

        box-shadow:
            0 12px 35px rgba(37, 99, 235, .35);
    }

    .isi-footer a:hover {
        color: #38bdf8;
    }

    .nav-menu a:hover {
        color: var(--blue-primary);
    }

    .nav-button:hover {
        background: var(--blue-dark);
        color: var(--white);
    }

    .primary-btn:hover,
    .contact-button:hover {
        background: var(--blue-dark);
    }

    .contact-card:hover {
        border-color: var(--blue-primary);
        box-shadow: 0 14px 35px var(--blue-glow);
    }

    .footer a:hover,
    .isi-footer a:hover {
        color: var(--blue-primary);
    }
}

@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
    .nav-menu.open a:hover {
        background: #0b3158 !important;

        color: #38bdf8 !important;
    }
}

@media (max-width: 768px) {
    .nav-menu.open a.active {
        background: var(--soft-bg) !important;
        color: var(--blue-primary) !important;
    }

    .nav-menu.open a.active::after {
        content: '' !important;
        display: block !important;
        border-bottom: 2px solid var(--blue-primary) !important;
        margin-top: 5px !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) and (hover: hover) and (pointer: fine) {

    .nav-menu.open a:hover,
    .nav-menu.open a:active {
        background: var(--soft-bg) !important;
        color: var(--blue-primary) !important;
    }

    .nav-menu.open a.active {
        background: var(--soft-bg) !important;
        color: var(--blue-primary) !important;
    }

    .nav-menu.open a.active::after {
        content: '' !important;
        display: block !important;
        border-bottom: 2px solid var(--blue-primary) !important;
        margin-top: 5px !important;
        width: 100% !important;
    }
}


/* === FIX: nav-menu overflow di tablet (769px-900px) sebelum hamburger aktif === */
@media (max-width: 900px) {
    .nav-menu {
        margin-right: 0 !important;
        gap: 18px !important;
    }
}


/* === FIX: navbar menu benar-benar di tengah (desktop/tablet) === */
@media (min-width: 769px) {
    .navbar .nav-menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-right: 0;
        gap: clamp(18px, 2.2vw, 35px);
        white-space: nowrap;
    }
}