
/* HYPER AUTOMATION V7 - BRIGHT & ANIMATED THEME */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --bg-light: #f8f9fa; /* Bootstrap White */
    --bg-card: #ffffff;
    --text-dark: #212529;
    --text-secondary: #6c757d;
    --accent-blue: #0d6efd; /* Primary Blue */
    --accent-green: #198754; /* Success Green */
    --shadow-soft: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* 1. Animated Background (The "Level Dewa" touch) */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #e0f7fa, #bbdefb, #e0f7fa, #c5cae9);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 2. Navbar & Header */
.navbar {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

/* 3. Card Pro (Untuk Pricing & Status) */
.card-pro {
    background-color: var(--bg-card);
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.card-pro:hover {
    box-shadow: 0 0.75rem 2rem rgba(13, 110, 253, 0.15);
    transform: translateY(-3px);
}

/* 4. Status Panel (AURA KEREN) */
.status-metric {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.status-indicator-up {
    color: var(--accent-green);
    font-size: 1.5rem;
}
.status-indicator-down {
    color: #dc3545; /* Red */
    font-size: 1.5rem;
}

/* 5. Process Steps (Tahapan) */
.process-step {
    text-align: center;
    position: relative;
    padding-top: 30px;
}

.step-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    color: white;
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(13, 110, 253, 0.2);
}

.step-line {
    position: absolute;
    top: 65px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
}

/* 6. Buttons & Forms */
.btn-pro {
    background-color: var(--accent-blue);
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 50px; /* Lebih elegan */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-pro:hover {
    background-color: #0b5ed7;
    box-shadow: 0 5px 10px rgba(13, 110, 253, 0.3);
    color: white;
}

.form-control, .form-select {
    border: 1px solid #ced4da;
    background-color: white;
    color: var(--text-dark);
    border-radius: 8px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    background-color: white;
}
    