/* Import Font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #0fa968;
    --bg-light: #f4f7fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --card-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
    --hover-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

/* Navbar Modern */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

/* Hero Section Modern dengan Mesh Gradient */
.hero-section {
    background: linear-gradient(135deg, #0b409c 0%, #105bd8 50%, #0fa968 100%);
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

/* Pattern Hiasan di Hero Section */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

/* Card Modern & Soft Shadow */
.card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 16px !important;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow) !important;
}

/* Badge Status Berkedip (Live Indicator) */
.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #28a745;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse 1.5s infinite;
    margin-right: 6px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Tombol Kustom */
.btn {
    border-radius: 10px !important;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Ikon Layanan dalam Lingkaran */
.service-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

.bg-soft-success {
    background-color: rgba(15, 169, 104, 0.1);
    color: var(--secondary-color);
}

/* Tabel Modern */
.table-responsive {
    border-radius: 14px;
    overflow: hidden;
}

.table thead {
    background-color: var(--primary-color);
    color: white;
}