@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    
    --color-available: #198754;
    --color-available-bg: #e8f5e9;
    --color-used: #dc3545;
    --color-used-bg: #ffebee;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    -webkit-font-smoothing: antialiased;
}


.wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
}

#sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    min-width: 260px;
    max-width: 260px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s;
    border-right: 1px solid var(--border-color);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.01);
    z-index: 1000;
}

#sidebar .sidebar-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

#sidebar ul.components {
    padding: 16px 0;
}

#sidebar ul li a {
    padding: 12px 24px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

#sidebar ul li a i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

#sidebar ul li a:hover {
    background-color: #f1f6ff;
    color: var(--primary-color);
}

#sidebar ul li.active>a {
    color: var(--primary-color);
    background-color: #e7f0ff;
    border-right: 4px solid var(--primary-color);
}


#content {
    width: 100%;
    padding: 30px;
    min-height: 100vh;
    transition: all 0.3s;
}


.navbar-custom {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}


.card-custom {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.card-custom .card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    font-weight: 600;
}

.card-custom .card-body {
    padding: 24px;
}


.card-stats {
    border-left: 4px solid var(--primary-color);
}

.card-stats.stats-success {
    border-left-color: var(--color-available);
}

.card-stats.stats-danger {
    border-left-color: var(--color-used);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}


.badge-tersedia {
    background-color: var(--color-available-bg);
    color: var(--color-available);
    border: 1px solid rgba(25, 135, 84, 0.15);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

.badge-digunakan {
    background-color: var(--color-used-bg);
    color: var(--color-used);
    border: 1px solid rgba(220, 53, 69, 0.15);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}


.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}


.table-custom {
    border-collapse: separate;
    border-spacing: 0;
}

.table-custom th {
    background-color: var(--bg-light);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.table-custom td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.table-custom tr:last-child td {
    border-bottom: none;
}


.alert {
    border-radius: var(--border-radius-md);
    border: none;
    box-shadow: var(--shadow-soft);
}


.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}


@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        height: 100vh;
        margin-left: -260px;
    }

    #sidebar.active {
        margin-left: 0;
    }
}


.landing-body {
    background-color: #f3f4f6;
    font-family: 'Inter', sans-serif;
}

.landing-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 0;
}

.brand-logo {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0d6efd;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.brand-logo i {
    margin-right: 8px;
    font-size: 1.6rem;
}

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 30px;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    font-weight: 400;
}

.stat-card-landing {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card-landing:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-blue {
    background-color: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.icon-green {
    background-color: rgba(25, 135, 84, 0.08);
    color: #198754;
}

.icon-red {
    background-color: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-desc {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.filter-capsule {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--text-muted);
}

.filter-capsule:hover {
    background-color: #f8fafc;
    color: var(--text-dark);
}

.filter-capsule.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}


.pc-grid-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pc-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: rgba(13, 110, 253, 0.2);
}

.pc-card-header {
    padding: 24px 24px 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pc-badge {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 4px;
}

.badge-standby {
    background-color: rgba(25, 135, 84, 0.08);
    color: var(--color-available);
    border: 1px solid rgba(25, 135, 84, 0.15);
}

.badge-digunakan-landing {
    background-color: rgba(220, 53, 69, 0.08);
    color: var(--color-used);
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.pc-card-body {
    padding: 0 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pc-title-id {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.pc-name {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.pc-info-box {
    background-color: #f8fafc;
    border-radius: 14px;
    padding: 16px;
    margin-top: auto;
}

.info-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.info-value i {
    margin-right: 6px;
    font-size: 1.1rem;
}

.info-value.text-green {
    color: #198754;
}

.info-value.text-red {
    color: #dc3545;
}

.footer-section {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 30px 0;
    margin-top: 80px;
    color: #64748b;
    font-size: 0.9rem;
}

.empty-state {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    color: #64748b;
}

.empty-state i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 16px;
}


html {
    scroll-behavior: smooth;
}


.nav-links-custom .nav-link {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.25s ease;
}

.nav-links-custom .nav-link:hover,
.nav-links-custom .nav-link.active {
    color: #0d6efd !important;
}

.nav-links-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #0d6efd;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-links-custom .nav-link.active::after {
    transform: scaleX(1);
}


.hero-icon-glow {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.12);
    animation: float 4s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(13, 110, 253, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-visual-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    position: relative;
}

.about-visual-box i {
    font-size: 4rem;
    filter: drop-shadow(0 4px 10px rgba(13, 110, 253, 0.15));
}

.bg-light-blue {
    background-color: rgba(13, 110, 253, 0.08);
}

.about-bullet-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}


.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 110, 253, 0.15);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.bg-blue-subtle {
    background-color: rgba(13, 110, 253, 0.08);
}

.bg-green-subtle {
    background-color: rgba(25, 135, 84, 0.08);
}

.bg-red-subtle {
    background-color: rgba(220, 53, 69, 0.08);
}


.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(13, 110, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contact-form-wrapper {
    background-color: #ffffff !important;
    border-color: #e5e7eb !important;
}


.tracking-wider {
    letter-spacing: 1px;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-600 p {
    font-size: 1.05rem;
}


@media (max-width: 768px) {
    #content {
        padding: 20px;
    }
    .navbar-custom {
        padding: 12px 20px;
        margin-bottom: 20px;
    }
    .hero-section {
        padding: 45px 24px;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    #content {
        padding: 15px;
    }
    .navbar-custom {
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    .card-custom .card-body {
        padding: 16px;
    }
    .card-custom .card-header {
        padding: 16px;
    }
    .stat-value {
        font-size: 1.5rem;
    }
}


.landing-pc-scroll {
    max-height: 580px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 15px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}


.landing-pc-scroll::-webkit-scrollbar {
    width: 6px;
}

.landing-pc-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.landing-pc-scroll::-webkit-scrollbar-thumb {
    background: rgba(13, 110, 253, 0.2);
    border-radius: 10px;
}

.landing-pc-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(13, 110, 253, 0.4);
}