/* MacBook Pro 14 inch viewport: 1512 x 982 */
html, body {
    width: 100%;
    min-width: 320px;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

        @keyframes slow-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .animate-slow-rotate {
            animation: slow-rotate 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float-delay {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(-5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        .animate-float-delay {
            animation: float-delay 7s ease-in-out infinite;
            animation-delay: 2s;
        }

        .dot-pattern {
            background-image: radial-gradient(rgba(6, 79, 189, 0.03) 1px, transparent 1px);
            background-size: 24px 24px;
        }
        .circuit-pattern {
            background-color: transparent;
            background-image: 
                linear-gradient(rgba(6, 79, 189, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(6, 79, 189, 0.04) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        
        .grid-pattern {
            background-size: 20px 20px;
            background-image:
                linear-gradient(to right, rgba(6, 79, 189, 0.02) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(6, 79, 189, 0.02) 1px, transparent 1px);
        }
        
        .primitive-rect {
            width: 120px;
            height: 40px;
            clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
        }

        /* ─── Global Section Uniformity ─── */
        section {
            min-height: 900px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        @media (max-width: 768px) {
            section {
                min-height: 600px;
                padding-top: 6rem;
                padding-bottom: 3rem;
            }
        }

        @media (max-width: 480px) {
            section {
                min-height: 500px;
                padding-top: 5rem;
                padding-bottom: 2rem;
            }
        }

        /* ─── Masked Tech Slant Transition ─── */
        .hero-mask-bottom {
            mask-image: linear-gradient(to bottom, 
                black 70%, 
                rgba(0, 0, 0, 0) 100%
            );
            -webkit-mask-image: linear-gradient(to bottom, 
                black 70%, 
                rgba(0, 0, 0, 0) 100%
            );
        }

        /* ─── Navbar Custom ─── */
        .navbar-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(72, 84, 187, 0.1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 80px;
        }

        .navbar-inner {
            width: 100%;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        @media (max-width: 768px) {
            .navbar-inner {
                padding: 0 16px;
            }
            .navbar-links {
                display: none;
            }
            .navbar-links.active {
                display: flex;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(12px);
                flex-direction: column;
                padding: 20px 16px;
                gap: 16px;
                border-bottom: 1px solid rgba(72, 84, 187, 0.1);
                box-shadow: 0 4px 12px rgba(0,0,0,0.08);
                z-index: 100;
            }
            .navbar-links.active a {
                font-size: 16px;
                padding: 8px 0;
            }
        }

        /* ─── Hamburger Button ─── */
        .navbar-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 101;
        }

        .hamburger-line {
            width: 100%;
            height: 2px;
            background: #064fbd;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar-hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .navbar-hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .navbar-hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 768px) {
            .navbar-hamburger {
                display: flex;
            }
        }

        /* ─── Footer (HIMTIKA Structure) ─── */
        .site-footer {
            background: linear-gradient(180deg, #064fbd 0%, #3d8bfd 100%);
            padding: 48px 40px 44px 40px;
            color: white;
            transition: all 0.5s ease;
        }

        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
        }

        .footer-main-row {
            display: flex;
            flex-direction: column;
        }

        /* --- BRAND COLUMN --- */
        .footer-brand-col {
            width: 100%;
            margin-bottom: 32px;
            margin-top: 0;
        }

        .brand-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .logo-address-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            font-family: 'Inter', sans-serif;
        }

        .brand-text-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .footer-logo {
            width: 48px;
            height: 48px;
            user-select: none;
            object-fit: contain;
        }

        .footer-address {
            text-align: center;
            font-size: 14px;
            font-weight: 300;
            line-height: 1.25rem;
            max-width: 280px;
        }

        .footer-social-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 260px;
            margin-bottom: 20px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid white;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social-link:hover {
            background-color: white;
            color: #064fbd;
            border-color: transparent;
        }

        /* --- LINKS GRID COLUMN --- */
        .footer-grid-col {
            width: 100%;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .group-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .group-list {
            list-style: none;
            padding: 0;
            font-family: 'Inter', sans-serif;
        }

        .group-list li a {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-size: 12px;
            font-weight: 300;
            margin-bottom: 2px;
            transition: all 0.5s ease;
            transform-origin: left;
            -webkit-font-smoothing: antialiased;
        }

        .group-list li a:hover {
            transform: scale(1.25);
            color: #f9d347;
        }

        .align-center-lg { 
            display: flex;
        }

        .tentang-kami {
            display: flex; justify-content: center; 
        }
        .media-hp-footer {
            display: flex; justify-content: center; margin-left: 20px;
        }
        .aplikasi-publik {
            display: flex; justify-content: center; margin-left: 20px;
        }

        /* --- FOOTER BOTTOM --- */
        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid white;
            text-align: center;
        }

        .copyright-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .authorized-brand {
            font-family: 'Montserrat', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: white;
        }

        .mini-logo {
            width: 40px;
            height: 40px;
        }

        /* SM (640px) */
        @media (min-width: 640px) {
            .aplikasi-publik {
                display: flex; justify-content: start;
            }
            .align-center-lg { 
                display: flex; justify-content: end; 
            }
            .site-footer { padding-left: 64px; padding-right: 64px; }
            .footer-logo { width: 56px; height: 56px; }
            .brand-name { font-size: 20px; }
            .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
            .group-title { font-size: 16px; }
            .group-list li a { font-size: 14px; }
            .copyright-text { font-size: 14px; font-weight: 500; }
        }

        /* MD (768px) */
        @media (min-width: 768px) {
            .align-center-lg { 
                display: flex; justify-content: end; 
            }
            .align-right-lg { 
                display: flex; justify-content: start; 
            }
            .group-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
            .group-list li a { font-size: 14px; margin-bottom: 10px; }
        }

        /* LG (1024px) */
        @media (min-width: 1024px) {
            .site-footer { padding-top: 48px; padding-bottom: 44px; padding-left: 80px; padding-right: 80px; }
            .footer-main-row { flex-direction: row; justify-content: space-between; }
            
            .footer-brand-col { width: 33.33%; margin-top: 0; }
            .brand-content { align-items: flex-start; }
            .logo-address-group { align-items: flex-start; }
            .footer-address { text-align: left; }
            
            .footer-grid-col { width: 66.66%; }
            .footer-links-grid { grid-template-columns: repeat(4, 1fr); }
            
            .align-center-lg { display: flex; justify-content: center; }
            .align-right-lg { display: flex; justify-content: end; }
            .media-hp-footer { display: flex; justify-content: center; }
            
            .footer-bottom { padding-top: 32px; gap: 10px; }
            .mini-logo { width: 40px; height: 40px; }
        }

        /* XL (1280px) */
        @media (min-width: 1280px) {
            .site-footer { padding-left: 88px; padding-right: 88px; }
        }

        /* ─── Footer Mobile Responsive (HIMTIKA Pattern) ─── */
        @media (max-width: 480px) {
            .site-footer {
                padding: 32px 24px 28px 24px;
            }

            .footer-main-row {
                gap: 24px;
            }

            .footer-brand-col {
                margin-bottom: 0;
            }

            .brand-content {
                gap: 16px;
            }

            .logo-address-group {
                gap: 12px;
            }

            .footer-logo {
                width: 44px;
                height: 44px;
            }

            .brand-name {
                font-size: 16px;
                letter-spacing: 0.5px;
            }

            .footer-address {
                font-size: 13px;
                max-width: 280px;
                line-height: 1.4;
            }

            .footer-social-wrapper {
                max-width: 240px;
                margin-bottom: 8px;
            }

            .footer-social-link {
                width: 38px;
                height: 38px;
            }

            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 16px;
            }

            .group-title {
                font-size: 14px;
                font-weight: 700;
                margin-bottom: 8px;
            }

            .group-list li a {
                font-size: 12px;
                font-weight: 400;
                margin-bottom: 4px;
                line-height: 1.4;
            }

            .align-center-lg,
            .align-right-lg,
            .tentang-kami,
            .media-hp-footer,
            .aplikasi-publik {
                display: block;
            }

            .footer-bottom {
                margin-top: 28px;
                padding-top: 16px;
                gap: 12px;
            }

            .copyright-text {
                font-size: 12px;
                font-weight: 400;
            }

            .authorized-brand {
                font-size: 13px;
                gap: 6px;
            }

            .mini-logo {
                width: 32px;
                height: 32px;
            }
        }

