/* --- style_visitor_global.css --- */

:root {
    --bg-main: #07090f; /* Hitam kebiruan sangat gelap */
    --accent-primary: #ff5e00; /* Neon Orange */
    --accent-secondary: #00d2ff; /* Cyber Cyan (Biru Bercahaya) */
    --text-light: #ffffff;
    --text-gray: #aab0bd;
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Orbs (Tanpa Ungu) */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
    opacity: 0.3;
    animation: float-glow 20s infinite alternate;
}
.glow-1 {
    width: 400px; height: 400px;
    background: var(--accent-secondary); /* Menggunakan Cyan */
    top: -100px; left: -100px;
}
.glow-2 {
    width: 350px; height: 350px;
    background: var(--accent-primary); /* Menggunakan Orange */
    bottom: -50px; right: -50px;
    animation-delay: -5s;
}

@keyframes float-glow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 60px) scale(1.1); }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility: Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 2rem; font-weight: 900;
    color: var(--text-light); text-decoration: none;
    letter-spacing: 1px;
}
.logo span { color: var(--accent-primary); }

.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links li a {
    color: var(--text-gray); text-decoration: none;
    font-weight: 500; font-size: 1.05rem;
    transition: var(--transition);
}
.nav-links li a:hover { color: var(--text-light); text-shadow: 0 0 10px rgba(0, 210, 255, 0.6); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 32px;
    font-weight: 600; border-radius: 50px;
    text-decoration: none; transition: var(--transition);
    font-size: 1rem; cursor: pointer;
    overflow: hidden; position: relative;
}

.btn-gradient {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #000; /* Teks hitam agar kontras dengan gradient terang */
    border: none;
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.2);
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
    color: #fff;
}

.btn-glass {
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: var(--accent-secondary);
}

/* Footer */
.footer-section { margin-top: 100px; padding: 60px 0 20px; border-top: 1px solid var(--glass-border); border-bottom: none; border-left: none; border-right: none;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h2 { font-size: 2rem; margin-bottom: 10px; }
.footer-brand span { color: var(--accent-primary); }
.footer-brand p { color: var(--text-gray); max-width: 300px; }
.footer-contact h3, .footer-social h3 { margin-bottom: 20px; font-size: 1.2rem; }
.footer-contact p { margin-bottom: 10px; }
.footer-contact a { color: var(--text-gray); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: var(--transition); }
.footer-contact a:hover { color: var(--accent-secondary); }
.footer-contact i { color: var(--accent-primary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--glass-border); color: var(--text-gray); font-size: 0.9rem; }

/* Global Media Query */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-contact a { justify-content: center; } .footer-brand p { margin: 0 auto; } }
@media (max-width: 768px) { .nav-links { display: none; } }