/* Styles for System Maintenance Page */
.maintenance-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
}

.maintenance-container {
    width: 100%;
    max-width: 620px;
}

.maintenance-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

/* Floating Illustration Animation */
@keyframes float-illustration {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.maintenance-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.maintenance-illustration img {
    max-width: 320px;
    width: 100%;
    height: auto;
    animation: float-illustration 4s ease-in-out infinite;
}

.maintenance-card .title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.maintenance-card .desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Action Buttons */
.maintenance-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.maintenance-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-mail {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
}

.btn-mail:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-2px);
}

.btn-home {
    background: #ffffff;
    color: #4f46e5;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-home:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Social Iconography */
.maintenance-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.maintenance-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #94a3b8;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.maintenance-social a:hover {
    background: #4f46e5;
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive Mobile Layouts */
@media (max-width: 575px) {
    .maintenance-illustration img {
        max-width: 240px;
    }
    
    .maintenance-card .title {
        font-size: 28px;
    }
    
    .maintenance-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .maintenance-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
