/* ===== OVERVIEW PAGE STYLES ===== */

/* Only minimal additions */
body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Grid Background - minimal version */
.bg-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, rgba(30, 41, 59, 0.7) 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, rgba(30, 41, 59, 0.7) 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, transparent 75%, rgba(30, 41, 59, 0.7) 75%) -50px 0,
        linear-gradient(-45deg, transparent 75%, rgba(30, 41, 59, 0.7) 75%) -50px 0;
    background-color: var(--color-dark);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, 100px 100px, 100px 100px, 100px 100px;
    }
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-logo {
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.company-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    transition: all 0.3s ease;
}

.company-logo img:hover {
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.7));
    transform: scale(1.05);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Icon Button */
.floating-access-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow:
        0 10px 25px -5px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.4);
}

.floating-access-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow:
        0 15px 35px -5px rgba(59, 130, 246, 0.7),
        0 0 60px rgba(139, 92, 246, 0.6);
}

/* Access Menu (appears on click) */
.access-menu {
    position: fixed;
    bottom: 90px;
    right: 2rem;
    background: var(--color-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 250px;
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3);
}

.access-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.access-menu:before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: var(--color-card);
    border-right: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transform: rotate(45deg);
}

.menu-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: white;
}

.menu-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(-5px);
    color: white;
}

.menu-link i {
    width: 20px;
    text-align: center;
}

.btn-login {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white !important;
    font-weight: 600;
}

/* ===== NEON BORDER CARDS - LINE BORDER ONLY ===== */
.main-features {
    margin-bottom: 4rem;
}

.main-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.neon-grid-card {
    background: var(--color-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

/* NEON BORDER LINE - Garis pinggir saja */
.neon-grid-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.2rem;
    background: linear-gradient(45deg, 
        transparent 0%, 
        var(--color-primary) 25%, 
        var(--color-secondary) 50%, 
        var(--color-accent) 75%, 
        transparent 100%);
    background-size: 400% 400%;
    animation: neonLine 3s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

@keyframes neonLine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

.neon-grid-card:hover::before {
    opacity: 1;
}

.neon-grid-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px -15px rgba(59, 130, 246, 0.4),
        0 0 80px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.feature-desc {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Feature Button */
.feature-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    border: none;
}

.feature-button:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.feature-button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 2rem 1rem 1rem;
    }

    .company-logo img {
        height: 90px;
    }

    .main-features-grid {
        grid-template-columns: 1fr;
    }

    .access-menu {
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .access-menu:before {
        right: 50px;
    }

    .neon-grid-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }
}