 /* Header Modern Base Styles */
        .header-modern {
            background: linear-gradient(to right, #cddfff 0%, #2a5298 50%, #205189 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .header-logo {
            height: 60px;
            width: auto;
        }

        .header-title {
            color: #ffffff;
            /* Putih */
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .header-subtitle {
            color: #ffd700;
            /* Kuning emas */
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .header-btn {
            border-radius: 25px;
            padding: 0.5rem 1.25rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            background: #ffd700;
            /* Kuning */
            color: #1e3c72;
            /* Biru tua */
            margin: 0 0.25rem;
        }

        .header-btn-login {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .header-btn-login:hover {
            background: #ffed4a;
            /* Kuning lebih terang */
            transform: translateY(-2px);
            color: #1e3c72;
        }

        .header-btn-register {
            background: #ffed4a;
            color: #1e3c72;
        }

        .header-btn-register:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        /* User greeting text */
        .user-greeting {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        /* Responsive - Tablet & Mobile */
        @media (max-width: 991px) {
            .header-modern {
                padding: 0.75rem 0;
            }

            .header-logo {
                height: 50px;
            }

            .header-title {
                font-size: 1.1rem;
            }

            .header-subtitle {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 767px) {
            .header-modern .row {
                text-align: center;
            }

            .header-modern .col-lg-7 {
                justify-content: center !important;
                margin-bottom: 1rem;
            }

            .header-modern .col-lg-5 {
                text-align: center !important;
            }

            .header-logo {
                height: 45px;
            }

            .header-title {
                font-size: 1rem;
            }

            .header-btn {
                display: inline-block;
                margin: 0.25rem;
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            .user-greeting {
                display: block;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-logo {
                height: 40px;
            }

            .header-title {
                font-size: 0.9rem;
            }

            .header-subtitle {
                font-size: 0.7rem;
            }

            .d-flex.align-items-center {
                flex-direction: column;
                gap: 0.5rem !important;
            }
        }
/* Masthead Modern */
      
.masthead {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('assets/img/slide3.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Dark Overlay Gradient */
.masthead-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Content Positioning */
.masthead .container {
    position: relative;
    z-index: 2;
}

/* Animasi Fade In */
.masthead-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge Styling */
.masthead-badge {
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title Styling dengan Text Shadow */
.masthead-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.masthead-title .text-warning {
    text-shadow: 2px 2px 8px rgba(255, 193, 7, 0.3);
}

/* Subtitle */
.masthead-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Buttons Animation */
.masthead-buttons {
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Hover Effect untuk Buttons */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Stats Section */
.masthead-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Wave Separator */
.curve-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    overflow: hidden;
}

.curve-separator svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .masthead {
        min-height: auto;
        padding: 100px 0 80px;
        background-attachment: scroll;
    }
    
    .masthead-title {
        font-size: 1.8rem !important;
    }
    
    .masthead-title .fs-3 {
        font-size: 1.2rem !important;
    }
    
    .masthead-subtitle {
        font-size: 1rem;
    }
    
    .wave-separator svg {
        height: 60px;
    }
    
    .stat-item {
        margin-bottom: 10px;
    }
}

/* Particles Effect (Optional - bisa ditambahkan dengan JS) */
.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Logo efek glow di Alur Pelayanan*/
        .alur-logo-container {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .alur-logo {
            width: 360px;
            height: 100px;
            background: white;
            border-radius: 80px;
            padding: 10px;
            box-shadow:
                0 0 20px rgba(255, 215, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.3),
                0 0 60px rgba(255, 215, 0, 0.1);
            animation: float-logo 3s ease-in-out infinite;
            border: 2px solid #ffd700;
        }

        @keyframes float-logo {

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

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

        .logo-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130px;
            height: 130px;
            border: 2px dashed rgba(255, 215, 0, 0.5);
            border-radius: 50%;
            animation: spin 10s linear infinite;
        }

        @keyframes spin {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Custom Styles untuk Section Alur Pelayanan */
        .alur-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.alur-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Logo Container */
.alur-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-pulse {
    position: absolute;
    width: 240%;
    height: 100%;
    border-radius: 70%;
    background: rgba(255,255,255,0.2);
    animation: pulse-ring 2s infinite;
}

.alur-logo {
    width: 300px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Divider */
.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffd700, #ffed4a);
    border-radius: 2px;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(to right, rgba(255,215,0,0.3), rgba(255,215,0,0.8), rgba(255,215,0,0.3));
    border-radius: 2px;
}

/* Step Cards */
.step-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-card.step-final {
    background: rgba(40,167,69,0.2);
    border-color: rgba(40,167,69,0.4);
}

/* Step Icon Wrapper */
.step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

.step-icon-wrapper.final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 10px 25px rgba(40,167,69,0.3);
}

.step-icon {
    font-size: 1.8rem;
    color: #1e3c72;
}

.step-icon-wrapper.final .step-icon {
    color: white;
}

/* Step Badge */
.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: #1e3c72;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffd700;
}

.step-badge.bg-success {
    background: #28a745 !important;
    border-color: #fff;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse Badge */
.pulse-badge {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Benefits Card */
.benefits-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    color: white;
}

.benefit-item:hover {
    background: rgba(255,215,0,0.2);
    transform: translateX(5px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Hover Scale */
.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255,215,0,0.4) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .timeline-line { display: none !important; }
    .step-icon-wrapper { width: 60px; height: 60px; }
    .step-icon { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .alur-logo-container { width: 100px; height: 100px; }
    .alur-logo { width: 60px; height: 60px; }
    .step-card { padding: 1.25rem; }
    .benefits-card { padding: 1.5rem; }
}
        .alur-section {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            position: relative;
            overflow: hidden;
        }

        .alur-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .alur-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #114B82;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            border-left: 4px solid #ffd700;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }

        .floating-icon {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

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

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

        .pulse-badge {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        .connector-line {
            position: absolute;
            top: 50%;
            left: 100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, rgba(255, 215, 0, 0.5), transparent);
            transform: translateY(-50%);
            z-index: 0;
        }

        @media (max-width: 991px) {
            .connector-line {
                display: none;
            }
        }

        .hover-scale {
            transition: transform 0.3s ease;
        }

        .hover-scale:hover {
            transform: scale(1.05);
        }

        /* Layanan Cards Modern */
        .layanan-section {
            background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
            position: relative;
        }

        .layanan-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, #114B82 0%, transparent 100%);
            opacity: 0.05;
        }

        .layanan-card {
            background: white;
            border-radius: 20px;
            border: none;
            box-shadow: 0 5px 20px rgba(17, 75, 130, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            position: relative;
            height: 100%;
        }

        .layanan-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(17, 75, 130, 0.15);
        }

        .layanan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #114B82, #1e6db5, #ffd700);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .layanan-card:hover::before {
            transform: scaleX(1);
        }

        .layanan-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .layanan-card:hover .layanan-icon-wrapper {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            transform: rotate(5deg) scale(1.1);
        }

        .layanan-card:hover .layanan-icon-wrapper i {
            color: #114B82;
        }

        .layanan-icon-wrapper i {
            font-size: 2.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .layanan-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .layanan-badge.offline {
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
        }

        .layanan-title {
            color: #114B82;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .layanan-syarat {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .layanan-syarat-title {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .layanan-syarat-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .layanan-syarat-list li {
            padding: 0.3rem 0;
            color: #495057;
            font-size: 0.85rem;
            position: relative;
            padding-left: 1.2rem;
        }

        .layanan-syarat-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        .btn-layanan {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border: none;
            border-radius: 12px;
            padding: 0.8rem 1.5rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
            display: inline-block;
        }

        .btn-layanan:hover {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #114B82;
            transform: scale(1.05);
        }

        .btn-layanan-offline {
            background: #6c757d;
            border: none;
            border-radius: 12px;
            padding: 0.8rem 1.5rem;
            color: white;
            font-weight: 600;
            width: 100%;
            cursor: not-allowed;
        }

        .layanan-kategori {
            display: inline-block;
            background: rgba(17, 75, 130, 0.1);
            color: #114B82;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }
         /* Sambutan Kepala Desa/Lurah */
        .sambutan-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .sambutan-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(17, 75, 130, 0.05);
            border-radius: 50%;
        }

        .sambutan-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 50%;
        }

        .foto-lurah {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .foto-lurah:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
        }

        .foto-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 380px;
            height: 380px;
            border: 3px dashed rgba(17, 75, 130, 0.3);
            border-radius: 50%;
            animation: spin-slow 20s linear infinite;
        }

        @keyframes spin-slow {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .sambutan-title {
            color: #28a745;
            font-weight: bold;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .sambutan-nama {
            color: #114B82;
            font-weight: bold;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .sambutan-jabatan {
            color: #6c757d;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(17, 75, 130, 0.1);
            border-radius: 50px;
        }

        .sambutan-text {
            color: #495057;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            position: relative;
            padding-left: 20px;
            border-left: 4px solid #28a745;
        }

        .quote-icon {
            font-size: 4rem;
            color: rgba(17, 75, 130, 0.1);
            position: absolute;
            top: -20px;
            right: 0;
            line-height: 1;
        }

        /* Profil & Batas Kelurahan Styles */
        .profil-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .profil-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(17, 75, 130, 0.1);
            border: 1px solid rgba(17, 75, 130, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .profil-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(17, 75, 130, 0.15);
        }

        .profil-icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .batas-card {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .batas-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .arah-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .arah-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .arah-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #114B82;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stats-box {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 20px;
            padding: 2rem;
            color: #114B82;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1;
        }

        .image-hover-zoom {
            overflow: hidden;
            border-radius: 20px;
        }

        .image-hover-zoom img {
            transition: transform 0.5s ease;
        }

        .image-hover-zoom:hover img {
            transform: scale(1.1);
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 4rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #114B82, #ffd700);
            border-radius: 2px;
        }

        /* Rating Section Styles */
        .rating-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .rating-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(17, 75, 130, 0.1);
            border: none;
        }

        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            gap: 10px;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            cursor: pointer;
            font-size: 3rem;
            color: #ddd;
            transition: all 0.2s ease;
        }

        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            transform: scale(1.1);
        }

        .rating-stats {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border-radius: 15px;
            color: white;
        }

        .rating-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }

        .rating-fill {
            height: 100%;
            background: #ffd700;
            border-radius: 10px;
            transition: width 0.5s ease;
        }

        /* Menu Pencarian */
        .search-section {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            position: relative;
        }

        .search-box {
            background: white;
            border-radius: 50px;
            padding: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
        }

        .search-input {
            border: none;
            background: transparent;
            padding: 1rem 1.5rem;
            flex-grow: 1;
            font-size: 1.1rem;
            outline: none;
        }

        .search-btn {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #114B82;
            border: none;
            border-radius: 50px;
            padding: 1rem 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

/* Landing User Login */

       /* Page Background */
        body {
            background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
            min-height: 100vh;
        }
        
        /* Header Section */
        .page-header {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
        }
        
        .page-title {
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        .page-subtitle {
            opacity: 0.9;
            margin-top: 0.5rem;
        }
        
        /* Stats Cards */
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }
        
        .stat-icon.pending { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
        .stat-icon.process { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
        .stat-icon.completed { background: rgba(25, 135, 84, 0.1); color: #198754; }
        .stat-icon.revision { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #114B82;
            line-height: 1;
        }
        
        .stat-label {
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        /* Table Card */
        .table-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        .table-card-header {
            padding: 1.5rem;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .table-card-title {
            font-weight: 700;
            color: #114B82;
            margin: 0;
        }
        
        /* Custom Table */
        .custom-table {
            margin: 0;
        }
        
        .custom-table thead th {
            background: #f8f9fa;
            color: #114B82;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            padding: 1rem;
            border: none;
        }
        
        .custom-table tbody td {
            padding: 1.2rem 1rem;
            vertical-align: middle;
            border-bottom: 1px solid #f1f3f5;
        }
        
        .custom-table tbody tr:hover {
            background: #f8f9fa;
        }
        
        /* Status Badges */
        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .status-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        .status-pending {
            background: rgba(255, 193, 7, 0.1);
            color: #856404;
        }
        .status-pending::before { background: #ffc107; }
        
        .status-process {
            background: rgba(13, 110, 253, 0.1);
            color: #084298;
        }
        .status-process::before { background: #0d6efd; }
        
        .status-completed {
            background: rgba(25, 135, 84, 0.1);
            color: #0f5132;
        }
        .status-completed::before { background: #198754; }
        
        .status-revision {
            background: rgba(220, 53, 69, 0.1);
            color: #842029;
        }
        .status-revision::before { background: #dc3545; }
        
        /* Action Buttons */
        .btn-action {
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
        }
        
        .btn-download {
            background: linear-gradient(135deg, #198754 0%, #20c997 100%);
            color: white;
        }
        
        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
            color: white;
        }
        
        .btn-revise {
            background: linear-gradient(135deg, #dc3545 0%, #f44);
            color: white;
        }
        
        .btn-revise:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
            color: white;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .empty-icon {
            width: 120px;
            height: 120px;
            background: rgba(17, 75, 130, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 3rem;
            color: #114B82;
        }
        
        .empty-title {
            color: #114B82;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .empty-text {
            color: #6c757d;
            margin-bottom: 1.5rem;
        }
        
        .btn-new-request {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-new-request:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(17, 75, 130, 0.3);
            color: white;
        }
        
        /* Service Name */
        .service-name {
            font-weight: 600;
            color: #114B82;
        }
        
        .service-code {
            font-size: 0.75rem;
            color: #6c757d;
            background: #f1f3f5;
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            margin-left: 0.5rem;
        }
        
        /* Date */
        .date-submitted {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .date-submitted i {
            color: #114B82;
            margin-right: 0.3rem;
        }
        
        /* Revision Note */
        .revision-note {
            background: rgba(220, 53, 69, 0.05);
            border-left: 3px solid #dc3545;
            padding: 0.5rem 0.8rem;
            border-radius: 0 8px 8px 0;
            font-size: 0.85rem;
            color: #842029;
        }
        
        /* ID Badge */
        .id-badge {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: monospace;
        }
/* Pilih Services */
/* Form Styles */
        body {
            background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
            min-height: 100vh;
            padding-bottom: 3rem;
        }
        
        .form-header {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .form-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
        }
        
        .form-header h2 {
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        .form-header p {
            opacity: 0.9;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        
        .form-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(17, 75, 130, 0.1);
            border: none;
            overflow: hidden;
        }
        
        .form-card-header {
            background: #f8f9fa;
            padding: 1.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        
        .form-card-header h4 {
            color: #114B82;
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .form-card-body {
            padding: 2rem;
        }
        
        .form-label {
            color: #114B82;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .form-label i {
            color: #ffd700;
            margin-right: 0.5rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #114B82;
            box-shadow: 0 0 0 0.25rem rgba(17, 75, 130, 0.1);
        }
        
        .input-group-text {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-right: none;
            border-radius: 12px 0 0 12px;
            color: #114B82;
        }
        
        .file-upload-wrapper {
            position: relative;
            border: 2px dashed #114B82;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            background: rgba(17, 75, 130, 0.02);
        }
        
        .file-upload-wrapper:hover {
            background: rgba(17, 75, 130, 0.05);
            border-color: #ffd700;
        }
        
        .file-upload-wrapper i {
            font-size: 2.5rem;
            color: #114B82;
            margin-bottom: 0.5rem;
        }
        
        .file-upload-wrapper .file-label {
            color: #6c757d;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .file-upload-wrapper .file-types {
            color: #114B82;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .file-upload-wrapper input[type="file"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #114B82 0%, #1e6db5 100%);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(17, 75, 130, 0.3);
            color: white;
        }
        
        .btn-back {
            background: #f8f9fa;
            color: #6c757d;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 1rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-back:hover {
            background: #e9ecef;
            color: #495057;
        }
        
        .alert {
            border-radius: 12px;
            border: none;
            padding: 1rem 1.5rem;
        }
        
        .alert-success {
            background: rgba(25, 135, 84, 0.1);
            color: #0f5132;
        }
        
        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            color: #842029;
        }
        
        .section-divider {
            display: flex;
            align-items: center;
            margin: 2rem 0;
            color: #114B82;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, #114B82, transparent);
        }
        
        .section-divider span {
            padding: 0 1rem;
        }
        
        .required-badge {
            color: #dc3545;
            font-size: 0.75rem;
            margin-left: 0.25rem;
        }

        /* Revise */
          :root {
            --primary-blue: #1565c0;
            --dark-blue: #0d47a1;
            --light-blue: #e3f2fd;
            --accent-yellow: #ffd600;
            --accent-yellow-dark: #ffab00;
            --bg-light: #f0f4f8;
            --text-dark: #1a237e;
            --success-green: #2e7d32;
            --warning-orange: #f57c00;
        }

        body {
            background: var(--bg-light);
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-bottom: 50px;
        }

        /* Header Section - Blue Gradient */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 214, 0, 0.1);
            border-radius: 50%;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        /* Revision Alert - Yellow Theme */
        .revision-alert {
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
            border-left: 5px solid var(--accent-yellow-dark);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(255, 171, 0, 0.2);
            position: relative;
        }

        .revision-alert h5 {
            color: #e65100;
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .revision-alert .text-muted {
            color: #6c757d !important;
        }

        /* Main Card */
        .main-card {
            background: white;
            border: none;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border-top: 4px solid var(--accent-yellow);
        }

        /* Card Header - Blue */
        .card-header-custom {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            padding: 25px;
            border: none;
            color: white;
        }

        /* Section Title - Blue with Yellow Accent */
        .section-title {
            position: relative;
            padding-left: 15px;
            margin-bottom: 25px;
            font-weight: 700;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }

        /* Form Controls - Blue Border Focus */
        .form-control-custom {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 12px 15px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-control-custom:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
            background: white;
        }

        .form-label-custom {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        /* Input Group Styling */
        .input-group-text {
            background: var(--light-blue);
            border: 2px solid #e0e0e0;
            border-right: none;
            color: var(--primary-blue);
        }

        .form-control-custom {
            border-left: none;
        }

        /* Service Badge - Yellow */
        .service-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
            color: var(--text-dark);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 3px 10px rgba(255, 214, 0, 0.3);
        }

        /* Document Items */
        .doc-item {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            border: 2px solid #e3f2fd;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .doc-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--accent-yellow);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .doc-item:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 5px 20px rgba(21, 101, 192, 0.1);
            transform: translateX(5px);
        }

        .doc-item:hover::before {
            transform: scaleY(1);
        }

        .doc-item label {
            color: var(--primary-blue);
        }

        /* Current File - Light Blue Background */
        .current-file {
            background: var(--light-blue);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #bbdefb;
        }

        .current-file a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .current-file a:hover {
            text-decoration: underline;
            color: var(--dark-blue);
        }

        /* File Input - Blue Theme */
        .file-input-wrapper {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .file-input-wrapper input[type=file] {
            position: absolute;
            left: -9999px;
        }

        .file-input-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            background: white;
            border: 2px dashed var(--primary-blue);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .file-input-label:hover {
            background: var(--light-blue);
            border-style: solid;
        }

        /* Buttons - Yellow Primary, Blue Secondary */
        .btn-custom-primary {
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
            border: none;
            border-radius: 12px;
            padding: 14px 30px;
            font-weight: 700;
            color: var(--text-dark);
            box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
            transition: all 0.3s ease;
        }

        .btn-custom-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 214, 0, 0.6);
            color: var(--text-dark);
        }

        .btn-custom-secondary {
            background: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            border-radius: 12px;
            padding: 14px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-custom-secondary:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 50px;
            color: #90a4ae;
            background: var(--light-blue);
            border-radius: 15px;
            border: 2px dashed #bbdefb;
        }

        .empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--primary-blue);
            opacity: 0.5;
        }

        /* Footer */
        .footer-brand {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .footer-brand img {
            height: 40px;
            margin-bottom: 10px;
        }

        /* Status Badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status-revision {
            background: #fff3e0;
            color: #e65100;
        }

        /* Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: slideIn 0.6s ease-out;
        }

        /* Loading State */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .btn-loading::after {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid var(--text-dark);
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
            margin-left: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 20px;
                border-radius: 15px;
            }
            
            .main-card {
                margin: 0 10px;
            }
        }

        /* Hover effects for cards */
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .stat-card.warning {
            border-bottom-color: var(--accent-yellow);
        }
        